diff --git a/.ci_scripts/deploy.sh b/.ci_scripts/deploy.sh index 3e45567de61..6880cf60ecd 100755 --- a/.ci_scripts/deploy.sh +++ b/.ci_scripts/deploy.sh @@ -13,10 +13,11 @@ for file in upload/SuperTux*; do shasum=$(shasum -a 256 "$file" | cut -d " " -f 1) fi echo "Checksum: $shasum"; + echo "Branch: $BRANCH_NAME"; curl --data "apikey=$DOWNLOAD_APIKEY" \ --data "url=$url" \ --data "size=$size" \ - --data "branch=$(git branch --show-current)" \ + --data "branch=$BRANCH_NAME" \ --data "shasum=$shasum" \ -L -s https://download.supertux.org/submit.php done diff --git a/.ci_scripts/package.sh b/.ci_scripts/package.sh index e53dc3f6312..8334fd994c1 100755 --- a/.ci_scripts/package.sh +++ b/.ci_scripts/package.sh @@ -2,7 +2,7 @@ shopt -s nullglob -if ([ "$OS_NAME" = "macos-10.15" ] || [ "$OS_NAME" = "macos-11" ]) && [ "$PACKAGE" = "ON" ]; then +if ([ "$OS_NAME" = "macos-10.15" ] || [ "$OS_NAME" = "macos-12" ]) && [ "$PACKAGE" = "ON" ]; then sudo chmod -R +w /usr/local/Cellar cpack -G Bundle; fi diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index 83759588ab9..00000000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,23 +0,0 @@ -**SuperTux version:** -**System information:** *(details about your kernel, operating system, or distribution)* - -##### Expected behavior - -##### Actual behavior - -##### Steps to reproduce actual behavior - -##### Additional debugging information - -*If available, please attach a backtrace of a crash (you can get one using GDB or another debugger), or a core dump. If you're on GNU/Linux and your distro is using systemd, it's highly likely that a core dump is available using `coredumpctl(1)`. -If the issue only occurs in a custom level, please attach that too.* - -##### Guidelines for reporting issues - -- [ ] I have read . -- [ ] I verified this isn't an issue that's already been reported. -- [ ] I verified this isn't a [discussion](https://github.com/SuperTux/supertux/discussions), but an actual issue ─ that is, the game did something not intended such as crashing or giving error messages. -- [ ] This report only includes details about **one** (1) issue, feature request or topic. -- [ ] If I make a mistake while submitting this report I will use the edit feature instead of closing this issue and opening a new one. -- [ ] This issue is **not** about wrong translations (use Transifex for those), or anything unsupported (e.g. third-party add-ons). -- [ ] Once you're done, please remove the section 'Guidelines for reporting issues', the 'Additional debugging information' if it is empty, and any text in *italic font*. diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 00000000000..8d59546888d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,80 @@ +name: Bug Report +description: File a report for unexpected behavior in SuperTux. +title: "[Bug]: " +labels: ["type:bug"] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: input + id: supertux-version + attributes: + label: SuperTux Version + description: The version of SuperTux, shown at the bottom-left corner on the title screen. + placeholder: ex. v0.6.3-1236-g7451121dd + validations: + required: true + - type: input + id: system-info + attributes: + label: System Information + description: Details about your operating system (such as Linux distribution or Windows version) and CPU architecture (ex. 64-bit or 32-bit). + placeholder: ex. Windows 11 64-bit + validations: + required: true + - type: textarea + id: expected-behavior + attributes: + label: Expected Behavior + description: What did you expect to happen? + placeholder: Describe the behavior you expected in detail. + validations: + required: true + - type: textarea + id: actual-behavior + attributes: + label: Actual Behavior + description: Instead, what actually happened? + placeholder: Describe the actual behavior in detail. + validations: + required: true + - type: textarea + id: steps-to-reproduce + attributes: + label: Steps To Reproduce Actual Behavior + description: A clear and concise description of how the actual behavior was achieved, since starting up the game. + placeholder: | + Describe the steps leading to the actual behavior, preferably with a numerated list. + + 1. ... + 2. ... + 3. ... + validations: + required: true + - type: textarea + id: additional-info + attributes: + label: Additional Information + description: Include any additional information regarding the bug. + placeholder: You can also leave this empty. + validations: + required: false + - type: checkboxes + id: guidelines + attributes: + label: Guidelines For Reporting Issues + description: "Before submitting this issue, make sure you have done the following:" + options: + - label: I have read . + required: true + - label: I have verified this isn't an issue that's already been reported. + required: true + - label: I have verified this isn't a [discussion](https://github.com/SuperTux/supertux/discussions), or an issue about a crash or a feature request, but rather an actual bug ─ that is, the game did something not intended. + required: true + - label: I have verified this issue is **not** about wrong translations (use Transifex for those), or anything unsupported (e.g. third-party add-ons). + required: true + - label: In this report, I have only included details about **one** (1) bug. + required: true + - label: If I make a mistake while submitting this report, I agree to use the "Edit" feature to correct it, instead of closing this issue and opening a new one. + required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000000..a575efe7731 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: true +contact_links: + - name: Create a Discussion + url: https://github.com/SuperTux/supertux/discussions/new/choose + about: If you're looking for something else, create a Discussion, assuming this hasn't been reported there before. diff --git a/.github/ISSUE_TEMPLATE/crash.yml b/.github/ISSUE_TEMPLATE/crash.yml new file mode 100644 index 00000000000..bbee48d90dd --- /dev/null +++ b/.github/ISSUE_TEMPLATE/crash.yml @@ -0,0 +1,76 @@ +name: Crash Report +description: File a report for a crash in SuperTux. +title: "[Crash]: " +labels: ["type:crash"] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this crash report! + - type: input + id: supertux-version + attributes: + label: SuperTux Version + description: The version of SuperTux, shown at the bottom-left corner on the title screen. + placeholder: ex. v0.6.3-1236-g7451121dd + validations: + required: true + - type: input + id: system-info + attributes: + label: System Information + description: Details about your operating system (such as Linux distribution or Windows version) and CPU architecture (ex. 64-bit or 32-bit). + placeholder: ex. Windows 11 64-bit + validations: + required: true + - type: textarea + id: steps-to-reproduce + attributes: + label: Steps To Reproduce Crash + description: A clear and concise description of how the crash was achieved, since starting up the game. + placeholder: | + Describe the steps, leading to the crash, preferably with a numerated list. + + 1. ... + 2. ... + 3. ... + validations: + required: true + - type: textarea + id: debug-stacktrace + attributes: + label: Debugging Information (Stacktrace) + description: Include a stacktrace, leading to the crash. This can be obtained via a debugging utility. + placeholder: | + Paste the full stacktrace here. + + You can leave this empty, in case a stacktrace can't be obtained (for example, if the game freezes). + render: shell + validations: + required: false + - type: textarea + id: additional-info + attributes: + label: Additional Information + description: Include any additional information, regarding the crash. + placeholder: You can also leave this empty. + validations: + required: false + - type: checkboxes + id: guidelines + attributes: + label: Guidelines For Reporting Issues + description: "Before submitting this issue, make sure you have done the following:" + options: + - label: I have read . + required: true + - label: I have verified this isn't an issue that's already been reported. + required: true + - label: I have verified this isn't a [discussion](https://github.com/SuperTux/supertux/discussions), or an issue about unintended behavior or a feature request, but rather an actual crash ─ that is, the game closed unexpectedly. + required: true + - label: I have verified this issue is **not** about wrong translations (use Transifex for those), or anything unsupported (e.g. third-party add-ons). + required: true + - label: In this report, I have only included details about **one** (1) crash. + required: true + - label: If I make a mistake while submitting this report, I agree to use the "Edit" feature to correct it, instead of closing this issue and opening a new one. + required: true diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml new file mode 100644 index 00000000000..e6f96745e3b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -0,0 +1,52 @@ +name: Feature Requests +description: File a request for a feature you want to see in SuperTux! +title: "[Feature Request]: " +labels: ["type:idea"] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this feature request! + - type: textarea + id: feature-details + attributes: + label: Feature Details + description: How would your feature work? + placeholder: A clear and concise description of the way the feature would function. + validations: + required: true + - type: textarea + id: feature-purpose + attributes: + label: Feature Purpose + description: What purpose would your feature serve, towards improving the SuperTux experience? + placeholder: A list of one or multiple example use-cases or positive outcomes from your feature being in SuperTux. + validations: + required: true + - type: textarea + id: feature-screenshots + attributes: + label: Concept Screenshots + description: Include any concept screenshots of the way your feature would look in-game, to help others grasp your idea better. + placeholder: | + To attach image files, click this area to highlight it, and then drag the files in. + + You can also leave this empty. + validations: + required: false + - type: checkboxes + id: guidelines + attributes: + label: Guidelines For Reporting Issues + description: "Before submitting this issue, make sure you have done the following:" + options: + - label: I have read . + required: true + - label: I have verified this isn't a request that's already been submitted as an issue. + required: true + - label: I have verified this isn't a [discussion](https://github.com/SuperTux/supertux/discussions), or an issue with the game, but rather an actual feature request - a currently non-existent, but desired feature. + required: true + - label: In this request, I have only included details about **one** (1) desired feature. + required: true + - label: If I make a mistake while submitting this request, I agree to use the "Edit" feature to correct it, instead of closing this issue and opening a new one. + required: true diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 65a319ec36f..e9206d81b08 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -37,10 +37,10 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch-depth: 0 - submodules: true + submodules: recursive - name: Clone SDL Android repo run: | @@ -137,13 +137,13 @@ jobs: mv SuperTux*.apk upload/apk/ cd .. - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: "SuperTux-android-aab" path: build.android/upload/aab if-no-files-found: error - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: "SuperTux-android-apk" path: build.android/upload/apk diff --git a/.github/workflows/bsd.yml b/.github/workflows/bsd.yml index 68973894ad2..9aad082567d 100644 --- a/.github/workflows/bsd.yml +++ b/.github/workflows/bsd.yml @@ -32,9 +32,9 @@ jobs: matrix: # TODO: Add the OpenBSD, NetBSD and Solaris VMs whenever possible vm_os: [freebsd] - build_type: [Debug, Release] + build_type: [Debug, RelWithDebInfo] # FreeBSD does not have glbinding - # glbinding: [ON, OFF] + # glbiactions/checkout@v4 runs-on: macos-10.15 steps: @@ -42,7 +42,7 @@ jobs: with: # Fetch the whole tree so git describe works fetch-depth: 0 - submodules: true + submodules: recursive - name: Build in FreeBSD if: ${{ matrix.vm_os == 'freebsd' }} @@ -80,3 +80,4 @@ jobs: make -j3 VERBOSE=1 make install DESTDIR="/tmp/supertux" VERBOSE=1 ./test_supertux2 +actions/checkout@v4 \ No newline at end of file diff --git a/.github/workflows/gnulinux.yml b/.github/workflows/gnulinux.yml index 5611563f005..cd0eb204462 100644 --- a/.github/workflows/gnulinux.yml +++ b/.github/workflows/gnulinux.yml @@ -17,6 +17,7 @@ name: GNU/Linux on: + workflow_dispatch: push: branches: - master @@ -33,14 +34,14 @@ jobs: arch: [32, 64] os: [ubuntu-20.04] compiler: [gcc, clang] - build_type: [Debug, Release] + build_type: [Debug, RelWithDebInfo] glbinding: [ON, OFF] exclude: - arch: 32 glbinding: ON include: - os: ubuntu-20.04 - build_type: Release + build_type: RelWithDebInfo compiler: gcc arch: 64 glbinding: OFF @@ -57,11 +58,11 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: # Fetch the whole tree so git describe works fetch-depth: 0 - submodules: true + submodules: recursive - name: Install 64-bit dependencies if: ${{ matrix.arch == 64 }} @@ -223,35 +224,35 @@ jobs: run: ../.ci_scripts/package.sh - name: Upload AppImage - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: "${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.compiler }}-${{ matrix.build_type }}${{ matrix.glbinding == 'ON' && '-glbinding' || '' }}-appimage" path: build/upload/*.AppImage if-no-files-found: ignore - name: Upload source - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: "source" path: build/upload/*Source.tar.gz if-no-files-found: ignore - name: Upload coverage - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: "coverage" path: build/coverage/* if-no-files-found: ignore - name: Upload documentation - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: "documentation" path: build/docs/doxygen/html/* if-no-files-found: ignore - name: Upload tar archives - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: "${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.compiler }}-${{ matrix.build_type }}${{ matrix.glbinding == 'ON' && '-glbinding' || '' }}-tgz" path: build/upload/*Linux.tar.gz @@ -276,6 +277,7 @@ jobs: env: PREFIX: "${{ github.sha }}/gh-actions/${{ matrix.os }}-${{ matrix.arch }}/${{ github.run_id }}" DOWNLOAD_APIKEY: ${{ secrets.DOWNLOAD_APIKEY }} + BRANCH_NAME: ${{ github.head_ref || github.ref_name }} - name: Prepare Release if: startsWith(github.ref, 'refs/tags/') && matrix.release && github.repository_owner == 'supertux' diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index b0b5fd1875b..0dd010549df 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -17,6 +17,7 @@ name: Code Linting on: + workflow_dispatch: push: branches: - master @@ -32,7 +33,7 @@ jobs: lint_cppcheck: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # The apt version of Cppcheck is outdated and apparently there are no # alternative up-to-date precompiled versions for Ubuntu, @@ -50,6 +51,7 @@ jobs: - name: Lint code with Cppcheck run: | ./danmar-cppcheck-*/cppcheck \ + --check-level=exhaustive \ --quiet --inline-suppr --language=c++ --error-exitcode=10 \ - -j"$(nproc)" --std=c++14 --enable=warning,style \ + -j"$(nproc)" --std=c++17 --enable=warning,style \ --suppress=useStlAlgorithm src/ diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index a16f6868a05..ffcf46e2b6e 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -17,6 +17,7 @@ name: MacOS on: + workflow_dispatch: push: branches: - master @@ -30,33 +31,40 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-11] - build_type: [Debug, Release] + os: [macos-12] + build_type: [Debug, RelWithDebInfo] glbinding: [ON, OFF] include: - - os: macos-11 - build_type: Release + - os: macos-12 + build_type: RelWithDebInfo glbinding: OFF release: ON runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: # Fetch the whole tree so git describe works fetch-depth: 0 - submodules: true + submodules: recursive - name: Install macos dependencies - if: ${{ matrix.os == 'macos-11' }} + if: ${{ matrix.os == 'macos-12' }} run: | + # Use GLM 1.0.0 as later versions don't build with clang + HOMEBREW_NO_AUTO_UPDATE=1 brew install --formula ./mk/brew/glm.rb --build-from-source brew install cmake googletest bash rename libogg libvorbis glew \ openal-soft sdl2 sdl2_image sdl2_ttf freetype harfbuzz \ - fribidi glib gtk-doc glbinding libraqm glm zlib + fribidi glib gtk-doc glbinding@2 libraqm zlib + brew link glbinding@2 install_name_tool -change \ '@rpath/libsharpyuv.0.dylib' \ /usr/local/opt/webp/lib/libsharpyuv.0.dylib \ /usr/local/opt/webp/lib/libwebp.7.dylib + install_name_tool -change \ + '@rpath/libjxl_cms.0.10.dylib' \ + /usr/local/opt/jpeg-xl/lib/libjxl_cms.0.10.dylib \ + /usr/local/opt/jpeg-xl/lib/libjxl.dylib # Something funky happens with freetype if mono is left sudo mv /Library/Frameworks/Mono.framework \ @@ -107,7 +115,7 @@ jobs: working-directory: build run: ../.ci_scripts/package.sh - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: "${{ matrix.os }}-${{ matrix.build_type }}${{ matrix.glbinding == 'ON' && '-glbinding' || '' }}-dmg" path: build/upload/*.dmg @@ -131,14 +139,15 @@ jobs: env: PREFIX: "${{ github.sha }}/gh-actions/${{ matrix.os }}-${{ matrix.arch }}/${{ github.run_id }}" DOWNLOAD_APIKEY: ${{ secrets.DOWNLOAD_APIKEY }} + BRANCH_NAME: ${{ github.head_ref || github.ref_name }} - name: Prepare Release if: startsWith(github.ref, 'refs/tags/') && matrix.release && github.repository_owner == 'supertux' env: OS: ${{ matrix.os }} run: | - if [ "$OS" = "macos-11" ]; then - rename 's/.dmg/-11.dmg/' build/upload/SuperTux-* + if [ "$OS" = "macos-12" ]; then + rename 's/.dmg/-12.dmg/' build/upload/SuperTux-* fi - name: Create Release diff --git a/.github/workflows/scripting.yml b/.github/workflows/scripting.yml index 0162c0b33db..e85cac0bb4c 100644 --- a/.github/workflows/scripting.yml +++ b/.github/workflows/scripting.yml @@ -20,7 +20,8 @@ on: push: branches: [ "master" ] paths: - - src/scripting/*.hpp + - src/** + - tools/scripting_docs_gen/** workflow_dispatch: jobs: @@ -28,12 +29,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout the repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 1 - name: Checkout the wiki repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: SuperTux/wiki path: wiki @@ -56,15 +57,15 @@ jobs: cmake --version mkdir build cd build - cmake .. -DBUILD_SCRIPTING_DOCUMENTATION=ON + cmake .. -DBUILD_DOCUMENTATION_WITH_SCRIPTING=ON make - name: Generate scripting reference working-directory: tools/scripting_docs_gen/build run: | - doxygen docs/scripting/Doxyfile + doxygen docs/Doxyfile rm ../../../wiki/Scripting*.md - ./ScriptingDocsGen --dir docs/scripting/doxygen/xml \ + ./ScriptingDocsGen --dir docs/doxygen/xml \ --home ../../../wiki/templates/ScriptingHome.md \ --page ../../../wiki/templates/ScriptingPage.md \ --output ../../../wiki \ @@ -79,7 +80,17 @@ jobs: fi echo "REFERENCE_UPDATED=$(echo $REF_UPDATED)" >> $GITHUB_ENV + - name: Check for changes + working-directory: wiki + run: | + REF_UPDATED=true + if git diff --exit-code; then + REF_UPDATED=false + fi + echo "REFERENCE_UPDATED=$(echo $REF_UPDATED)" >> $GITHUB_ENV + - name: Install SSH key + if: ${{ env.REFERENCE_UPDATED == 'true' }} uses: shimataro/ssh-key-action@v2 with: key: ${{ secrets.wiki_repo_key }} @@ -91,7 +102,7 @@ jobs: run: | git --version git status - git config --global user.email "supertux-bot" + git config --global user.email "SuperTux-bot@users.noreply.github.com" git config --global user.name "SuperTux Bot" git add . git commit -m "Update scripting reference (SuperTux/supertux@${{ github.sha }})" diff --git a/.github/workflows/translations.yml b/.github/workflows/translations.yml new file mode 100644 index 00000000000..f1a6fad6422 --- /dev/null +++ b/.github/workflows/translations.yml @@ -0,0 +1,56 @@ +# SuperTux +# Copyright (C) 2024 Tobias Markus +# +# 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, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +name: translations +on: + workflow_dispatch: + schedule: + - cron: '0 0 * * *' + +jobs: + update-all-translations: + runs-on: ubuntu-20.04 + steps: + - name: Checkout SuperTux repository + uses: actions/checkout@v4 + with: + repository: 'SuperTux/supertux' + fetch-depth: 1 + + - name: Update translations + env: + TX_TOKEN: ${{ secrets.TRANSIFEX_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + # Installs transifex client: + curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash + mv tx /usr/local/bin/tx + + # Pull repository: + git fetch origin + git checkout master + git rebase origin/master + + # Pull translations: + tx pull --use-git-timestamps -a -f + + # Commit + git status + git config --global user.email "SuperTux-bot@users.noreply.github.com" + git config --global user.name "SuperTux Bot" + git commit -am "Update translations" || true + git push https://git:$GITHUB_TOKEN@github.com/SuperTux/supertux.git master diff --git a/.github/workflows/ubuntu-touch.yml b/.github/workflows/ubuntu-touch.yml index 01a43d11c1d..abb445f3990 100644 --- a/.github/workflows/ubuntu-touch.yml +++ b/.github/workflows/ubuntu-touch.yml @@ -17,6 +17,7 @@ name: Ubuntu Touch on: + workflow_dispatch: push: branches: - master @@ -29,7 +30,7 @@ jobs: strategy: fail-fast: false matrix: - build_type: [Debug, Release] + build_type: [Debug, RelWithDebInfo] arch: [amd64, arm64, armhf] # glbinding is missing as it isn't available on Ubuntu 16.04 opengl: [glew, sdl] @@ -40,11 +41,11 @@ jobs: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: # Fetch the whole tree so git describe works fetch-depth: 0 - submodules: true + submodules: recursive - name: Install clickable run: | @@ -86,7 +87,7 @@ jobs: run: | ~/.local/bin/clickable build --verbose ${BUILD_TYPE} --arch ${ARCH} - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: "clickable-${{ matrix.arch }}-${{ matrix.build_type }}-${{ matrix.opengl }}-click" path: build.clickable/*.click diff --git a/.github/workflows/wasm.yml b/.github/workflows/wasm.yml index 9f320044fa5..bbb29c0dc79 100644 --- a/.github/workflows/wasm.yml +++ b/.github/workflows/wasm.yml @@ -17,6 +17,7 @@ name: WebAssembly on: + workflow_dispatch: push: branches: - master @@ -29,15 +30,15 @@ jobs: strategy: fail-fast: false matrix: - build_type: ["Release", "Debug"] + build_type: ["RelWithDebInfo", "Debug"] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: # Fetch the whole tree so git describe works fetch-depth: 0 - submodules: true + submodules: recursive - name: Install emscripten tools run: | @@ -83,7 +84,7 @@ jobs: mkdir upload/ mv supertux2* upload/ - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: "wasm32-emscripten-${{ matrix.build_type }}-html" path: build/upload/* @@ -97,5 +98,4 @@ jobs: cd build/upload/ mv supertux2.html index.html zip supertux2.zip * - # TODO: Decomment (or replace URL with a different host) - # curl -F "archive=@$(pwd)/supertux2.zip" -F "message=$(git log --format=%B -n 1 | head -1)" $UPLOAD_URL + curl -F "archive=@$(pwd)/supertux2.zip" -F "message=$(git log --format=%B -n 1 | head -1)" $UPLOAD_URL diff --git a/.github/workflows/wiki.yml b/.github/workflows/wiki.yml index 00abae87e1d..420163fed7f 100644 --- a/.github/workflows/wiki.yml +++ b/.github/workflows/wiki.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Checkout the .wiki repo - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: repository: 'SuperTux/supertux.wiki' fetch-depth: 100 diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index bc2ec5779c6..73ed5ab1653 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -17,6 +17,7 @@ name: Windows on: + workflow_dispatch: push: branches: - master @@ -31,25 +32,25 @@ jobs: fail-fast: false matrix: arch: [x64, x86] - build_type: [Debug, Release] + build_type: [Debug, RelWithDebInfo] glbinding: [OFF] # [ON, OFF] # FIXME: Fix Windows glbinding builds include: - - build_type: Release + - build_type: RelWithDebInfo arch: x64 glbinding: OFF release: ON - - build_type: Release + - build_type: RelWithDebInfo arch: x86 glbinding: OFF release: ON runs-on: windows-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: # Fetch the whole tree so git describe works fetch-depth: 0 - submodules: true + submodules: recursive - name: Use cached dependencies id: cache-dependencies @@ -103,21 +104,56 @@ jobs: run: | "./$Env:BUILD_TYPE/run_tests.exe" - - name: Package + - name: Package MSI Installer + shell: pwsh working-directory: build env: BUILD_TYPE: ${{ matrix.build_type }} run: | cpack -C $Env:BUILD_TYPE - mkdir upload - mv *.msi upload/ + if ($LASTEXITCODE -ne 0) + { + $code = $LASTEXITCODE + type ./_CPack_Packages/win64/WIX/wix.log + exit $code + } + else + { + mkdir upload + mv *.msi upload/ + } - - uses: actions/upload-artifact@v2 + - name: Upload MSI Installer + uses: actions/upload-artifact@v4 with: name: "windows-${{ matrix.arch }}-${{ matrix.build_type }}${{ matrix.glbinding == 'ON' && '-glbinding' || '' }}-installer" path: build/upload/*.msi if-no-files-found: ignore + - name: Package Portable Archive + working-directory: build + env: + BUILD_TYPE: ${{ matrix.build_type }} + run: | + mkdir -Force SuperTux-${{ github.sha }}-portable + cmake --install . --config $Env:BUILD_TYPE --prefix .\SuperTux-${{ github.sha }}-portable + + # Because github puts assets in zips, if you upload a zip, + # it will upload another zip. I have disabled this code because + # of that, but in case you wanted to know how to generate a portable release, + # here it is. + <# + cpack -C $Env:BUILD_TYPE -G ZIP + mv *.zip SuperTux-${{ github.sha }}-portable/ + #> + + - name: Upload Portable Package + uses: actions/upload-artifact@v4 + with: + name: "windows-${{ matrix.arch }}-${{ matrix.build_type }}${{ matrix.glbinding == 'ON' && '-glbinding' || '' }}-portable" + path: build/SuperTux-${{ github.sha }}-portable + if-no-files-found: ignore + - uses: anshulrgoyal/upload-s3-action@master if: matrix.release && env.CI_KEY != null env: @@ -137,6 +173,7 @@ jobs: env: PREFIX: "${{ github.sha }}/gh-actions/windows-${{ matrix.arch }}/${{ github.run_id }}" DOWNLOAD_APIKEY: ${{ secrets.DOWNLOAD_APIKEY }} + BRANCH_NAME: ${{ github.head_ref || github.ref_name }} IS_WINDOWS: true - name: Create Release @@ -145,5 +182,5 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - files: 'build/upload/SuperTux-*' + files: 'build/upload/SuperTux-*.msi' draft: true diff --git a/.gitmodules b/.gitmodules index dadb12f2a27..eef1724a1e4 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,27 +1,24 @@ [submodule "external/tinygettext"] path = external/tinygettext url = https://github.com/SuperTux/tinygettext.git -[submodule "external/squirrel"] - path = external/squirrel - url = https://github.com/albertodemichelis/squirrel.git [submodule "external/sexp-cpp"] path = external/sexp-cpp url = https://github.com/SuperTux/sexp-cpp.git [submodule "external/physfs"] path = external/physfs - url = https://github.com/SuperTux/physfs.git + url = https://github.com/icculus/physfs.git [submodule "external/SDL_ttf"] path = external/SDL_ttf url = https://github.com/SuperTux/SDL_ttf [submodule "discord-sdk"] path = external/discord-sdk - url = https://github.com/discord/discord-rpc + url = https://github.com/SuperTux/discord-rpc [submodule "external/fmt"] path = external/fmt url = https://github.com/fmtlib/fmt.git -[submodule "tools/miniswig"] - path = tools/miniswig - url = https://github.com/WindstilleTeam/miniswig [submodule "external/glm"] path = external/glm url = https://github.com/g-truc/glm.git +[submodule "external/simplesquirrel"] + path = external/simplesquirrel + url = https://github.com/SuperTux/simplesquirrel diff --git a/CMakeLists.txt b/CMakeLists.txt index 5ee10737af9..8133c22ac5b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -105,7 +105,7 @@ if(EMSCRIPTEN) set(IS_EMSCRIPTEN_BUILD ON) set(EM_USE_FLAGS "-sDISABLE_EXCEPTION_CATCHING=0") - set(EM_LINK_FLAGS " -sTOTAL_MEMORY=67108864 -sALLOW_MEMORY_GROWTH=1 -sERROR_ON_UNDEFINED_SYMBOLS=0 --preload-file ${BUILD_CONFIG_DATA_DIR} --use-preload-plugins -lidbfs.js") + set(EM_LINK_FLAGS " -sINITIAL_MEMORY=134217728 -sALLOW_MEMORY_GROWTH=1 -sMAXIMUM_MEMORY=536870912 -sERROR_ON_UNDEFINED_SYMBOLS=0 --preload-file ${BUILD_CONFIG_DATA_DIR} --use-preload-plugins -lidbfs.js") if(CMAKE_BUILD_TYPE MATCHES Debug) set(EM_USE_FLAGS "${EM_USE_FLAGS} -fsanitize=undefined") set(EM_LINK_FLAGS "${EM_LINK_FLAGS} -fsanitize=undefined -sSAFE_HEAP=1 -sASSERTIONS=1 -sDEMANGLE_SUPPORT=1") @@ -140,6 +140,13 @@ else() option(HIDE_NONMOBILE_OPTIONS "Hide options that are impractical on mobile devices (e. g. changing screen resolution)" OFF) endif() +# Configure main menu logo +if(("${SUPERTUX_VERSION_STRING}" MATCHES "^v[0-9]+\\.[0-9]+\\.[0-9]+$") OR IS_SUPERTUX_RELEASE OR STEAM_BUILD) + set(LOGO_FILE "logo.png") +else() + set(LOGO_FILE "logo_dev.png") +endif() + if(WIN32) include(SuperTux/Win32) endif() @@ -156,7 +163,6 @@ if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") endif() if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") - add_definitions(-DMACOSX) set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -L/usr/local/lib") endif() @@ -168,7 +174,7 @@ include(SuperTux/ProvideOpenAL) include(SuperTux/ProvideOggVorbis) include(SuperTux/ProvidePhysfs) include(SuperTux/ProvideCurl) -include(SuperTux/ProvideSquirrel) +include(SuperTux/ProvideSimpleSquirrel) include(SuperTux/ProvideTinygettext) include(SuperTux/ProvideSDL2_ttf) include(SuperTux/ProvideDiscord) @@ -181,7 +187,6 @@ include(SuperTux/ProvideOpenGL) include(SuperTux/BuildVersion) include(SuperTux/BuildDocumentation) include(SuperTux/BuildMessagePot) -include(SuperTux/BuildMiniswigWrapper) ## Build list of sources for supertux binary file(GLOB SUPERTUX_SOURCES_C RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} external/obstack/*.c external/findlocale/findlocale.c) @@ -199,10 +204,6 @@ list(SORT SUPERTUX_SOURCES_C) list(SORT SUPERTUX_SOURCES_CXX) list(SORT SUPERTUX_RESOURCES) -if(NOT EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/src/scripting/wrapper.cpp) - set(SUPERTUX_SOURCES_CXX ${SUPERTUX_SOURCES_CXX} ${CMAKE_CURRENT_SOURCE_DIR}/src/scripting/wrapper.cpp) -endif() - ## On Windows, add an icon if(WIN32) if(MINGW) @@ -241,12 +242,14 @@ if(EMSCRIPTEN) endif() if(WIN32 AND NOT VCPKG_BUILD) +if(NOT MINGW) ## Copy dlls on windows add_custom_command(TARGET supertux2_lib POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_directory "${DEPENDENCY_FOLDER}/dll" $) endif() +endif() ## Some additional include paths target_include_directories(supertux2_lib SYSTEM PUBLIC @@ -260,12 +263,8 @@ if(CMAKE_SYSTEM_PROCESSOR MATCHES "^ppc.*") endif() ## Link supertux binary with squirrel and other libraries -if(NOT EMSCRIPTEN) - target_link_libraries(supertux2_lib PUBLIC LibSDL2 LibSDL2_image) -endif() -target_link_libraries(supertux2_lib PUBLIC LibSquirrel) -target_link_libraries(supertux2_lib PUBLIC LibSqstdlib) +target_link_libraries(supertux2_lib PUBLIC LibSimpleSquirrel) target_link_libraries(supertux2_lib PUBLIC LibTinygettext) target_link_libraries(supertux2_lib PUBLIC LibSexp) target_link_libraries(supertux2_lib PUBLIC LibSavePNG) @@ -274,9 +273,12 @@ target_link_libraries(supertux2_lib PUBLIC LibOpenAL) target_link_libraries(supertux2_lib PUBLIC LibGlm) target_link_libraries(supertux2_lib PUBLIC LibFmt) target_link_libraries(supertux2_lib PUBLIC LibPhysfs) + if(NOT EMSCRIPTEN) target_link_libraries(supertux2_lib PUBLIC LibSDL2_ttf) + target_link_libraries(supertux2_lib PUBLIC LibSDL2 LibSDL2_image) target_link_libraries(supertux2_lib PUBLIC LibOggVorbis) + target_link_libraries(supertux2_lib PUBLIC LibCurl) endif() if(HAVE_OPENGL) @@ -287,24 +289,12 @@ if(ENABLE_DISCORD) target_link_libraries(supertux2_lib PUBLIC LibDiscord) endif() -if(NOT EMSCRIPTEN) - target_link_libraries(supertux2_lib PUBLIC LibCurl) -endif() - ## Install stuff include(SuperTux/BuildInstall) ## Create config.h now that INSTALL_SUBDIR_* have been set. configure_file(config.h.cmake ${CMAKE_BINARY_DIR}/config.h ) -## Configure main menu logo -if(("${SUPERTUX_VERSION_STRING}" MATCHES "^v[0-9]+\\.[0-9]+\\.[0-9]+$") OR IS_SUPERTUX_RELEASE OR STEAM_BUILD) - set(LOGO_FILE "logo_final.sprite") -else() - set(LOGO_FILE "logo.sprite") -endif() -configure_file(data/levels/misc/menu.stl.in ${CMAKE_BINARY_DIR}/data/levels/misc/menu.stl ) - ## Build tests include(SuperTux/BuildTests) diff --git a/CODINGSTYLE.md b/CODINGSTYLE.md index 868ae6000f3..28dc1cd5460 100644 --- a/CODINGSTYLE.md +++ b/CODINGSTYLE.md @@ -251,7 +251,7 @@ But don't use a space after a function name: Write simple getters/setters inside a header file on a single line: ```c++ -Vector get_pos() const { retun m_pos; } +Vector get_pos() const { return m_pos; } ``` Don't include more complex functions inside a header file, unless it's diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index feed4548a4e..9fa0171f334 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,7 +6,7 @@ however English is generally preferred so everyone can understand what's happening. - Please check for duplicate issues on GitHub, as they're wasting the developers' time. -- Also try to check if your issue has been resolved in the development version. +- Check if your issue has been resolved in the latest development version. - Separate issues and feature requests. Don't put all in the same issue. - If you made a mistake in your bug report, please use GitHub's edit feature to correct the wrong detail, instead of closing the old issue and opening a @@ -23,18 +23,21 @@ Please include the following details in your issue report so that we can investi and version details. - If possible, provide steps to reproduce your issue. - If available, it's a great help for the developers to include a backtrace from - gdb or a core dump. If you're on GNU/Linux and your distro is using systemd, it's + `gdb` or a core dump. If you're on GNU/Linux and your distro is using systemd, it's highly likely that a core dump is available using `coredumpctl(1)`. ### Add-on related issues +Issues regarding add-ons found in the official SuperTux Add-on repository +should be filed at [SuperTux/addons](https://github.com/SuperTux/addons/issues). + No support is provided for third-party add-ons (that doesn't include official -add-ons or language packs). However, a pull request against the SuperTux/addons -repository containing a fix is always welcome. +add-ons or language packs). However, a pull request against the [SuperTux/addons](https://github.com/SuperTux/addons) +repository, containing a fix, is always welcome! ### Translation issues -Please use Transifex to fix or report translation related issues. +Please use [Transifex](https://explore.transifex.com/arctic-games/supertux/) to fix or report translation related issues. ## Pull requests diff --git a/README.md b/README.md index f4ce0be9a9a..4897a9f5a53 100644 --- a/README.md +++ b/README.md @@ -112,5 +112,5 @@ As of now, with the release of SuperTux 0.6.3 (December 2021), the Forest World finished, since the ghost forest section has been included. However, some levels, especially the Ghostree Level, are considered to be placeholders, because for the next version (0.7.0) a great overhaul is planned with new features like reworked boss fights, graphics, and worlds. -If you have some Constructive Feedback, Contributions or ideas to share, don't hestitate +If you have some Constructive Feedback, Contributions or ideas to share, don't hesitate to contact us with one of the possibilities given above. diff --git a/data/.gitignore b/data/.gitignore deleted file mode 100644 index 6c0eb24bb32..00000000000 --- a/data/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -# Files generated by CMake -levels/misc/menu.stl diff --git a/data/AUTHORS b/data/AUTHORS index d5344db9716..8dd949edd68 100644 --- a/data/AUTHORS +++ b/data/AUTHORS @@ -11,6 +11,7 @@ Most images were created either by grumbel or gwater. Check the log for details. * images/objects/explosion/explosion*.png - Bleed - http://remusprites.carbonmade.com/ licensed under CC-BY 3.0, see https://opengameart.org/content/simple-explosion-bleeds-game-art * images/engine/editor/sparkle-file.png - Semphris, licensed CC-BY 4.0 - CONTAINS WORK BY FortAwesome/FontAwesome (the file logo), licensed under CC-BY 4.0 * images/worldmap/shared/rocky_paths[-editor].png - Semphris, released under CC0 +* images/objects/conveyor_belt/* - submitted by RodirodDude CC BY-NC 4.0 == Levels == @@ -71,6 +72,23 @@ All files in data/music created by wansti and licensed under GPLv2+CC-by-sa, unl * wisphunt.ogg * worldmap_old.ogg - By ZhayTee * voc-***.ogg +* night.ogg - By SnugglyBun, licensed under CC-BY-SA 4.0 +* worldmap_ice.ogg - By SnugglyBun, licensed under CC-BY-SA 4.0 +* sunset.ogg - By SnugglyBun, licensed under CC-BY-SA 4.0 +* skylevel.ogg - By SnugglyBun, licensed under CC-BY-SA 4.0 +* midday.ogg - By SnugglyBun, licensed under CC-BY-SA 4.0 +* midday_alt.ogg - By SnugglyBun, licensed under CC-BY-SA 4.0 +* cavetheme.ogg - By SnugglyBun, based on the original cave theme by Wansti. licensed under CC-BY-SA 4.0 +* cavetheme_alt.ogg - By SnugglyBun, cover of the original cave theme by Wansti. licensed under CC-BY-SA 4.0 +* crystalmine_intro.ogg - By SnugglyBun, licensed under CC-BY-SA 4.0 +* crystalmine_main.ogg - By SnugglyBun, licensed under CC-BY-SA 4.0 +* crystalmine_underwater.ogg - By SnugglyBun, licensed under CC-BY-SA 4.0 +* glacier.ogg - By SnugglyBun, licensed under CC-BY-SA 4.0 +* snowfort.ogg - By SnugglyBun, licensed under CC-BY-SA 4.0 +* icecastle.ogg - By SnugglyBun, based on the original fortress theme by Wansti. licensed under CC-BY-SA 4.0 +* yetiboss.ogg - By SnugglyBun, cover of the original boss battle theme by Wansti. licensed under CC-BY-SA 4.0 +* forest_midday.ogg - By SnugglyBun, based on the original forest theme by Wansti. licensed under CC-BY-SA 4.0 +* forest_midday_alt.ogg - By SnugglyBun, based on forest.ogg and forest3.ogg by Wansti. licensed under CC-BY-SA 4.0 == Scripts == @@ -112,7 +130,7 @@ These are just more code. * invincible_start.ogg - self-made sound by Wansti * jump.wav - self-made by wansti * kick.wav - replaced with a self-made sound by Some_Person -* kill.wav - copy of hurt.wav +* kill.wav - submitted by RodirodDude CC BY-NC 4.0 * lava.wav - submitted as GPL by Bastian Zapf * lifeup.wav - added Fri May 14 05:24:24 2004 UTC by sik0fewl. Message was "added sounds from Nathan McCoy" -sommer 22:43, 4 Jan 2007 (CET) * lightning.wav - sampled by Some_Person from http://www.pdsounds.org/sounds/storm_thunderbolts diff --git a/data/credits.stxt b/data/credits.stxt index 5d64d1b9a33..209f650f45d 100644 --- a/data/credits.stxt +++ b/data/credits.stxt @@ -27,7 +27,7 @@ (blank) (person (name "Tobias \"Tobbi\" Markus") - (info (_ "Programming, project lead ad interim")) + (info (_ "Maintainer, Programming")) ) (blank) (person @@ -80,11 +80,6 @@ (info (_ "Level Design")) ) (blank) - (person - (name "Alasdair \"Servalot\"") - (info (_ "Level Design")) - ) - (blank) (person (name "Vankata453") (info (_ "Programming")) @@ -416,6 +411,10 @@ (type "normal") (string "Q.K.") ) + (text + (type "normal") + (string "RodirodDude") + ) (text (type "normal") (string "Some_Person") diff --git a/data/fonts/SOURCECODEPRO_LICENSE.md b/data/fonts/SOURCECODEPRO_LICENSE.md new file mode 100644 index 00000000000..4cb7aaecdc0 --- /dev/null +++ b/data/fonts/SOURCECODEPRO_LICENSE.md @@ -0,0 +1,93 @@ +© 2023 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe in the United States and/or other countries. + +This Font Software is licensed under the SIL Open Font License, Version 1.1. + +This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/data/fonts/SourceCodePro-Medium.ttf b/data/fonts/SourceCodePro-Medium.ttf new file mode 100644 index 00000000000..af3f57c515b Binary files /dev/null and b/data/fonts/SourceCodePro-Medium.ttf differ diff --git a/data/images/autotiles.satc b/data/images/autotiles.satc index a5a2d85b2b1..44b7eec1162 100644 --- a/data/images/autotiles.satc +++ b/data/images/autotiles.satc @@ -1,4822 +1,6110 @@ -;; -;; autotiles.satc -;; Supertux AutoTiles Configuration -;; -;; Format : -;; root : (supertux-autotiles ... ) -;; | -;; +--------------------------+ -;; | -;; V -;; Contains one or more (autotileset ... ) -;; | -;; +---------------------------------+ -;; | -;; V -;; Contains : -;; The autotileset name (unused as of writing these lines) : (name "snow") -;; The name of the autotileset is "snow". -;; The default tile ID (used if no tile matches any mask) : (default 11) -;; If a very special tile is needed (and it doesn't exist), it will use this tile (it's a center tile) by default. -;; Many (autotile ... ) -;; | -;; +----------------+ -;; | -;; V -;; Contains : -;; The ID of the tile : (id 11) -;; Whether or not the tile is solid (see the "mask" part below) : (solid #t) -;; One or more (mask "000111**") - see below alt-id for info -;; One or more (alt-id ... ) -;; | -;; +---------------------+ -;; | -;; V -;; Contains : -;; The alternative id : (id 123456) -;; The weight : (weight 0.2) -;; The weight is the odds of this tile to happen. 0 is never, 1 is always. -;; The autotile's default ID's odds of occuring are (1 - sum of all weights). -;; Ideally, the sum of all weights for an autotile should be below 1. If it -;; is 1, the the regular ID for that autotile will never occur. If it is -;; greater than 1, then certains alt ID's might never occur either. -;; -;; ===== MASK INFO ===== -;; -;; The mask is 8 characters and represent which tiles around it is solid. -;; The characters represent, in order : -;; 1st : The tile on the top-left -;; 2nd : The tile on top -;; 3rd : The tile on the top-right -;; 4th : The tile on the left -;; /* There is no number for the center (the tile itself); the "solid" property is there for that */ -;; 5th : The tile on the right -;; 6th : The tile on the bottom-left -;; 7th : The tile below -;; 8th : The tile on the bottom-right -;; -;; Each character can either be : -;; '0', if the tile at that location must not be solid; -;; '1', if the tile at that location must be solid; -;; '*', if the tile at that location may or may not be solid. -;; -;; Example : -;; "11100*0*" -;; -;; If needed, multiple masks can be used. -;; -;; Example : The tile 3055 (downwards column with "ridges" going both sides) has those two masks : -;; "11100*0*" -;; "11100010" -;; ...because "11100010" is valid for that tile, "11100101" is too, but "11100111" isn't. (try it!) -;; -;; -;; ~ A. Semphris -;; (Contributor, 2020) -;; -;; -;; NOTE : A single id MUST NOT OCCUR MORE THAN ONE AUTOTILE IN THE ENTIRE FILE. -;; Otherwise, the behavior is UNDEFINED. - -(supertux-autotiles - (autotileset - (name "snow") - (default 11) - (autotile - (id 7) - (solid #f) - (mask "*0***011") - ) - (autotile - (id 8) - (solid #f) - (mask "*0***111") - ) - (autotile - (id 9) - (solid #f) - (mask "*0***110") - ) - (autotile - (id 202) - (solid #f) - (mask "*0***010") - ) - (autotile - (id 13) - (solid #t) - (mask "*0*010**") - (mask "*0*0110*") - ) - (autotile - (id 14) - (alt-id - (id 3988) - (weight 0.02) - ) - (alt-id - (id 3989) - (weight 0.05) - ) - (alt-id - (id 3990) - (weight 0.1) - ) - (solid #t) - (mask "*0*11***") - ) - (autotile - (id 15) - (solid #t) - (mask "*0*10**0") - (mask "*0*10*01") - ) - (autotile - (id 204) - (solid #t) - (mask "*0*00111") - ) - (autotile - (id 10) - (solid #t) - (mask "011010**") - (mask "0110110*") - ) - (autotile - (id 11) - (alt-id - (id 19) - (weight 0.002) - ) - (alt-id - (id 26) - (weight 0.002) - ) - (alt-id - (id 2134) - (weight 0.2) - ) - (alt-id - (id 2135) - (weight 0.2) - ) - (solid #t) - (mask "11111***") - ) - (autotile - (id 12) - (solid #t) - (mask "11010**0") - (mask "11010*01") - ) - (autotile - (id 206) - (solid #t) - (mask "01000*0*") - (mask "01000010") - ) - (autotile - (id 16) - (solid #f) - (mask "011***0*") - ) - (autotile - (id 17) - (alt-id - (id 3991) - (weight 0.2) - ) - (solid #f) - (mask "111***0*") - ) - (autotile - (id 18) - (solid #f) - (mask "110***0*") - ) - (autotile - (id 205) - (solid #t) - (mask "01000111") - ) - (autotile - (id 30) - (solid #t) - (mask "11110**0") - (mask "11110*01") - ) - (autotile - (id 31) - (solid #t) - (mask "111010**") - (mask "1110110*") - ) - (autotile - (id 114) - (solid #t) - (mask "*0*0111*") - ) - (autotile - (id 113) - (solid #t) - (mask "*0*10*11") - ) - (autotile - (id 21) - (solid #t) - (mask "11010*11") - ) - (autotile - (id 22) - (solid #t) - (mask "0110111*") - ) - (autotile - (id 19) - (solid #t) - ) - (autotile - (id 203) - (solid #t) - (mask "*0*00*0*") - (mask "*0*00010") - ) - (autotile - (id 20) - (solid #t) - (mask "11011***") - ) - (autotile - (id 23) - (solid #t) - (mask "01111***") - ) - (autotile - (id 207) - (solid #t) - (mask "01110**0") - (mask "01110*01") - ) - (autotile - (id 208) - (solid #t) - (mask "110010**") - (mask "1100110*") - ) - (autotile - (id 3044) - (solid #t) - (mask "01000110") - ) - (autotile - (id 3045) - (solid #t) - (mask "01100110") - ) - (autotile - (id 3046) - (solid #t) - (mask "0100111*") - ) - (autotile - (id 3047) - (solid #t) - (mask "01010*11") - ) - (autotile - (id 3048) - (solid #t) - (mask "01010*0*") - (mask "01010*10") - ) - (autotile - (id 3049) - (solid #t) - (mask "11000011") - ) - (autotile - (id 3050) - (solid #t) - (mask "*0*00011") - ) - (autotile - (id 3051) - (solid #t) - (mask "*0*00110") - ) - (autotile - (id 3052) - (solid #t) - (mask "01000011") - ) - (autotile - (id 3053) - (solid #t) - (mask "01100*0*") - (mask "01100010") - ) - ;; 3054 is the same as 3044 - (autotile - (id 3055) - (solid #t) - (mask "11100*0*") - (mask "11100010") - ) - (autotile - (id 3056) - (solid #t) - (mask "010010**") - (mask "0100110*") - ) - (autotile - (id 3057) - (solid #t) - (mask "11000*0*") - (mask "11000010") - ) - ;; 3058 is the same as 3052 - (autotile - (id 3059) - (solid #f) - (mask "010***0*") - ) - (autotile - (id 4009) - (solid #t) - (mask "01100011") - ) - (autotile - (id 4010) - (solid #t) - (mask "11000110") - ) - (autotile - (id 4011) - (solid #t) - (mask "11110*11") - ) - (autotile - (id 4012) - (solid #t) - (mask "1110111*") - ) - (autotile - (id 4013) - (solid #t) - (mask "11100011") - ) - (autotile - (id 4014) - (solid #t) - (mask "11100110") - ) - (autotile - (id 4015) - (solid #t) - (mask "01110*11") - ) - (autotile - (id 4016) - (solid #t) - (mask "1100111*") - ) - (autotile - (id 4017) - (solid #t) - (mask "01100111") - ) - (autotile - (id 4018) - (solid #t) - (mask "11000111") - ) - (autotile - (id 4019) - (solid #t) - (mask "11100111") - ) - (autotile - (id 4020) - (solid #f) - (mask "110**011") - ) - (autotile - (id 4021) - (solid #f) - (mask "011**011") - ) - (autotile - (id 4022) - (solid #f) - (mask "011**111") - ) - (autotile - (id 4023) - (solid #f) - (mask "011**110") - ) - (autotile - (id 4024) - (solid #f) - (mask "110**111") - ) - (autotile - (id 4025) - (solid #f) - (mask "111**011") - ) - (autotile - (id 4026) - (solid #f) - (mask "111**111") - ) - (autotile - (id 4027) - (solid #f) - (mask "111**110") - ) - (autotile - (id 4028) - (solid #f) - (mask "110**110") - ) - (autotile - (id 4029) - (solid #f) - (mask "010**011") - ) - (autotile - (id 4030) - (solid #f) - (mask "010**111") - ) - (autotile - (id 4031) - (solid #f) - (mask "010**110") - ) - (autotile - (id 4032) - (solid #f) - (mask "010**010") - ) - (autotile - (id 4033) - (solid #f) - (mask "011**010") - ) - (autotile - (id 4034) - (solid #f) - (mask "111**010") - ) - (autotile - (id 4035) - (solid #f) - (mask "110**010") - ) - (autotile - (id 214) - (solid #t) - (mask "01011***") - ) - ) - (autotileset - (name "block_horiz") - (default 47) - (autotile - (id 27) - (solid #t) - (mask "***01***") - ) - (autotile - (id 28) - (solid #t) - (mask "***11***") - ) - (autotile - (id 29) - (solid #t) - (mask "***10***") - ) - (autotile - (id 47) - (solid #t) - (mask "***00***") - ) - ) - (autotileset - (name "block_vert") - (default 47) - (autotile - (id 211) - (solid #t) - (mask "*0****1*") - ) - (autotile - (id 212) - (solid #t) - (mask "*1****1*") - ) - (autotile - (id 213) - (solid #t) - (mask "*1****0*") - ) - (autotile - (id 47) - (solid #t) - (mask "*0****0*") - ) - ) - (autotileset-corner - (name "snow_bkg") - (default 2179) - (autotile - (id 2179) - (alt-id - (id 2180) - (weight 0.1) - ) - (alt-id - (id 2181) - (weight 0.1) - ) - (alt-id - (id 2188) - (weight 0.1) - ) - (alt-id - (id 2189) - (weight 0.1) - ) - (alt-id - (id 2187) - (weight 0.1) - ) - (alt-id - (id 2195) - (weight 0.1) - ) - (alt-id - (id 2196) - (weight 0.1) - ) - (alt-id - (id 2197) - (weight 0.1) - ) - (mask "1111") - ) - (autotile - (id 2185) - (mask "0001") - ) - (autotile - (id 2186) - (mask "0010") - ) - (autotile - (id 2193) - (mask "0100") - ) - (autotile - (id 2194) - (mask "1000") - ) - (autotile - (id 2182) - (mask "1110") - ) - (autotile - (id 2183) - (mask "1100") - ) - (autotile - (id 2184) - (mask "1101") - ) - (autotile - (id 2190) - (mask "1010") - ) - (autotile - (id 2192) - (mask "0101") - ) - (autotile - (id 2198) - (mask "1011") - ) - (autotile - (id 2199) - (mask "0011") - ) - (autotile - (id 2200) - (mask "0111") - ) - (autotile - (id 2201) - (mask "1001") - ) - (autotile - (id 2202) - (mask "0110") - ) - ) - (autotileset - (name "snow_underground") - (default 2391) - (autotile - (id 2384) - (solid #f) - (mask "*****011") - ) - (autotile - (id 2385) - (solid #f) - (mask "*****111") - ) - (autotile - (id 2386) - (solid #f) - (mask "*****110") - ) - (autotile - (id 2949) - (solid #f) - (mask "*****010") - ) - (autotile - (id 2387) - (solid #t) - (mask "*0*01011") - ) - (autotile - (id 2388) - (solid #t) - (mask "*0*11111") - ) - (autotile - (id 2389) - (solid #t) - (mask "*0*10110") - ) - (autotile - (id 2950) - (solid #t) - (mask "*0*00010") - ) - (autotile - (id 2390) - (solid #t) - (mask "*1101011") - ) - (autotile - (id 2391) - (alt-id - (id 2396) - (weight 0.1) - ) - (alt-id - (id 2397) - (weight 0.1) - ) - (alt-id - (id 2398) - (weight 0.1) - ) - (alt-id - (id 2399) - (weight 0.1) - ) - (solid #t) - (mask "11111111") - ) - (autotile - (id 2392) - (solid #t) - (mask "11*10110") - ) - (autotile - (id 2951) - (solid #t) - (mask "*1*00010") - ) - (autotile - (id 2393) - (solid #t) - (mask "*1101*0*") - ) - (autotile - (id 2394) - (solid #t) - (mask "11111*0*") - ) - (autotile - (id 2395) - (solid #t) - (mask "11*10*0*") - ) - (autotile - (id 2952) - (solid #t) - (mask "*1*00*0*") - ) - (autotile - (id 2953) - (solid #t) - (mask "*0*01*0*") - ) - (autotile - (id 2954) - (solid #t) - (mask "*0*11*0*") - ) - (autotile - (id 2955) - (solid #t) - (mask "*0*10*0*") - ) - (autotile - (id 2956) - (solid #t) - (mask "*0*00*0*") - ) - (autotile - (id 2957) - (solid #t) - (mask "11111110") - ) - (autotile - (id 2962) - (solid #t) - (mask "11111011") - ) - (autotile - (id 2958) - (solid #t) - (mask "11*10111") - ) - (autotile - (id 2961) - (solid #t) - (mask "*1101111") - ) - (autotile - (id 2959) - (solid #t) - (mask "11011111") - ) - (autotile - (id 2960) - (solid #t) - (mask "01111111") - ) - (autotile - (id 2997) - (solid #t) - (mask "*0*10111") - ) - (autotile - (id 2998) - (solid #t) - (mask "*0*01111") - ) - (autotile - (id 4037) - (solid #t) - (mask "*0*10011") - ) - (autotile - (id 4038) - (solid #t) - (mask "*0*01110") - ) - (autotile - (id 4039) - (solid #t) - (mask "01*10111") - ) - (autotile - (id 4040) - (solid #t) - (mask "*1001111") - ) - (autotile - (id 4041) - (solid #t) - (mask "*0*11110") - ) - (autotile - (id 4042) - (solid #t) - (mask "*0*11011") - ) - (autotile - (id 4043) - (solid #t) - (mask "*0*00011") - ) - (autotile - (id 4044) - (solid #t) - (mask "*0*00110") - ) - (autotile - (id 4045) - (solid #t) - (mask "*0*01010") - ) - (autotile - (id 4046) - (solid #t) - (mask "*0*11010") - ) - (autotile - (id 4047) - (solid #t) - (mask "*0*10010") - ) - (autotile - (id 4048) - (solid #t) - (mask "*0*00111") - ) - (autotile - (id 4049) - (solid #t) - (mask "*1*00011") - ) - (autotile - (id 4050) - (solid #t) - (mask "*1*00111") - ) - (autotile - (id 4051) - (solid #t) - (mask "*1*00110") - ) - (autotile - (id 4052) - (solid #t) - (mask "01011111") - ) - (autotile - (id 4053) - (solid #t) - (mask "*1001*0*") - ) - (autotile - (id 4054) - (solid #t) - (mask "01011*0*") - ) - (autotile - (id 4055) - (solid #t) - (mask "01*10*0*") - ) - (autotile - (id 4056) - (solid #t) - (mask "01011010") - ) - (autotile - (id 4057) - (solid #t) - (mask "*1001010") - ) - (autotile - (id 4058) - (solid #t) - (mask "01*10010") - ) - (autotile - (id 4059) - (solid #t) - (mask "11*10011") - ) - (autotile - (id 4060) - (solid #t) - (mask "*1101110") - ) - (autotile - (id 4061) - (solid #t) - (mask "*1001011") - ) - (autotile - (id 4062) - (solid #t) - (mask "01*10110") - ) - (autotile - (id 4063) - (solid #t) - (mask "11011011") - ) - (autotile - (id 4064) - (solid #t) - (mask "01111110") - ) - (autotile - (id 4065) - (solid #t) - (mask "01011110") - ) - (autotile - (id 4066) - (solid #t) - (mask "01011011") - ) - (autotile - (id 4067) - (solid #t) - (mask "01*10011") - ) - (autotile - (id 4068) - (solid #t) - (mask "*1001110") - ) - (autotile - (id 4069) - (solid #t) - (mask "11011110") - ) - (autotile - (id 4070) - (solid #t) - (mask "01111011") - ) - (autotile - (id 4071) - (solid #t) - (mask "11011010") - ) - (autotile - (id 4072) - (solid #t) - (mask "01111010") - ) - (autotile - (id 4073) - (solid #t) - (mask "*1101010") - ) - (autotile - (id 4074) - (solid #t) - (mask "11*10010") - ) - (autotile - (id 4075) - (solid #t) - (mask "01111*0*") - ) - (autotile - (id 4076) - (solid #t) - (mask "11011*0*") - ) - (autotile - (id 4077) - (solid #t) - (mask "11111010") - ) - ) - (autotileset - (name "snow-unisolid-1") - (default 2058) - (autotile - (id 2058) - (alt-id - (id 2060) - (weight 0.1) - ) - (alt-id - (id 2061) - (weight 0.1) - ) - (alt-id - (id 2065) - (weight 0.1) - ) - (alt-id - (id 2066) - (weight 0.1) - ) - (alt-id - (id 2070) - (weight 0.1) - ) - (alt-id - (id 2071) - (weight 0.02) - ) - (solid #t) - (mask "********") - ) - (autotile - (id 2058) - (solid #f) - (mask "*1****1*") - (mask "***11***") - ) - (autotile - (id 2052) - (solid #f) - (mask "00000001") - ) - (autotile - (id 2053) - (solid #f) - (mask "00000*1*") - ) - (autotile - (id 2054) - (solid #f) - (mask "00000100") - ) - (autotile - (id 2057) - (solid #f) - (mask "00*0100*") - ) - (autotile - (id 2059) - (solid #f) - (mask "*0010*00") - ) - (autotile - (id 2062) - (solid #f) - (mask "00100000") - ) - (autotile - (id 2063) - (solid #f) - (mask "*1*00000") - ) - (autotile - (id 2064) - (solid #f) - (mask "10000000") - ) - (autotile - (id 2050) - (solid #f) - (mask "*1*10*00") - (mask "*0110*00") - (mask "*1*00100") - ) - (autotile - (id 2051) - (solid #f) - (mask "*1*0100*") - (mask "10*0100*") - (mask "*1*00001") - ) - (autotile - (id 2055) - (solid #f) - (mask "*0010*1*") - (mask "*0010*01") - (mask "10000*1*") - ) - (autotile - (id 2056) - (solid #f) - (mask "00*01*1*") - (mask "00100*1*") - (mask "00*0110*") - ) - ) - (autotileset - (name "snow_unisolid2") - (default 2127) - (autotile - (id 2127) - (alt-id - (id 2469) - (weight 0.5) - ) - (alt-id - (id 4780) - (weight 0.5) - ) - (solid #t) - (mask "********") - ) - (autotile - (id 2127) - (solid #f) - (mask "*1****1*") - (mask "***11***") - ) - (autotile - (id 2121) - (solid #f) - (mask "00000001") - ) - (autotile - (id 2122) - (solid #f) - (mask "00000*1*") - ) - (autotile - (id 2123) - (solid #f) - (mask "00000100") - ) - (autotile - (id 2126) - (solid #f) - (mask "00*0100*") - ) - (autotile - (id 2128) - (solid #f) - (mask "*0010*00") - ) - (autotile - (id 2131) - (solid #f) - (mask "00100000") - ) - (autotile - (id 2132) - (solid #f) - (mask "*1*00000") - ) - (autotile - (id 2133) - (solid #f) - (mask "10000000") - ) - (autotile - (id 2124) - (solid #f) - (mask "*1*10*00") - (mask "*0110*00") - (mask "*1*00100") - ) - (autotile - (id 2125) - (solid #f) - (mask "*1*0100*") - (mask "10*0100*") - (mask "*1*00001") - ) - (autotile - (id 2129) - (solid #f) - (mask "*0010*1*") - (mask "*0010*01") - (mask "10000*1*") - ) - (autotile - (id 2130) - (solid #f) - (mask "00*01*1*") - (mask "00100*1*") - (mask "00*0110*") - ) - (autotile - (id 1517) - (solid #f) - (mask "10000001") - ) - (autotile - (id 1518) - (solid #f) - (mask "00100100") - ) - ) - (autotileset - (name "crystal_solid") - (default 2451) - (autotile - (id 2451) - (alt-id - (id 2452) - (weight 0.2) - ) - (alt-id - (id 2465) - (weight 0.2) - ) - (alt-id - (id 2466) - (weight 0.2) - ) - (solid #t) - (mask "********") - ) - ) - (autotileset - (name "forest_unisolid") - (default 1024) - (autotile - (id 1024) - (alt-id - (id 4381) - (weight 0.2) - ) - (alt-id - (id 4382) - (weight 0.2) - ) - (solid #t) - (mask "********") - ) - (autotile - (id 1024) - (solid #f) - (mask "*1****1*") - (mask "***11***") - ) - (autotile - (id 1020) - (solid #f) - (mask "00000001") - ) - (autotile - (id 1021) - (solid #f) - (mask "00000*1*") - ) - (autotile - (id 1022) - (solid #f) - (mask "00000100") - ) - (autotile - (id 1023) - (solid #f) - (mask "00*0100*") - ) - (autotile - (id 1025) - (solid #f) - (mask "*0010*00") - ) - (autotile - (id 1026) - (solid #f) - (mask "00100000") - ) - (autotile - (id 1027) - (solid #f) - (mask "*1*00000") - ) - (autotile - (id 1028) - (solid #f) - (mask "10000000") - ) - (autotile - (id 1029) - (solid #f) - (mask "*1*10*00") - (mask "*0110*00") - (mask "*1*00100") - ) - (autotile - (id 1030) - (solid #f) - (mask "*1*0100*") - (mask "10*0100*") - (mask "*1*00001") - ) - (autotile - (id 1031) - (solid #f) - (mask "*0010*1*") - (mask "*0010*01") - (mask "10000*1*") - ) - (autotile - (id 1032) - (solid #f) - (mask "00*01*1*") - (mask "00100*1*") - (mask "00*0110*") - ) - (autotile - (id 1735) - (solid #f) - (mask "10000001") - ) - (autotile - (id 1736) - (solid #f) - (mask "00100100") - ) - ) - (autotileset - (name "corrupted_unisolid") - (default 1362) - (autotile - (id 1362) - (alt-id - (id 460) - (weight 0.2) - ) - (alt-id - (id 463) - (weight 0.2) - ) - (solid #t) - (mask "********") - ) - (autotile - (id 1362) - (solid #f) - (mask "*1****1*") - (mask "***11***") - ) - (autotile - (id 1358) - (solid #f) - (mask "00000001") - ) - (autotile - (id 1359) - (solid #f) - (mask "00000*1*") - ) - (autotile - (id 1360) - (solid #f) - (mask "00000100") - ) - (autotile - (id 1361) - (solid #f) - (mask "00*0100*") - ) - (autotile - (id 1363) - (solid #f) - (mask "*0010*00") - ) - (autotile - (id 1364) - (solid #f) - (mask "00100000") - ) - (autotile - (id 1365) - (solid #f) - (mask "*1*00000") - ) - (autotile - (id 1366) - (solid #f) - (mask "10000000") - ) - (autotile - (id 458) - (solid #f) - (mask "*1*10*00") - (mask "*0110*00") - (mask "*1*00100") - ) - (autotile - (id 459) - (solid #f) - (mask "*1*0100*") - (mask "10*0100*") - (mask "*1*00001") - ) - (autotile - (id 461) - (solid #f) - (mask "*0010*1*") - (mask "*0010*01") - (mask "10000*1*") - ) - (autotile - (id 462) - (solid #f) - (mask "00*01*1*") - (mask "00100*1*") - (mask "00*0110*") - ) - (autotile - (id 1996) - (solid #f) - (mask "10000001") - ) - (autotile - (id 1997) - (solid #f) - (mask "00100100") - ) - ) - (autotileset - (name "ruin_backwall") - (default 1476) - (autotile - (id 1476) - (alt-id - (id 2263) - (weight 0.2) - ) - (alt-id - (id 2264) - (weight 0.2) - ) - (solid #t) - (mask "********") - ) - (autotile - (id 1476) - (solid #f) - (mask "*1****1*") - (mask "***11***") - ) - (autotile - (id 2257) - (solid #f) - (mask "00000001") - ) - (autotile - (id 1489) - (solid #f) - (mask "00000*1*") - ) - (autotile - (id 2255) - (solid #f) - (mask "00000100") - ) - (autotile - (id 1482) - (solid #f) - (mask "00*0100*") - ) - (autotile - (id 2254) - (solid #f) - (mask "*0010*00") - ) - (autotile - (id 2258) - (solid #f) - (mask "00100000") - ) - (autotile - (id 1496) - (solid #f) - (mask "*1*00000") - ) - (autotile - (id 2256) - (solid #f) - (mask "10000000") - ) - (autotile - (id 1478) - (solid #f) - (mask "*1*10*00") - (mask "*0110*00") - (mask "*1*00100") - ) - (autotile - (id 1477) - (solid #f) - (mask "*1*0100*") - (mask "10*0100*") - (mask "*1*00001") - ) - (autotile - (id 1503) - (solid #f) - (mask "*0010*1*") - (mask "*0010*01") - (mask "10000*1*") - ) - (autotile - (id 1510) - (solid #f) - (mask "00*01*1*") - (mask "00100*1*") - (mask "00*0110*") - ) - (autotile - (id 2261) - (solid #f) - (mask "10000001") - ) - (autotile - (id 2262) - (solid #f) - (mask "00100100") - ) - ) - - (autotileset - (name "forest") - (default 1010) - (autotile - (id 1000) - (solid #f) - (mask "*****011") - ) - (autotile - (id 1001) - (alt-id - (id 1002) - (weight 0.5) - ) - (solid #f) - (mask "*****111") - ) - (autotile - (id 1003) - (solid #f) - (mask "*****110") - ) - (autotile - (id 1004) - (solid #t) - (mask "*0*01011") - ) - (autotile - (id 1005) - (alt-id - (id 1006) - (weight 0.5) - ) - (solid #t) - (mask "*0*11111") - ) - (autotile - (id 1007) - (solid #t) - (mask "*0*10110") - ) - (autotile - (id 1008) - (alt-id - (id 1012) - (weight 0.5) - ) - (solid #t) - (mask "*1101011") - ) - (autotile - (id 1009) - (alt-id - (id 1010) - (weight 0.1) - ) - (alt-id - (id 1013) - (weight 0.3) - ) - (alt-id - (id 1014) - (weight 0.3) - ) - (solid #t) - (mask "11111111") - ) - (autotile - (id 1011) - (alt-id - (id 1015) - (weight 0.5) - ) - (solid #t) - (mask "11*10110") - ) - (autotile - (id 1016) - (solid #t) - (mask "*1101*0*") - ) - (autotile - (id 1017) - (alt-id - (id 1018) - (weight 0.5) - ) - (solid #t) - (mask "11111*0*") - ) - (autotile - (id 1019) - (solid #t) - (mask "11*10*0*") - ) - (autotile - (id 3621) - (solid #t) - (mask "*0*01*0*") - ) - (autotile - (id 3622) - (alt-id - (id 3623) - (weight 0.5) - ) - (solid #t) - (mask "*0*11*0*") - ) - (autotile - (id 3624) - (solid #t) - (mask "*0*10*0*") - ) - (autotile - (id 1042) - (solid #t) - (mask "01111110") - ) - (autotile - (id 1043) - (solid #t) - (mask "11011011") - ) - (autotile - (id 1035) - (solid #t) - (mask "11*10111") - ) - (autotile - (id 1034) - (solid #t) - (mask "*1101111") - ) - (autotile - (id 1041) - (solid #t) - (mask "11011111") - ) - (autotile - (id 1040) - (solid #t) - (mask "01111111") - ) - (autotile - (id 1036) - (solid #t) - (mask "*0*01111") - ) - (autotile - (id 1037) - (solid #t) - (mask "*0*10111") - ) - (autotile - (id 1737) - (solid #t) - (mask "*0*00111") - ) - (autotile - (id 1038) - (solid #f) - (mask "***00010") - ) - (autotile - (id 1044) - (solid #t) - (mask "*0*00010") - ) - (autotile - (id 1033) - (solid #t) - (mask "*1*00111") - ) - (autotile - (id 1039) - (solid #t) - (mask "01011111") - ) - (autotile - (id 1738) - (solid #t) - (mask "*1*00010") - ) - (autotile - (id 4293) - (solid #t) - (mask "*0*01010") - ) - (autotile - (id 4294) - (solid #t) - (mask "*0*11110") - ) - (autotile - (id 4295) - (solid #t) - (mask "*0*11011") - ) - (autotile - (id 4296) - (solid #t) - (mask "*0*10010") - ) - (autotile - (id 4297) - (solid #t) - (mask "*1001011") - ) - (autotile - (id 4298) - (solid #t) - (mask "*1001010") - ) - (autotile - (id 4299) - (solid #t) - (mask "01*10010") - ) - (autotile - (id 4300) - (solid #t) - (mask "01*10110") - ) - (autotile - (id 4301) - (solid #t) - (mask "01011*0*") - ) - (autotile - (id 4302) - (solid #t) - (mask "*1101010") - ) - (autotile - (id 4303) - (solid #t) - (mask "11*10010") - ) - (autotile - (id 4304) - (solid #t) - (mask "*0*11010") - ) - (autotile - (id 4305) - (solid #t) - (mask "*1001*0*") - ) - (autotile - (id 4306) - (solid #t) - (mask "11011*0*") - ) - (autotile - (id 4307) - (solid #t) - (mask "01111*0*") - ) - (autotile - (id 4308) - (solid #t) - (mask "01*10*0*") - ) - (autotile - (id 4309) - (solid #t) - (mask "11011010") - ) - (autotile - (id 4310) - (solid #t) - (mask "01111010") - ) - (autotile - (id 4311) - (solid #t) - (mask "01011010") - ) - (autotile - (id 4312) - (solid #t) - (mask "11111010") - ) - (autotile - (id 4313) - (solid #t) - (mask "01011110") - ) - (autotile - (id 4314) - (solid #t) - (mask "01011011") - ) - (autotile - (id 4315) - (solid #t) - (mask "*0*01110") - ) - (autotile - (id 4316) - (solid #t) - (mask "*0*10011") - ) - (autotile - (id 4317) - (solid #t) - (mask "11111110") - ) - (autotile - (id 4318) - (solid #t) - (mask "11111011") - ) - (autotile - (id 4319) - (solid #t) - (mask "11011110") - ) - (autotile - (id 4320) - (solid #t) - (mask "01111011") - ) - (autotile - (id 4321) - (solid #t) - (mask "11*10011") - ) - (autotile - (id 4322) - (solid #t) - (mask "*1101110") - ) - (autotile - (id 4323) - (solid #t) - (mask "01*10011") - ) - (autotile - (id 4324) - (solid #t) - (mask "*1001110") - ) - (autotile - (id 4325) - (solid #t) - (mask "01*10111") - ) - (autotile - (id 4326) - (solid #t) - (mask "*1001111") - ) - (autotile - (id 4327) - (solid #t) - (mask "*0*00*0*") - ) - (autotile - (id 4328) - (solid #t) - (mask "*1*00011") - ) - (autotile - (id 4329) - (solid #t) - (mask "*1*00110") - ) - (autotile - (id 4330) - (solid #t) - (mask "*0*00011") - ) - (autotile - (id 4331) - (solid #t) - (mask "*0*00110") - ) - (autotile - (id 3472) - (solid #t) - (mask "*1*00*0*") - ) - ) - (autotileset - (name "underground_forest") - (default 1870) - (autotile - (id 1860) - (solid #f) - (mask "*****011") - ) - (autotile - (id 1861) - (solid #f) - (mask "*****111") - (alt-id - (id 1862) - (weight 0.5) - ) - ) - (autotile - (id 1863) - (solid #f) - (mask "*****110") - ) - (autotile - (id 1864) - (solid #t) - (mask "*0*01011") - ) - (autotile - (id 1865) - (solid #t) - (mask "*0*11111") - (alt-id - (id 1866) - (weight 0.5) - ) - ) - (autotile - (id 1867) - (solid #t) - (mask "*0*10110") - ) - (autotile - (id 1868) - (solid #t) - (mask "*1101011") - (alt-id - (id 1872) - (weight 0.5) - ) - ) - (autotile - (id 1869) - (solid #t) - (mask "11111111") - (alt-id - (id 1870) - (weight 0.1) - ) - (alt-id - (id 1873) - (weight 0.3) - ) - (alt-id - (id 1874) - (weight 0.3) - ) - (alt-id - (id 1924) - (weight 0.1) - ) - (alt-id - (id 1925) - (weight 0.1) - ) - (alt-id - (id 3490) - (weight 0.1) - ) - ) - (autotile - (id 1871) - (solid #t) - (mask "11*10110") - (alt-id - (id 1875) - (weight 0.5) - ) - ) - (autotile - (id 1876) - (solid #t) - (mask "*1101*0*") - ) - (autotile - (id 1877) - (solid #t) - (mask "11111*0*") - (alt-id - (id 1879) - (weight 0.5) - ) - ) - (autotile - (id 1880) - (solid #t) - (mask "11*10*0*") - ) - (autotile - (id 3479) - (solid #t) - (mask "*0*01*0*") - ) - (autotile - (id 3480) - (solid #t) - (mask "*0*11*0*") - (alt-id - (id 3481) - (weight 0.5) - ) - ) - (autotile - (id 3482) - (solid #t) - (mask "*0*10*0*") - ) - (autotile - (id 3473) - (solid #t) - (mask "11*10111") - ) - (autotile - (id 3474) - (solid #t) - (mask "*1101111") - ) - (autotile - (id 3475) - (solid #t) - (mask "11011111") - ) - (autotile - (id 3476) - (solid #t) - (mask "01111111") - ) - (autotile - (id 3477) - (solid #t) - (mask "*0*10111") - ) - (autotile - (id 3478) - (solid #t) - (mask "*0*01111") - ) - (autotile - (id 3483) - (solid #f) - (mask "*****010") - ) - (autotile - (id 3484) - (solid #t) - (mask "*0*00010") - ) - (autotile - (id 3485) - (solid #t) - (mask "*1*00111") - ) - (autotile - (id 3488) - (solid #t) - (mask "*1*00*0*") - ) - (autotile - (id 3489) - (solid #t) - (mask "*0*00111") - ) - (autotile - (id 3486) - (solid #t) - (mask "*1*00010") - ) - (autotile - (id 3487) - (solid #t) - (mask "01011111") - ) - (autotile - (id 4487) - (solid #t) - (mask "11111110") - ) - (autotile - (id 4488) - (solid #t) - (mask "11111011") - ) - (autotile - (id 4489) - (solid #t) - (mask "01111110") - ) - (autotile - (id 4490) - (solid #t) - (mask "11011011") - ) - (autotile - (id 4491) - (solid #t) - (mask "11111010") - ) - (autotile - (id 4492) - (solid #t) - (mask "01011010") - ) - (autotile - (id 4493) - (solid #t) - (mask "*0*00*0*") - ) - (autotile - (id 4505) - (solid #t) - (mask "*0*01010") - ) - (autotile - (id 4506) - (solid #t) - (mask "*0*11110") - ) - (autotile - (id 4507) - (solid #t) - (mask "*0*11011") - ) - (autotile - (id 4508) - (solid #t) - (mask "*0*10010") - ) - (autotile - (id 4509) - (solid #t) - (mask "*1001011") - ) - (autotile - (id 4510) - (solid #t) - (mask "*1001010") - ) - (autotile - (id 4511) - (solid #t) - (mask "01*10010") - ) - (autotile - (id 4512) - (solid #t) - (mask "01*10110") - ) - (autotile - (id 4513) - (solid #t) - (mask "01011*0*") - ) - (autotile - (id 4514) - (solid #t) - (mask "*1101010") - ) - (autotile - (id 4515) - (solid #t) - (mask "11*10010") - ) - (autotile - (id 4516) - (solid #t) - (mask "*0*11010") - ) - (autotile - (id 4517) - (solid #t) - (mask "*1001*0*") - ) - (autotile - (id 4518) - (solid #t) - (mask "11011*0*") - ) - (autotile - (id 4519) - (solid #t) - (mask "01111*0*") - ) - (autotile - (id 4520) - (solid #t) - (mask "01*10*0*") - ) - (autotile - (id 4521) - (solid #t) - (mask "11011010") - ) - (autotile - (id 4522) - (solid #t) - (mask "01111010") - ) - (autotile - (id 4523) - (solid #t) - (mask "*0*01110") - ) - (autotile - (id 4524) - (solid #t) - (mask "*0*10011") - ) - (autotile - (id 4525) - (solid #t) - (mask "01011110") - ) - (autotile - (id 4526) - (solid #t) - (mask "01011011") - ) - (autotile - (id 4527) - (solid #t) - (mask "11011110") - ) - (autotile - (id 4528) - (solid #t) - (mask "01111011") - ) - (autotile - (id 4529) - (solid #t) - (mask "11*10011") - ) - (autotile - (id 4530) - (solid #t) - (mask "*1101110") - ) - (autotile - (id 4531) - (solid #t) - (mask "01*10011") - ) - (autotile - (id 4532) - (solid #t) - (mask "*1001110") - ) - (autotile - (id 4533) - (solid #t) - (mask "01*10111") - ) - (autotile - (id 4534) - (solid #t) - (mask "*1001111") - ) - (autotile - (id 4535) - (solid #t) - (mask "*0*00011") - ) - (autotile - (id 4536) - (solid #t) - (mask "*0*00110") - ) - (autotile - (id 4537) - (solid #t) - (mask "*1*00011") - ) - (autotile - (id 4538) - (solid #t) - (mask "*1*00110") - ) - ) - (autotileset - (name "spikevine") - (default 471) - (autotile - (id 1972) - (solid #t) - (mask "*0*01*1*") - ) - (autotile - (id 1984) - (solid #t) - (mask "*0*10*1*") - ) - (autotile - (id 1973) - (alt-id - (id 1974) - (weight 0.5) - ) - (solid #t) - (mask "*1*01*1*") - ) - (autotile - (id 1976) - (alt-id - (id 1980) - (weight 0.5) - ) - (solid #t) - (mask "*0*11*1*") - ) - (autotile - (id 1975) - (solid #t) - (mask "*1*01*0*") - ) - (autotile - (id 1987) - (solid #t) - (mask "*1*10*0*") - ) - (autotile - (id 1979) - (alt-id - (id 1983) - (weight 0.5) - ) - (solid #t) - (mask "*1*11*0*") - ) - (autotile - (id 1985) - (alt-id - (id 1986) - (weight 0.5) - ) - (solid #t) - (mask "*1*10*1*") - ) - (autotile - (id 464) - (solid #t) - (mask "*0*01*0*") - ) - (autotile - (id 467) - (solid #t) - (mask "*0*00*1*") - ) - (autotile - (id 465) - (alt-id - (id 472) - (weight 0.5) - ) - (solid #t) - (mask "*0*11*0*") - ) - (autotile - (id 468) - (alt-id - (id 470) - (weight 0.5) - ) - (solid #t) - (mask "*1*00*1*") - ) - (autotile - (id 469) - (solid #t) - (mask "*1*00*0*") - ) - (autotile - (id 466) - (solid #t) - (mask "*0*10*0*") - ) - (autotile - (id 1977) - (alt-id - (id 1978) - (weight 0.2) - ) - (alt-id - (id 1981) - (weight 0.2) - ) - (alt-id - (id 1982) - (weight 0.2) - ) - (solid #t) - (mask "*1*11*1*") - ) - (autotile - (id 471) - (solid #t) - (mask "*0*00*0*") - ) - ) - (autotileset-corner - (name "forest_bkg") - (default 2005) - (autotile - (id 2005) - (alt-id - (id 2006) - (weight 0.1) - ) - (alt-id - (id 2007) - (weight 0.1) - ) - (alt-id - (id 2008) - (weight 0.1) - ) - (alt-id - (id 2009) - (weight 0.1) - ) - (alt-id - (id 2010) - (weight 0.1) - ) - (alt-id - (id 2011) - (weight 0.1) - ) - (alt-id - (id 2012) - (weight 0.1) - ) - (alt-id - (id 2013) - (weight 0.1) - ) - (mask "1111") - ) - (autotile - (id 4339) - (mask "0001") - ) - (autotile - (id 4340) - (mask "0010") - ) - (autotile - (id 4337) - (mask "0100") - ) - (autotile - (id 4338) - (mask "1000") - ) - (autotile - (id 473) - (mask "1110") - ) - (autotile - (id 474) - (mask "1100") - ) - (autotile - (id 475) - (mask "1101") - ) - (autotile - (id 476) - (mask "1010") - ) - (autotile - (id 4356) - (mask "0101") - ) - (autotile - (id 477) - (mask "1011") - ) - (autotile - (id 478) - (mask "0011") - ) - (autotile - (id 4357) - (mask "0111") - ) - (autotile - (id 4353) - (mask "1001") - ) - (autotile - (id 4354) - (mask "0110") - ) - ) - (autotileset - (name "corrupted_forest") - (default 1433) - (autotile - (id 1423) - (solid #f) - (mask "*****011") - ) - (autotile - (id 1424) - (solid #f) - (mask "*****111") - (alt-id - (id 1425) - (weight 0.5) - ) - ) - (autotile - (id 1426) - (solid #f) - (mask "*****110") - ) - (autotile - (id 1427) - (solid #t) - (mask "*0*01011") - ) - (autotile - (id 1428) - (solid #t) - (mask "*0*11111") - (alt-id - (id 1429) - (weight 0.5) - ) - ) - (autotile - (id 1430) - (solid #t) - (mask "*0*10110") - ) - (autotile - (id 1431) - (solid #t) - (mask "*1101011") - (alt-id - (id 1435) - (weight 0.5) - ) - ) - (autotile - (id 1432) - (solid #t) - (mask "11111111") - (alt-id - (id 1433) - (weight 0.1) - ) - (alt-id - (id 1436) - (weight 0.3) - ) - (alt-id - (id 1437) - (weight 0.3) - ) - ) - (autotile - (id 1434) - (solid #t) - (mask "11*10110") - (alt-id - (id 1438) - (weight 0.5) - ) - ) - (autotile - (id 1439) - (solid #t) - (mask "*1101*0*") - ) - (autotile - (id 1440) - (solid #t) - (mask "11111*0*") - (alt-id - (id 1441) - (weight 0.5) - ) - ) - (autotile - (id 1442) - (solid #t) - (mask "11*10*0*") - ) - (autotile - (id 3923) - (solid #t) - (mask "*0*01*0*") - ) - (autotile - (id 3924) - (solid #t) - (mask "*0*11*0*") - (alt-id - (id 3925) - (weight 0.5) - ) - ) - (autotile - (id 3926) - (solid #t) - (mask "*0*10*0*") - ) - (autotile - (id 3417) - (solid #t) - (mask "*1*00111") - ) - (autotile - (id 3373) - (solid #t) - (mask "*1101111") - ) - (autotile - (id 3374) - (solid #t) - (mask "11*10111") - ) - (autotile - (id 3375) - (solid #t) - (mask "*0*01111") - ) - (autotile - (id 3378) - (solid #t) - (mask "01011010") - ) - (autotile - (id 3379) - (solid #t) - (mask "01111111") - ) - (autotile - (id 3380) - (solid #t) - (mask "11011111") - ) - (autotile - (id 3381) - (solid #t) - (mask "01111110") - ) - (autotile - (id 3376) - (solid #t) - (mask "*0*10111") - ) - (autotile - (id 3377) - (solid #f) - (mask "*****010") - ) - (autotile - (id 3414) - (solid #t) - (mask "11111110") - ) - (autotile - (id 3415) - (solid #t) - (mask "11111011") - ) - (autotile - (id 3382) - (solid #t) - (mask "11011011") - ) - (autotile - (id 3383) - (solid #t) - (mask "*0*00010") - ) - (autotile - (id 3398) - (solid #t) - (mask "*0*00111") - ) - (autotile - (id 3399) - (solid #t) - (mask "*1*00010") - ) - (autotile - (id 3400) - (solid #t) - (mask "01011111") - ) - (autotile - (id 3401) - (solid #t) - (mask "11111010") - ) - (autotile - (id 3402) - (solid #t) - (mask "*1*00*0*") - ) - (autotile - (id 3403) - (solid #t) - (mask "*0*00*0*") - ) - ;; 3404, 3405 and 4383 are transition tiles from grassed to grassless - ;; 491 to 498 are grassless - (autotile - (id 4384) - (solid #t) - (mask "*0*01010") - ) - (autotile - (id 4385) - (solid #t) - (mask "*0*11110") - ) - (autotile - (id 4386) - (solid #t) - (mask "*0*11011") - ) - (autotile - (id 4387) - (solid #t) - (mask "*0*10010") - ) - (autotile - (id 4388) - (solid #t) - (mask "*1001011") - ) - (autotile - (id 4389) - (solid #t) - (mask "*1001010") - ) - (autotile - (id 4390) - (solid #t) - (mask "01*10010") - ) - (autotile - (id 4391) - (solid #t) - (mask "01*10110") - ) - (autotile - (id 4392) - (solid #t) - (mask "01011*0*") - ) - (autotile - (id 4393) - (solid #t) - (mask "*1101010") - ) - (autotile - (id 4394) - (solid #t) - (mask "11*10010") - ) - (autotile - (id 4395) - (solid #t) - (mask "*0*11010") - ) - (autotile - (id 4396) - (solid #t) - (mask "*1001*0*") - ) - (autotile - (id 4397) - (solid #t) - (mask "11011*0*") - ) - (autotile - (id 4398) - (solid #t) - (mask "01111*0*") - ) - (autotile - (id 4399) - (solid #t) - (mask "01*10*0*") - ) - (autotile - (id 4400) - (solid #t) - (mask "11011010") - ) - (autotile - (id 4401) - (solid #t) - (mask "01111010") - ) - ;; 4402 and 4403 are transitions from grassed to grassless - (autotile - (id 4404) - (solid #t) - (mask "01011110") - ) - (autotile - (id 4405) - (solid #t) - (mask "01011011") - ) - (autotile - (id 4406) - (solid #t) - (mask "*0*01110") - ) - (autotile - (id 4407) - (solid #t) - (mask "*0*10011") - ) - ;; 4408 and 4409 are transitions to grassless - (autotile - (id 4410) - (solid #t) - (mask "11011110") - ) - (autotile - (id 4411) - (solid #t) - (mask "01111011") - ) - (autotile - (id 4412) - (solid #t) - (mask "11*10011") - ) - (autotile - (id 4413) - (solid #t) - (mask "*1101110") - ) - (autotile - (id 4414) - (solid #t) - (mask "01*10011") - ) - (autotile - (id 4415) - (solid #t) - (mask "*1001110") - ) - (autotile - (id 4416) - (solid #t) - (mask "01*10111") - ) - (autotile - (id 4417) - (solid #t) - (mask "*1001111") - ) - ;; 4418 and 4419 transition grassless... - (autotile - (id 4420) - (solid #t) - (mask "*1*00011") - ) - (autotile - (id 4421) - (solid #t) - (mask "*1*00110") - ) - (autotile - (id 4422) - (solid #t) - (mask "*0*00011") - ) - (autotile - (id 4423) - (solid #t) - (mask "*0*00110") - ) - ;; 4424 to 4433 - grassless... - ) - (autotileset - (name "underground_corrupted") - (default 3697) - (autotile - (id 3687) - (solid #f) - (mask "*****011") - ) - (autotile - (id 3688) - (solid #f) - (mask "*****111") - (alt-id - (id 3689) - (weight 0.5) - ) - ) - (autotile - (id 3690) - (solid #f) - (mask "*****110") - ) - (autotile - (id 3691) - (solid #t) - (mask "*0*01011") - ) - (autotile - (id 3692) - (solid #t) - (mask "*0*11111") - (alt-id - (id 3693) - (weight 0.5) - ) - ) - (autotile - (id 3694) - (solid #t) - (mask "*0*10110") - ) - (autotile - (id 3695) - (solid #t) - (mask "*1101011") - (alt-id - (id 3699) - (weight 0.5) - ) - ) - (autotile - (id 3696) - (solid #t) - (mask "11111111") - (alt-id - (id 3697) - (weight 0.1) - ) - (alt-id - (id 3700) - (weight 0.3) - ) - (alt-id - (id 3701) - (weight 0.3) - ) - (alt-id - (id 1934) - (weight 0.1) - ) - (alt-id - (id 1935) - (weight 0.1) - ) - (alt-id - (id 3811) - (weight 0.1) - ) - ) - (autotile - (id 3698) - (solid #t) - (mask "11*10110") - (alt-id - (id 3702) - (weight 0.5) - ) - ) - (autotile - (id 3703) - (solid #t) - (mask "*1101*0*") - ) - (autotile - (id 3704) - (solid #t) - (mask "11111*0*") - (alt-id - (id 3705) - (weight 0.5) - ) - ) - (autotile - (id 3706) - (solid #t) - (mask "11*10*0*") - ) - (autotile - (id 3707) - (solid #t) - (mask "*0*01*0*") - ) - (autotile - (id 3708) - (solid #t) - (mask "*0*11*0*") - (alt-id - (id 3709) - (weight 0.5) - ) - ) - (autotile - (id 3710) - (solid #t) - (mask "*0*10*0*") - ) - (autotile - (id 3713) - (solid #t) - (mask "11*10111") - ) - (autotile - (id 3714) - (solid #t) - (mask "*1101111") - ) - (autotile - (id 3715) - (solid #t) - (mask "11011111") - ) - (autotile - (id 3716) - (solid #t) - (mask "01111111") - ) - (autotile - (id 3729) - (solid #t) - (mask "*0*10111") - ) - (autotile - (id 3728) - (solid #t) - (mask "*0*01111") - ) - (autotile - (id 3717) - (solid #f) - (mask "*****010") - ) - (autotile - (id 3732) - (solid #t) - (mask "*0*00010") - ) - (autotile - (id 3734) - (solid #t) - (mask "*1*00111") - ) - (autotile - (id 3739) - (solid #t) - (mask "*1*00*0*") - ) - (autotile - (id 3735) - (solid #t) - (mask "*0*00111") - ) - (autotile - (id 3733) - (solid #t) - (mask "*1*00010") - ) - (autotile - (id 3736) - (solid #t) - (mask "01011111") - ) - (autotile - (id 3711) - (solid #t) - (mask "11111110") - ) - (autotile - (id 3712) - (solid #t) - (mask "11111011") - ) - (autotile - (id 3730) - (solid #t) - (mask "01111110") - ) - (autotile - (id 3731) - (solid #t) - (mask "11011011") - ) - (autotile - (id 3738) - (solid #t) - (mask "11111010") - ) - (autotile - (id 3737) - (solid #t) - (mask "01011010") - ) - (autotile - (id 3740) - (solid #t) - (mask "*0*00*0*") - ) - (autotile - (id 3777) - (solid #t) - (mask "*0*01010") - ) - (autotile - (id 3778) - (solid #t) - (mask "*0*11110") - ) - (autotile - (id 3779) - (solid #t) - (mask "*0*11011") - ) - (autotile - (id 3780) - (solid #t) - (mask "*0*10010") - ) - (autotile - (id 3781) - (solid #t) - (mask "*1001011") - ) - (autotile - (id 3782) - (solid #t) - (mask "*1001010") - ) - (autotile - (id 3783) - (solid #t) - (mask "01*10010") - ) - (autotile - (id 3784) - (solid #t) - (mask "01*10110") - ) - (autotile - (id 3785) - (solid #t) - (mask "01011*0*") - ) - (autotile - (id 3786) - (solid #t) - (mask "*1101010") - ) - (autotile - (id 3787) - (solid #t) - (mask "11*10010") - ) - (autotile - (id 3788) - (solid #t) - (mask "*0*11010") - ) - (autotile - (id 3789) - (solid #t) - (mask "*1001*0*") - ) - (autotile - (id 3790) - (solid #t) - (mask "11011*0*") - ) - (autotile - (id 3791) - (solid #t) - (mask "01111*0*") - ) - (autotile - (id 3792) - (solid #t) - (mask "01*10*0*") - ) - (autotile - (id 3793) - (solid #t) - (mask "11011010") - ) - (autotile - (id 3794) - (solid #t) - (mask "01111010") - ) - (autotile - (id 3795) - (solid #t) - (mask "*0*01110") - ) - (autotile - (id 3796) - (solid #t) - (mask "*0*10011") - ) - (autotile - (id 3797) - (solid #t) - (mask "01011110") - ) - (autotile - (id 3798) - (solid #t) - (mask "01011011") - ) - (autotile - (id 3799) - (solid #t) - (mask "11011110") - ) - (autotile - (id 3800) - (solid #t) - (mask "01111011") - ) - (autotile - (id 3801) - (solid #t) - (mask "11*10011") - ) - (autotile - (id 3802) - (solid #t) - (mask "*1101110") - ) - (autotile - (id 3803) - (solid #t) - (mask "01*10011") - ) - (autotile - (id 3804) - (solid #t) - (mask "*1001110") - ) - (autotile - (id 3805) - (solid #t) - (mask "01*10111") - ) - (autotile - (id 3806) - (solid #t) - (mask "*1001111") - ) - (autotile - (id 3807) - (solid #t) - (mask "*0*00011") - ) - (autotile - (id 3808) - (solid #t) - (mask "*0*00110") - ) - (autotile - (id 3809) - (solid #t) - (mask "*1*00011") - ) - (autotile - (id 3810) - (solid #t) - (mask "*1*00110") - ) - ) - (autotileset - (name "corruptvine") - (default 1679) - (autotile - (id 1998) - (solid #t) - (mask "*0*01*1*") - ) - (autotile - (id 2026) - (solid #t) - (mask "*0*10*1*") - ) - (autotile - (id 1999) - (alt-id - (id 2000) - (weight 0.5) - ) - (solid #t) - (mask "*1*01*1*") - ) - (autotile - (id 2024) - (alt-id - (id 2025) - (weight 0.5) - ) - (solid #t) - (mask "*0*11*1*") - ) - (autotile - (id 2023) - (solid #t) - (mask "*1*01*0*") - ) - (autotile - (id 2029) - (solid #t) - (mask "*1*10*0*") - ) - (autotile - (id 2030) - (alt-id - (id 2031) - (weight 0.5) - ) - (solid #t) - (mask "*1*11*0*") - ) - (autotile - (id 2027) - (alt-id - (id 2028) - (weight 0.5) - ) - (solid #t) - (mask "*1*10*1*") - ) - (autotile - (id 1672) - (solid #t) - (mask "*0*01*0*") - ) - (autotile - (id 1675) - (solid #t) - (mask "*0*00*1*") - ) - (autotile - (id 1673) - (alt-id - (id 1680) - (weight 0.5) - ) - (solid #t) - (mask "*0*11*0*") - ) - (autotile - (id 1676) - (alt-id - (id 1678) - (weight 0.5) - ) - (solid #t) - (mask "*1*00*1*") - ) - (autotile - (id 1677) - (solid #t) - (mask "*1*00*0*") - ) - (autotile - (id 1674) - (solid #t) - (mask "*0*10*0*") - ) - (autotile - (id 1668) - (alt-id - (id 1670) - (weight 0.2) - ) - (alt-id - (id 1669) - (weight 0.2) - ) - (alt-id - (id 1671) - (weight 0.2) - ) - (solid #t) - (mask "*1*11*1*") - ) - (autotile - (id 1679) - (solid #t) - (mask "*0*00*0*") - ) - ) - (autotileset-corner - (name "corrupted_bkg") - (default 4435) - (autotile - (id 4435) - (alt-id - (id 4436) - (weight 0.1) - ) - (alt-id - (id 4437) - (weight 0.1) - ) - (alt-id - (id 4438) - (weight 0.1) - ) - (alt-id - (id 4439) - (weight 0.1) - ) - (alt-id - (id 4440) - (weight 0.1) - ) - (alt-id - (id 4441) - (weight 0.1) - ) - (alt-id - (id 4442) - (weight 0.1) - ) - (alt-id - (id 4443) - (weight 0.1) - ) - (mask "1111") - ) - (autotile - (id 4463) - (mask "0001") - ) - (autotile - (id 4464) - (mask "0010") - ) - (autotile - (id 4461) - (mask "0100") - ) - (autotile - (id 4462) - (mask "1000") - ) - (autotile - (id 4444) - (mask "1110") - ) - (autotile - (id 4445) - (mask "1100") - ) - (autotile - (id 4446) - (mask "1101") - ) - (autotile - (id 4447) - (mask "1010") - ) - (autotile - (id 4448) - (mask "0101") - ) - (autotile - (id 4449) - (mask "1011") - ) - (autotile - (id 4450) - (mask "0011") - ) - (autotile - (id 4451) - (mask "0111") - ) - (autotile - (id 4477) - (mask "1001") - ) - (autotile - (id 4478) - (mask "0110") - ) - ) - - (autotileset - (name "halloween") - (default 3077) - (autotile - (id 3068) - (solid #f) - (mask "00000001") - ) - (autotile - (id 3069) - (solid #f) - (mask "00000*1*") - (alt-id - (id 3070) - (weight 0.5) - ) - ) - (autotile - (id 3071) - (solid #f) - (mask "00000100") - ) - (autotile - (id 3072) - (solid #f) - (mask "0000100*") - ) - (autotile - (id 3073) - (solid #t) - (mask "000*****") - (alt-id - (id 3074) - (weight 0.5) - ) - ) - (autotile - (id 3075) - (solid #f) - (mask "00010*00") - ) - (autotile - (id 3076) - (solid #f) - (mask "0010100*") - (alt-id - (id 3080) - (weight 0.5) - ) - ) - (autotile - (id 3077) - (solid #t) - (mask "*1******") - (alt-id - (id 3078) - (weight 0.25) - ) - (alt-id - (id 3081) - (weight 0.25) - ) - (alt-id - (id 3082) - (weight 0.25) - ) - ) - (autotile - (id 3079) - (solid #f) - (mask "10010*00") - (alt-id - (id 3083) - (weight 0.5) - ) - ) - (autotile - (id 3084) - (solid #f) - (mask "00100000") - ) - (autotile - (id 3085) - (solid #f) - (mask "*1*00000") - (alt-id - (id 3086) - (weight 0.5) - ) - ) - (autotile - (id 3087) - (solid #f) - (mask "10000000") - ) - (autotile - (id 3088) - (solid #f) - (mask "*1*10*00") - ) - (autotile - (id 3089) - (solid #f) - (mask "*1*0100*") - ) - ;; 3094 and 3095 are not autotileable with the current system - (autotile - (id 3090) - (solid #f) - (mask "10010*1*") - ) - (autotile - (id 3091) - (solid #f) - (mask "00101*1*") - ) - ;; 3096 and 3097 are not autotileable with the current system - (autotile - (id 3092) - (solid #t) - (mask "100*****") - ) - (autotile - (id 3093) - (solid #t) - (mask "001*****") - ) - (autotile - (id 3137) - (solid #f) - (mask "00010*1*") - ) - (autotile - (id 3138) - (solid #f) - (mask "00001*1*") - ) - ;; 3098 to 3105 are not autotileable with the current system - (autotile - (id 2268) - (solid #f) - (mask "00100001") - ) - (autotile - (id 2269) - (solid #f) - (mask "00100*1*") - ) - (autotile - (id 2270) - (solid #f) - (mask "00100100") - ) - (autotile - (id 2271) - (solid #f) - (mask "*1*11*0*") - ) - (autotile - (id 2272) - (solid #f) - (mask "*1*00001") - ) - (autotile - (id 2273) - (solid #f) - (mask "*1*00*1*") - ) - (autotile - (id 2274) - (solid #f) - (mask "*1*00100") - ) - (autotile - (id 2275) - (solid #f) - (mask "10111*0*") - ) - (autotile - (id 2276) - (solid #f) - (mask "10000001") - ) - (autotile - (id 2277) - (solid #f) - (mask "10000*1*") - ) - (autotile - (id 2278) - (solid #f) - (mask "10000100") - ) - (autotile - (id 2279) - (solid #f) - (mask "10111*1*") - ) - (autotile - (id 2280) - (solid #f) - (mask "*1*10*1*") - ) - (autotile - (id 2281) - (solid #f) - (mask "*1*01*1*") - ) - (autotile - (id 2282) - (solid #f) - (mask "*1*11*1*") - ) - (autotile - (id 2283) - (solid #f) - (mask "00011*1*") - ) - (autotile - (id 2284) - (solid #f) - (mask "00000101") - ) - (autotile - (id 2285) - (solid #f) - (mask "10100000") - ) - (autotile - (id 2286) - (solid #f) - (mask "10100101") - ) - (autotile - (id 2315) - (solid #t) - (mask "101*****") - ) - (autotile - (id 2287) - (solid #f) - (mask "*1*00101") - ) - (autotile - (id 2288) - (solid #f) - (mask "10100*1*") - ) - (autotile - (id 2289) - (solid #f) - (mask "1010110*") - ) - (autotile - (id 2290) - (solid #f) - (mask "10110*01") - ) - (autotile - (id 2291) - (solid #f) - (mask "*1*10*01") - ) - (autotile - (id 2292) - (solid #f) - (mask "*1*0110*") - ) - (autotile - (id 2293) - (solid #f) - (mask "1010100*") - ) - (autotile - (id 2294) - (solid #f) - (mask "10110*00") - ) - (autotile - (id 2295) - (solid #f) - (mask "10110*1*") - ) - (autotile - (id 2296) - (solid #f) - (mask "10101*1*") - ) - (autotile - (id 2297) - (solid #f) - (mask "0010110*") - ) - (autotile - (id 2298) - (solid #f) - (mask "10010*01") - ) - (autotile - (id 2299) - (solid #f) - (mask "00110*1*") - ) - (autotile - (id 2300) - (solid #f) - (mask "10001*1*") - ) - (autotile - (id 2301) - (solid #f) - (mask "00111*1*") - ) - (autotile - (id 2302) - (solid #f) - (mask "10011*1*") - ) - (autotile - (id 2303) - (solid #f) - (mask "10100100") - ) - (autotile - (id 2304) - (solid #f) - (mask "10100001") - ) - (autotile - (id 2305) - (solid #f) - (mask "10000101") - ) - (autotile - (id 2306) - (solid #f) - (mask "00100101") - ) - (autotile - (id 2307) - (solid #f) - (mask "00110*00") - ) - (autotile - (id 2308) - (solid #f) - (mask "00010*01") - ) - (autotile - (id 2309) - (solid #f) - (mask "0000110*") - ) - (autotile - (id 2310) - (solid #f) - (mask "1000100*") - ) - (autotile - (id 2311) - (solid #f) - (mask "00111*0*") - ) - (autotile - (id 2312) - (solid #f) - (mask "10011*0*") - ) - (autotile - (id 2313) - (solid #f) - (mask "00110*01") - ) - (autotile - (id 2314) - (solid #f) - (mask "1000110*") - ) - (autotile - (id 2316) - (solid #f) - (mask "00011*0*") - ) - ) - (autotileset-corner - (name "halloween_bkg") - (default 3106) - (autotile - (id 3114) - (alt-id - (id 3128) - (weight 0.5) - ) - (mask "0001") - ) - (autotile - (id 3115) - (alt-id - (id 3116) - (weight 0.5) - ) - (mask "0011") - ) - (autotile - (id 3117) - (alt-id - (id 3129) - (weight 0.5) - ) - (mask "0010") - ) - (autotile - (id 3121) - (alt-id - (id 3122) - (weight 0.5) - ) - (mask "0101") - ) - (autotile - (id 3106) - (alt-id - (id 3107) - (weight 0.25) - ) - (alt-id - (id 3108) - (weight 0.25) - ) - (alt-id - (id 3109) - (weight 0.25) - ) - (mask "1111") - ) - (autotile - (id 3123) - (alt-id - (id 3127) - (weight 0.5) - ) - (mask "1010") - ) - (autotile - (id 3131) - (alt-id - (id 3135) - (weight 0.5) - ) - (mask "0100") - ) - (autotile - (id 3132) - (alt-id - (id 3133) - (weight 0.5) - ) - (mask "1100") - ) - (autotile - (id 3134) - (alt-id - (id 3136) - (weight 0.5) - ) - (mask "1000") - ) - (autotile - (id 3118) - (mask "1110") - ) - (autotile - (id 3119) - (mask "1101") - ) - (autotile - (id 2266) - (mask "1001") - ) - (autotile - (id 2267) - (mask "0110") - ) - (autotile - (id 3124) - (mask "1011") - ) - (autotile - (id 3125) - (mask "0111") - ) - ) - (autotileset - (name "snowfort_light") - (default 3934) - (autotile - (id 3930) - (solid #f) - (mask "00000001") - ) - (autotile - (id 3931) - (solid #f) - (mask "00000*1*") - ) - (autotile - (id 3932) - (solid #f) - (mask "00000100") - ) - (autotile - (id 3939) - (solid #f) - (mask "00*01*1*") - ) - (autotile - (id 3933) - (solid #f) - (mask "00*0100*") - ) - (autotile - (id 3934) - (solid #t) - (mask "********") - ) - (autotile - (id 3935) - (solid #f) - (mask "*0010*00") - ) - (autotile - (id 3941) - (solid #f) - (mask "*1*0100*") - ) - (autotile - (id 3936) - (solid #f) - (mask "00100000") - ) - (autotile - (id 3937) - (solid #f) - (mask "*1*00000") - ) - (autotile - (id 3938) - (solid #f) - (mask "10000000") - ) - (autotile - (id 3940) - (solid #f) - (mask "*0010*1*") - ) - (autotile - (id 2333) - (solid #f) - (mask "*0*11*1*") - ) - (autotile - (id 2334) - (solid #f) - (mask "00100100") - ) - (autotile - (id 2335) - (solid #f) - (mask "10000001") - ) - (autotile - (id 3942) - (solid #f) - (mask "*1*10*00") - ) - (autotile - (id 2336) - (solid #f) - (mask "00100001") - ) - (autotile - (id 3945) - (solid #f) - (mask "*1*00*1*") - ) - (autotile - (id 2337) - (solid #f) - (mask "10000100") - ) - (autotile - (id 2338) - (solid #f) - (mask "00000101") - ) - (autotile - (id 3944) - (solid #f) - (mask "*1*10*1*") - ) - (autotile - (id 3943) - (solid #f) - (mask "*1*01*1*") - ) - (autotile - (id 2339) - (solid #f) - (mask "*1*11*0*") - ) - (autotile - (id 2340) - (solid #f) - (mask "*0*11*0*") - ) - (autotile - (id 2341) - (solid #f) - (mask "00100*1*") - ) - (autotile - (id 2342) - (solid #f) - (mask "10000*1*") - ) - (autotile - (id 2343) - (solid #f) - (mask "10100*1*") - ) - (autotile - (id 2344) - (solid #f) - (mask "10100000") - ) - (autotile - (id 3947) - (solid #f) - (mask "*1*00001") - ) - (autotile - (id 3946) - (solid #f) - (mask "*1*00100") - ) - (autotile - (id 2345) - (solid #f) - (mask "*1*00101") - ) - (autotile - (id 2346) - (solid #f) - (mask "*1*11*1*") - ) - (autotile - (id 2347) - (solid #f) - (mask "00*0110*") - ) - (autotile - (id 2348) - (solid #f) - (mask "*0010*01") - ) - (autotile - (id 2349) - (solid #f) - (mask "10100001") - ) - (autotile - (id 2350) - (solid #f) - (mask "10100101") - ) - (autotile - (id 2351) - (solid #f) - (mask "10*0100*") - ) - (autotile - (id 2352) - (solid #f) - (mask "*0110*00") - ) - (autotile - (id 2353) - (solid #f) - (mask "10100100") - ) - (autotile - (id 2354) - (solid #f) - (mask "10000101") - ) - (autotile - (id 2355) - (solid #f) - (mask "10*0110*") - ) - (autotile - (id 2356) - (solid #f) - (mask "*0110*01") - ) - (autotile - (id 2357) - (solid #f) - (mask "*1*10*01") - ) - (autotile - (id 2358) - (solid #f) - (mask "00100101") - ) - (autotile - (id 2359) - (solid #f) - (mask "10*01*1*") - ) - (autotile - (id 2360) - (solid #f) - (mask "*0110*1*") - ) - (autotile - (id 2361) - (solid #f) - (mask "*1*0110*") - ) - ) - (autotileset - (name "snowfort_dark") - (default 3955) - (autotile - (id 3948) - (solid #f) - (mask "00000001") - ) - (autotile - (id 3949) - (solid #f) - (mask "00000*1*") - ) - (autotile - (id 3950) - (solid #f) - (mask "00000100") - ) - (autotile - (id 3951) - (solid #f) - (mask "00*01*1*") - ) - (autotile - (id 3954) - (solid #f) - (mask "00*0100*") - ) - (autotile - (id 3955) - (solid #t) - (mask "********") - ) - (autotile - (id 3956) - (solid #f) - (mask "*0010*00") - ) - (autotile - (id 3957) - (solid #f) - (mask "*1*0100*") - ) - (autotile - (id 3960) - (solid #f) - (mask "00100000") - ) - (autotile - (id 3961) - (solid #f) - (mask "*1*00000") - ) - (autotile - (id 3962) - (solid #f) - (mask "10000000") - ) - (autotile - (id 3952) - (solid #f) - (mask "*0010*1*") - ) - (autotile - (id 2362) - (solid #f) - (mask "*0*11*1*") - ) - (autotile - (id 2363) - (solid #f) - (mask "00100100") - ) - (autotile - (id 2364) - (solid #f) - (mask "10000001") - ) - (autotile - (id 3958) - (solid #f) - (mask "*1*10*00") - ) - (autotile - (id 2365) - (solid #f) - (mask "00100001") - ) - (autotile - (id 3953) - (solid #f) - (mask "*1*00*1*") - ) - (autotile - (id 2366) - (solid #f) - (mask "10000100") - ) - (autotile - (id 2367) - (solid #f) - (mask "00000101") - ) - (autotile - (id 3964) - (solid #f) - (mask "*1*10*1*") - ) - (autotile - (id 3963) - (solid #f) - (mask "*1*01*1*") - ) - (autotile - (id 2368) - (solid #f) - (mask "*1*11*0*") - ) - (autotile - (id 2369) - (solid #f) - (mask "*0*11*0*") - ) - (autotile - (id 2370) - (solid #f) - (mask "00100*1*") - ) - (autotile - (id 2371) - (solid #f) - (mask "10000*1*") - ) - (autotile - (id 2372) - (solid #f) - (mask "10100*1*") - ) - (autotile - (id 2373) - (solid #f) - (mask "10100000") - ) - (autotile - (id 3965) - (solid #f) - (mask "*1*00001") - ) - (autotile - (id 3959) - (solid #f) - (mask "*1*00100") - ) - (autotile - (id 2374) - (solid #f) - (mask "*1*00101") - ) - (autotile - (id 2375) - (solid #f) - (mask "*1*11*1*") - ) - (autotile - (id 2376) - (solid #f) - (mask "00*0110*") - ) - (autotile - (id 2377) - (solid #f) - (mask "*0010*01") - ) - (autotile - (id 2378) - (solid #f) - (mask "10100001") - ) - (autotile - (id 2379) - (solid #f) - (mask "10100101") - ) - (autotile - (id 2174) - (solid #f) - (mask "10*0100*") - ) - (autotile - (id 2175) - (solid #f) - (mask "*0110*00") - ) - (autotile - (id 2176) - (solid #f) - (mask "10100100") - ) - (autotile - (id 2177) - (solid #f) - (mask "10000101") - ) - (autotile - (id 2080) - (solid #f) - (mask "10*0110*") - ) - (autotile - (id 2081) - (solid #f) - (mask "*0110*01") - ) - (autotile - (id 2082) - (solid #f) - (mask "*1*10*01") - ) - (autotile - (id 2083) - (solid #f) - (mask "00100101") - ) - (autotile - (id 2084) - (solid #f) - (mask "10*01*1*") - ) - (autotile - (id 2927) - (solid #f) - (mask "*0110*1*") - ) - (autotile - (id 2932) - (solid #f) - (mask "*1*0110*") - ) - ) - (autotileset - (name "ice_chunks") - (default 3977) - (autotile - (id 3972) - (solid #t) - (mask "*0*01*11") - ) - (autotile - (id 3973) - (solid #t) - (mask "*0*11111") - ) - (autotile - (id 3974) - (solid #t) - (mask "*0*1011*") - ) - (autotile - (id 3986) - (solid #t) - (mask "11011111") - ) - (autotile - (id 3976) - (solid #t) - (mask "*1101*11") - ) - (autotile - (id 3977) - (solid #t) - (mask "11111111") - ) - (autotile - (id 3978) - (solid #t) - (mask "11*1011*") - ) - (autotile - (id 3987) - (solid #t) - (mask "01111111") - ) - (autotile - (id 3980) - (solid #t) - (mask "*1101*0*") - ) - (autotile - (id 3981) - (solid #t) - (mask "11111*0*") - ) - (autotile - (id 3982) - (solid #t) - (mask "11*10*0*") - ) - (autotile - (id 3985) - (solid #t) - (mask "11111011") - ) - (autotile - (id 3983) - (solid #t) - (mask "*1*00*0*") - ) - (autotile - (id 3675) - (solid #t) - (mask "11011011") - ) - (autotile - (id 3676) - (solid #t) - (mask "01111110") - ) - (autotile - (id 3984) - (solid #t) - (mask "11111110") - ) - (autotile - (id 3677) - (solid #t) - (mask "11011110") - ) - (autotile - (id 3678) - (solid #t) - (mask "*0*11*0*") - ) - (autotile - (id 3679) - (solid #t) - (mask "01111011") - ) - (autotile - (id 3680) - (solid #t) - (mask "11111010") - ) - (autotile - (id 4036) - (solid #t) - (mask "*0*01*0*") - ) - (autotile - (id 4700) - (solid #t) - (mask "*0*10*0*") - ) - (autotile - (id 3979) - (solid #t) - (mask "*0*00*1*") - ) - (autotile - (id 4701) - (solid #t) - (mask "*1*00*1*") - ) - (autotile - (id 4702) - (solid #t) - (mask "11011*0*") - ) - (autotile - (id 4703) - (solid #t) - (mask "01111*0*") - ) - (autotile - (id 4704) - (solid #t) - (mask "01011*0*") - ) - (autotile - (id 4705) - (solid #t) - (mask "01011111") - ) - (autotile - (id 4706) - (solid #t) - (mask "*0*11110") - ) - (autotile - (id 4707) - (solid #t) - (mask "*0*11011") - ) - (autotile - (id 4708) - (solid #t) - (mask "*0*11010") - ) - (autotile - (id 3975) - (solid #t) - (mask "*0*00*0*") - ) - (autotile - (id 4709) - (solid #t) - (mask "11*1001*") - ) - (autotile - (id 4710) - (solid #t) - (mask "*1101*10") - ) - (autotile - (id 4711) - (solid #t) - (mask "01011110") - ) - (autotile - (id 4712) - (solid #t) - (mask "01011010") - ) - (autotile - (id 4713) - (solid #t) - (mask "01*1011*") - ) - (autotile - (id 4714) - (solid #t) - (mask "*1001*11") - ) - (autotile - (id 4715) - (solid #t) - (mask "01011011") - ) - (autotile - (id 4716) - (solid #t) - (mask "01111010") - ) - (autotile - (id 4717) - (solid #t) - (mask "01*1001*") - ) - (autotile - (id 4718) - (solid #t) - (mask "*1001*10") - ) - (autotile - (id 4719) - (solid #t) - (mask "*0*01*10") - ) - (autotile - (id 4720) - (solid #t) - (mask "11011010") - ) - (autotile - (id 4721) - (solid #t) - (mask "01*10*0*") - ) - (autotile - (id 4722) - (solid #t) - (mask "*1001*0*") - ) - (autotile - (id 4723) - (solid #t) - (mask "*0*1001*") - ) - ) - (autotileset - (name "rope") - (default 3459) - (autotile - (id 3452) - (solid #t) - (mask "*0*01*1*") - ) - (autotile - (id 3453) - (solid #t) - (mask "*0*10*1*") - ) - (autotile - (id 3064) - (solid #t) - (mask "*1*01*1*") - ) - (autotile - (id 3065) - (solid #t) - (mask "*0*11*1*") - ) - (autotile - (id 3460) - (solid #t) - (mask "*1*01*0*") - ) - (autotile - (id 3461) - (solid #t) - (mask "*1*10*0*") - ) - (autotile - (id 3067) - (solid #t) - (mask "*1*11*0*") - ) - (autotile - (id 3066) - (solid #t) - (mask "*1*10*1*") - ) - (autotile - (id 3450) - (solid #t) - (mask "*0*01*0*") - ) - (autotile - (id 3458) - (solid #t) - (mask "*0*00*1*") - ) - (autotile - (id 3062) - (solid #t) - (mask "*0*11*0*") - ) - (autotile - (id 3060) - (solid #t) - (mask "*1*00*1*") - ) - (autotile - (id 3061) - (solid #t) - (mask "*1*00*0*") - ) - (autotile - (id 3451) - (solid #t) - (mask "*0*10*0*") - ) - (autotile - (id 3063) - (solid #t) - (mask "*1*11*1*") - ) - (autotile - (id 3459) - (solid #t) - (mask "*0*00*0*") - ) - ) -) +;; +;; autotiles.satc +;; Supertux AutoTiles Configuration +;; +;; Format : +;; root : (supertux-autotiles ... ) +;; | +;; +--------------------------+ +;; | +;; V +;; Contains one or more (autotileset ... ) +;; | +;; +---------------------------------+ +;; | +;; V +;; Contains : +;; The autotileset name (unused as of writing these lines) : (name "snow") +;; The name of the autotileset is "snow". +;; The default tile ID (used if no tile matches any mask) : (default 11) +;; If a very special tile is needed (and it doesn't exist), it will use this tile (it's a center tile) by default. +;; Many (autotile ... ) +;; | +;; +----------------+ +;; | +;; V +;; Contains : +;; The ID of the tile : (id 11) +;; Whether or not the tile is solid (see the "mask" part below) : (solid #t) +;; One or more (mask "000111**") - see below alt-id for info +;; One or more (alt-id ... ) +;; | +;; +---------------------+ +;; | +;; V +;; Contains : +;; The alternative id : (id 123456) +;; The weight : (weight 0.2) +;; The weight is the odds of this tile to happen. 0 is never, 1 is always. +;; The autotile's default ID's odds of occuring are (1 - sum of all weights). +;; Ideally, the sum of all weights for an autotile should be below 1. If it +;; is 1, the the regular ID for that autotile will never occur. If it is +;; greater than 1, then certains alt ID's might never occur either. +;; +;; ===== MASK INFO ===== +;; +;; The mask is 8 characters and represent which tiles around it is solid. +;; The characters represent, in order : +;; 1st : The tile on the top-left +;; 2nd : The tile on top +;; 3rd : The tile on the top-right +;; 4th : The tile on the left +;; /* There is no number for the center (the tile itself); the "solid" property is there for that */ +;; 5th : The tile on the right +;; 6th : The tile on the bottom-left +;; 7th : The tile below +;; 8th : The tile on the bottom-right +;; +;; Each character can either be : +;; '0', if the tile at that location must not be solid; +;; '1', if the tile at that location must be solid; +;; '*', if the tile at that location may or may not be solid. +;; +;; Example : +;; "11100*0*" +;; +;; If needed, multiple masks can be used. +;; +;; Example : The tile 3055 (downwards column with "ridges" going both sides) has those two masks : +;; "11100*0*" +;; "11100010" +;; ...because "11100010" is valid for that tile, "11100101" is too, but "11100111" isn't. (try it!) +;; +;; +;; ~ A. Semphris +;; (Contributor, 2020) +;; +;; +;; NOTE : A single id MUST NOT OCCUR MORE THAN ONE AUTOTILE IN THE ENTIRE FILE. +;; Otherwise, the behavior is UNDEFINED. + +(supertux-autotiles + (autotileset + (name "snow") + (default 11) + (autotile + (id 7) + (solid #f) + (mask "*0***011") + ) + (autotile + (id 8) + (solid #f) + (mask "*0***111") + ) + (autotile + (id 9) + (solid #f) + (mask "*0***110") + ) + (autotile + (id 202) + (solid #f) + (mask "*0***010") + ) + (autotile + (id 13) + (solid #t) + (mask "*0*010**") + (mask "*0*0110*") + ) + (autotile + (id 14) + (alt-id + (id 3988) + (weight 0.02) + ) + (alt-id + (id 3989) + (weight 0.05) + ) + (alt-id + (id 3990) + (weight 0.1) + ) + (solid #t) + (mask "*0*11***") + ) + (autotile + (id 15) + (solid #t) + (mask "*0*10**0") + (mask "*0*10*01") + ) + (autotile + (id 204) + (solid #t) + (mask "*0*00111") + ) + (autotile + (id 10) + (solid #t) + (mask "011010**") + (mask "0110110*") + ) + (autotile + (id 11) + (alt-id + (id 19) + (weight 0.002) + ) + (alt-id + (id 1539) + (weight 0.002) + ) + (alt-id + (id 5368) + (weight 0.2) + ) + (alt-id + (id 5369) + (weight 0.2) + ) + (solid #t) + (mask "11111***") + ) + (autotile + (id 12) + (solid #t) + (mask "11010**0") + (mask "11010*01") + ) + (autotile + (id 206) + (solid #t) + (mask "01000*0*") + (mask "01000010") + ) + (autotile + (id 16) + (solid #f) + (mask "011***0*") + ) + (autotile + (id 17) + (alt-id + (id 3991) + (weight 0.2) + ) + (solid #f) + (mask "111***0*") + ) + (autotile + (id 18) + (solid #f) + (mask "110***0*") + ) + (autotile + (id 205) + (solid #t) + (mask "01000111") + ) + (autotile + (id 30) + (solid #t) + (mask "11110**0") + (mask "11110*01") + ) + (autotile + (id 31) + (solid #t) + (mask "111010**") + (mask "1110110*") + ) + (autotile + (id 114) + (solid #t) + (mask "*0*0111*") + ) + (autotile + (id 113) + (solid #t) + (mask "*0*10*11") + ) + (autotile + (id 21) + (solid #t) + (mask "11010*11") + ) + (autotile + (id 22) + (solid #t) + (mask "0110111*") + ) + (autotile + (id 19) + (solid #t) + ) + (autotile + (id 203) + (solid #t) + (mask "*0*00*0*") + (mask "*0*00010") + ) + (autotile + (id 20) + (solid #t) + (mask "11011***") + ) + (autotile + (id 23) + (solid #t) + (mask "01111***") + ) + (autotile + (id 207) + (solid #t) + (mask "01110**0") + (mask "01110*01") + ) + (autotile + (id 208) + (solid #t) + (mask "110010**") + (mask "1100110*") + ) + (autotile + (id 3044) + (solid #t) + (mask "01000110") + ) + (autotile + (id 3045) + (solid #t) + (mask "01100110") + ) + (autotile + (id 3046) + (solid #t) + (mask "0100111*") + ) + (autotile + (id 3047) + (solid #t) + (mask "01010*11") + ) + (autotile + (id 3048) + (solid #t) + (mask "01010*0*") + (mask "01010*10") + ) + (autotile + (id 3049) + (solid #t) + (mask "11000011") + ) + (autotile + (id 3050) + (solid #t) + (mask "*0*00011") + ) + (autotile + (id 3051) + (solid #t) + (mask "*0*00110") + ) + (autotile + (id 3052) + (solid #t) + (mask "01000011") + ) + (autotile + (id 3053) + (solid #t) + (mask "01100*0*") + (mask "01100010") + ) + (autotile + (id 3055) + (solid #t) + (mask "11100*0*") + (mask "11100010") + ) + (autotile + (id 3056) + (solid #t) + (mask "010010**") + (mask "0100110*") + ) + (autotile + (id 3057) + (solid #t) + (mask "11000*0*") + (mask "11000010") + ) + (autotile + (id 3059) + (solid #f) + (mask "010***0*") + ) + (autotile + (id 4009) + (solid #t) + (mask "01100011") + ) + (autotile + (id 4010) + (solid #t) + (mask "11000110") + ) + (autotile + (id 4011) + (solid #t) + (mask "11110*11") + ) + (autotile + (id 4012) + (solid #t) + (mask "1110111*") + ) + (autotile + (id 4013) + (solid #t) + (mask "11100011") + ) + (autotile + (id 4014) + (solid #t) + (mask "11100110") + ) + (autotile + (id 4015) + (solid #t) + (mask "01110*11") + ) + (autotile + (id 4016) + (solid #t) + (mask "1100111*") + ) + (autotile + (id 4017) + (solid #t) + (mask "01100111") + ) + (autotile + (id 4018) + (solid #t) + (mask "11000111") + ) + (autotile + (id 4019) + (solid #t) + (mask "11100111") + ) + (autotile + (id 4020) + (solid #f) + (mask "110**011") + ) + (autotile + (id 4021) + (solid #f) + (mask "011**011") + ) + (autotile + (id 4022) + (solid #f) + (mask "011**111") + ) + (autotile + (id 4023) + (solid #f) + (mask "011**110") + ) + (autotile + (id 4024) + (solid #f) + (mask "110**111") + ) + (autotile + (id 4025) + (solid #f) + (mask "111**011") + ) + (autotile + (id 4026) + (solid #f) + (mask "111**111") + ) + (autotile + (id 4027) + (solid #f) + (mask "111**110") + ) + (autotile + (id 4028) + (solid #f) + (mask "110**110") + ) + (autotile + (id 4029) + (solid #f) + (mask "010**011") + ) + (autotile + (id 4030) + (solid #f) + (mask "010**111") + ) + (autotile + (id 4031) + (solid #f) + (mask "010**110") + ) + (autotile + (id 4032) + (solid #f) + (mask "010**010") + ) + (autotile + (id 4033) + (solid #f) + (mask "011**010") + ) + (autotile + (id 4034) + (solid #f) + (mask "111**010") + ) + (autotile + (id 4035) + (solid #f) + (mask "110**010") + ) + (autotile + (id 214) + (solid #t) + (mask "01011***") + ) + ) + (autotileset + (name "block_horiz") + (default 47) + (autotile + (id 27) + (solid #t) + (mask "***01***") + ) + (autotile + (id 28) + (solid #t) + (mask "***11***") + ) + (autotile + (id 29) + (solid #t) + (mask "***10***") + ) + (autotile + (id 47) + (solid #t) + (mask "***00***") + ) + ) + (autotileset + (name "block_vert") + (default 47) + (autotile + (id 211) + (solid #t) + (mask "*0****1*") + ) + (autotile + (id 212) + (solid #t) + (mask "*1****1*") + ) + (autotile + (id 213) + (solid #t) + (mask "*1****0*") + ) + (autotile + (id 47) + (solid #t) + (mask "*0****0*") + ) + ) + (autotileset-corner + (name "snow_bkg") + (default 2179) + (autotile + (id 2179) + (alt-id + (id 2180) + (weight 0.1) + ) + (alt-id + (id 2181) + (weight 0.1) + ) + (alt-id + (id 2188) + (weight 0.1) + ) + (alt-id + (id 2189) + (weight 0.1) + ) + (alt-id + (id 2187) + (weight 0.1) + ) + (alt-id + (id 2195) + (weight 0.1) + ) + (alt-id + (id 2196) + (weight 0.1) + ) + (alt-id + (id 2197) + (weight 0.1) + ) + (mask "1111") + ) + (autotile + (id 2185) + (mask "0001") + ) + (autotile + (id 2186) + (mask "0010") + ) + (autotile + (id 2193) + (mask "0100") + ) + (autotile + (id 2194) + (mask "1000") + ) + (autotile + (id 2182) + (mask "1110") + ) + (autotile + (id 2183) + (mask "1100") + ) + (autotile + (id 2184) + (mask "1101") + ) + (autotile + (id 2190) + (mask "1010") + ) + (autotile + (id 2192) + (mask "0101") + ) + (autotile + (id 2198) + (mask "1011") + ) + (autotile + (id 2199) + (mask "0011") + ) + (autotile + (id 2200) + (mask "0111") + ) + (autotile + (id 2201) + (mask "1001") + ) + (autotile + (id 2202) + (mask "0110") + ) + ) + (autotileset + (name "snow_underground") + (default 2391) + (autotile + (id 2384) + (solid #f) + (mask "*****011") + ) + (autotile + (id 2385) + (solid #f) + (mask "*****111") + ) + (autotile + (id 2386) + (solid #f) + (mask "*****110") + ) + (autotile + (id 2949) + (solid #f) + (mask "*****010") + ) + (autotile + (id 2387) + (solid #t) + (mask "*0*01011") + ) + (autotile + (id 2388) + (solid #t) + (mask "*0*11111") + ) + (autotile + (id 2389) + (solid #t) + (mask "*0*10110") + ) + (autotile + (id 2950) + (solid #t) + (mask "*0*00010") + ) + (autotile + (id 2390) + (solid #t) + (mask "*1101011") + ) + (autotile + (id 2391) + (alt-id + (id 2396) + (weight 0.1) + ) + (alt-id + (id 2397) + (weight 0.1) + ) + (alt-id + (id 2398) + (weight 0.1) + ) + (alt-id + (id 2399) + (weight 0.1) + ) + (solid #t) + (mask "11111111") + ) + (autotile + (id 2392) + (solid #t) + (mask "11*10110") + ) + (autotile + (id 2951) + (solid #t) + (mask "*1*00010") + ) + (autotile + (id 2393) + (solid #t) + (mask "*1101*0*") + ) + (autotile + (id 2394) + (solid #t) + (mask "11111*0*") + ) + (autotile + (id 2395) + (solid #t) + (mask "11*10*0*") + ) + (autotile + (id 2952) + (solid #t) + (mask "*1*00*0*") + ) + (autotile + (id 2953) + (solid #t) + (mask "*0*01*0*") + ) + (autotile + (id 2954) + (solid #t) + (mask "*0*11*0*") + ) + (autotile + (id 2955) + (solid #t) + (mask "*0*10*0*") + ) + (autotile + (id 2956) + (solid #t) + (mask "*0*00*0*") + ) + (autotile + (id 2957) + (solid #t) + (mask "11111110") + ) + (autotile + (id 2962) + (solid #t) + (mask "11111011") + ) + (autotile + (id 2958) + (solid #t) + (mask "11*10111") + ) + (autotile + (id 2961) + (solid #t) + (mask "*1101111") + ) + (autotile + (id 2959) + (solid #t) + (mask "11011111") + ) + (autotile + (id 2960) + (solid #t) + (mask "01111111") + ) + (autotile + (id 2997) + (solid #t) + (mask "*0*10111") + ) + (autotile + (id 2998) + (solid #t) + (mask "*0*01111") + ) + (autotile + (id 4037) + (solid #t) + (mask "*0*10011") + ) + (autotile + (id 4038) + (solid #t) + (mask "*0*01110") + ) + (autotile + (id 4039) + (solid #t) + (mask "01*10111") + ) + (autotile + (id 4040) + (solid #t) + (mask "*1001111") + ) + (autotile + (id 4041) + (solid #t) + (mask "*0*11110") + ) + (autotile + (id 4042) + (solid #t) + (mask "*0*11011") + ) + (autotile + (id 4043) + (solid #t) + (mask "*0*00011") + ) + (autotile + (id 4044) + (solid #t) + (mask "*0*00110") + ) + (autotile + (id 4045) + (solid #t) + (mask "*0*01010") + ) + (autotile + (id 4046) + (solid #t) + (mask "*0*11010") + ) + (autotile + (id 4047) + (solid #t) + (mask "*0*10010") + ) + (autotile + (id 4048) + (solid #t) + (mask "*0*00111") + ) + (autotile + (id 4049) + (solid #t) + (mask "*1*00011") + ) + (autotile + (id 4050) + (solid #t) + (mask "*1*00111") + ) + (autotile + (id 4051) + (solid #t) + (mask "*1*00110") + ) + (autotile + (id 4052) + (solid #t) + (mask "01011111") + ) + (autotile + (id 4053) + (solid #t) + (mask "*1001*0*") + ) + (autotile + (id 4054) + (solid #t) + (mask "01011*0*") + ) + (autotile + (id 4055) + (solid #t) + (mask "01*10*0*") + ) + (autotile + (id 4056) + (solid #t) + (mask "01011010") + ) + (autotile + (id 4057) + (solid #t) + (mask "*1001010") + ) + (autotile + (id 4058) + (solid #t) + (mask "01*10010") + ) + (autotile + (id 4059) + (solid #t) + (mask "11*10011") + ) + (autotile + (id 4060) + (solid #t) + (mask "*1101110") + ) + (autotile + (id 4061) + (solid #t) + (mask "*1001011") + ) + (autotile + (id 4062) + (solid #t) + (mask "01*10110") + ) + (autotile + (id 4063) + (solid #t) + (mask "11011011") + ) + (autotile + (id 4064) + (solid #t) + (mask "01111110") + ) + (autotile + (id 4065) + (solid #t) + (mask "01011110") + ) + (autotile + (id 4066) + (solid #t) + (mask "01011011") + ) + (autotile + (id 4067) + (solid #t) + (mask "01*10011") + ) + (autotile + (id 4068) + (solid #t) + (mask "*1001110") + ) + (autotile + (id 4069) + (solid #t) + (mask "11011110") + ) + (autotile + (id 4070) + (solid #t) + (mask "01111011") + ) + (autotile + (id 4071) + (solid #t) + (mask "11011010") + ) + (autotile + (id 4072) + (solid #t) + (mask "01111010") + ) + (autotile + (id 4073) + (solid #t) + (mask "*1101010") + ) + (autotile + (id 4074) + (solid #t) + (mask "11*10010") + ) + (autotile + (id 4075) + (solid #t) + (mask "01111*0*") + ) + (autotile + (id 4076) + (solid #t) + (mask "11011*0*") + ) + (autotile + (id 4077) + (solid #t) + (mask "11111010") + ) + ) + (autotileset + (name "snow-unisolid-1") + (default 2058) + (autotile + (id 2058) + (alt-id + (id 2060) + (weight 0.1) + ) + (alt-id + (id 2061) + (weight 0.1) + ) + (alt-id + (id 2065) + (weight 0.1) + ) + (alt-id + (id 2066) + (weight 0.1) + ) + (alt-id + (id 2070) + (weight 0.1) + ) + (alt-id + (id 2071) + (weight 0.02) + ) + (solid #t) + (mask "********") + ) + (autotile + (id 2058) + (solid #f) + (mask "*1****1*") + (mask "***11***") + ) + (autotile + (id 2052) + (solid #f) + (mask "00000001") + ) + (autotile + (id 2053) + (solid #f) + (mask "00000*1*") + ) + (autotile + (id 2054) + (solid #f) + (mask "00000100") + ) + (autotile + (id 2057) + (solid #f) + (mask "00*0100*") + ) + (autotile + (id 2059) + (solid #f) + (mask "*0010*00") + ) + (autotile + (id 2062) + (solid #f) + (mask "00100000") + ) + (autotile + (id 2063) + (solid #f) + (mask "*1*00000") + ) + (autotile + (id 2064) + (solid #f) + (mask "10000000") + ) + (autotile + (id 2050) + (solid #f) + (mask "*1*10*00") + (mask "*0110*00") + (mask "*1*00100") + ) + (autotile + (id 2051) + (solid #f) + (mask "*1*0100*") + (mask "10*0100*") + (mask "*1*00001") + ) + (autotile + (id 2055) + (solid #f) + (mask "*0010*1*") + (mask "*0010*01") + (mask "10000*1*") + ) + (autotile + (id 2056) + (solid #f) + (mask "00*01*1*") + (mask "00100*1*") + (mask "00*0110*") + ) + ) + (autotileset + (name "snow_unisolid2") + (default 2127) + (autotile + (id 5545) + (alt-id + (id 5543) + (weight 0.5) + ) + (alt-id + (id 5549) + (weight 0.5) + ) + (solid #t) + (mask "********") + ) + (autotile + (id 5545) + (solid #f) + (mask "*1****1*") + (mask "***11***") + ) + (autotile + (id 5538) + (solid #f) + (mask "00000001") + ) + (autotile + (id 5539) + (solid #f) + (mask "00000*1*") + ) + (autotile + (id 5540) + (solid #f) + (mask "00000100") + ) + (autotile + (id 5544) + (solid #f) + (mask "00*0100*") + ) + (autotile + (id 5546) + (solid #f) + (mask "*0010*00") + ) + (autotile + (id 5550) + (solid #f) + (mask "00100000") + ) + (autotile + (id 5551) + (solid #f) + (mask "*1*00000") + ) + (autotile + (id 5552) + (solid #f) + (mask "10000000") + ) + (autotile + (id 5541) + (solid #f) + (mask "*1*10*00") + (mask "*0110*00") + (mask "*1*00100") + ) + (autotile + (id 5542) + (solid #f) + (mask "*1*0100*") + (mask "10*0100*") + (mask "*1*00001") + ) + (autotile + (id 5547) + (solid #f) + (mask "*0010*1*") + (mask "*0010*01") + (mask "10000*1*") + ) + (autotile + (id 5548) + (solid #f) + (mask "00*01*1*") + (mask "00100*1*") + (mask "00*0110*") + ) + (autotile + (id 5553) + (solid #f) + (mask "10000001") + ) + (autotile + (id 5554) + (solid #f) + (mask "00100100") + ) + ) + (autotileset + (name "crystal") + (default 4750) + (autotile + (id 4736) + (solid #t) + (mask "*0*01*11") + ) + (autotile + (id 4737) + (alt-id + (id 4738) + (weight 0.5) + ) + (solid #t) + (mask "*0*11111") + ) + (autotile + (id 7298) + (alt-id + (id 7299) + (weight 0.5) + ) + (solid #f) + (mask "010**111") + ) + (autotile + (id 4739) + (solid #t) + (mask "*0*1011*") + ) + (autotile + (id 4740) + (solid #t) + (mask "11111011") + ) + (autotile + (id 7301) + (solid #f) + (mask "010**010") + ) + (autotile + (id 4750) + (alt-id + (id 4751) + (weight 0.25) + ) + (alt-id + (id 4763) + (weight 0.25) + ) + (alt-id + (id 4764) + (weight 0.25) + ) + (solid #t) + (mask "11111111") + ) + (autotile + (id 4752) + (alt-id + (id 4765) + (weight 0.5) + ) + (solid #t) + (mask "11*1011*") + ) + (autotile + (id 4753) + (solid #t) + (mask "11011111") + ) + (autotile + (id 4762) + (alt-id + (id 4749) + (weight 0.5) + ) + (solid #t) + (mask "*1101*11") + ) + (autotile + (id 4766) + (solid #t) + (mask "11111110") + ) + (autotile + (id 4775) + (solid #t) + (mask "*1101*0*") + ) + (autotile + (id 4777) + (alt-id + (id 4776) + (weight 0.5) + ) + (solid #t) + (mask "11111*0*") + ) + (autotile + (id 4778) + (solid #t) + (mask "11*10*0*") + ) + (autotile + (id 7215) + (solid #f) + (mask "*0***010") + ) + (autotile + (id 7216) + (solid #t) + (mask "*0*00*1*") + ) + (autotile + (id 7217) + (alt-id + (id 7218) + (weight 0.5) + ) + (solid #t) + (mask "*1*00*1*") + ) + (autotile + (id 7219) + (solid #t) + (mask "*1*00*0*") + ) + (autotile + (id 4788) + (solid #f) + (mask "011***0*") + ) + (autotile + (id 7221) + (solid #t) + (mask "*0*01*0*") + ) + (autotile + (id 7222) + (alt-id + (id 7223) + (weight 0.5) + ) + (solid #t) + (mask "*0*11*0*") + ) + (autotile + (id 4791) + (solid #f) + (mask "110***0*") + ) + (autotile + (id 7224) + (solid #t) + (mask "*0*10*0*") + ) + (autotile + (id 7225) + (solid #t) + (mask "*0*00*0*") + ) + (autotile + (id 7226) + (solid #t) + (mask "*0*01*10") + ) + (autotile + (id 7227) + (solid #t) + (mask "*0*11110") + ) + (autotile + (id 7228) + (solid #t) + (mask "*0*11011") + ) + (autotile + (id 7229) + (solid #t) + (mask "*0*1001*") + ) + (autotile + (id 7230) + (solid #t) + (mask "*1101*10") + ) + (autotile + (id 7231) + (solid #t) + (mask "*1001*10") + ) + (autotile + (id 7232) + (solid #t) + (mask "01*1001*") + ) + (autotile + (id 7233) + (solid #t) + (mask "11*1001*") + ) + (autotile + (id 7234) + (solid #t) + (mask "*1001*11") + ) + (autotile + (id 7235) + (solid #t) + (mask "*0*11010") + ) + (autotile + (id 7236) + (solid #t) + (mask "01011*0*") + ) + (autotile + (id 7237) + (solid #t) + (mask "01*1011*") + ) + (autotile + (id 7238) + (solid #t) + (mask "*1001*0*") + ) + (autotile + (id 7239) + (solid #t) + (mask "11011*0*") + ) + (autotile + (id 7240) + (solid #t) + (mask "01111*0*") + ) + (autotile + (id 7241) + (solid #t) + (mask "01*10*0*") + ) + (autotile + (id 7242) + (solid #t) + (mask "01111011") + ) + (autotile + (id 7243) + (solid #t) + (mask "11011110") + ) + (autotile + (id 7244) + (solid #t) + (mask "01011111") + ) + (autotile + (id 7245) + (solid #t) + (mask "01111110") + ) + (autotile + (id 7246) + (solid #t) + (mask "11011011") + ) + (autotile + (id 7247) + (solid #t) + (mask "11111010") + ) + (autotile + (id 7248) + (solid #t) + (mask "01011011") + ) + (autotile + (id 7249) + (solid #t) + (mask "01011110") + ) + (autotile + (id 7250) + (solid #t) + (mask "01011010") + ) + (autotile + (id 7251) + (solid #t) + (mask "01111010") + ) + (autotile + (id 7252) + (solid #t) + (mask "11011010") + ) + (autotile + (id 7296) + (solid #f) + (mask "110**010") + ) + (autotile + (id 7277) + (solid #f) + (mask "011**011") + ) + (autotile + (id 7278) + (alt-id + (id 7279) + (weight 0.5) + ) + (solid #f) + (mask "011**111") + ) + (autotile + (id 7300) + (solid #f) + (mask "010**110") + ) + (autotile + (id 7280) + (solid #f) + (mask "011**110") + ) + (autotile + (id 7281) + (solid #f) + (mask "011**010") + ) + (autotile + (id 7282) + (alt-id + (id 7287) + (weight 0.5) + ) + (solid #f) + (mask "111**011") + ) + (autotile + (id 7283) + (alt-id + (id 7284) + (weight 0.25) + ) + (alt-id + (id 7288) + (weight 0.25) + ) + (alt-id + (id 7289) + (weight 0.25) + ) + (solid #f) + (mask "111**111") + ) + (autotile + (id 4724) + (alt-id + (id 4725) + (weight 0.5) + ) + (solid #f) + (mask "*0***111") + ) + (autotile + (id 7285) + (alt-id + (id 7290) + (weight 0.5) + ) + (solid #f) + (mask "111**110") + ) + (autotile + (id 4726) + (solid #f) + (mask "*0***110") + ) + (autotile + (id 4727) + (solid #t) + (mask "01111111") + ) + (autotile + (id 7297) + (solid #f) + (mask "010**011") + ) + (autotile + (id 7286) + (alt-id + (id 7291) + (weight 0.5) + ) + (solid #f) + (mask "111**010") + ) + (autotile + (id 4789) + (alt-id + (id 4790) + (weight 0.5) + ) + (solid #f) + (mask "111***0*") + ) + (autotile + (id 7220) + (solid #f) + (mask "010***0*") + ) + (autotile + (id 7292) + (solid #f) + (mask "110**011") + ) + (autotile + (id 7293) + (alt-id + (id 7294) + (weight 0.5) + ) + (solid #f) + (mask "110**111") + ) + (autotile + (id 4723) + (solid #f) + (mask "*0***011") + ) + (autotile + (id 7295) + (solid #f) + (mask "110**110") + ) + ) + (autotileset + (name "forest_unisolid") + (default 1024) + (autotile + (id 7062) + (alt-id + (id 7070) + (weight 0.2) + ) + (alt-id + (id 7071) + (weight 0.2) + ) + (solid #t) + (mask "********") + ) + (autotile + (id 7062) + (solid #f) + (mask "*1****1*") + (mask "***11***") + ) + (autotile + (id 7055) + (solid #f) + (mask "00000001") + ) + (autotile + (id 7056) + (solid #f) + (mask "00000*1*") + ) + (autotile + (id 7057) + (solid #f) + (mask "00000100") + ) + (autotile + (id 7061) + (solid #f) + (mask "00*0100*") + ) + (autotile + (id 7063) + (solid #f) + (mask "*0010*00") + ) + (autotile + (id 7067) + (solid #f) + (mask "00100000") + ) + (autotile + (id 7068) + (solid #f) + (mask "*1*00000") + ) + (autotile + (id 7069) + (solid #f) + (mask "10000000") + ) + (autotile + (id 7058) + (solid #f) + (mask "*1*10*00") + (mask "*0110*00") + (mask "*1*00100") + ) + (autotile + (id 7059) + (solid #f) + (mask "*1*0100*") + (mask "10*0100*") + (mask "*1*00001") + ) + (autotile + (id 7064) + (solid #f) + (mask "*0010*1*") + (mask "*0010*01") + (mask "10000*1*") + ) + (autotile + (id 7065) + (solid #f) + (mask "00*01*1*") + (mask "00100*1*") + (mask "00*0110*") + ) + (autotile + (id 7060) + (solid #f) + (mask "10000001") + ) + (autotile + (id 7066) + (solid #f) + (mask "00100100") + ) + ) + (autotileset + (name "corrupted_unisolid") + (default 1362) + (autotile + (id 6417) + (alt-id + (id 6425) + (weight 0.2) + ) + (alt-id + (id 6426) + (weight 0.2) + ) + (solid #t) + (mask "********") + ) + (autotile + (id 6417) + (solid #f) + (mask "*1****1*") + (mask "***11***") + ) + (autotile + (id 6410) + (solid #f) + (mask "00000001") + ) + (autotile + (id 6411) + (solid #f) + (mask "00000*1*") + ) + (autotile + (id 6412) + (solid #f) + (mask "00000100") + ) + (autotile + (id 6416) + (solid #f) + (mask "00*0100*") + ) + (autotile + (id 6418) + (solid #f) + (mask "*0010*00") + ) + (autotile + (id 6422) + (solid #f) + (mask "00100000") + ) + (autotile + (id 6423) + (solid #f) + (mask "*1*00000") + ) + (autotile + (id 6424) + (solid #f) + (mask "10000000") + ) + (autotile + (id 6413) + (solid #f) + (mask "*1*10*00") + (mask "*0110*00") + (mask "*1*00100") + ) + (autotile + (id 6414) + (solid #f) + (mask "*1*0100*") + (mask "10*0100*") + (mask "*1*00001") + ) + (autotile + (id 6419) + (solid #f) + (mask "*0010*1*") + (mask "*0010*01") + (mask "10000*1*") + ) + (autotile + (id 6420) + (solid #f) + (mask "00*01*1*") + (mask "00100*1*") + (mask "00*0110*") + ) + (autotile + (id 6415) + (solid #f) + (mask "10000001") + ) + (autotile + (id 6421) + (solid #f) + (mask "00100100") + ) + ) + (autotileset + (name "ruin_backwall") + (default 1476) + (autotile + (id 4454) + (alt-id + (id 1476) + (weight 0.2) + ) + (alt-id + (id 1477) + (weight 0.2) + ) + (solid #t) + (mask "********") + ) + (autotile + (id 4454) + (solid #f) + (mask "*1****1*") + (mask "***11***") + ) + (autotile + (id 4448) + (solid #f) + (mask "00000001") + ) + (autotile + (id 4449) + (solid #f) + (mask "00000*1*") + ) + (autotile + (id 4450) + (solid #f) + (mask "00000100") + ) + (autotile + (id 4453) + (solid #f) + (mask "00*0100*") + ) + (autotile + (id 4455) + (solid #f) + (mask "*0010*00") + ) + (autotile + (id 4458) + (solid #f) + (mask "00100000") + ) + (autotile + (id 4459) + (solid #f) + (mask "*1*00000") + ) + (autotile + (id 4460) + (solid #f) + (mask "10000000") + ) + (autotile + (id 4451) + (solid #f) + (mask "*1*10*00") + (mask "*0110*00") + (mask "*1*00100") + ) + (autotile + (id 4452) + (solid #f) + (mask "*1*0100*") + (mask "10*0100*") + (mask "*1*00001") + ) + (autotile + (id 4456) + (solid #f) + (mask "*0010*1*") + (mask "*0010*01") + (mask "10000*1*") + ) + (autotile + (id 4457) + (solid #f) + (mask "00*01*1*") + (mask "00100*1*") + (mask "00*0110*") + ) + (autotile + (id 4461) + (solid #f) + (mask "10000001") + ) + (autotile + (id 4462) + (solid #f) + (mask "00100100") + ) + ) + (autotileset + (name "forest") + (default 1010) + (autotile + (id 1000) + (solid #f) + (mask "*****011") + ) + (autotile + (id 1001) + (alt-id + (id 1002) + (weight 0.5) + ) + (solid #f) + (mask "*****111") + ) + (autotile + (id 1003) + (solid #f) + (mask "*****110") + ) + (autotile + (id 1004) + (solid #t) + (mask "*0*01011") + ) + (autotile + (id 1005) + (alt-id + (id 1006) + (weight 0.5) + ) + (solid #t) + (mask "*0*11111") + ) + (autotile + (id 1007) + (solid #t) + (mask "*0*10110") + ) + (autotile + (id 1008) + (alt-id + (id 1012) + (weight 0.5) + ) + (solid #t) + (mask "*1101011") + ) + (autotile + (id 1009) + (alt-id + (id 1010) + (weight 0.1) + ) + (alt-id + (id 1013) + (weight 0.3) + ) + (alt-id + (id 1014) + (weight 0.3) + ) + (solid #t) + (mask "11111111") + ) + (autotile + (id 1011) + (alt-id + (id 1015) + (weight 0.5) + ) + (solid #t) + (mask "11*10110") + ) + (autotile + (id 1016) + (solid #t) + (mask "*1101*0*") + ) + (autotile + (id 1017) + (alt-id + (id 1018) + (weight 0.5) + ) + (solid #t) + (mask "11111*0*") + ) + (autotile + (id 1019) + (solid #t) + (mask "11*10*0*") + ) + (autotile + (id 3621) + (solid #t) + (mask "*0*01*0*") + ) + (autotile + (id 3622) + (alt-id + (id 3623) + (weight 0.5) + ) + (solid #t) + (mask "*0*11*0*") + ) + (autotile + (id 3624) + (solid #t) + (mask "*0*10*0*") + ) + (autotile + (id 1042) + (solid #t) + (mask "01111110") + ) + (autotile + (id 1043) + (solid #t) + (mask "11011011") + ) + (autotile + (id 1035) + (solid #t) + (mask "11*10111") + ) + (autotile + (id 1034) + (solid #t) + (mask "*1101111") + ) + (autotile + (id 1041) + (solid #t) + (mask "11011111") + ) + (autotile + (id 1040) + (solid #t) + (mask "01111111") + ) + (autotile + (id 1036) + (solid #t) + (mask "*0*01111") + ) + (autotile + (id 1037) + (solid #t) + (mask "*0*10111") + ) + (autotile + (id 1737) + (solid #t) + (mask "*0*00111") + ) + (autotile + (id 1038) + (solid #f) + (mask "***00010") + ) + (autotile + (id 1044) + (solid #t) + (mask "*0*00010") + ) + (autotile + (id 1033) + (solid #t) + (mask "*1*00111") + ) + (autotile + (id 1039) + (solid #t) + (mask "01011111") + ) + (autotile + (id 1738) + (solid #t) + (mask "*1*00010") + ) + (autotile + (id 4293) + (solid #t) + (mask "*0*01010") + ) + (autotile + (id 4294) + (solid #t) + (mask "*0*11110") + ) + (autotile + (id 4295) + (solid #t) + (mask "*0*11011") + ) + (autotile + (id 4296) + (solid #t) + (mask "*0*10010") + ) + (autotile + (id 4297) + (solid #t) + (mask "*1001011") + ) + (autotile + (id 4298) + (solid #t) + (mask "*1001010") + ) + (autotile + (id 4299) + (solid #t) + (mask "01*10010") + ) + (autotile + (id 4300) + (solid #t) + (mask "01*10110") + ) + (autotile + (id 4301) + (solid #t) + (mask "01011*0*") + ) + (autotile + (id 4302) + (solid #t) + (mask "*1101010") + ) + (autotile + (id 4303) + (solid #t) + (mask "11*10010") + ) + (autotile + (id 4304) + (solid #t) + (mask "*0*11010") + ) + (autotile + (id 4305) + (solid #t) + (mask "*1001*0*") + ) + (autotile + (id 4306) + (solid #t) + (mask "11011*0*") + ) + (autotile + (id 4307) + (solid #t) + (mask "01111*0*") + ) + (autotile + (id 4308) + (solid #t) + (mask "01*10*0*") + ) + (autotile + (id 4309) + (solid #t) + (mask "11011010") + ) + (autotile + (id 4310) + (solid #t) + (mask "01111010") + ) + (autotile + (id 4311) + (solid #t) + (mask "01011010") + ) + (autotile + (id 4312) + (solid #t) + (mask "11111010") + ) + (autotile + (id 4313) + (solid #t) + (mask "01011110") + ) + (autotile + (id 4314) + (solid #t) + (mask "01011011") + ) + (autotile + (id 4315) + (solid #t) + (mask "*0*01110") + ) + (autotile + (id 4316) + (solid #t) + (mask "*0*10011") + ) + (autotile + (id 4317) + (solid #t) + (mask "11111110") + ) + (autotile + (id 4318) + (solid #t) + (mask "11111011") + ) + (autotile + (id 4319) + (solid #t) + (mask "11011110") + ) + (autotile + (id 4320) + (solid #t) + (mask "01111011") + ) + (autotile + (id 4321) + (solid #t) + (mask "11*10011") + ) + (autotile + (id 4322) + (solid #t) + (mask "*1101110") + ) + (autotile + (id 4323) + (solid #t) + (mask "01*10011") + ) + (autotile + (id 4324) + (solid #t) + (mask "*1001110") + ) + (autotile + (id 4325) + (solid #t) + (mask "01*10111") + ) + (autotile + (id 4326) + (solid #t) + (mask "*1001111") + ) + (autotile + (id 4327) + (solid #t) + (mask "*0*00*0*") + ) + (autotile + (id 4328) + (solid #t) + (mask "*1*00011") + ) + (autotile + (id 4329) + (solid #t) + (mask "*1*00110") + ) + (autotile + (id 4330) + (solid #t) + (mask "*0*00011") + ) + (autotile + (id 4331) + (solid #t) + (mask "*0*00110") + ) + (autotile + (id 3472) + (solid #t) + (mask "*1*00*0*") + ) + ) + (autotileset + (name "underground_forest") + (default 1870) + (autotile + (id 1860) + (solid #f) + (mask "*****011") + ) + (autotile + (id 1861) + (alt-id + (id 1862) + (weight 0.5) + ) + (solid #f) + (mask "*****111") + ) + (autotile + (id 1863) + (solid #f) + (mask "*****110") + ) + (autotile + (id 1864) + (solid #t) + (mask "*0*01011") + ) + (autotile + (id 1865) + (alt-id + (id 1866) + (weight 0.5) + ) + (solid #t) + (mask "*0*11111") + ) + (autotile + (id 1867) + (solid #t) + (mask "*0*10110") + ) + (autotile + (id 1868) + (alt-id + (id 1872) + (weight 0.5) + ) + (solid #t) + (mask "*1101011") + ) + (autotile + (id 1869) + (alt-id + (id 1870) + (weight 0.1) + ) + (alt-id + (id 1873) + (weight 0.3) + ) + (alt-id + (id 1874) + (weight 0.3) + ) + (alt-id + (id 7050) + (weight 0.1) + ) + (alt-id + (id 7041) + (weight 0.1) + ) + (alt-id + (id 7167) + (weight 0.1) + ) + (solid #t) + (mask "11111111") + ) + (autotile + (id 1871) + (alt-id + (id 1875) + (weight 0.5) + ) + (solid #t) + (mask "11*10110") + ) + (autotile + (id 1876) + (solid #t) + (mask "*1101*0*") + ) + (autotile + (id 1877) + (alt-id + (id 1879) + (weight 0.5) + ) + (solid #t) + (mask "11111*0*") + ) + (autotile + (id 1880) + (solid #t) + (mask "11*10*0*") + ) + (autotile + (id 3479) + (solid #t) + (mask "*0*01*0*") + ) + (autotile + (id 3480) + (alt-id + (id 3481) + (weight 0.5) + ) + (solid #t) + (mask "*0*11*0*") + ) + (autotile + (id 3482) + (solid #t) + (mask "*0*10*0*") + ) + (autotile + (id 3473) + (solid #t) + (mask "11*10111") + ) + (autotile + (id 3474) + (solid #t) + (mask "*1101111") + ) + (autotile + (id 3475) + (solid #t) + (mask "11011111") + ) + (autotile + (id 3476) + (solid #t) + (mask "01111111") + ) + (autotile + (id 3477) + (solid #t) + (mask "*0*10111") + ) + (autotile + (id 3478) + (solid #t) + (mask "*0*01111") + ) + (autotile + (id 3483) + (solid #f) + (mask "*****010") + ) + (autotile + (id 3484) + (solid #t) + (mask "*0*00010") + ) + (autotile + (id 3485) + (solid #t) + (mask "*1*00111") + ) + (autotile + (id 3488) + (solid #t) + (mask "*1*00*0*") + ) + (autotile + (id 3489) + (solid #t) + (mask "*0*00111") + ) + (autotile + (id 3486) + (solid #t) + (mask "*1*00010") + ) + (autotile + (id 3487) + (solid #t) + (mask "01011111") + ) + (autotile + (id 7136) + (solid #t) + (mask "11111110") + ) + (autotile + (id 7137) + (solid #t) + (mask "11111011") + ) + (autotile + (id 7138) + (solid #t) + (mask "01111110") + ) + (autotile + (id 7139) + (solid #t) + (mask "11011011") + ) + (autotile + (id 7140) + (solid #t) + (mask "11111010") + ) + (autotile + (id 7141) + (solid #t) + (mask "01011010") + ) + (autotile + (id 7142) + (solid #t) + (mask "*0*00*0*") + ) + (autotile + (id 7102) + (solid #t) + (mask "*0*01010") + ) + (autotile + (id 7103) + (solid #t) + (mask "*0*11110") + ) + (autotile + (id 7104) + (solid #t) + (mask "*0*11011") + ) + (autotile + (id 7105) + (solid #t) + (mask "*0*10010") + ) + (autotile + (id 7106) + (solid #t) + (mask "*1001011") + ) + (autotile + (id 7107) + (solid #t) + (mask "*1001010") + ) + (autotile + (id 7108) + (solid #t) + (mask "01*10010") + ) + (autotile + (id 7109) + (solid #t) + (mask "01*10110") + ) + (autotile + (id 7110) + (solid #t) + (mask "01011*0*") + ) + (autotile + (id 7111) + (solid #t) + (mask "*1101010") + ) + (autotile + (id 7112) + (solid #t) + (mask "11*10010") + ) + (autotile + (id 7113) + (solid #t) + (mask "*0*11010") + ) + (autotile + (id 7114) + (solid #t) + (mask "*1001*0*") + ) + (autotile + (id 7115) + (solid #t) + (mask "11011*0*") + ) + (autotile + (id 7116) + (solid #t) + (mask "01111*0*") + ) + (autotile + (id 7117) + (solid #t) + (mask "01*10*0*") + ) + (autotile + (id 7118) + (solid #t) + (mask "11011010") + ) + (autotile + (id 7119) + (solid #t) + (mask "01111010") + ) + (autotile + (id 7120) + (solid #t) + (mask "*0*01110") + ) + (autotile + (id 7121) + (solid #t) + (mask "*0*10011") + ) + (autotile + (id 7122) + (solid #t) + (mask "01011110") + ) + (autotile + (id 7123) + (solid #t) + (mask "01011011") + ) + (autotile + (id 7124) + (solid #t) + (mask "11011110") + ) + (autotile + (id 7125) + (solid #t) + (mask "01111011") + ) + (autotile + (id 7126) + (solid #t) + (mask "11*10011") + ) + (autotile + (id 7127) + (solid #t) + (mask "*1101110") + ) + (autotile + (id 7128) + (solid #t) + (mask "01*10011") + ) + (autotile + (id 7129) + (solid #t) + (mask "*1001110") + ) + (autotile + (id 7130) + (solid #t) + (mask "01*10111") + ) + (autotile + (id 7131) + (solid #t) + (mask "*1001111") + ) + (autotile + (id 7132) + (solid #t) + (mask "*0*00011") + ) + (autotile + (id 7133) + (solid #t) + (mask "*0*00110") + ) + (autotile + (id 7134) + (solid #t) + (mask "*1*00011") + ) + (autotile + (id 7135) + (solid #t) + (mask "*1*00110") + ) + ) + (autotileset + (name "spikevine") + (default 471) + (autotile + (id 1972) + (solid #t) + (mask "*0*01*1*") + ) + (autotile + (id 1984) + (solid #t) + (mask "*0*10*1*") + ) + (autotile + (id 1973) + (alt-id + (id 1974) + (weight 0.5) + ) + (solid #t) + (mask "*1*01*1*") + ) + (autotile + (id 1976) + (alt-id + (id 1980) + (weight 0.5) + ) + (solid #t) + (mask "*0*11*1*") + ) + (autotile + (id 1975) + (solid #t) + (mask "*1*01*0*") + ) + (autotile + (id 1987) + (solid #t) + (mask "*1*10*0*") + ) + (autotile + (id 1979) + (alt-id + (id 1983) + (weight 0.5) + ) + (solid #t) + (mask "*1*11*0*") + ) + (autotile + (id 1985) + (alt-id + (id 1986) + (weight 0.5) + ) + (solid #t) + (mask "*1*10*1*") + ) + (autotile + (id 5577) + (solid #t) + (mask "*0*01*0*") + ) + (autotile + (id 5582) + (solid #t) + (mask "*0*00*1*") + ) + (autotile + (id 5578) + (alt-id + (id 5583) + (weight 0.5) + ) + (solid #t) + (mask "*0*11*0*") + ) + (autotile + (id 5584) + (alt-id + (id 5580) + (weight 0.5) + ) + (solid #t) + (mask "*1*00*1*") + ) + (autotile + (id 5585) + (solid #t) + (mask "*1*00*0*") + ) + (autotile + (id 5579) + (solid #t) + (mask "*0*10*0*") + ) + (autotile + (id 1977) + (alt-id + (id 1978) + (weight 0.2) + ) + (alt-id + (id 1981) + (weight 0.2) + ) + (alt-id + (id 1982) + (weight 0.2) + ) + (solid #t) + (mask "*1*11*1*") + ) + (autotile + (id 5581) + (solid #t) + (mask "*0*00*0*") + ) + ) + (autotileset-corner + (name "forest_bkg") + (default 2005) + (autotile + (id 5663) + (alt-id + (id 5664) + (weight 0.1) + ) + (alt-id + (id 5665) + (weight 0.1) + ) + (alt-id + (id 5674) + (weight 0.1) + ) + (alt-id + (id 5675) + (weight 0.1) + ) + (alt-id + (id 5676) + (weight 0.1) + ) + (alt-id + (id 5685) + (weight 0.1) + ) + (alt-id + (id 5686) + (weight 0.1) + ) + (alt-id + (id 5687) + (weight 0.1) + ) + (mask "1111") + ) + (autotile + (id 5645) + (mask "0001") + ) + (autotile + (id 5646) + (mask "0010") + ) + (autotile + (id 5643) + (mask "0100") + ) + (autotile + (id 5644) + (mask "1000") + ) + (autotile + (id 5666) + (mask "1110") + ) + (autotile + (id 5667) + (mask "1100") + ) + (autotile + (id 5668) + (mask "1101") + ) + (autotile + (id 5677) + (mask "1010") + ) + (autotile + (id 5679) + (mask "0101") + ) + (autotile + (id 5688) + (mask "1011") + ) + (autotile + (id 5689) + (mask "0011") + ) + (autotile + (id 5690) + (mask "0111") + ) + (autotile + (id 5680) + (mask "1001") + ) + (autotile + (id 5681) + (mask "0110") + ) + ) + (autotileset + (name "corrupted_forest") + (default 1433) + (autotile + (id 1423) + (solid #f) + (mask "*****011") + ) + (autotile + (id 1424) + (alt-id + (id 1425) + (weight 0.5) + ) + (solid #f) + (mask "*****111") + ) + (autotile + (id 1426) + (solid #f) + (mask "*****110") + ) + (autotile + (id 1427) + (solid #t) + (mask "*0*01011") + ) + (autotile + (id 1428) + (alt-id + (id 1429) + (weight 0.5) + ) + (solid #t) + (mask "*0*11111") + ) + (autotile + (id 1430) + (solid #t) + (mask "*0*10110") + ) + (autotile + (id 1431) + (alt-id + (id 1435) + (weight 0.5) + ) + (solid #t) + (mask "*1101011") + ) + (autotile + (id 1432) + (alt-id + (id 1433) + (weight 0.1) + ) + (alt-id + (id 1436) + (weight 0.3) + ) + (alt-id + (id 1437) + (weight 0.3) + ) + (solid #t) + (mask "11111111") + ) + (autotile + (id 1434) + (alt-id + (id 1438) + (weight 0.5) + ) + (solid #t) + (mask "11*10110") + ) + (autotile + (id 1439) + (solid #t) + (mask "*1101*0*") + ) + (autotile + (id 1440) + (alt-id + (id 1441) + (weight 0.5) + ) + (solid #t) + (mask "11111*0*") + ) + (autotile + (id 1442) + (solid #t) + (mask "11*10*0*") + ) + (autotile + (id 3923) + (solid #t) + (mask "*0*01*0*") + ) + (autotile + (id 3924) + (alt-id + (id 3925) + (weight 0.5) + ) + (solid #t) + (mask "*0*11*0*") + ) + (autotile + (id 3926) + (solid #t) + (mask "*0*10*0*") + ) + (autotile + (id 3417) + (solid #t) + (mask "*1*00111") + ) + (autotile + (id 3373) + (solid #t) + (mask "*1101111") + ) + (autotile + (id 3374) + (solid #t) + (mask "11*10111") + ) + (autotile + (id 3375) + (solid #t) + (mask "*0*01111") + ) + (autotile + (id 6546) + (solid #t) + (mask "01011010") + ) + (autotile + (id 3379) + (solid #t) + (mask "01111111") + ) + (autotile + (id 3380) + (solid #t) + (mask "11011111") + ) + (autotile + (id 3381) + (solid #t) + (mask "01111110") + ) + (autotile + (id 3376) + (solid #t) + (mask "*0*10111") + ) + (autotile + (id 6541) + (solid #f) + (mask "*****010") + ) + (autotile + (id 3414) + (solid #t) + (mask "11111110") + ) + (autotile + (id 3415) + (solid #t) + (mask "11111011") + ) + (autotile + (id 3382) + (solid #t) + (mask "11011011") + ) + (autotile + (id 6542) + (solid #t) + (mask "*0*00010") + ) + (autotile + (id 6543) + (solid #t) + (mask "*0*00111") + ) + (autotile + (id 6544) + (solid #t) + (mask "*1*00010") + ) + (autotile + (id 3378) + (solid #t) + (mask "01011111") + ) + (autotile + (id 6545) + (solid #t) + (mask "11111010") + ) + (autotile + (id 6547) + (solid #t) + (mask "*1*00*0*") + ) + (autotile + (id 6548) + (solid #t) + (mask "*0*00*0*") + ) + ;; 6205, 6206 and 6208 are transition tiles from grassed to grassless + ;; 6193 to 6200 are grassless + (autotile + (id 6549) + (solid #t) + (mask "*0*01010") + ) + (autotile + (id 6550) + (solid #t) + (mask "*0*11110") + ) + (autotile + (id 6551) + (solid #t) + (mask "*0*11011") + ) + (autotile + (id 6552) + (solid #t) + (mask "*0*10010") + ) + (autotile + (id 6553) + (solid #t) + (mask "*1001011") + ) + (autotile + (id 6554) + (solid #t) + (mask "*1001010") + ) + (autotile + (id 6555) + (solid #t) + (mask "01*10010") + ) + (autotile + (id 6556) + (solid #t) + (mask "01*10110") + ) + (autotile + (id 6557) + (solid #t) + (mask "01011*0*") + ) + (autotile + (id 6558) + (solid #t) + (mask "*1101010") + ) + (autotile + (id 6559) + (solid #t) + (mask "11*10010") + ) + (autotile + (id 6560) + (solid #t) + (mask "*0*11010") + ) + (autotile + (id 6561) + (solid #t) + (mask "*1001*0*") + ) + (autotile + (id 6562) + (solid #t) + (mask "11011*0*") + ) + (autotile + (id 6563) + (solid #t) + (mask "01111*0*") + ) + (autotile + (id 6564) + (solid #t) + (mask "01*10*0*") + ) + (autotile + (id 6565) + (solid #t) + (mask "11011010") + ) + (autotile + (id 6566) + (solid #t) + (mask "01111010") + ) + ;; 6567 and 6568 are transitions from grassed to grassless + (autotile + (id 6569) + (solid #t) + (mask "01011110") + ) + (autotile + (id 6570) + (solid #t) + (mask "01011011") + ) + (autotile + (id 6571) + (solid #t) + (mask "*0*01110") + ) + (autotile + (id 6572) + (solid #t) + (mask "*0*10011") + ) + ;; 6573 and 6574 are transitions to grassless + (autotile + (id 6575) + (solid #t) + (mask "11011110") + ) + (autotile + (id 6576) + (solid #t) + (mask "01111011") + ) + (autotile + (id 6577) + (solid #t) + (mask "11*10011") + ) + (autotile + (id 6578) + (solid #t) + (mask "*1101110") + ) + (autotile + (id 6579) + (solid #t) + (mask "01*10011") + ) + (autotile + (id 6580) + (solid #t) + (mask "*1001110") + ) + (autotile + (id 6581) + (solid #t) + (mask "01*10111") + ) + (autotile + (id 6582) + (solid #t) + (mask "*1001111") + ) + ;; 6583 and 6584 transition grassless... + (autotile + (id 6585) + (solid #t) + (mask "*1*00011") + ) + (autotile + (id 6586) + (solid #t) + (mask "*1*00110") + ) + (autotile + (id 6587) + (solid #t) + (mask "*0*00011") + ) + (autotile + (id 6588) + (solid #t) + (mask "*0*00110") + ) + ;; 6589 to 6598 - grassless... + ) + (autotileset + (name "underground_corrupted") + (default 3697) + (autotile + (id 6808) + (solid #f) + (mask "*****011") + ) + (autotile + (id 6809) + (alt-id + (id 6810) + (weight 0.5) + ) + (solid #f) + (mask "*****111") + ) + (autotile + (id 6811) + (solid #f) + (mask "*****110") + ) + (autotile + (id 6822) + (solid #t) + (mask "*0*01011") + ) + (autotile + (id 6823) + (alt-id + (id 6824) + (weight 0.5) + ) + (solid #t) + (mask "*0*11111") + ) + (autotile + (id 6825) + (solid #t) + (mask "*0*10110") + ) + (autotile + (id 6836) + (alt-id + (id 6850) + (weight 0.5) + ) + (solid #t) + (mask "*1101011") + ) + (autotile + (id 6837) + (alt-id + (id 6838) + (weight 0.1) + ) + (alt-id + (id 6851) + (weight 0.3) + ) + (alt-id + (id 6852) + (weight 0.3) + ) + (alt-id + (id 6952) + (weight 0.1) + ) + (alt-id + (id 6955) + (weight 0.1) + ) + (alt-id + (id 6958) + (weight 0.1) + ) + (solid #t) + (mask "11111111") + ) + (autotile + (id 6839) + (alt-id + (id 6853) + (weight 0.5) + ) + (solid #t) + (mask "11*10110") + ) + (autotile + (id 6864) + (solid #t) + (mask "*1101*0*") + ) + (autotile + (id 6865) + (alt-id + (id 6866) + (weight 0.5) + ) + (solid #t) + (mask "11111*0*") + ) + (autotile + (id 6867) + (solid #t) + (mask "11*10*0*") + ) + (autotile + (id 6804) + (solid #t) + (mask "*0*01*0*") + ) + (autotile + (id 6805) + (alt-id + (id 6806) + (weight 0.5) + ) + (solid #t) + (mask "*0*11*0*") + ) + (autotile + (id 6807) + (solid #t) + (mask "*0*10*0*") + ) + (autotile + (id 6880) + (solid #t) + (mask "11*10111") + ) + (autotile + (id 6881) + (solid #t) + (mask "*1101111") + ) + (autotile + (id 6882) + (solid #t) + (mask "11011111") + ) + (autotile + (id 6883) + (solid #t) + (mask "01111111") + ) + (autotile + (id 6885) + (solid #t) + (mask "*0*10111") + ) + (autotile + (id 6884) + (solid #t) + (mask "*0*01111") + ) + (autotile + (id 6888) + (solid #f) + (mask "*****010") + ) + (autotile + (id 6889) + (solid #t) + (mask "*0*00010") + ) + (autotile + (id 6893) + (solid #t) + (mask "*1*00111") + ) + (autotile + (id 6896) + (solid #t) + (mask "*1*00*0*") + ) + (autotile + (id 6890) + (solid #t) + (mask "*0*00111") + ) + (autotile + (id 6891) + (solid #t) + (mask "*1*00010") + ) + (autotile + (id 6892) + (solid #t) + (mask "01011111") + ) + (autotile + (id 6878) + (solid #t) + (mask "11111110") + ) + (autotile + (id 6879) + (solid #t) + (mask "11111011") + ) + (autotile + (id 6886) + (solid #t) + (mask "01111110") + ) + (autotile + (id 6887) + (solid #t) + (mask "11011011") + ) + (autotile + (id 6894) + (solid #t) + (mask "11111010") + ) + (autotile + (id 6895) + (solid #t) + (mask "01011010") + ) + (autotile + (id 6897) + (solid #t) + (mask "*0*00*0*") + ) + (autotile + (id 6898) + (solid #t) + (mask "*0*01010") + ) + (autotile + (id 6899) + (solid #t) + (mask "*0*11110") + ) + (autotile + (id 6900) + (solid #t) + (mask "*0*11011") + ) + (autotile + (id 6901) + (solid #t) + (mask "*0*10010") + ) + (autotile + (id 6902) + (solid #t) + (mask "*1001011") + ) + (autotile + (id 6903) + (solid #t) + (mask "*1001010") + ) + (autotile + (id 6904) + (solid #t) + (mask "01*10010") + ) + (autotile + (id 6905) + (solid #t) + (mask "01*10110") + ) + (autotile + (id 6906) + (solid #t) + (mask "01011*0*") + ) + (autotile + (id 6907) + (solid #t) + (mask "*1101010") + ) + (autotile + (id 6908) + (solid #t) + (mask "11*10010") + ) + (autotile + (id 6909) + (solid #t) + (mask "*0*11010") + ) + (autotile + (id 6910) + (solid #t) + (mask "*1001*0*") + ) + (autotile + (id 6911) + (solid #t) + (mask "11011*0*") + ) + (autotile + (id 6912) + (solid #t) + (mask "01111*0*") + ) + (autotile + (id 6913) + (solid #t) + (mask "01*10*0*") + ) + (autotile + (id 6914) + (solid #t) + (mask "11011010") + ) + (autotile + (id 6915) + (solid #t) + (mask "01111010") + ) + (autotile + (id 6916) + (solid #t) + (mask "*0*01110") + ) + (autotile + (id 6917) + (solid #t) + (mask "*0*10011") + ) + (autotile + (id 6918) + (solid #t) + (mask "01011110") + ) + (autotile + (id 6919) + (solid #t) + (mask "01011011") + ) + (autotile + (id 6920) + (solid #t) + (mask "11011110") + ) + (autotile + (id 6921) + (solid #t) + (mask "01111011") + ) + (autotile + (id 6922) + (solid #t) + (mask "11*10011") + ) + (autotile + (id 6923) + (solid #t) + (mask "*1101110") + ) + (autotile + (id 6924) + (solid #t) + (mask "01*10011") + ) + (autotile + (id 6925) + (solid #t) + (mask "*1001110") + ) + (autotile + (id 6926) + (solid #t) + (mask "01*10111") + ) + (autotile + (id 6927) + (solid #t) + (mask "*1001111") + ) + (autotile + (id 6928) + (solid #t) + (mask "*0*00011") + ) + (autotile + (id 6929) + (solid #t) + (mask "*0*00110") + ) + (autotile + (id 6930) + (solid #t) + (mask "*1*00011") + ) + (autotile + (id 6931) + (solid #t) + (mask "*1*00110") + ) + ) + (autotileset + (name "corruptvine") + (default 1679) + (autotile + (id 6110) + (solid #t) + (mask "*0*01*1*") + ) + (autotile + (id 6113) + (solid #t) + (mask "*0*10*1*") + ) + (autotile + (id 6117) + (alt-id + (id 6124) + (weight 0.5) + ) + (solid #t) + (mask "*1*01*1*") + ) + (autotile + (id 6111) + (alt-id + (id 6112) + (weight 0.5) + ) + (solid #t) + (mask "*0*11*1*") + ) + (autotile + (id 6131) + (solid #t) + (mask "*1*01*0*") + ) + (autotile + (id 6134) + (solid #t) + (mask "*1*10*0*") + ) + (autotile + (id 6132) + (alt-id + (id 6133) + (weight 0.5) + ) + (solid #t) + (mask "*1*11*0*") + ) + (autotile + (id 6120) + (alt-id + (id 6127) + (weight 0.5) + ) + (solid #t) + (mask "*1*10*1*") + ) + (autotile + (id 6114) + (solid #t) + (mask "*0*01*0*") + ) + (autotile + (id 6123) + (solid #t) + (mask "*0*00*1*") + ) + (autotile + (id 6115) + (alt-id + (id 6129) + (weight 0.5) + ) + (solid #t) + (mask "*0*11*0*") + ) + (autotile + (id 6130) + (alt-id + (id 6121) + (weight 0.5) + ) + (solid #t) + (mask "*1*00*1*") + ) + (autotile + (id 6137) + (solid #t) + (mask "*1*00*0*") + ) + (autotile + (id 6116) + (solid #t) + (mask "*0*10*0*") + ) + (autotile + (id 6118) + (alt-id + (id 6125) + (weight 0.2) + ) + (alt-id + (id 6119) + (weight 0.2) + ) + (alt-id + (id 6126) + (weight 0.2) + ) + (solid #t) + (mask "*1*11*1*") + ) + (autotile + (id 6122) + (solid #t) + (mask "*0*00*0*") + ) + ) + (autotileset-corner + (name "corrupted_bkg") + (default 4435) + (autotile + (id 6160) + (alt-id + (id 6161) + (weight 0.1) + ) + (alt-id + (id 6162) + (weight 0.1) + ) + (alt-id + (id 6171) + (weight 0.1) + ) + (alt-id + (id 6172) + (weight 0.1) + ) + (alt-id + (id 6173) + (weight 0.1) + ) + (alt-id + (id 6182) + (weight 0.1) + ) + (alt-id + (id 6183) + (weight 0.1) + ) + (alt-id + (id 6184) + (weight 0.1) + ) + (mask "1111") + ) + (autotile + (id 6142) + (mask "0001") + ) + (autotile + (id 6143) + (mask "0010") + ) + (autotile + (id 6140) + (mask "0100") + ) + (autotile + (id 6141) + (mask "1000") + ) + (autotile + (id 6163) + (mask "1110") + ) + (autotile + (id 6164) + (mask "1100") + ) + (autotile + (id 6165) + (mask "1101") + ) + (autotile + (id 6174) + (mask "1010") + ) + (autotile + (id 6176) + (mask "0101") + ) + (autotile + (id 6185) + (mask "1011") + ) + (autotile + (id 6186) + (mask "0011") + ) + (autotile + (id 6187) + (mask "0111") + ) + (autotile + (id 6177) + (mask "1001") + ) + (autotile + (id 6178) + (mask "0110") + ) + ) + (autotileset + (name "halloween") + (default 3077) + (autotile + (id 3068) + (solid #f) + (mask "00000001") + ) + (autotile + (id 3069) + (alt-id + (id 3070) + (weight 0.5) + ) + (solid #f) + (mask "00000*1*") + ) + (autotile + (id 3071) + (solid #f) + (mask "00000100") + ) + (autotile + (id 3072) + (solid #f) + (mask "0000100*") + ) + (autotile + (id 3073) + (alt-id + (id 3074) + (weight 0.5) + ) + (solid #t) + (mask "000*****") + ) + (autotile + (id 3075) + (solid #f) + (mask "00010*00") + ) + (autotile + (id 3076) + (alt-id + (id 3080) + (weight 0.5) + ) + (solid #f) + (mask "0010100*") + ) + (autotile + (id 3077) + (alt-id + (id 3078) + (weight 0.25) + ) + (alt-id + (id 3081) + (weight 0.25) + ) + (alt-id + (id 3082) + (weight 0.25) + ) + (solid #t) + (mask "*1******") + ) + (autotile + (id 3079) + (alt-id + (id 3083) + (weight 0.5) + ) + (solid #f) + (mask "10010*00") + ) + (autotile + (id 3084) + (solid #f) + (mask "00100000") + ) + (autotile + (id 3085) + (alt-id + (id 3086) + (weight 0.5) + ) + (solid #f) + (mask "*1*00000") + ) + (autotile + (id 3087) + (solid #f) + (mask "10000000") + ) + (autotile + (id 3088) + (solid #f) + (mask "*1*10*00") + ) + (autotile + (id 3089) + (solid #f) + (mask "*1*0100*") + ) + ;; 3094 and 3095 are not autotileable with the current system + (autotile + (id 3090) + (solid #f) + (mask "10010*1*") + ) + (autotile + (id 3091) + (solid #f) + (mask "00101*1*") + ) + ;; 3096 and 3097 are not autotileable with the current system + (autotile + (id 3092) + (solid #t) + (mask "100*****") + ) + (autotile + (id 3093) + (solid #t) + (mask "001*****") + ) + (autotile + (id 3137) + (solid #f) + (mask "00010*1*") + ) + (autotile + (id 3138) + (solid #f) + (mask "00001*1*") + ) + ;; 3098 to 3105 are not autotileable with the current system + (autotile + (id 4971) + (solid #f) + (mask "00100001") + ) + (autotile + (id 4972) + (solid #f) + (mask "00100*1*") + ) + (autotile + (id 4973) + (solid #f) + (mask "00100100") + ) + (autotile + (id 4974) + (solid #f) + (mask "*1*11*0*") + ) + (autotile + (id 4975) + (solid #f) + (mask "*1*00001") + ) + (autotile + (id 4976) + (solid #f) + (mask "*1*00*1*") + ) + (autotile + (id 4977) + (solid #f) + (mask "*1*00100") + ) + (autotile + (id 4978) + (solid #f) + (mask "10111*0*") + ) + (autotile + (id 4979) + (solid #f) + (mask "10000001") + ) + (autotile + (id 4980) + (solid #f) + (mask "10000*1*") + ) + (autotile + (id 4981) + (solid #f) + (mask "10000100") + ) + (autotile + (id 4982) + (solid #f) + (mask "10111*1*") + ) + (autotile + (id 4983) + (solid #f) + (mask "*1*10*1*") + ) + (autotile + (id 4984) + (solid #f) + (mask "*1*01*1*") + ) + (autotile + (id 4985) + (solid #f) + (mask "*1*11*1*") + ) + (autotile + (id 4986) + (solid #f) + (mask "00011*1*") + ) + (autotile + (id 4987) + (solid #f) + (mask "00000101") + ) + (autotile + (id 4988) + (solid #f) + (mask "10100000") + ) + (autotile + (id 4989) + (solid #f) + (mask "10100101") + ) + (autotile + (id 4990) + (solid #t) + (mask "101*****") + ) + (autotile + (id 4991) + (solid #f) + (mask "*1*00101") + ) + (autotile + (id 4992) + (solid #f) + (mask "10100*1*") + ) + (autotile + (id 4993) + (solid #f) + (mask "1010110*") + ) + (autotile + (id 4994) + (solid #f) + (mask "10110*01") + ) + (autotile + (id 4995) + (solid #f) + (mask "*1*10*01") + ) + (autotile + (id 4996) + (solid #f) + (mask "*1*0110*") + ) + (autotile + (id 4997) + (solid #f) + (mask "1010100*") + ) + (autotile + (id 4998) + (solid #f) + (mask "10110*00") + ) + (autotile + (id 4999) + (solid #f) + (mask "10110*1*") + ) + (autotile + (id 5000) + (solid #f) + (mask "10101*1*") + ) + (autotile + (id 5001) + (solid #f) + (mask "0010110*") + ) + (autotile + (id 5002) + (solid #f) + (mask "10010*01") + ) + (autotile + (id 5003) + (solid #f) + (mask "00110*1*") + ) + (autotile + (id 5004) + (solid #f) + (mask "10001*1*") + ) + (autotile + (id 5005) + (solid #f) + (mask "00111*1*") + ) + (autotile + (id 5006) + (solid #f) + (mask "10011*1*") + ) + (autotile + (id 5007) + (solid #f) + (mask "10100100") + ) + (autotile + (id 5008) + (solid #f) + (mask "10100001") + ) + (autotile + (id 5009) + (solid #f) + (mask "10000101") + ) + (autotile + (id 5010) + (solid #f) + (mask "00100101") + ) + (autotile + (id 5011) + (solid #f) + (mask "00110*00") + ) + (autotile + (id 5012) + (solid #f) + (mask "00010*01") + ) + (autotile + (id 5013) + (solid #f) + (mask "0000110*") + ) + (autotile + (id 5014) + (solid #f) + (mask "1000100*") + ) + (autotile + (id 5015) + (solid #f) + (mask "00111*0*") + ) + (autotile + (id 5016) + (solid #f) + (mask "10011*0*") + ) + (autotile + (id 5017) + (solid #f) + (mask "00110*01") + ) + (autotile + (id 5018) + (solid #f) + (mask "1000110*") + ) + (autotile + (id 5019) + (solid #f) + (mask "00011*0*") + ) + ) + (autotileset-corner + (name "halloween_bkg") + (default 3106) + (autotile + (id 3114) + (alt-id + (id 3128) + (weight 0.5) + ) + (mask "0001") + ) + (autotile + (id 3115) + (alt-id + (id 3116) + (weight 0.5) + ) + (mask "0011") + ) + (autotile + (id 3117) + (alt-id + (id 3129) + (weight 0.5) + ) + (mask "0010") + ) + (autotile + (id 3121) + (alt-id + (id 3122) + (weight 0.5) + ) + (mask "0101") + ) + (autotile + (id 3106) + (alt-id + (id 3107) + (weight 0.25) + ) + (alt-id + (id 3108) + (weight 0.25) + ) + (alt-id + (id 3109) + (weight 0.25) + ) + (mask "1111") + ) + (autotile + (id 3123) + (alt-id + (id 3127) + (weight 0.5) + ) + (mask "1010") + ) + (autotile + (id 3131) + (alt-id + (id 3135) + (weight 0.5) + ) + (mask "0100") + ) + (autotile + (id 3132) + (alt-id + (id 3133) + (weight 0.5) + ) + (mask "1100") + ) + (autotile + (id 3134) + (alt-id + (id 3136) + (weight 0.5) + ) + (mask "1000") + ) + (autotile + (id 3118) + (mask "1110") + ) + (autotile + (id 3119) + (mask "1101") + ) + (autotile + (id 3120) + (mask "1001") + ) + (autotile + (id 3126) + (mask "0110") + ) + (autotile + (id 3124) + (mask "1011") + ) + (autotile + (id 3125) + (mask "0111") + ) + ) + (autotileset + (name "snowfort_light") + (default 3934) + (autotile + (id 3930) + (solid #f) + (mask "00000001") + ) + (autotile + (id 3931) + (solid #f) + (mask "00000*1*") + ) + (autotile + (id 3932) + (solid #f) + (mask "00000100") + ) + (autotile + (id 3939) + (solid #f) + (mask "00*01*1*") + ) + (autotile + (id 3933) + (solid #f) + (mask "00*0100*") + ) + (autotile + (id 3934) + (solid #t) + (mask "********") + ) + (autotile + (id 3935) + (solid #f) + (mask "*0010*00") + ) + (autotile + (id 3941) + (solid #f) + (mask "*1*0100*") + ) + (autotile + (id 3936) + (solid #f) + (mask "00100000") + ) + (autotile + (id 3937) + (solid #f) + (mask "*1*00000") + ) + (autotile + (id 3938) + (solid #f) + (mask "10000000") + ) + (autotile + (id 3940) + (solid #f) + (mask "*0010*1*") + ) + (autotile + (id 5310) + (solid #f) + (mask "*0*11*1*") + ) + (autotile + (id 5311) + (solid #f) + (mask "00100100") + ) + (autotile + (id 5312) + (solid #f) + (mask "10000001") + ) + (autotile + (id 3942) + (solid #f) + (mask "*1*10*00") + ) + (autotile + (id 5313) + (solid #f) + (mask "00100001") + ) + (autotile + (id 3945) + (solid #f) + (mask "*1*00*1*") + ) + (autotile + (id 5314) + (solid #f) + (mask "10000100") + ) + (autotile + (id 5315) + (solid #f) + (mask "00000101") + ) + (autotile + (id 3944) + (solid #f) + (mask "*1*10*1*") + ) + (autotile + (id 3943) + (solid #f) + (mask "*1*01*1*") + ) + (autotile + (id 5316) + (solid #f) + (mask "*1*11*0*") + ) + (autotile + (id 5317) + (solid #f) + (mask "*0*11*0*") + ) + (autotile + (id 5318) + (solid #f) + (mask "00100*1*") + ) + (autotile + (id 5319) + (solid #f) + (mask "10000*1*") + ) + (autotile + (id 5320) + (solid #f) + (mask "10100*1*") + ) + (autotile + (id 5321) + (solid #f) + (mask "10100000") + ) + (autotile + (id 3947) + (solid #f) + (mask "*1*00001") + ) + (autotile + (id 3946) + (solid #f) + (mask "*1*00100") + ) + (autotile + (id 5322) + (solid #f) + (mask "*1*00101") + ) + (autotile + (id 5323) + (solid #f) + (mask "*1*11*1*") + ) + (autotile + (id 5324) + (solid #f) + (mask "00*0110*") + ) + (autotile + (id 5325) + (solid #f) + (mask "*0010*01") + ) + (autotile + (id 5326) + (solid #f) + (mask "10100001") + ) + (autotile + (id 5327) + (solid #f) + (mask "10100101") + ) + (autotile + (id 5328) + (solid #f) + (mask "10*0100*") + ) + (autotile + (id 5329) + (solid #f) + (mask "*0110*00") + ) + (autotile + (id 5330) + (solid #f) + (mask "10100100") + ) + (autotile + (id 5331) + (solid #f) + (mask "10000101") + ) + (autotile + (id 5332) + (solid #f) + (mask "10*0110*") + ) + (autotile + (id 5333) + (solid #f) + (mask "*0110*01") + ) + (autotile + (id 5288) + (solid #f) + (mask "*1*10*01") + ) + (autotile + (id 5289) + (solid #f) + (mask "00100101") + ) + (autotile + (id 5290) + (solid #f) + (mask "10*01*1*") + ) + (autotile + (id 5291) + (solid #f) + (mask "*0110*1*") + ) + (autotile + (id 5292) + (solid #f) + (mask "*1*0110*") + ) + ) + (autotileset + (name "snowfort_dark") + (default 3955) + (autotile + (id 3948) + (solid #f) + (mask "00000001") + ) + (autotile + (id 3949) + (solid #f) + (mask "00000*1*") + ) + (autotile + (id 3950) + (solid #f) + (mask "00000100") + ) + (autotile + (id 3951) + (solid #f) + (mask "00*01*1*") + ) + (autotile + (id 3954) + (solid #f) + (mask "00*0100*") + ) + (autotile + (id 3955) + (solid #t) + (mask "********") + ) + (autotile + (id 3956) + (solid #f) + (mask "*0010*00") + ) + (autotile + (id 3957) + (solid #f) + (mask "*1*0100*") + ) + (autotile + (id 3960) + (solid #f) + (mask "00100000") + ) + (autotile + (id 3961) + (solid #f) + (mask "*1*00000") + ) + (autotile + (id 3962) + (solid #f) + (mask "10000000") + ) + (autotile + (id 3952) + (solid #f) + (mask "*0010*1*") + ) + (autotile + (id 5338) + (solid #f) + (mask "*0*11*1*") + ) + (autotile + (id 5339) + (solid #f) + (mask "00100100") + ) + (autotile + (id 5294) + (solid #f) + (mask "10000001") + ) + (autotile + (id 3958) + (solid #f) + (mask "*1*10*00") + ) + (autotile + (id 5295) + (solid #f) + (mask "00100001") + ) + (autotile + (id 3953) + (solid #f) + (mask "*1*00*1*") + ) + (autotile + (id 5296) + (solid #f) + (mask "10000100") + ) + (autotile + (id 5298) + (solid #f) + (mask "00000101") + ) + (autotile + (id 3964) + (solid #f) + (mask "*1*10*1*") + ) + (autotile + (id 3963) + (solid #f) + (mask "*1*01*1*") + ) + (autotile + (id 5299) + (solid #f) + (mask "*1*11*0*") + ) + (autotile + (id 5300) + (solid #f) + (mask "*0*11*0*") + ) + (autotile + (id 5334) + (solid #f) + (mask "00100*1*") + ) + (autotile + (id 5335) + (solid #f) + (mask "10000*1*") + ) + (autotile + (id 5336) + (solid #f) + (mask "10100*1*") + ) + (autotile + (id 5337) + (solid #f) + (mask "10100000") + ) + (autotile + (id 3965) + (solid #f) + (mask "*1*00001") + ) + (autotile + (id 3959) + (solid #f) + (mask "*1*00100") + ) + (autotile + (id 5340) + (solid #f) + (mask "*1*00101") + ) + (autotile + (id 5341) + (solid #f) + (mask "*1*11*1*") + ) + (autotile + (id 5342) + (solid #f) + (mask "00*0110*") + ) + (autotile + (id 5343) + (solid #f) + (mask "*0010*01") + ) + (autotile + (id 5344) + (solid #f) + (mask "10100001") + ) + (autotile + (id 5345) + (solid #f) + (mask "10100101") + ) + (autotile + (id 5346) + (solid #f) + (mask "10*0100*") + ) + (autotile + (id 5347) + (solid #f) + (mask "*0110*00") + ) + (autotile + (id 5348) + (solid #f) + (mask "10100100") + ) + (autotile + (id 5349) + (solid #f) + (mask "10000101") + ) + (autotile + (id 5350) + (solid #f) + (mask "10*0110*") + ) + (autotile + (id 5351) + (solid #f) + (mask "*0110*01") + ) + (autotile + (id 5352) + (solid #f) + (mask "*1*10*01") + ) + (autotile + (id 5353) + (solid #f) + (mask "00100101") + ) + (autotile + (id 5354) + (solid #f) + (mask "10*01*1*") + ) + (autotile + (id 5355) + (solid #f) + (mask "*0110*1*") + ) + (autotile + (id 5356) + (solid #f) + (mask "*1*0110*") + ) + ) + (autotileset + (name "ice_chunks") + (default 3977) + (autotile + (id 3972) + (solid #t) + (mask "*0*01*11") + ) + (autotile + (id 3973) + (solid #t) + (mask "*0*11111") + ) + (autotile + (id 3974) + (solid #t) + (mask "*0*1011*") + ) + (autotile + (id 3975) + (solid #t) + (mask "11011111") + ) + (autotile + (id 3976) + (solid #t) + (mask "*1101*11") + ) + (autotile + (id 3977) + (solid #t) + (mask "11111111") + ) + (autotile + (id 3978) + (solid #t) + (mask "11*1011*") + ) + (autotile + (id 3979) + (solid #t) + (mask "01111111") + ) + (autotile + (id 3980) + (solid #t) + (mask "*1101*0*") + ) + (autotile + (id 3981) + (solid #t) + (mask "11111*0*") + ) + (autotile + (id 3982) + (solid #t) + (mask "11*10*0*") + ) + (autotile + (id 3983) + (solid #t) + (mask "11111011") + ) + (autotile + (id 3984) + (solid #t) + (mask "*1*00*0*") + ) + (autotile + (id 3985) + (solid #t) + (mask "11011011") + ) + (autotile + (id 3986) + (solid #t) + (mask "01111110") + ) + (autotile + (id 3987) + (solid #t) + (mask "11111110") + ) + (autotile + (id 5206) + (solid #t) + (mask "11011110") + ) + (autotile + (id 5207) + (solid #t) + (mask "*0*11*0*") + ) + (autotile + (id 5208) + (solid #t) + (mask "01111011") + ) + (autotile + (id 5209) + (solid #t) + (mask "11111010") + ) + (autotile + (id 5210) + (solid #t) + (mask "*0*01*0*") + ) + (autotile + (id 5211) + (solid #t) + (mask "*0*10*0*") + ) + (autotile + (id 5212) + (solid #t) + (mask "*0*00*1*") + ) + (autotile + (id 5213) + (solid #t) + (mask "*1*00*1*") + ) + (autotile + (id 5214) + (solid #t) + (mask "11011*0*") + ) + (autotile + (id 5215) + (solid #t) + (mask "01111*0*") + ) + (autotile + (id 5216) + (solid #t) + (mask "01011*0*") + ) + (autotile + (id 5217) + (solid #t) + (mask "01011111") + ) + (autotile + (id 5218) + (solid #t) + (mask "*0*11110") + ) + (autotile + (id 5219) + (solid #t) + (mask "*0*11011") + ) + (autotile + (id 5220) + (solid #t) + (mask "*0*11010") + ) + (autotile + (id 5221) + (solid #t) + (mask "*0*00*0*") + ) + (autotile + (id 5222) + (solid #t) + (mask "11*1001*") + ) + (autotile + (id 5223) + (solid #t) + (mask "*1101*10") + ) + (autotile + (id 5224) + (solid #t) + (mask "01011110") + ) + (autotile + (id 5225) + (solid #t) + (mask "01011010") + ) + (autotile + (id 5226) + (solid #t) + (mask "01*1011*") + ) + (autotile + (id 5227) + (solid #t) + (mask "*1001*11") + ) + (autotile + (id 5228) + (solid #t) + (mask "01011011") + ) + (autotile + (id 5229) + (solid #t) + (mask "01111010") + ) + (autotile + (id 5230) + (solid #t) + (mask "01*1001*") + ) + (autotile + (id 5231) + (solid #t) + (mask "*1001*10") + ) + (autotile + (id 5232) + (solid #t) + (mask "*0*01*10") + ) + (autotile + (id 5233) + (solid #t) + (mask "11011010") + ) + (autotile + (id 5234) + (solid #t) + (mask "01*10*0*") + ) + (autotile + (id 5235) + (solid #t) + (mask "*1001*0*") + ) + (autotile + (id 5236) + (solid #t) + (mask "*0*1001*") + ) + ) + (autotileset + (name "rope") + (default 3459) + (autotile + (id 4334) + (solid #t) + (mask "*0*01*1*") + ) + (autotile + (id 4335) + (solid #t) + (mask "*0*10*1*") + ) + (autotile + (id 3064) + (solid #t) + (mask "*1*01*1*") + ) + (autotile + (id 3065) + (solid #t) + (mask "*0*11*1*") + ) + (autotile + (id 4338) + (solid #t) + (mask "*1*01*0*") + ) + (autotile + (id 4339) + (solid #t) + (mask "*1*10*0*") + ) + (autotile + (id 3067) + (solid #t) + (mask "*1*11*0*") + ) + (autotile + (id 3066) + (solid #t) + (mask "*1*10*1*") + ) + (autotile + (id 4332) + (solid #t) + (mask "*0*01*0*") + ) + (autotile + (id 4336) + (solid #t) + (mask "*0*00*1*") + ) + (autotile + (id 3062) + (solid #t) + (mask "*0*11*0*") + ) + (autotile + (id 3060) + (solid #t) + (mask "*1*00*1*") + ) + (autotile + (id 3061) + (solid #t) + (mask "*1*00*0*") + ) + (autotile + (id 4333) + (solid #t) + (mask "*0*10*0*") + ) + (autotile + (id 3063) + (solid #t) + (mask "*1*11*1*") + ) + (autotile + (id 4337) + (solid #t) + (mask "*0*00*0*") + ) + ) + (autotileset + (name "retro castle") + (default 64) + (autotile + (id 64) + (solid #t) + (mask "*1*11111") + (mask "11010101") + ) + (autotile + (id 3521) + (solid #t) + (mask "*0*01*0*") + ) + (autotile + (id 66) + (solid #t) + (mask "*1*11*0*") + (mask "*1*11010") + ) + (autotile + (id 5123) + (solid #t) + (mask "*0*00*1*") + ) + (autotile + (id 68) + (solid #t) + (mask "*0*01011") + (mask "*0101111") + (mask "*0*01111") + ) + (autotile + (id 69) + (solid #t) + (mask "*0*10110") + (mask "10*10111") + (mask "*0*10111") + ) + (autotile + (id 5128) + (solid #t) + (mask "*1*01*11") + ) + (autotile + (id 7273) + (solid #t) + (mask "*0*01*10") + ) + (autotile + (id 5130) + (solid #t) + (mask "*1*1011*") + ) + (autotile + (id 5131) + (solid #t) + (mask "*1*00*1*") + ) + (autotile + (id 5134) + (solid #t) + (mask "*0*11110") + ) + (autotile + (id 3279) + (solid #t) + (mask "*0*11*0*") + (mask "*0*11010") + ) + (autotile + (id 5139) + (solid #t) + (mask "*1*00*0*") + ) + (autotile + (id 5140) + (solid #t) + (mask "*1101*10") + (mask "*1*01*10") + ) + (autotile + (id 5141) + (solid #t) + (mask "*1*1001*") + ) + (autotile + (id 7274) + (solid #t) + (mask "*0*1001*") + ) + (autotile + (id 5135) + (solid #t) + (mask "*0*11011") + ) + (autotile + (id 3522) + (solid #t) + (mask "*0*00*0*") + ) + (autotile + (id 65) + (solid #t) + (mask "*0*11111") + ) + (autotile + (id 67) + (solid #t) + (mask "01101*0*") + (mask "*1001*0*") + (mask "11101*01") + (mask "1110100*") + (mask "11101100") + ) + (autotile + (id 3516) + (solid #t) + (mask "*0*10*0*") + ) + (autotile + (id 3517) + (solid #t) + (mask "*1*11110") + (mask "11*11110") + ) + (autotile + (id 3518) + (solid #t) + (mask "*1*1000*") + (mask "11010100") + (mask "11110001") + (mask "01*1010*") + (mask "1111010*") + ) + (autotile + (id 3519) + (solid #t) + (mask "*1*11011") + (mask "*1*11011") + ) + ) + (autotileset + (name "retro cave") + (default 36) + (autotile + (id 1815) + (solid #t) + (mask "*1*00*0*") + ) + (autotile + (id 1816) + (solid #t) + (mask "*0*00*0*") + ) + (autotile + (id 32) + (solid #f) + (mask "*****111") + ) + (autotile + (id 33) + (solid #f) + (mask "*****011") + ) + (autotile + (id 5154) + (solid #t) + (mask "*0*01111") + ) + (autotile + (id 5155) + (solid #t) + (mask "*0*10111") + ) + (autotile + (id 36) + (solid #t) + (mask "11111111") + ) + (autotile + (id 37) + (solid #t) + (mask "*0*11111") + ) + (autotile + (id 38) + (solid #t) + (mask "*1101011") + ) + (autotile + (id 39) + (solid #t) + (mask "*0*10110") + ) + (autotile + (id 40) + (solid #t) + (mask "*1101*0*") + ) + (autotile + (id 41) + (solid #t) + (mask "11111*0*") + ) + (autotile + (id 42) + (solid #t) + (mask "11*10*0*") + ) + (autotile + (id 43) + (solid #t) + (mask "11*10110") + ) + (autotile + (id 5168) + (solid #t) + (mask "01111111") + ) + (autotile + (id 5169) + (solid #t) + (mask "11011111") + ) + (autotile + (id 5170) + (solid #t) + (mask "01011111") + ) + (autotile + (id 5175) + (solid #t) + (mask "11111011") + ) + (autotile + (id 5176) + (solid #t) + (mask "11111110") + ) + (autotile + (id 5177) + (solid #t) + (mask "11111010") + ) + (autotile + (id 5178) + (solid #t) + (mask "*0*01010") + ) + (autotile + (id 5179) + (solid #t) + (mask "*0*11010") + ) + (autotile + (id 5180) + (solid #t) + (mask "*0*10010") + ) + (autotile + (id 5181) + (solid #t) + (mask "11011*0*") + ) + (autotile + (id 5182) + (solid #t) + (mask "01111*0*") + ) + (autotile + (id 5183) + (solid #t) + (mask "*0*11110") + ) + (autotile + (id 5184) + (solid #t) + (mask "*0*11011") + ) + (autotile + (id 5185) + (solid #t) + (mask "*1001*0*") + ) + (autotile + (id 5186) + (solid #t) + (mask "01011*0*") + ) + (autotile + (id 5187) + (solid #t) + (mask "01*10*0*") + ) + (autotile + (id 5188) + (solid #t) + (mask "*1001011") + ) + (autotile + (id 5189) + (solid #t) + (mask "01*10110") + ) + (autotile + (id 5190) + (solid #t) + (mask "*1*00011") + ) + (autotile + (id 5191) + (solid #t) + (mask "*0*00110") + ) + (autotile + (id 1739) + (solid #t) + (mask "*1*00010") + ) + (autotile + (id 1740) + (solid #t) + (mask "*0*00010") + ) + (autotile + (id 1741) + (solid #f) + (mask "*****010") + ) + (autotile + (id 5198) + (solid #t) + (mask "*0*00011") + ) + (autotile + (id 7253) + (solid #t) + (mask "01*10011") + ) + (autotile + (id 7254) + (solid #t) + (mask "11*10011") + ) + (autotile + (id 7255) + (solid #t) + (mask "01*10010") + ) + (autotile + (id 7256) + (solid #t) + (mask "*1001110") + ) + (autotile + (id 7257) + (solid #t) + (mask "*1101110") + ) + (autotile + (id 7258) + (solid #t) + (mask "01001010") + (mask "*1001010") + (mask "11001010") + ) + (autotile + (id 7259) + (solid #t) + (mask "01111010") + ) + (autotile + (id 7260) + (solid #t) + (mask "01*10111") + ) + (autotile + (id 7261) + (solid #t) + (mask "*1001111") + ) + (autotile + (id 7262) + (solid #t) + (mask "01111110") + ) + (autotile + (id 7263) + (solid #t) + (mask "11011011") + ) + (autotile + (id 7264) + (solid #t) + (mask "11011110") + ) + (autotile + (id 7265) + (solid #t) + (mask "01111011") + ) + (autotile + (id 7266) + (solid #t) + (mask "11011010") + ) + (autotile + (id 7267) + (solid #t) + (mask "01011110") + (mask "01011110") + ) + (autotile + (id 7268) + (solid #t) + (mask "01011011") + (mask "01011011") + ) + (autotile + (id 7269) + (solid #t) + (mask "11*10010") + ) + (autotile + (id 7270) + (solid #t) + (mask "*1101010") + ) + (autotile + (id 7271) + (solid #t) + (mask "*0*10011") + ) + (autotile + (id 7272) + (solid #t) + (mask "*0*01110") + ) + (autotile + (id 5156) + (solid #t) + (mask "*0*00111") + ) + (autotile + (id 5162) + (solid #t) + (mask "11*10111") + ) + (autotile + (id 119) + (solid #t) + (mask "*0*01*0*") + ) + (autotile + (id 120) + (solid #t) + (mask "*0*10*0*") + ) + (autotile + (id 121) + (solid #t) + (mask "*0*11*0*") + ) + (autotile + (id 5163) + (solid #t) + (mask "*1*00111") + ) + (autotile + (id 5161) + (solid #t) + (mask "*1101111") + ) + (autotile + (id 35) + (solid #t) + (mask "*0*01011") + ) + (autotile + (id 34) + (solid #f) + (mask "*****110") + ) + (autotile + (id 5197) + (solid #t) + (mask "*1*00110") + ) + (autotile + (id 5196) + (solid #t) + (mask "01011010") + ) + ) + (autotileset + (name "retro snow") + (default 4000) + (autotile + (id 4100) + (solid #f) + (mask "*****011") + ) + (autotile + (id 4101) + (solid #f) + (mask "*****110") + ) + (autotile + (id 4102) + (solid #f) + (mask "*****111") + ) + (autotile + (id 4103) + (solid #t) + (mask "*1101*0*") + ) + (autotile + (id 4000) + (alt-id + (id 4078) + (weight 0.01) + ) + (solid #t) + (mask "11111111") + ) + (autotile + (id 4001) + (alt-id + (id 4002) + (weight 0.2) + ) + (alt-id + (id 4003) + (weight 0.1) + ) + (solid #t) + (mask "*0*11111") + ) + (autotile + (id 4157) + (solid #t) + (mask "*0*01011") + ) + (autotile + (id 4158) + (solid #t) + (mask "*0*10110") + ) + (autotile + (id 4159) + (solid #t) + (mask "*1101111") + ) + (autotile + (id 4160) + (solid #t) + (mask "11*10111") + ) + (autotile + (id 4161) + (solid #t) + (mask "*1101011") + ) + (autotile + (id 4162) + (solid #t) + (mask "11*10110") + ) + (autotile + (id 4163) + (solid #t) + (mask "01111111") + ) + (autotile + (id 4164) + (solid #t) + (mask "11011111") + ) + (autotile + (id 4165) + (solid #t) + (mask "11*10*0*") + ) + (autotile + (id 4166) + (solid #t) + (mask "11111011") + ) + (autotile + (id 4167) + (solid #t) + (mask "11111110") + ) + (autotile + (id 4168) + (solid #t) + (mask "*0*01111") + ) + (autotile + (id 4169) + (solid #t) + (mask "*0*10111") + ) + (autotile + (id 4170) + (alt-id + (id 4171) + (weight 0.2) + ) + (alt-id + (id 4172) + (weight 0.1) + ) + (solid #t) + (mask "*0*11*0*") + ) + (autotile + (id 4173) + (solid #t) + (mask "*1*00110") + ) + (autotile + (id 4174) + (solid #t) + (mask "01*10010") + ) + (autotile + (id 4175) + (solid #t) + (mask "*1*00011") + ) + (autotile + (id 4176) + (solid #t) + (mask "*1001010") + ) + (autotile + (id 4177) + (solid #t) + (mask "01111011") + ) + (autotile + (id 4178) + (solid #t) + (mask "11011110") + ) + (autotile + (id 4179) + (solid #t) + (mask "*1*00111") + ) + (autotile + (id 4180) + (solid #t) + (mask "01011010") + ) + (autotile + (id 4181) + (solid #t) + (mask "*0*01*0*") + ) + (autotile + (id 4182) + (solid #t) + (mask "*0*10*0*") + ) + (autotile + (id 4183) + (solid #t) + (mask "01011111") + ) + (autotile + (id 4184) + (solid #t) + (mask "11111010") + ) + (autotile + (id 4185) + (solid #f) + (mask "*****010") + ) + (autotile + (id 4186) + (solid #t) + (mask "*0*00010") + ) + (autotile + (id 4187) + (solid #t) + (mask "*1*00010") + ) + (autotile + (id 4188) + (solid #t) + (mask "*1*00*0*") + ) + (autotile + (id 4189) + (solid #t) + (mask "*0*00*0*") + ) + (autotile + (id 4190) + (solid #t) + (mask "01*10110") + ) + (autotile + (id 4191) + (solid #t) + (mask "11*10010") + ) + (autotile + (id 4192) + (solid #t) + (mask "*1001011") + ) + (autotile + (id 4193) + (solid #t) + (mask "*1101010") + ) + (autotile + (id 4194) + (solid #t) + (mask "*0*00111") + ) + (autotile + (id 5093) + (solid #t) + (mask "01011110") + ) + (autotile + (id 5094) + (solid #t) + (mask "*0*00011") + ) + (autotile + (id 5095) + (solid #t) + (mask "01011*0*") + ) + (autotile + (id 5096) + (solid #t) + (mask "01011011") + ) + (autotile + (id 5097) + (solid #t) + (mask "*0*00110") + ) + (autotile + (id 5098) + (solid #t) + (mask "11011*0*") + ) + (autotile + (id 5099) + (solid #t) + (mask "01*10*0*") + ) + (autotile + (id 5100) + (solid #t) + (mask "01*10111") + ) + (autotile + (id 5101) + (solid #t) + (mask "01111*0*") + ) + (autotile + (id 5102) + (solid #t) + (mask "*1001*0*") + ) + (autotile + (id 5103) + (solid #t) + (mask "*1001111") + ) + (autotile + (id 5104) + (solid #t) + (mask "*0*11010") + ) + (autotile + (id 5105) + (solid #t) + (mask "*0*10010") + ) + (autotile + (id 5106) + (solid #t) + (mask "*0*10011") + ) + (autotile + (id 5107) + (solid #t) + (mask "01*10011") + ) + (autotile + (id 5108) + (solid #t) + (mask "*0*11110") + (mask "00111110") + ) + (autotile + (id 5109) + (solid #t) + (mask "*0*01010") + ) + (autotile + (id 5110) + (solid #t) + (mask "*0*01110") + ) + (autotile + (id 5111) + (solid #t) + (mask "*1001110") + ) + (autotile + (id 5112) + (solid #t) + (mask "*0*11011") + (mask "10011011") + ) + (autotile + (id 5113) + (solid #t) + (mask "11011010") + ) + (autotile + (id 5114) + (solid #t) + (mask "01111010") + ) + (autotile + (id 5115) + (solid #t) + (mask "11011011") + ) + (autotile + (id 5116) + (solid #t) + (mask "01111110") + ) + (autotile + (id 7275) + (solid #t) + (mask "*1101110") + ) + (autotile + (id 7276) + (solid #t) + (mask "11*10011") + ) + (autotile + (id 4079) + (alt-id + (id 4080) + (weight 0.2) + ) + (alt-id + (id 4081) + (weight 0.1) + ) + (solid #t) + (mask "11111*0*") + ) + ) +) diff --git a/data/images/background/antarctic/ice_floes_back.png b/data/images/background/antarctic/ice_floes_back.png new file mode 100644 index 00000000000..90740f5f897 Binary files /dev/null and b/data/images/background/antarctic/ice_floes_back.png differ diff --git a/data/images/background/antarctic/ice_floes_front.png b/data/images/background/antarctic/ice_floes_front.png new file mode 100644 index 00000000000..5e29bb679a9 Binary files /dev/null and b/data/images/background/antarctic/ice_floes_front.png differ diff --git a/data/images/background/antarctic/ice_mountains.png b/data/images/background/antarctic/ice_mountains.png new file mode 100644 index 00000000000..4313a8fd43e Binary files /dev/null and b/data/images/background/antarctic/ice_mountains.png differ diff --git a/data/images/background/antarctic/ice_mountains_panorama.png b/data/images/background/antarctic/ice_mountains_panorama.png new file mode 100644 index 00000000000..17d58d79d55 Binary files /dev/null and b/data/images/background/antarctic/ice_mountains_panorama.png differ diff --git a/data/images/background/antarctic/snowmountain_panorama.png b/data/images/background/antarctic/snowmountain_panorama.png new file mode 100644 index 00000000000..1236c9c097f Binary files /dev/null and b/data/images/background/antarctic/snowmountain_panorama.png differ diff --git a/data/images/background/block_snow/block-snow-background.deprecated.png b/data/images/background/block_snow/block-snow-background.deprecated.png new file mode 100644 index 00000000000..cbb5f23e0ca Binary files /dev/null and b/data/images/background/block_snow/block-snow-background.deprecated.png differ diff --git a/data/images/background/block_snow/block-snow-midground.deprecated.png b/data/images/background/block_snow/block-snow-midground.deprecated.png new file mode 100644 index 00000000000..6aa5d9dbb95 Binary files /dev/null and b/data/images/background/block_snow/block-snow-midground.deprecated.png differ diff --git a/data/images/background/block_snow/block-snow-top.deprecated.png b/data/images/background/block_snow/block-snow-top.deprecated.png new file mode 100644 index 00000000000..1b1f0b93987 Binary files /dev/null and b/data/images/background/block_snow/block-snow-top.deprecated.png differ diff --git a/data/images/background/halloween/mountain.deprecated.png b/data/images/background/halloween/mountain.deprecated.png new file mode 100644 index 00000000000..a302df5a938 Binary files /dev/null and b/data/images/background/halloween/mountain.deprecated.png differ diff --git a/data/images/background/halloween/vignette.deprecated.png b/data/images/background/halloween/vignette.deprecated.png new file mode 100644 index 00000000000..89b2a66fedd Binary files /dev/null and b/data/images/background/halloween/vignette.deprecated.png differ diff --git a/data/images/background/ice_cave/cave2.deprecated.jpg b/data/images/background/ice_cave/cave2.deprecated.jpg new file mode 100644 index 00000000000..512993adaf1 Binary files /dev/null and b/data/images/background/ice_cave/cave2.deprecated.jpg differ diff --git a/data/images/converters/data.stcd b/data/images/converters/data.stcd new file mode 100644 index 00000000000..2bb7cef9de7 --- /dev/null +++ b/data/images/converters/data.stcd @@ -0,0 +1,12 @@ +(supertux-converter-data + (nightly_all_tiles.sttc + (title (_ "Nightly Tiles")) + (author "SuperTux Team") + (description (_ "For levels, created in previous Nightly builds.")) + ) + (pre-0.6.3_crystal_tiles.sttc + (title (_ "Pre-0.6.3 Crystal Tiles")) + (author "tylerandari12") + (description (_ "For levels, created in pre-0.6.3 versions, which use crystal tiles.")) + ) +) diff --git a/data/images/converters/nightly_all_tiles.sttc b/data/images/converters/nightly_all_tiles.sttc new file mode 100644 index 00000000000..e2dbc141ef3 --- /dev/null +++ b/data/images/converters/nightly_all_tiles.sttc @@ -0,0 +1,2322 @@ +24 -> 5203 +25 -> 5204 +112 -> 24 +275 -> 5238 +278 -> 5239 +279 -> 5240 +280 -> 5241 +276 -> 5244 +281 -> 5245 +282 -> 5247 +277 -> 5250 +283 -> 5251 +284 -> 5253 +289 -> 5257 +292 -> 5258 +290 -> 5262 +291 -> 5263 +293 -> 5264 +294 -> 5265 +285 -> 5242 +286 -> 5243 +483 -> 5254 +484 -> 5255 +287 -> 5248 +288 -> 5249 +485 -> 5260 +486 -> 5261 +487 -> 5266 +488 -> 5267 +26 -> 1539 +3261 -> 5528 +3262 -> 5529 +3265 -> 5532 +3266 -> 5533 +166 -> 5364 +167 -> 5365 +168 -> 5366 +169 -> 5367 +2121 -> 5538 +2122 -> 5539 +2123 -> 5540 +2126 -> 5544 +2127 -> 5545 +2128 -> 5546 +1517 -> 5553 +2131 -> 5550 +2132 -> 5551 +2133 -> 5552 +1518 -> 5554 +2124 -> 5541 +2125 -> 5542 +2469 -> 5543 +4780 -> 5549 +2129 -> 5547 +2130 -> 5548 +149 -> 2121 +150 -> 2123 +3263 -> 5530 +3264 -> 5531 +151 -> 2131 +152 -> 2133 +3267 -> 5534 +3268 -> 5535 +3249 -> 3251 +3250 -> 3252 +3251 -> 3249 +3252 -> 3250 +3253 -> 3255 +3254 -> 3256 +3255 -> 3253 +3256 -> 3254 +242 -> 2124 +243 -> 2132 +244 -> 2125 +245 -> 2128 +254 -> 2126 +255 -> 2129 +256 -> 2122 +257 -> 2130 +170 -> 5536 +171 -> 5537 +2134 -> 5368 +2135 -> 5369 +3429 -> 5370 +3430 -> 5371 +3427 -> 5372 +3428 -> 5373 +3431 -> 5374 +3432 -> 5375 +3454 -> 5376 +3455 -> 5377 +3456 -> 5378 +3457 -> 5379 +4750 -> 5380 +4751 -> 5381 +4752 -> 5384 +4753 -> 5385 +4756 -> 5386 +4757 -> 5387 +4754 -> 5388 +4755 -> 5389 +4758 -> 5390 +4759 -> 5391 +4760 -> 5392 +4761 -> 5393 +4762 -> 5396 +4763 -> 5397 +4243 -> 5422 +4244 -> 5423 +4241 -> 5416 +4242 -> 5417 +4247 -> 5408 +4248 -> 5409 +4249 -> 5412 +4250 -> 5413 +4262 -> 5431 +4263 -> 5432 +4256 -> 5421 +4258 -> 5427 +4259 -> 5420 +4260 -> 5426 +4245 -> 5428 +2075 -> 5411 +2076 -> 5415 +2079 -> 5429 +4246 -> 5430 +4251 -> 5418 +4252 -> 5419 +4253 -> 5424 +4254 -> 5425 +4255 -> 5410 +4257 -> 5414 +2178 -> 5400 +2115 -> 5401 +3039 -> 5402 +2119 -> 5403 +2114 -> 5404 +3038 -> 5405 +2120 -> 5406 +3040 -> 5407 +3588 -> 6978 +3589 -> 6979 +3590 -> 6980 +3591 -> 6981 +3592 -> 6982 +3593 -> 6983 +3594 -> 6984 +3595 -> 6985 +3596 -> 6986 +3597 -> 6987 +3598 -> 6988 +3599 -> 6989 +3600 -> 6990 +3601 -> 6991 +3602 -> 6992 +3603 -> 6993 +3604 -> 6994 +3605 -> 6995 +3606 -> 6996 +3607 -> 6997 +3608 -> 6998 +3609 -> 6999 +3610 -> 7000 +3611 -> 7001 +3612 -> 7003 +3613 -> 7004 +3614 -> 7006 +3615 -> 7009 +3616 -> 7010 +3617 -> 7011 +3618 -> 7012 +3619 -> 7013 +3620 -> 7014 +4764 -> 7015 +4765 -> 7016 +4766 -> 7017 +2988 -> 2391 +2992 -> 2391 +4768 -> 7053 +4769 -> 7054 +4772 -> 5604 +4773 -> 5605 +4770 -> 5639 +4771 -> 5640 +4774 -> 5614 +4775 -> 5629 +4776 -> 5636 +4777 -> 5673 +4778 -> 5684 +4779 -> 5695 +153 -> 7018 +154 -> 7019 +155 -> 7020 +156 -> 7025 +157 -> 7027 +158 -> 7032 +159 -> 7033 +161 -> 7034 +162 -> 7039 +163 -> 7040 +164 -> 7046 +165 -> 7047 +4781 -> 7021 +4782 -> 7022 +4785 -> 7023 +4787 -> 7024 +4783 -> 7028 +4784 -> 7029 +4786 -> 7030 +4788 -> 7031 +4789 -> 7035 +4790 -> 7036 +4793 -> 7037 +4794 -> 7038 +4791 -> 7042 +4792 -> 7043 +4795 -> 7044 +4796 -> 7045 +2333 -> 5310 +2334 -> 5311 +2335 -> 5312 +2336 -> 5313 +2337 -> 5314 +2338 -> 5315 +2339 -> 5316 +2340 -> 5317 +2341 -> 5318 +2342 -> 5319 +2343 -> 5320 +2344 -> 5321 +2345 -> 5322 +2346 -> 5323 +2347 -> 5324 +2348 -> 5325 +2349 -> 5326 +2350 -> 5327 +2351 -> 5328 +2352 -> 5329 +2353 -> 5330 +2354 -> 5331 +2355 -> 5332 +2356 -> 5333 +2357 -> 5288 +2358 -> 5289 +2359 -> 5290 +2360 -> 5291 +2361 -> 5292 +2362 -> 5338 +2363 -> 5339 +2364 -> 5294 +2365 -> 5295 +2366 -> 5296 +2367 -> 5298 +2368 -> 5299 +2369 -> 5300 +2370 -> 5334 +2371 -> 5335 +2372 -> 5336 +2373 -> 5337 +2374 -> 5340 +2375 -> 5341 +2376 -> 5342 +2377 -> 5343 +2378 -> 5344 +2379 -> 5345 +2174 -> 5346 +2175 -> 5347 +2176 -> 5348 +2177 -> 5349 +2080 -> 5350 +2081 -> 5351 +2082 -> 5352 +2083 -> 5353 +2084 -> 5354 +2927 -> 5355 +2932 -> 5356 +3054 -> 5297 +3058 -> 5301 +3667 -> 5302 +3668 -> 5303 +3669 -> 5304 +3670 -> 5305 +3671 -> 5306 +3672 -> 5307 +3673 -> 5308 +3674 -> 5309 +2406 -> 5287 +3041 -> 5284 +3042 -> 5285 +3043 -> 5286 +3986 -> 3975 +3987 -> 3979 +3985 -> 3983 +3983 -> 3984 +3675 -> 3985 +3676 -> 3986 +3984 -> 3987 +3677 -> 5206 +3678 -> 5207 +3679 -> 5208 +3680 -> 5209 +4036 -> 5210 +4700 -> 5211 +3979 -> 5212 +4701 -> 5213 +4702 -> 5214 +4703 -> 5215 +4704 -> 5216 +4705 -> 5217 +4706 -> 5218 +4707 -> 5219 +4708 -> 5220 +3975 -> 5221 +4709 -> 5222 +4710 -> 5223 +4711 -> 5224 +4712 -> 5225 +4713 -> 5226 +4714 -> 5227 +4715 -> 5228 +4716 -> 5229 +4717 -> 5230 +4718 -> 5231 +4719 -> 5232 +4720 -> 5233 +4721 -> 5234 +4722 -> 5235 +4723 -> 5236 +2437 -> 4723 +2409 -> 4724 +2410 -> 4725 +2442 -> 4726 +2438 -> 4736 +2423 -> 4737 +2424 -> 4738 +2443 -> 4739 +2449 -> 4749 +2451 -> 4750 +2452 -> 4751 +2454 -> 4752 +2463 -> 4762 +2465 -> 4763 +2466 -> 4764 +2468 -> 4765 +2445 -> 4775 +2493 -> 4776 +2494 -> 4777 +2450 -> 4778 +2446 -> 4788 +2507 -> 4789 +2508 -> 4790 +2453 -> 4791 +2473 -> 4728 +2474 -> 4729 +2475 -> 4730 +2476 -> 4731 +2487 -> 4741 +2488 -> 4742 +2489 -> 4743 +2490 -> 4744 +2599 -> 4754 +2600 -> 4755 +2601 -> 4756 +2602 -> 4757 +2615 -> 4767 +2616 -> 4768 +2617 -> 4769 +2618 -> 4770 +2632 -> 4781 +2633 -> 4782 +2419 -> 4732 +2420 -> 4733 +2417 -> 4734 +2418 -> 4735 +2433 -> 4745 +2434 -> 4746 +2431 -> 4747 +2432 -> 4748 +2447 -> 4758 +2448 -> 4759 +2535 -> 4760 +2538 -> 4761 +2536 -> 4771 +2537 -> 4772 +2551 -> 4773 +2554 -> 4774 +2552 -> 4784 +2553 -> 4785 +2567 -> 4786 +2570 -> 4787 +2568 -> 4797 +2569 -> 4798 +2486 -> 4766 +2483 -> 4740 +2584 -> 4810 +2585 -> 4811 +2444 -> 4753 +2441 -> 4727 +2407 -> 4814 +2408 -> 4815 +2411 -> 4816 +2412 -> 4817 +2421 -> 4824 +2422 -> 4825 +2425 -> 4826 +2426 -> 4827 +2435 -> 4834 +2436 -> 4835 +2439 -> 4836 +2440 -> 4837 +2477 -> 4844 +2478 -> 4845 +2481 -> 4846 +2482 -> 4847 +2491 -> 4854 +2492 -> 4855 +2495 -> 4856 +2496 -> 4857 +2505 -> 4864 +2506 -> 4865 +2509 -> 4866 +2510 -> 4867 +2413 -> 4818 +2414 -> 4819 +2415 -> 4820 +2416 -> 4821 +2427 -> 4828 +2428 -> 4829 +2429 -> 4830 +2430 -> 4831 +2497 -> 4838 +2498 -> 4839 +2499 -> 4840 +2500 -> 4841 +2511 -> 4848 +2512 -> 4849 +2513 -> 4850 +2514 -> 4851 +2455 -> 4858 +2456 -> 4859 +2461 -> 4860 +2462 -> 4861 +2457 -> 4868 +2458 -> 4869 +2464 -> 4870 +2467 -> 4871 +2479 -> 4874 +2480 -> 4875 +2519 -> 4878 +2520 -> 4879 +2501 -> 4884 +2502 -> 4885 +2521 -> 4888 +2522 -> 4889 +2484 -> 4876 +2485 -> 4877 +4231 -> 4852 +4232 -> 4853 +2503 -> 4886 +2504 -> 4887 +4233 -> 4862 +4234 -> 4863 +4225 -> 4822 +4226 -> 4823 +4235 -> 4872 +4236 -> 4873 +4227 -> 4832 +4228 -> 4833 +4237 -> 4882 +4238 -> 4883 +4229 -> 4842 +4230 -> 4843 +4239 -> 4892 +4240 -> 4893 +2647 -> 4894 +2648 -> 4895 +2649 -> 4896 +2665 -> 4909 +2650 -> 4900 +2651 -> 4901 +2652 -> 4902 +2666 -> 4915 +2653 -> 4897 +2654 -> 4898 +2655 -> 4899 +2663 -> 4908 +2656 -> 4903 +2657 -> 4904 +2658 -> 4905 +2664 -> 4914 +2659 -> 4906 +2660 -> 4907 +2661 -> 4912 +2662 -> 4913 +2667 -> 4919 +2668 -> 4925 +2669 -> 4926 +2670 -> 4927 +2671 -> 4928 +2672 -> 4932 +2673 -> 4933 +2674 -> 4934 +2675 -> 4935 +2676 -> 4939 +2677 -> 4940 +2678 -> 4941 +3531 -> 4942 +3532 -> 4936 +3533 -> 4937 +3534 -> 4938 +3535 -> 4943 +3536 -> 4944 +3537 -> 4945 +4724 -> 4946 +4725 -> 4947 +4726 -> 4948 +4727 -> 4951 +4728 -> 4952 +4729 -> 4953 +4730 -> 4956 +4731 -> 4957 +3538 -> 4954 +3539 -> 4955 +3540 -> 4960 +4378 -> 5559 +4379 -> 5560 +4380 -> 5562 +1632 -> 0 +1633 -> 5566 +1634 -> 5567 +1635 -> 0 +1636 -> 5571 +1637 -> 5572 +1638 -> 5573 +1639 -> 5574 +1640 -> 5555 +1641 -> 5556 +1644 -> 5563 +1647 -> 5564 +1642 -> 5557 +1643 -> 5558 +1645 -> 5569 +1648 -> 5570 +1646 -> 5575 +1649 -> 5576 +4381 -> 7070 +4382 -> 7071 +1735 -> 7060 +1736 -> 7066 +1313 -> 6044 +1314 -> 6045 +1317 -> 6046 +1318 -> 6047 +1315 -> 6048 +1316 -> 6049 +1319 -> 6050 +1320 -> 6051 +4797 -> 6052 +4798 -> 6053 +4799 -> 6056 +4800 -> 6057 +4801 -> 6060 +4802 -> 6061 +4803 -> 6062 +4804 -> 6063 +4805 -> 6064 +4806 -> 6065 +1029 -> 7058 +1030 -> 7059 +1031 -> 7064 +1032 -> 7065 +1020 -> 7055 +1021 -> 7056 +1022 -> 7057 +1023 -> 7061 +1024 -> 7062 +1025 -> 7063 +1026 -> 7067 +1027 -> 7068 +1028 -> 7069 +4362 -> 5586 +4363 -> 5587 +4364 -> 5588 +4365 -> 5589 +4366 -> 5591 +4367 -> 5592 +4368 -> 5593 +4369 -> 5594 +4370 -> 5596 +4371 -> 5597 +4372 -> 5598 +4373 -> 5599 +4374 -> 5600 +4375 -> 5601 +4376 -> 5602 +4377 -> 5603 +5001 -> 5606 +5002 -> 5607 +5003 -> 5608 +5004 -> 5613 +5005 -> 5615 +5006 -> 5620 +5007 -> 5621 +5008 -> 5622 +5009 -> 5627 +5010 -> 5628 +5011 -> 5634 +5012 -> 5635 +5013 -> 5609 +5014 -> 5610 +5017 -> 5611 +5018 -> 5612 +5015 -> 5616 +5016 -> 5617 +5019 -> 5618 +5020 -> 5619 +5021 -> 5623 +5022 -> 5624 +5025 -> 5625 +5026 -> 5626 +5023 -> 5630 +5024 -> 5631 +5027 -> 5632 +5028 -> 5633 +5029 -> 5637 +5030 -> 5638 +4825 -> 6004 +4826 -> 6005 +4829 -> 6006 +4830 -> 6007 +4827 -> 6008 +4828 -> 6009 +4831 -> 6010 +4832 -> 6011 +4833 -> 6012 +4834 -> 6013 +4837 -> 6014 +4838 -> 6015 +4835 -> 6016 +4836 -> 6017 +4839 -> 6018 +4840 -> 6019 +4841 -> 6020 +4842 -> 6021 +4846 -> 6022 +4847 -> 6023 +4843 -> 6024 +4844 -> 6025 +4848 -> 6026 +4849 -> 6027 +4845 -> 6029 +4850 -> 6030 +4851 -> 6032 +4856 -> 6035 +4852 -> 6036 +4853 -> 6037 +4857 -> 6038 +4858 -> 6039 +4854 -> 6040 +4855 -> 6041 +4859 -> 6042 +4860 -> 6043 +1746 -> 4961 +1747 -> 4962 +1748 -> 4963 +1749 -> 4964 +1750 -> 4965 +1751 -> 4966 +464 -> 5577 +465 -> 5578 +466 -> 5579 +470 -> 5580 +471 -> 5581 +467 -> 5582 +472 -> 5583 +468 -> 5584 +469 -> 5585 +4487 -> 7136 +4488 -> 7137 +4489 -> 7138 +4490 -> 7139 +4491 -> 7140 +4492 -> 7141 +4493 -> 7142 +1916 -> 7048 +1917 -> 7049 +1924 -> 7050 +1918 -> 7051 +1919 -> 7052 +1925 -> 7041 +1920 -> 7080 +1921 -> 7095 +3490 -> 7167 +1922 -> 7170 +1923 -> 7172 +4505 -> 7102 +4506 -> 7103 +4507 -> 7104 +4508 -> 7105 +4509 -> 7106 +4510 -> 7107 +4511 -> 7108 +4512 -> 7109 +4513 -> 7110 +4514 -> 7111 +4515 -> 7112 +4516 -> 7113 +4517 -> 7114 +4518 -> 7115 +4519 -> 7116 +4520 -> 7117 +4521 -> 7118 +4522 -> 7119 +4523 -> 7120 +4524 -> 7121 +4525 -> 7122 +4526 -> 7123 +4527 -> 7124 +4528 -> 7125 +4529 -> 7126 +4530 -> 7127 +4531 -> 7128 +4532 -> 7129 +4533 -> 7130 +4534 -> 7131 +4535 -> 7132 +4536 -> 7133 +4537 -> 7134 +4538 -> 7135 +4905 -> 7183 +4906 -> 7184 +4909 -> 7185 +4910 -> 7186 +4907 -> 7187 +4908 -> 7188 +4911 -> 7189 +4912 -> 7190 +4913 -> 7191 +4914 -> 7192 +4915 -> 7193 +4916 -> 7194 +4929 -> 7143 +4930 -> 7144 +4933 -> 7145 +4934 -> 7146 +4931 -> 7147 +4932 -> 7148 +4935 -> 7149 +4936 -> 7150 +4937 -> 7151 +4938 -> 7152 +4941 -> 7153 +4942 -> 7154 +4939 -> 7155 +4940 -> 7156 +4943 -> 7157 +4944 -> 7158 +4945 -> 7159 +4946 -> 7160 +4950 -> 7161 +4951 -> 7162 +4947 -> 7163 +4948 -> 7164 +4952 -> 7165 +4953 -> 7166 +4949 -> 7168 +4954 -> 7169 +4955 -> 7171 +4960 -> 7174 +4956 -> 7175 +4957 -> 7176 +4961 -> 7177 +4962 -> 7178 +4958 -> 7179 +4959 -> 7180 +4963 -> 7181 +4964 -> 7182 +5031 -> 7072 +5032 -> 7073 +5033 -> 7074 +5043 -> 7075 +5044 -> 7076 +5047 -> 7077 +5048 -> 7078 +5034 -> 7079 +5035 -> 7081 +5045 -> 7082 +5046 -> 7083 +5049 -> 7084 +5050 -> 7085 +5036 -> 7086 +5037 -> 7087 +5038 -> 7088 +5051 -> 7089 +5052 -> 7090 +5055 -> 7091 +5056 -> 7092 +5039 -> 7093 +5040 -> 7094 +5053 -> 7096 +5054 -> 7097 +5057 -> 7098 +5058 -> 7099 +5041 -> 7100 +5042 -> 7101 +4333 -> 5641 +4334 -> 5642 +4337 -> 5643 +4338 -> 5644 +4339 -> 5645 +4340 -> 5646 +4341 -> 5647 +4342 -> 5648 +4343 -> 5649 +4344 -> 5650 +4360 -> 5651 +4335 -> 5652 +4336 -> 5653 +2014 -> 5654 +4358 -> 5655 +4359 -> 5656 +4332 -> 5657 +4345 -> 5658 +4346 -> 5659 +4347 -> 5660 +4348 -> 5661 +4361 -> 5662 +2005 -> 5663 +2006 -> 5664 +2007 -> 5665 +473 -> 5666 +474 -> 5667 +475 -> 5668 +4349 -> 5669 +4350 -> 5670 +4351 -> 5671 +4352 -> 5672 +2008 -> 5674 +2009 -> 5675 +2010 -> 5676 +476 -> 5677 +101 -> 5678 +4356 -> 5679 +4353 -> 5680 +4354 -> 5681 +4355 -> 5682 +1351 -> 5683 +2011 -> 5685 +2012 -> 5686 +2013 -> 5687 +477 -> 5688 +478 -> 5689 +4357 -> 5690 +1352 -> 5691 +1353 -> 5692 +1354 -> 5693 +1821 -> 5694 +2404 -> 5996 +2043 -> 5997 +2044 -> 5998 +2164 -> 5999 +2405 -> 6000 +2045 -> 6001 +2046 -> 6002 +2165 -> 6003 +1071 -> 5919 +1072 -> 5920 +1073 -> 5924 +1074 -> 5925 +1075 -> 5926 +1076 -> 5927 +1077 -> 5930 +1078 -> 5931 +1079 -> 5932 +1080 -> 5933 +1081 -> 5935 +1082 -> 5936 +1083 -> 5937 +1084 -> 5938 +1085 -> 5939 +1086 -> 5940 +1087 -> 5941 +1088 -> 5942 +1089 -> 5943 +1090 -> 5944 +1091 -> 5945 +1092 -> 5946 +1093 -> 5947 +1094 -> 5948 +1095 -> 5949 +1096 -> 5950 +1097 -> 5951 +1098 -> 5952 +1099 -> 5953 +1100 -> 5954 +1101 -> 5955 +1102 -> 5956 +1103 -> 5957 +1104 -> 5958 +1105 -> 5959 +1106 -> 5960 +1107 -> 5961 +1108 -> 5962 +1109 -> 5963 +1110 -> 5964 +1111 -> 5965 +1112 -> 5966 +1113 -> 5967 +1114 -> 5968 +1115 -> 5969 +1116 -> 5970 +1117 -> 5973 +1118 -> 5974 +1119 -> 5979 +1120 -> 5980 +1121 -> 5985 +1122 -> 5986 +1123 -> 5991 +1124 -> 5992 +1125 -> 5816 +1126 -> 5817 +1127 -> 5823 +1128 -> 5824 +1129 -> 5825 +1130 -> 5826 +1131 -> 5830 +1132 -> 5831 +1133 -> 5832 +1134 -> 5833 +1135 -> 5834 +1136 -> 5835 +1137 -> 5838 +1138 -> 5839 +1139 -> 5840 +1140 -> 5841 +1141 -> 5842 +1142 -> 5843 +1143 -> 5845 +1144 -> 5846 +1145 -> 5847 +1146 -> 5848 +1147 -> 5849 +1148 -> 5850 +1149 -> 5851 +1150 -> 5852 +1151 -> 5853 +1152 -> 5854 +1153 -> 5855 +1154 -> 5856 +1155 -> 5857 +1156 -> 5858 +1157 -> 5859 +1158 -> 5860 +1159 -> 5861 +1160 -> 5862 +1161 -> 5863 +1162 -> 5864 +1163 -> 5865 +1164 -> 5866 +1165 -> 5867 +1166 -> 5868 +1167 -> 5869 +1168 -> 5870 +1169 -> 5871 +1170 -> 5872 +1171 -> 5873 +1172 -> 5874 +1173 -> 5875 +1174 -> 5876 +1175 -> 5877 +1176 -> 5878 +1177 -> 5879 +1178 -> 5880 +1179 -> 5881 +1180 -> 5882 +1181 -> 5883 +1182 -> 5884 +1183 -> 5888 +1184 -> 5889 +1185 -> 5896 +1186 -> 5897 +1187 -> 5904 +1188 -> 5905 +1189 -> 5912 +1190 -> 5913 +1191 -> 5699 +1192 -> 5700 +1193 -> 5701 +1194 -> 5707 +1195 -> 5708 +1196 -> 5709 +1197 -> 5710 +1198 -> 5711 +1199 -> 5715 +1200 -> 5716 +1201 -> 5717 +1202 -> 5718 +1203 -> 5719 +1204 -> 5720 +1205 -> 5721 +1206 -> 5724 +1207 -> 5725 +1208 -> 5726 +1209 -> 5727 +1210 -> 5728 +1211 -> 5729 +1212 -> 5730 +1213 -> 5733 +1214 -> 5734 +1215 -> 5735 +1216 -> 5736 +1217 -> 5737 +1218 -> 5738 +1219 -> 5739 +1220 -> 5741 +1221 -> 5742 +1222 -> 5743 +1223 -> 5744 +1224 -> 5745 +1225 -> 5746 +1226 -> 5747 +1227 -> 5748 +1228 -> 5749 +1229 -> 5750 +1230 -> 5751 +1231 -> 5752 +1232 -> 5753 +1233 -> 5754 +1234 -> 5755 +1235 -> 5756 +1236 -> 5757 +1237 -> 5758 +1238 -> 5759 +1239 -> 5760 +1240 -> 5761 +1241 -> 5762 +1242 -> 5763 +1243 -> 5764 +1244 -> 5765 +1245 -> 5766 +1246 -> 5767 +1247 -> 5768 +1248 -> 5769 +1249 -> 5770 +1250 -> 5771 +1251 -> 5772 +1252 -> 5773 +1253 -> 5774 +1254 -> 5775 +1255 -> 5776 +1256 -> 5780 +1257 -> 5781 +1258 -> 5782 +1259 -> 5789 +1260 -> 5790 +1261 -> 5791 +1262 -> 5798 +1263 -> 5799 +1264 -> 5800 +1265 -> 5807 +1266 -> 5808 +1277 -> 5809 +3625 -> 6068 +3626 -> 6069 +3637 -> 6070 +3638 -> 6071 +3649 -> 6072 +3650 -> 6073 +3651 -> 6074 +3627 -> 6075 +3628 -> 6076 +3639 -> 6077 +3640 -> 6078 +3652 -> 6079 +3653 -> 6080 +3654 -> 6081 +3629 -> 6082 +3630 -> 6083 +3641 -> 6084 +3642 -> 6085 +3655 -> 6086 +3656 -> 6087 +3657 -> 6088 +3631 -> 6089 +3632 -> 6090 +3643 -> 6091 +3644 -> 6092 +3658 -> 6093 +3659 -> 6094 +3660 -> 6095 +3633 -> 6096 +3634 -> 6097 +3645 -> 6098 +3646 -> 6099 +3661 -> 6100 +3662 -> 6101 +3663 -> 6102 +3635 -> 6103 +3636 -> 6104 +3647 -> 6105 +3648 -> 6106 +3664 -> 6107 +3665 -> 6108 +3666 -> 6109 +3377 -> 6541 +3383 -> 6542 +4807 -> 6705 +4808 -> 6706 +4811 -> 6707 +4812 -> 6708 +4809 -> 6709 +4810 -> 6710 +4813 -> 6711 +4814 -> 6712 +4815 -> 6713 +4816 -> 6714 +4817 -> 6717 +4818 -> 6718 +4819 -> 6721 +4820 -> 6722 +4821 -> 6723 +4822 -> 6724 +4823 -> 6725 +4824 -> 6726 +4861 -> 6271 +4862 -> 6272 +4865 -> 6273 +4866 -> 6274 +4863 -> 6275 +4864 -> 6276 +4867 -> 6277 +4868 -> 6278 +4869 -> 6279 +4870 -> 6280 +4873 -> 6281 +4874 -> 6282 +4871 -> 6283 +4872 -> 6284 +4875 -> 6285 +4876 -> 6286 +4877 -> 6287 +4878 -> 6288 +4882 -> 6289 +4883 -> 6290 +4879 -> 6291 +4880 -> 6292 +4884 -> 6293 +4885 -> 6294 +4881 -> 6296 +4886 -> 6297 +4887 -> 6299 +4892 -> 6302 +4888 -> 6303 +4889 -> 6304 +4893 -> 6305 +4894 -> 6306 +4890 -> 6307 +4891 -> 6308 +4895 -> 6309 +4896 -> 6310 +3398 -> 6543 +3399 -> 6544 +3400 -> 6546 +3402 -> 6547 +3403 -> 6548 +3404 -> 6205 +3405 -> 6206 +4383 -> 6208 +491 -> 6193 +492 -> 6194 +493 -> 6196 +494 -> 6201 +495 -> 6199 +496 -> 6195 +497 -> 6202 +498 -> 6200 +4384 -> 6549 +4385 -> 6550 +4386 -> 6551 +4387 -> 6552 +1650 -> 6211 +1651 -> 6212 +1652 -> 6213 +1653 -> 6214 +1654 -> 6217 +1655 -> 6218 +1656 -> 6219 +1657 -> 6220 +1658 -> 6197 +1660 -> 6198 +1662 -> 6209 +1665 -> 6210 +1659 -> 6203 +1661 -> 6204 +1663 -> 6215 +1666 -> 6216 +1664 -> 6221 +1667 -> 6222 +4388 -> 6553 +4389 -> 6554 +4390 -> 6555 +4391 -> 6556 +4392 -> 6557 +4393 -> 6558 +4394 -> 6559 +4395 -> 6560 +4396 -> 6561 +4397 -> 6562 +4398 -> 6563 +4399 -> 6564 +4400 -> 6565 +4401 -> 6566 +4402 -> 6567 +4403 -> 6568 +4404 -> 6569 +4405 -> 6570 +4406 -> 6571 +4407 -> 6572 +4408 -> 6573 +4409 -> 6574 +4410 -> 6575 +4411 -> 6576 +4412 -> 6577 +4413 -> 6578 +4414 -> 6579 +4415 -> 6580 +4416 -> 6581 +4417 -> 6582 +4418 -> 6583 +4419 -> 6584 +4420 -> 6585 +4421 -> 6586 +4422 -> 6587 +4423 -> 6588 +4424 -> 6589 +4425 -> 6590 +4426 -> 6591 +4427 -> 6592 +4428 -> 6593 +4429 -> 6594 +4430 -> 6595 +4431 -> 6596 +4432 -> 6597 +4433 -> 6598 +5059 -> 6311 +5060 -> 6312 +5061 -> 6313 +5071 -> 6314 +5072 -> 6315 +5075 -> 6316 +5076 -> 6317 +5062 -> 6318 +5063 -> 6320 +5073 -> 6321 +5074 -> 6322 +5077 -> 6323 +5078 -> 6324 +5064 -> 6325 +5065 -> 6326 +5066 -> 6327 +5079 -> 6328 +5080 -> 6329 +5083 -> 6330 +5084 -> 6331 +5067 -> 6332 +5068 -> 6333 +5081 -> 6335 +5082 -> 6336 +5085 -> 6337 +5086 -> 6338 +5069 -> 6339 +5070 -> 6340 +5087 -> 6342 +5088 -> 6343 +1746 -> 4961 +1747 -> 4962 +1748 -> 4963 +1749 -> 4964 +1750 -> 4965 +1751 -> 4966 +1998 -> 6110 +2024 -> 6111 +2025 -> 6112 +2026 -> 6113 +1672 -> 6114 +1673 -> 6115 +1674 -> 6116 +1999 -> 6117 +1668 -> 6118 +1669 -> 6119 +2027 -> 6120 +1678 -> 6121 +1679 -> 6122 +1675 -> 6123 +2000 -> 6124 +1670 -> 6125 +1671 -> 6126 +2028 -> 6127 +1680 -> 6129 +1676 -> 6130 +2023 -> 6131 +2030 -> 6132 +2031 -> 6133 +2029 -> 6134 +1677 -> 6137 +1358 -> 6410 +1359 -> 6411 +1360 -> 6412 +458 -> 6413 +459 -> 6414 +1996 -> 6415 +1361 -> 6416 +1362 -> 6417 +1363 -> 6418 +461 -> 6419 +462 -> 6420 +1997 -> 6421 +1364 -> 6422 +1365 -> 6423 +1366 -> 6424 +460 -> 6425 +463 -> 6426 +3707 -> 6804 +3708 -> 6805 +3709 -> 6806 +3710 -> 6807 +3687 -> 6808 +3688 -> 6809 +3689 -> 6810 +3690 -> 6811 +3741 -> 6813 +3742 -> 6814 +3751 -> 6816 +3752 -> 6817 +3757 -> 6818 +3758 -> 6819 +3773 -> 6820 +3774 -> 6821 +3691 -> 6822 +3692 -> 6823 +3693 -> 6824 +3694 -> 6825 +3743 -> 6826 +3744 -> 6827 +3745 -> 6828 +3746 -> 6829 +3753 -> 6830 +3754 -> 6831 +3759 -> 6832 +3760 -> 6833 +3775 -> 6834 +3776 -> 6835 +3695 -> 6836 +3696 -> 6837 +3697 -> 6838 +3698 -> 6839 +3747 -> 6840 +3748 -> 6841 +3749 -> 6842 +3750 -> 6843 +3755 -> 6844 +3756 -> 6845 +3761 -> 6846 +3762 -> 6847 +3699 -> 6850 +3700 -> 6851 +3701 -> 6852 +3702 -> 6853 +3765 -> 6854 +3766 -> 6855 +3767 -> 6856 +3768 -> 6857 +3769 -> 6858 +3770 -> 6859 +3771 -> 6860 +3772 -> 6861 +3703 -> 6864 +3704 -> 6865 +3705 -> 6866 +3706 -> 6867 +3711 -> 6878 +3712 -> 6879 +3713 -> 6880 +3714 -> 6881 +3715 -> 6882 +3716 -> 6883 +3728 -> 6884 +3729 -> 6885 +3730 -> 6886 +3731 -> 6887 +3717 -> 6888 +3732 -> 6889 +3735 -> 6890 +3733 -> 6891 +3736 -> 6892 +3734 -> 6893 +3738 -> 6894 +3737 -> 6895 +3739 -> 6896 +3740 -> 6897 +3777 -> 6898 +3778 -> 6899 +3779 -> 6900 +3780 -> 6901 +3781 -> 6902 +3782 -> 6903 +3783 -> 6904 +3784 -> 6905 +3785 -> 6906 +3786 -> 6907 +3787 -> 6908 +3788 -> 6909 +3789 -> 6910 +3790 -> 6911 +3791 -> 6912 +3792 -> 6913 +3793 -> 6914 +3794 -> 6915 +3795 -> 6916 +3796 -> 6917 +3797 -> 6918 +3798 -> 6919 +3799 -> 6920 +3800 -> 6921 +3801 -> 6922 +3802 -> 6923 +3803 -> 6924 +3804 -> 6925 +3805 -> 6926 +3806 -> 6927 +3807 -> 6928 +3808 -> 6929 +3809 -> 6930 +3810 -> 6931 +1926 -> 6950 +1927 -> 6951 +1934 -> 6952 +1928 -> 6953 +1929 -> 6954 +1935 -> 6955 +1930 -> 6956 +1931 -> 6957 +3811 -> 6958 +1932 -> 6959 +1933 -> 6960 +4917 -> 6934 +4918 -> 6935 +4921 -> 6936 +4922 -> 6937 +4919 -> 6938 +4920 -> 6939 +4923 -> 6940 +4924 -> 6941 +4925 -> 6942 +4926 -> 6943 +4927 -> 6946 +4928 -> 6947 +4965 -> 6729 +4966 -> 6730 +4969 -> 6731 +4970 -> 6732 +4967 -> 6733 +4968 -> 6734 +4971 -> 6735 +4972 -> 6736 +4973 -> 6737 +4974 -> 6738 +4977 -> 6739 +4978 -> 6740 +4975 -> 6741 +4976 -> 6742 +4979 -> 6743 +4980 -> 6744 +4981 -> 6745 +4982 -> 6746 +4986 -> 6747 +4987 -> 6748 +4983 -> 6749 +4984 -> 6750 +4988 -> 6751 +4989 -> 6752 +4985 -> 6754 +4990 -> 6755 +4991 -> 6757 +4996 -> 6760 +4992 -> 6761 +4993 -> 6762 +4997 -> 6763 +4998 -> 6764 +4994 -> 6765 +4995 -> 6766 +4999 -> 6767 +5000 -> 6768 +5089 -> 6769 +5090 -> 6770 +5091 -> 6771 +5101 -> 6772 +5102 -> 6773 +5105 -> 6774 +5106 -> 6775 +5092 -> 6776 +5093 -> 6778 +5103 -> 6779 +5104 -> 6780 +5107 -> 6781 +5108 -> 6782 +5094 -> 6783 +5095 -> 6784 +5096 -> 6785 +5109 -> 6786 +5110 -> 6787 +5113 -> 6788 +5114 -> 6789 +5097 -> 6790 +5098 -> 6791 +5111 -> 6793 +5112 -> 6794 +5115 -> 6795 +5116 -> 6796 +5099 -> 6797 +5100 -> 6798 +4539 -> 6619 +4540 -> 6620 +4547 -> 6621 +4548 -> 6622 +4575 -> 6623 +4576 -> 6624 +4577 -> 6625 +4578 -> 6626 +4541 -> 6627 +4542 -> 6628 +4549 -> 6629 +4550 -> 6630 +4579 -> 6631 +4580 -> 6632 +4581 -> 6633 +4582 -> 6634 +4543 -> 6637 +4544 -> 6638 +4583 -> 6639 +4584 -> 6640 +4585 -> 6641 +4586 -> 6642 +4545 -> 6645 +4546 -> 6646 +4587 -> 6647 +4588 -> 6648 +4589 -> 6649 +4590 -> 6650 +4551 -> 6651 +4552 -> 6652 +4555 -> 6653 +4557 -> 6654 +4591 -> 6655 +4595 -> 6656 +4599 -> 6657 +4603 -> 6658 +4553 -> 6659 +4554 -> 6660 +4556 -> 6661 +4558 -> 6662 +4592 -> 6663 +4596 -> 6664 +4600 -> 6665 +4604 -> 6666 +4559 -> 6667 +4560 -> 6668 +4563 -> 6669 +4564 -> 6670 +4593 -> 6671 +4597 -> 6672 +4601 -> 6673 +4605 -> 6674 +4561 -> 6675 +4562 -> 6676 +4565 -> 6677 +4566 -> 6678 +4594 -> 6679 +4598 -> 6680 +4602 -> 6681 +4606 -> 6682 +4567 -> 6683 +4568 -> 6684 +4571 -> 6685 +4572 -> 6686 +4569 -> 6691 +4570 -> 6692 +4573 -> 6693 +4574 -> 6694 +3868 -> 6699 +3869 -> 6700 +3870 -> 6701 +3871 -> 6702 +3872 -> 6703 +1350 -> 6704 +4457 -> 6138 +4458 -> 6139 +4461 -> 6140 +4462 -> 6141 +4463 -> 6142 +4464 -> 6143 +4465 -> 6144 +4466 -> 6145 +4467 -> 6146 +4468 -> 6147 +4485 -> 6148 +4459 -> 6149 +4460 -> 6150 +4453 -> 6151 +4454 -> 6152 +4455 -> 6153 +4456 -> 6154 +4469 -> 6155 +4470 -> 6156 +4471 -> 6157 +4472 -> 6158 +4486 -> 6159 +4435 -> 6160 +4436 -> 6161 +4437 -> 6162 +4444 -> 6163 +4445 -> 6164 +4446 -> 6165 +4473 -> 6166 +4474 -> 6167 +4475 -> 6168 +4476 -> 6169 +4438 -> 6171 +4439 -> 6172 +4440 -> 6173 +4447 -> 6174 +4452 -> 6175 +4448 -> 6176 +4477 -> 6177 +4478 -> 6178 +4479 -> 6179 +4480 -> 6180 +4441 -> 6182 +4442 -> 6183 +4443 -> 6184 +4449 -> 6185 +4450 -> 6186 +4451 -> 6187 +4481 -> 6188 +4482 -> 6189 +4483 -> 6190 +4484 -> 6191 +3812 -> 6346 +3813 -> 6347 +3814 -> 6348 +3815 -> 6349 +3836 -> 6350 +3837 -> 6351 +3838 -> 6352 +3839 -> 6353 +3816 -> 6354 +3817 -> 6355 +3818 -> 6356 +3819 -> 6357 +3840 -> 6358 +3841 -> 6359 +3842 -> 6360 +3843 -> 6361 +3820 -> 6362 +3821 -> 6363 +3822 -> 6364 +3823 -> 6365 +3844 -> 6366 +3845 -> 6367 +3846 -> 6368 +3847 -> 6369 +3824 -> 6370 +3825 -> 6371 +3826 -> 6372 +3827 -> 6373 +3848 -> 6374 +3849 -> 6375 +3850 -> 6376 +3851 -> 6377 +3828 -> 6378 +3829 -> 6379 +3830 -> 6380 +3831 -> 6381 +3852 -> 6382 +3853 -> 6383 +3854 -> 6384 +3855 -> 6385 +3832 -> 6386 +3833 -> 6387 +3834 -> 6388 +3835 -> 6389 +3856 -> 6390 +3857 -> 6391 +3858 -> 6392 +3859 -> 6393 +3860 -> 6398 +3861 -> 6399 +3862 -> 6400 +3863 -> 6401 +3864 -> 6406 +3865 -> 6407 +3866 -> 6408 +3867 -> 6409 +313 -> 6601 +314 -> 6602 +315 -> 6603 +316 -> 6604 +317 -> 6605 +318 -> 6606 +319 -> 6607 +320 -> 6608 +358 -> 6610 +361 -> 6609 +3681 -> 6611 +3685 -> 6614 +3682 -> 6615 +3683 -> 6616 +3684 -> 6617 +3686 -> 6618 +1278 -> 6225 +1279 -> 6226 +1280 -> 6230 +1281 -> 6231 +1282 -> 6232 +1283 -> 6233 +1284 -> 6236 +1285 -> 6237 +1286 -> 6238 +1287 -> 6239 +1288 -> 6242 +1289 -> 6243 +1290 -> 6244 +1291 -> 6245 +1292 -> 6248 +1293 -> 6249 +1294 -> 6250 +1295 -> 6251 +1296 -> 6253 +1297 -> 6254 +1298 -> 6255 +1299 -> 6256 +1300 -> 6257 +1301 -> 6258 +1302 -> 6259 +1303 -> 6260 +1304 -> 6261 +1305 -> 6262 +1306 -> 6263 +1307 -> 6264 +1308 -> 6266 +1309 -> 6267 +1310 -> 6268 +1311 -> 6269 +4607 -> 6493 +4608 -> 6494 +4609 -> 6498 +4610 -> 6499 +4611 -> 6500 +4612 -> 6501 +4613 -> 6503 +4614 -> 6504 +4615 -> 6505 +4616 -> 6506 +4617 -> 6507 +4618 -> 6508 +4619 -> 6509 +4620 -> 6510 +4621 -> 6511 +4622 -> 6512 +4623 -> 6513 +4624 -> 6514 +4625 -> 6515 +4626 -> 6516 +4627 -> 6517 +4628 -> 6518 +4629 -> 6519 +4630 -> 6520 +4631 -> 6521 +4632 -> 6522 +4633 -> 6523 +4634 -> 6524 +4635 -> 6525 +4636 -> 6526 +4637 -> 6527 +4638 -> 6528 +4639 -> 6529 +4640 -> 6530 +4641 -> 6531 +4642 -> 6532 +4643 -> 6533 +4644 -> 6534 +4645 -> 6535 +4646 -> 6536 +4647 -> 6537 +4648 -> 6538 +4649 -> 6431 +4650 -> 6437 +4651 -> 6438 +4652 -> 6439 +4653 -> 6443 +4654 -> 6444 +4655 -> 6445 +4656 -> 6446 +4657 -> 6447 +4658 -> 6449 +4659 -> 6450 +4660 -> 6451 +4661 -> 6452 +4662 -> 6453 +4663 -> 6454 +4664 -> 6455 +4665 -> 6456 +4666 -> 6457 +4667 -> 6458 +4668 -> 6459 +4669 -> 6460 +4670 -> 6461 +4671 -> 6462 +4672 -> 6463 +4673 -> 6464 +4674 -> 6465 +4675 -> 6466 +4676 -> 6467 +4677 -> 6468 +4678 -> 6469 +4679 -> 6470 +4680 -> 6471 +4681 -> 6472 +4682 -> 6473 +4683 -> 6474 +4684 -> 6475 +4685 -> 6476 +4686 -> 6477 +4687 -> 6478 +4688 -> 6479 +4689 -> 6480 +4690 -> 6481 +4691 -> 6482 +4692 -> 6483 +4693 -> 6484 +4694 -> 6485 +4695 -> 6486 +4696 -> 6487 +4697 -> 6488 +4698 -> 6489 +4699 -> 6490 +4434 -> 7026 +3372 -> 112 +1312 -> 1311 +1540 -> 4412 +1541 -> 4413 +1542 -> 4414 +1421 -> 4415 +1700 -> 4416 +1549 -> 4417 +1550 -> 4418 +1551 -> 4419 +1357 -> 4420 +1543 -> 4421 +1544 -> 4422 +1545 -> 4423 +1422 -> 4424 +1701 -> 4425 +1702 -> 4426 +1703 -> 4427 +1704 -> 4428 +1539 -> 4429 +1546 -> 4430 +1547 -> 4431 +1548 -> 4432 +2153 -> 4433 +2459 -> 4434 +1705 -> 4439 +1706 -> 4440 +1707 -> 4441 +1711 -> 4442 +1712 -> 4443 +1715 -> 4444 +1716 -> 4445 +3448 -> 4446 +3449 -> 4447 +1708 -> 4392 +1709 -> 4393 +1710 -> 4394 +1713 -> 5358 +1714 -> 5359 +3446 -> 5360 +3447 -> 5361 +1342 -> 5362 +1343 -> 5363 +217 -> 4368 +218 -> 4369 +219 -> 4370 +226 -> 4371 +227 -> 4372 +232 -> 4373 +233 -> 4374 +234 -> 4375 +235 -> 4376 +220 -> 4377 +221 -> 4378 +222 -> 4379 +228 -> 4380 +229 -> 4381 +236 -> 4382 +237 -> 4383 +238 -> 4384 +239 -> 4385 +223 -> 4386 +224 -> 4387 +225 -> 4388 +230 -> 4389 +231 -> 4390 +70 -> 4395 +71 -> 4396 +72 -> 4397 +63 -> 4398 +81 -> 4399 +173 -> 4400 +174 -> 4401 +134 -> 4402 +135 -> 4403 +73 -> 4404 +74 -> 4405 +75 -> 4406 +76 -> 4391 +126 -> 4407 +200 -> 4408 +201 -> 4409 +160 -> 4410 +240 -> 4411 +3915 -> 4340 +3916 -> 4341 +3917 -> 4342 +3918 -> 4343 +3433 -> 4344 +2166 -> 4345 +2170 -> 4346 +3919 -> 4347 +3920 -> 4348 +3921 -> 4349 +3922 -> 4350 +3434 -> 4351 +2167 -> 4352 +2171 -> 4353 +3110 -> 4354 +3111 -> 4355 +3112 -> 4356 +3113 -> 4357 +4117 -> 4358 +2168 -> 4359 +2172 -> 4360 +4005 -> 4361 +4006 -> 4362 +4007 -> 4363 +4008 -> 4364 +4118 -> 4365 +2169 -> 4366 +2173 -> 4367 +2380 -> 5199 +2381 -> 5200 +2382 -> 5201 +2383 -> 5202 +2106 -> 4553 +2092 -> 4554 +2107 -> 4555 +2108 -> 4556 +2111 -> 4557 +2113 -> 4558 +2095 -> 4559 +2094 -> 4560 +1754 -> 4561 +3888 -> 4562 +3889 -> 4563 +2096 -> 4564 +2112 -> 4565 +2097 -> 4566 +2098 -> 4567 +1752 -> 4568 +2104 -> 4569 +2101 -> 4570 +2103 -> 4571 +2099 -> 4572 +3890 -> 4573 +3891 -> 4574 +2116 -> 4575 +2102 -> 4576 +2117 -> 4577 +2118 -> 4578 +1753 -> 4579 +2100 -> 4580 +3515 -> 4581 +2105 -> 4582 +1755 -> 4583 +3892 -> 4584 +3893 -> 4585 +1756 -> 4586 +1758 -> 4587 +3878 -> 4588 +3879 -> 4589 +3880 -> 4590 +3881 -> 4591 +2091 -> 4592 +2093 -> 4593 +3894 -> 4595 +3895 -> 4596 +1757 -> 4597 +1759 -> 4598 +3882 -> 4599 +3883 -> 4600 +3884 -> 4601 +3885 -> 4602 +3896 -> 4606 +3897 -> 4607 +1760 -> 4608 +1761 -> 4609 +3886 -> 4611 +3887 -> 4612 +1779 -> 4463 +1780 -> 4464 +1781 -> 4465 +1783 -> 4466 +1794 -> 4467 +1788 -> 4468 +1807 -> 4469 +1806 -> 4470 +1774 -> 4471 +1762 -> 4472 +1763 -> 4473 +1772 -> 4474 +1773 -> 4475 +2214 -> 4476 +2215 -> 4477 +1784 -> 4478 +1785 -> 4479 +1786 -> 4480 +1798 -> 4481 +1801 -> 4482 +1782 -> 4483 +1799 -> 4484 +1800 -> 4485 +1775 -> 4486 +1764 -> 4487 +1765 -> 4488 +3257 -> 4489 +3258 -> 4490 +2216 -> 4491 +2217 -> 4492 +1789 -> 4493 +1790 -> 4494 +1792 -> 4495 +1793 -> 4496 +1802 -> 4497 +1795 -> 4498 +1805 -> 4499 +1804 -> 4500 +1776 -> 4501 +1766 -> 4502 +1767 -> 4503 +3269 -> 4504 +3270 -> 4505 +2218 -> 4506 +2219 -> 4507 +3906 -> 4508 +3907 -> 4509 +3898 -> 4510 +3899 -> 4511 +3900 -> 4512 +3901 -> 4513 +1796 -> 4514 +1797 -> 4515 +1777 -> 4516 +1768 -> 4517 +1769 -> 4518 +3259 -> 4519 +3260 -> 4520 +2220 -> 4521 +2221 -> 4522 +3908 -> 4523 +3909 -> 4524 +3902 -> 4525 +3903 -> 4526 +3904 -> 4527 +3905 -> 4528 +1778 -> 4529 +1803 -> 4530 +1808 -> 4531 +1770 -> 4532 +1771 -> 4533 +3271 -> 4534 +3272 -> 4535 +2222 -> 4536 +2223 -> 4537 +1787 -> 4538 +1791 -> 4539 +3910 -> 4541 +3911 -> 4542 +2265 -> 4543 +3912 -> 4544 +3913 -> 4545 +3914 -> 4546 +2259 -> 4547 +2260 -> 4548 +2212 -> 4549 +2213 -> 4550 +2224 -> 4551 +2225 -> 4552 +2226 -> 4689 +2227 -> 4690 +2230 -> 4691 +2232 -> 4692 +2234 -> 4693 +2228 -> 4694 +2229 -> 4695 +2231 -> 4696 +2233 -> 4697 +2235 -> 4698 +2236 -> 4699 +2237 -> 4700 +2240 -> 4701 +2241 -> 4702 +2243 -> 4703 +2238 -> 4704 +2239 -> 4705 +2249 -> 4706 +2242 -> 4707 +2244 -> 4708 +2245 -> 4709 +2246 -> 4710 +2250 -> 4712 +2252 -> 4713 +2247 -> 4714 +2248 -> 4715 +2251 -> 4717 +2253 -> 4718 +295 -> 297 +296 -> 295 +297 -> 298 +298 -> 296 +2257 -> 4448 +1489 -> 4449 +2255 -> 4450 +1478 -> 4451 +1477 -> 4452 +1482 -> 4453 +1476 -> 4454 +2254 -> 4455 +1503 -> 4456 +1510 -> 4457 +2258 -> 4458 +1496 -> 4459 +2256 -> 4460 +2261 -> 4461 +2262 -> 4462 +2263 -> 1476 +2264 -> 1477 +2807 -> 4661 +2810 -> 4662 +2811 -> 4663 +2812 -> 4664 +2808 -> 4665 +2813 -> 4666 +2815 -> 4667 +2816 -> 4668 +2809 -> 4669 +2814 -> 4670 +2323 -> 4673 +2317 -> 4674 +2320 -> 4675 +2327 -> 4676 +2324 -> 4677 +2318 -> 4678 +2321 -> 4679 +2328 -> 4680 +2325 -> 4681 +2319 -> 4682 +2322 -> 4683 +2329 -> 4684 +2326 -> 4685 +2331 -> 4686 +2332 -> 4687 +2330 -> 4688 +2268 -> 4971 +2269 -> 4972 +2270 -> 4973 +2271 -> 4974 +2272 -> 4975 +2273 -> 4976 +2274 -> 4977 +2275 -> 4978 +2276 -> 4979 +2277 -> 4980 +2278 -> 4981 +2279 -> 4982 +2280 -> 4983 +2281 -> 4984 +2282 -> 4985 +2283 -> 4986 +2284 -> 4987 +2285 -> 4988 +2286 -> 4989 +2315 -> 4990 +2287 -> 4991 +2288 -> 4992 +2289 -> 4993 +2290 -> 4994 +2291 -> 4995 +2292 -> 4996 +2293 -> 4997 +2294 -> 4998 +2295 -> 4999 +2296 -> 5000 +2297 -> 5001 +2298 -> 5002 +2299 -> 5003 +2300 -> 5004 +2301 -> 5005 +2302 -> 5006 +2303 -> 5007 +2304 -> 5008 +2305 -> 5009 +2306 -> 5010 +2307 -> 5011 +2308 -> 5012 +2309 -> 5013 +2310 -> 5014 +2311 -> 5015 +2312 -> 5016 +2313 -> 5017 +2314 -> 5018 +2316 -> 5019 +2266 -> 3120 +2267 -> 3126 +127 -> 4967 +133 -> 4970 +132 -> 4969 +131 -> 4968 +3450 -> 4332 +3451 -> 4333 +3452 -> 4334 +3453 -> 4335 +3458 -> 4336 +3459 -> 4337 +3460 -> 4338 +3461 -> 4339 +4738 -> 5093 +4739 -> 5094 +4899 -> 5095 +4740 -> 5096 +4741 -> 5097 +4900 -> 5098 +4742 -> 5099 +4743 -> 5100 +4901 -> 5101 +4744 -> 5102 +4745 -> 5103 +4902 -> 5104 +4737 -> 5105 +4746 -> 5106 +4747 -> 5107 +4903 -> 5108 +4736 -> 5109 +4748 -> 5110 +4749 -> 5111 +4904 -> 5112 +4732 -> 5113 +4733 -> 5114 +4734 -> 5115 +4735 -> 5116 +3557 -> 5154 +3558 -> 5155 +3565 -> 5156 +3559 -> 5161 +3560 -> 5162 +3566 -> 5163 +3561 -> 5168 +3562 -> 5169 +3567 -> 5170 +3563 -> 5175 +3564 -> 5176 +3568 -> 5177 +3569 -> 5178 +3570 -> 5179 +3571 -> 5180 +3575 -> 5181 +3576 -> 5182 +3579 -> 5183 +3580 -> 5184 +3572 -> 5185 +3573 -> 5186 +3574 -> 5187 +3577 -> 5188 +3578 -> 5189 +3581 -> 5190 +3582 -> 5191 +4767 -> 5196 +3583 -> 5197 +3584 -> 5198 +489 -> 68 +490 -> 69 +3516 -> 5123 +3280 -> 3521 +3281 -> 3279 +3282 -> 3516 +2472 -> 3522 +68 -> 5128 +69 -> 5130 +3517 -> 5131 +3519 -> 3517 +3520 -> 3519 +4897 -> 5134 +4898 -> 5135 +321 -> 3518 +3518 -> 5139 +3521 -> 5140 +3522 -> 5141 +3277 -> 5144 +3278 -> 3277 +3279 -> 5146 +3585 -> 3280 +3586 -> 3278 +3587 -> 5149 diff --git a/data/images/converters/pre-0.6.3_crystal_tiles.sttc b/data/images/converters/pre-0.6.3_crystal_tiles.sttc new file mode 100644 index 00000000000..f93477ede74 --- /dev/null +++ b/data/images/converters/pre-0.6.3_crystal_tiles.sttc @@ -0,0 +1,201 @@ +2421 -> 4814 +2435 -> 4824 +2449 -> 4834 +2463 -> 4749 +2477 -> 4762 +2491 -> 4844 +2505 -> 4854 +2422 -> 4815 +2436 -> 4825 +2450 -> 4835 +2464 -> 4750 +2478 -> 4763 +2492 -> 4845 +2506 -> 4855 +2423 -> 4724 +2437 -> 4737 +2451 -> 4750 +2465 -> 4750 +2479 -> 4763 +2493 -> 4763 +2507 -> 4776 +2424 -> 4725 +2438 -> 4738 +2452 -> 4751 +2466 -> 4751 +2480 -> 4764 +2494 -> 4764 +2508 -> 4777 +2425 -> 4816 +2439 -> 4826 +2453 -> 4836 +2467 -> 4751 +2481 -> 4764 +2495 -> 4846 +2509 -> 4856 +2426 -> 4817 +2440 -> 4827 +2454 -> 4837 +2468 -> 4752 +2482 -> 4765 +2496 -> 4847 +2510 -> 4857 +2551 -> 0 +2567 -> 0 +2583 -> 4732 +2599 -> 4745 +2615 -> 4758 +2631 -> 4750 +2523 -> 4763 +2539 -> 4771 +2555 -> 4784 +2571 -> 4797 +2587 -> 4810 +2603 -> 0 +2552 -> 4732 +2568 -> 4745 +2584 -> 4758 +2600 -> 4750 +2616 -> 4763 +2632 -> 4750 +2524 -> 4763 +2540 -> 4750 +2556 -> 4763 +2572 -> 4771 +2588 -> 4784 +2604 -> 4797 +2553 -> 4733 +2569 -> 4746 +2585 -> 4759 +2601 -> 4751 +2617 -> 4764 +2633 -> 4751 +2525 -> 4764 +2541 -> 4751 +2557 -> 4764 +2573 -> 4772 +2589 -> 4785 +2605 -> 4798 +2554 -> 0 +2570 -> 0 +2586 -> 4733 +2602 -> 4746 +2618 -> 4759 +2634 -> 4751 +2526 -> 4764 +2542 -> 4772 +2558 -> 4785 +2574 -> 4798 +2590 -> 4811 +2606 -> 0 +2417 -> 0 +2431 -> 4734 +2445 -> 4747 +2459 -> 4750 +2527 -> 4763 +2543 -> 4760 +2559 -> 4773 +2575 -> 4786 +2418 -> 4734 +2432 -> 4747 +2446 -> 4750 +2460 -> 4750 +2528 -> 4763 +2544 -> 4763 +2560 -> 4760 +2576 -> 4773 +2419 -> 4735 +2433 -> 4748 +2447 -> 4751 +2461 -> 4751 +2529 -> 4764 +2545 -> 4764 +2561 -> 4761 +2577 -> 4774 +2420 -> 0 +2434 -> 4735 +2448 -> 4748 +2462 -> 4751 +2530 -> 4764 +2546 -> 4761 +2562 -> 4774 +2578 -> 4787 +2473 -> 0 +2487 -> 4728 +2501 -> 4741 +2515 -> 4750 +2531 -> 4763 +2547 -> 4754 +2563 -> 4767 +2474 -> 0 +2488 -> 4729 +2502 -> 4742 +2516 -> 4750 +2532 -> 4763 +2548 -> 4755 +2564 -> 4768 +2475 -> 0 +2489 -> 4730 +2503 -> 4743 +2517 -> 4751 +2533 -> 4764 +2549 -> 4756 +2565 -> 4769 +2476 -> 0 +2490 -> 4731 +2504 -> 4744 +2518 -> 4751 +2534 -> 4764 +2550 -> 4757 +2566 -> 4770 +2413 -> 4762 +2427 -> 4727 +2441 -> 4750 +2455 -> 4750 +2469 -> 4763 +2483 -> 4740 +2497 -> 4749 +2511 -> 4762 +2414 -> 4750 +2428 -> 4750 +2442 -> 4763 +2456 -> 4750 +2470 -> 4763 +2484 -> 4750 +2498 -> 4763 +2512 -> 4763 +2415 -> 4751 +2429 -> 4751 +2443 -> 4764 +2457 -> 4751 +2471 -> 4764 +2485 -> 4751 +2499 -> 4764 +2513 -> 4764 +2416 -> 4752 +2430 -> 4765 +2444 -> 4753 +2458 -> 4751 +2472 -> 4764 +2486 -> 4766 +2500 -> 4752 +2514 -> 4765 +2647 -> 4895 +2651 -> 4901 +2655 -> 4894 +2659 -> 4900 +2663 -> 4897 +2666 -> 4903 +2648 -> 4909 +2652 -> 4915 +2656 -> 4896 +2660 -> 4902 +2664 -> 4898 +2667 -> 4904 +2657 -> 4906 +2661 -> 4912 +2665 -> 4899 +2668 -> 4905 +2658 -> 4907 +2662 -> 4913 + diff --git a/data/images/creatures/bag/bag.sprite b/data/images/creatures/bag/bag.sprite index 6f5c7837686..3b469613050 100644 --- a/data/images/creatures/bag/bag.sprite +++ b/data/images/creatures/bag/bag.sprite @@ -42,12 +42,12 @@ (action (name "iced-left") - (hitbox 6 15 32 32) + (hitbox 1 0 45 64) (images "bag-bounce-0.png")) (action (name "iced-right") - (hitbox 6 15 32 32) + (hitbox 1 0 45 64) (mirror-action "iced-left")) (action diff --git a/data/images/creatures/bsod/bsod.sprite b/data/images/creatures/bsod/bsod.sprite index 58a3b63ed89..712222bc328 100644 --- a/data/images/creatures/bsod/bsod.sprite +++ b/data/images/creatures/bsod/bsod.sprite @@ -27,5 +27,17 @@ (name "squished-right") (hitbox 1 -19 31.8 31.8) (mirror-action "squished-left") - ) + ) + + (action + (name "iced-left") + (hitbox 0 3 45 43) + (fps 12) + (images "bsod-0.png")) + + (action + (name "iced-right") + (hitbox 0 3 45 43) + (fps 12) + (mirror-action "iced-left")) ) diff --git a/data/images/creatures/dispenser/cannon.sprite b/data/images/creatures/dispenser/cannon.sprite index ea952b691b8..48cc1fd6cc7 100644 --- a/data/images/creatures/dispenser/cannon.sprite +++ b/data/images/creatures/dispenser/cannon.sprite @@ -1,11 +1,11 @@ (supertux-sprite (action - (name "center") + (name "auto") (hitbox 4 4 32 64) (images "cannon_middle.png")) (action - (name "iced-center") + (name "iced-auto") (loops 1) (fps 24) (hitbox 4 4 32 64) diff --git a/data/images/creatures/dive_mine/dive_mine.sprite b/data/images/creatures/dive_mine/dive_mine.sprite index 8fc2fea1016..370b9b89589 100644 --- a/data/images/creatures/dive_mine/dive_mine.sprite +++ b/data/images/creatures/dive_mine/dive_mine.sprite @@ -24,12 +24,12 @@ (action (name "iced-left") - (hitbox 5 8 32 32) + (hitbox 10 13 45 43) (images "left-0.png")) (action (name "iced-right") - (hitbox 5 8 32 32) + (hitbox 6 13 45 43) (mirror-action "iced-left")) (action diff --git a/data/images/creatures/fatbat/fatbat.sprite b/data/images/creatures/fatbat/fatbat.sprite index cf8fad3293d..650ebe2d7e5 100644 --- a/data/images/creatures/fatbat/fatbat.sprite +++ b/data/images/creatures/fatbat/fatbat.sprite @@ -85,5 +85,26 @@ (fps 15) (hitbox 34 15 32 38) (mirror-action "burning-left") - ) + ) + + (action + (name "iced-left") + (hitbox 15 0 64 64) + (loops 1) + (fps 20) + (images "fatbat-0.png" + "fatbat-1.png" + "fatbat-2.png" + "fatbat-3.png" + "fatbat-4.png" + "fatbat-5.png" + "fatbat-4.png")) + + (action + (name "iced-right") + (hitbox 15 0 64 64) + (fps 20) + (loops 1) + (mirror-action "left")) + ) diff --git a/data/images/creatures/fish/forest/bluefish.sprite b/data/images/creatures/fish/forest/bluefish.sprite index 0caa40fd66f..180b8a1d058 100644 --- a/data/images/creatures/fish/forest/bluefish.sprite +++ b/data/images/creatures/fish/forest/bluefish.sprite @@ -20,12 +20,12 @@ (action (name "iced-left") - (hitbox 2 10 48 32) + (hitbox 2 10 64 43) (images "swim_blue-0.png")) (action (name "iced-right") - (hitbox 2 10 48 32) + (hitbox 2 10 64 43) (mirror-action "iced-left")) ) diff --git a/data/images/creatures/fish/forest/brownfish.sprite b/data/images/creatures/fish/forest/brownfish.sprite index e34eb6a02f6..e3e59493f3b 100644 --- a/data/images/creatures/fish/forest/brownfish.sprite +++ b/data/images/creatures/fish/forest/brownfish.sprite @@ -55,12 +55,12 @@ (action (name "iced-left") - (hitbox 9 10 46 46) + (hitbox -1 0 64 64) (images "swim_brown-0.png")) (action (name "iced-right") - (hitbox 11 10 46 46) + (hitbox 1 0 64 64) (mirror-action "iced-left")) ) diff --git a/data/images/creatures/fish/forest/corrupted/chase_brown-0.png b/data/images/creatures/fish/forest/corrupted/chase_brown-0.png new file mode 100644 index 00000000000..a3c1f960f09 Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/chase_brown-0.png differ diff --git a/data/images/creatures/fish/forest/corrupted/chase_brown-1.png b/data/images/creatures/fish/forest/corrupted/chase_brown-1.png new file mode 100644 index 00000000000..12bc1141092 Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/chase_brown-1.png differ diff --git a/data/images/creatures/fish/forest/corrupted/chase_brown-2.png b/data/images/creatures/fish/forest/corrupted/chase_brown-2.png new file mode 100644 index 00000000000..8bc771a03fa Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/chase_brown-2.png differ diff --git a/data/images/creatures/fish/forest/corrupted/chase_brown-3.png b/data/images/creatures/fish/forest/corrupted/chase_brown-3.png new file mode 100644 index 00000000000..a470bc2de2c Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/chase_brown-3.png differ diff --git a/data/images/creatures/fish/forest/corrupted/chase_brown-4.png b/data/images/creatures/fish/forest/corrupted/chase_brown-4.png new file mode 100644 index 00000000000..e8257ff309c Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/chase_brown-4.png differ diff --git a/data/images/creatures/fish/forest/corrupted/chase_brown-5.png b/data/images/creatures/fish/forest/corrupted/chase_brown-5.png new file mode 100644 index 00000000000..57bebf079d9 Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/chase_brown-5.png differ diff --git a/data/images/creatures/fish/forest/corrupted/corrupted_bluefish.sprite b/data/images/creatures/fish/forest/corrupted/corrupted_bluefish.sprite new file mode 100644 index 00000000000..233b3de0bc2 --- /dev/null +++ b/data/images/creatures/fish/forest/corrupted/corrupted_bluefish.sprite @@ -0,0 +1,31 @@ +(supertux-sprite + (action + (name "swim-left") + (hitbox 8 15 48 35) + (fps 12) + (images "swim_blue-0.png" + "swim_blue-1.png" + "swim_blue-2.png" + "swim_blue-3.png" + "swim_blue-4.png" + "swim_blue-5.png" + "swim_blue-6.png" + "swim_blue-7.png")) + + (action + (name "swim-right") + (hitbox 8 15 48 35) + (fps 12) + (mirror-action "swim-left")) + + (action + (name "iced-left") + (hitbox 8 15 48 35) + (images "swim_blue-0.png")) + + (action + (name "iced-right") + (hitbox 8 15 48 35) + (mirror-action "iced-left")) + +) diff --git a/data/images/creatures/fish/forest/corrupted/corrupted_brownfish.sprite b/data/images/creatures/fish/forest/corrupted/corrupted_brownfish.sprite new file mode 100644 index 00000000000..51fd3407587 --- /dev/null +++ b/data/images/creatures/fish/forest/corrupted/corrupted_brownfish.sprite @@ -0,0 +1,66 @@ +(supertux-sprite + (action + (name "swim-left") + (hitbox 8 10 46 46) + (fps 12) + (images "swim_brown-0.png" + "swim_brown-1.png" + "swim_brown-2.png" + "swim_brown-3.png" + "swim_brown-4.png" + "swim_brown-5.png" + "swim_brown-6.png" + "swim_brown-7.png")) + + (action + (name "swim-right") + (hitbox 12 10 46 46) + (fps 12) + (mirror-action "swim-left")) + + (action + (name "notice-left") + (hitbox 8 10 46 46) + (loops 1) + (fps 18) + (images "swim_brown-0.png" + "notice_brown-0.png" + "notice_brown-1.png" + "notice_brown-2.png" + "notice_brown-3.png")) + + (action + (name "notice-right") + (hitbox 12 10 46 46) + (loops 1) + (fps 18) + (mirror-action "notice-left")) + + (action + (name "chase-left") + (hitbox 24 10 46 46) + (fps 20) + (images "chase_brown-0.png" + "chase_brown-1.png" + "chase_brown-2.png" + "chase_brown-3.png" + "chase_brown-4.png" + "chase_brown-5.png")) + + (action + (name "chase-right") + (hitbox 16 10 46 46) + (fps 20) + (mirror-action "chase-left")) + + (action + (name "iced-left") + (hitbox 8 10 46 46) + (images "swim_brown-0.png")) + + (action + (name "iced-right") + (hitbox 12 10 46 46) + (mirror-action "iced-left")) + +) diff --git a/data/images/creatures/fish/forest/corrupted/notice_brown-0.png b/data/images/creatures/fish/forest/corrupted/notice_brown-0.png new file mode 100644 index 00000000000..5896506e76d Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/notice_brown-0.png differ diff --git a/data/images/creatures/fish/forest/corrupted/notice_brown-1.png b/data/images/creatures/fish/forest/corrupted/notice_brown-1.png new file mode 100644 index 00000000000..e16b999c341 Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/notice_brown-1.png differ diff --git a/data/images/creatures/fish/forest/corrupted/notice_brown-2.png b/data/images/creatures/fish/forest/corrupted/notice_brown-2.png new file mode 100644 index 00000000000..30d3b5fd46a Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/notice_brown-2.png differ diff --git a/data/images/creatures/fish/forest/corrupted/notice_brown-3.png b/data/images/creatures/fish/forest/corrupted/notice_brown-3.png new file mode 100644 index 00000000000..97f39abf347 Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/notice_brown-3.png differ diff --git a/data/images/creatures/fish/forest/corrupted/swim_blue-0.png b/data/images/creatures/fish/forest/corrupted/swim_blue-0.png new file mode 100644 index 00000000000..c46b846057a Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/swim_blue-0.png differ diff --git a/data/images/creatures/fish/forest/corrupted/swim_blue-1.png b/data/images/creatures/fish/forest/corrupted/swim_blue-1.png new file mode 100644 index 00000000000..eed53ef636f Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/swim_blue-1.png differ diff --git a/data/images/creatures/fish/forest/corrupted/swim_blue-2.png b/data/images/creatures/fish/forest/corrupted/swim_blue-2.png new file mode 100644 index 00000000000..05c920f7b8e Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/swim_blue-2.png differ diff --git a/data/images/creatures/fish/forest/corrupted/swim_blue-3.png b/data/images/creatures/fish/forest/corrupted/swim_blue-3.png new file mode 100644 index 00000000000..acf2692dea0 Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/swim_blue-3.png differ diff --git a/data/images/creatures/fish/forest/corrupted/swim_blue-4.png b/data/images/creatures/fish/forest/corrupted/swim_blue-4.png new file mode 100644 index 00000000000..31f43dcb335 Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/swim_blue-4.png differ diff --git a/data/images/creatures/fish/forest/corrupted/swim_blue-5.png b/data/images/creatures/fish/forest/corrupted/swim_blue-5.png new file mode 100644 index 00000000000..518ee4ea6c5 Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/swim_blue-5.png differ diff --git a/data/images/creatures/fish/forest/corrupted/swim_blue-6.png b/data/images/creatures/fish/forest/corrupted/swim_blue-6.png new file mode 100644 index 00000000000..3403288d350 Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/swim_blue-6.png differ diff --git a/data/images/creatures/fish/forest/corrupted/swim_blue-7.png b/data/images/creatures/fish/forest/corrupted/swim_blue-7.png new file mode 100644 index 00000000000..b65b39be5ad Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/swim_blue-7.png differ diff --git a/data/images/creatures/fish/forest/corrupted/swim_brown-0.png b/data/images/creatures/fish/forest/corrupted/swim_brown-0.png new file mode 100644 index 00000000000..947c54c5d6e Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/swim_brown-0.png differ diff --git a/data/images/creatures/fish/forest/corrupted/swim_brown-1.png b/data/images/creatures/fish/forest/corrupted/swim_brown-1.png new file mode 100644 index 00000000000..0e8aa7481cb Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/swim_brown-1.png differ diff --git a/data/images/creatures/fish/forest/corrupted/swim_brown-2.png b/data/images/creatures/fish/forest/corrupted/swim_brown-2.png new file mode 100644 index 00000000000..1f2816dda35 Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/swim_brown-2.png differ diff --git a/data/images/creatures/fish/forest/corrupted/swim_brown-3.png b/data/images/creatures/fish/forest/corrupted/swim_brown-3.png new file mode 100644 index 00000000000..4ee349dffe6 Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/swim_brown-3.png differ diff --git a/data/images/creatures/fish/forest/corrupted/swim_brown-4.png b/data/images/creatures/fish/forest/corrupted/swim_brown-4.png new file mode 100644 index 00000000000..719ce6e4809 Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/swim_brown-4.png differ diff --git a/data/images/creatures/fish/forest/corrupted/swim_brown-5.png b/data/images/creatures/fish/forest/corrupted/swim_brown-5.png new file mode 100644 index 00000000000..aaa50f1c9c3 Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/swim_brown-5.png differ diff --git a/data/images/creatures/fish/forest/corrupted/swim_brown-6.png b/data/images/creatures/fish/forest/corrupted/swim_brown-6.png new file mode 100644 index 00000000000..d4f8894e0b1 Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/swim_brown-6.png differ diff --git a/data/images/creatures/fish/forest/corrupted/swim_brown-7.png b/data/images/creatures/fish/forest/corrupted/swim_brown-7.png new file mode 100644 index 00000000000..fb33dcd8264 Binary files /dev/null and b/data/images/creatures/fish/forest/corrupted/swim_brown-7.png differ diff --git a/data/images/creatures/fish/forest/jumpfish.sprite b/data/images/creatures/fish/forest/jumpfish.sprite index 0e386ee10af..48d0654c8f0 100644 --- a/data/images/creatures/fish/forest/jumpfish.sprite +++ b/data/images/creatures/fish/forest/jumpfish.sprite @@ -38,12 +38,12 @@ (action (name "iced") - (hitbox 12 24 40 46) - (images "jump_blue-3.png")) + (hitbox 9 24 45 64) + (images "jump_blue-0.png")) (action (name "iced-down") - (hitbox 14 9 40 46) + (hitbox 14 9 45 64) (images "wait_blue-1.png")) (action diff --git a/data/images/creatures/fish/ice/bluefish.sprite b/data/images/creatures/fish/ice/bluefish.sprite index dc5d75e06bf..b5d243138f3 100644 --- a/data/images/creatures/fish/ice/bluefish.sprite +++ b/data/images/creatures/fish/ice/bluefish.sprite @@ -20,12 +20,12 @@ (action (name "iced-left") - (hitbox 2 10 48 32) + (hitbox 2 10 64 43) (images "swim_blue-0.png")) (action (name "iced-right") - (hitbox 2 10 48 32) + (hitbox 2 10 64 43) (mirror-action "iced-left")) ) diff --git a/data/images/creatures/fish/ice/goldfish.sprite b/data/images/creatures/fish/ice/goldfish.sprite index 760eeb1b748..65f9e73e948 100644 --- a/data/images/creatures/fish/ice/goldfish.sprite +++ b/data/images/creatures/fish/ice/goldfish.sprite @@ -20,12 +20,12 @@ (action (name "iced-left") - (hitbox -5 -5 31.8 31.8) + (hitbox -5 -5 45 43) (images "swim_orange-0.png")) (action (name "iced-right") - (hitbox -5 -5 31.8 31.8) + (hitbox -5 -5 45 43) (mirror-action "iced-left")) ) diff --git a/data/images/creatures/fish/ice/greenfish.sprite b/data/images/creatures/fish/ice/greenfish.sprite index 436aff7f983..f0f49c82555 100644 --- a/data/images/creatures/fish/ice/greenfish.sprite +++ b/data/images/creatures/fish/ice/greenfish.sprite @@ -54,12 +54,12 @@ (action (name "iced-left") - (hitbox 0 0 46 46) + (hitbox 0 0 64 64) (images "swim_green-0.png")) (action (name "iced-right") - (hitbox 0 0 46 46) + (hitbox 0 0 64 64) (mirror-action "iced-left")) ) diff --git a/data/images/creatures/flame/flame-editor.png b/data/images/creatures/flame/flame-editor.png index bed8ddc6ea3..f2fcff4d4e4 100644 Binary files a/data/images/creatures/flame/flame-editor.png and b/data/images/creatures/flame/flame-editor.png differ diff --git a/data/images/creatures/flame/flame.sprite b/data/images/creatures/flame/flame.sprite index 3bf4e35e484..f2932799265 100644 --- a/data/images/creatures/flame/flame.sprite +++ b/data/images/creatures/flame/flame.sprite @@ -13,9 +13,5 @@ "flame-fade-1.png" "flame-fade-2.png" "flame-fade-3.png")) - (action - (hitbox 96 96 127.8 31.8) - (name "editor") - (images "flame-editor.png")) ) diff --git a/data/images/creatures/flame/ghostflame.sprite b/data/images/creatures/flame/ghostflame.sprite index a940ec5fe06..4066b0c81cb 100644 --- a/data/images/creatures/flame/ghostflame.sprite +++ b/data/images/creatures/flame/ghostflame.sprite @@ -7,10 +7,5 @@ "ghostflame-2.png" "ghostflame-3.png" "ghostflame-4.png")) - (action - (hitbox 96 96 127.8 31.8) - (name "editor") - (images "ghostflame-editor.png")) - ) diff --git a/data/images/creatures/flame/iceflame.sprite b/data/images/creatures/flame/iceflame.sprite index 1c02b68f665..dd3eca9ad32 100644 --- a/data/images/creatures/flame/iceflame.sprite +++ b/data/images/creatures/flame/iceflame.sprite @@ -10,9 +10,5 @@ (images "iceflame-fade-0.png" "iceflame-fade-1.png" "iceflame-fade-2.png")) - (action - (hitbox 96 96 127.8 31.8) - (name "editor") - (images "iceflame-editor.png")) ) diff --git a/data/images/creatures/ghosttree/hudlife.png b/data/images/creatures/ghosttree/hudlife.png new file mode 100644 index 00000000000..80d24a63c60 Binary files /dev/null and b/data/images/creatures/ghosttree/hudlife.png differ diff --git a/data/images/creatures/gold_bomb/gold_bomb.sprite b/data/images/creatures/gold_bomb/gold_bomb.sprite index ef98138f079..53e48c7c1d1 100644 --- a/data/images/creatures/gold_bomb/gold_bomb.sprite +++ b/data/images/creatures/gold_bomb/gold_bomb.sprite @@ -89,12 +89,12 @@ (action (name "iced-left") - (hitbox 14 19 32 32) + (hitbox 9 8 45 43) (images "left-0.png")) (action (name "iced-right") - (hitbox 14 19 32 32) + (hitbox 7 8 45 43) (mirror-action "iced-left")) (action diff --git a/data/images/creatures/granito/big/granito_big.sprite b/data/images/creatures/granito/big/granito_big.sprite new file mode 100644 index 00000000000..76e9dfce5ac --- /dev/null +++ b/data/images/creatures/granito/big/granito_big.sprite @@ -0,0 +1,73 @@ +(supertux-sprite + (action + (name "stand-left") + (hitbox 22 20 44 62) + (fps 10) + (images "granito_stand-0.png" + "granito_stand-1.png" + "granito_stand-2.png" + "granito_stand-3.png" + "granito_stand-4.png" + "granito_stand-5.png" + "granito_stand-6.png" + "granito_stand-7.png" + "granito_stand-8.png" + "granito_stand-9.png" + "granito_stand-0.png" + "granito_stand-1.png" + "granito_stand-2.png" + "granito_stand-3.png" + "granito_stand-4.png" + "granito_stand-5.png" + "granito_stand-6.png" + "granito_stand-7.png" + "granito_stand-8.png" + "granito_stand-9.png" + "granito_stand-0.png" + "granito_stand-1.png" + "granito_stand-2.png" + "granito_stand-3.png" + "granito_stand-4.png" + "granito_stand-5.png" + "granito_stand-6.png" + "granito_stand-7.png" + "granito_stand-8.png" + "granito_stand-10.png" + "granito_stand-11.png" + "granito_stand-12.png" + "granito_stand-2.png" + "granito_stand-3.png" + "granito_stand-4.png" + "granito_stand-5.png" + "granito_stand-6.png" + "granito_stand-7.png" + "granito_stand-8.png" + "granito_stand-9.png") + ) + (action + (name "stand-right") + (hitbox 18 20 44 62) + (fps 10) + (mirror-action "stand-left") + ) + + (action + (name "left") + (hitbox 22 20 44 62) + (fps 10) + (images "granito_walk-0.png" + "granito_walk-1.png" + "granito_walk-2.png" + "granito_walk-3.png" + "granito_walk-4.png" + "granito_walk-5.png" + "granito_walk-6.png" + "granito_walk-7.png") + ) + (action + (name "right") + (hitbox 18 20 44 62) + (fps 10) + (mirror-action "left") + ) +) diff --git a/data/images/creatures/granito/big/granito_stand-0.png b/data/images/creatures/granito/big/granito_stand-0.png new file mode 100644 index 00000000000..ae49dc88ae5 Binary files /dev/null and b/data/images/creatures/granito/big/granito_stand-0.png differ diff --git a/data/images/creatures/granito/big/granito_stand-1.png b/data/images/creatures/granito/big/granito_stand-1.png new file mode 100644 index 00000000000..d95addd662a Binary files /dev/null and b/data/images/creatures/granito/big/granito_stand-1.png differ diff --git a/data/images/creatures/granito/big/granito_stand-10.png b/data/images/creatures/granito/big/granito_stand-10.png new file mode 100644 index 00000000000..32a54c5aa00 Binary files /dev/null and b/data/images/creatures/granito/big/granito_stand-10.png differ diff --git a/data/images/creatures/granito/big/granito_stand-11.png b/data/images/creatures/granito/big/granito_stand-11.png new file mode 100644 index 00000000000..d193a935819 Binary files /dev/null and b/data/images/creatures/granito/big/granito_stand-11.png differ diff --git a/data/images/creatures/granito/big/granito_stand-12.png b/data/images/creatures/granito/big/granito_stand-12.png new file mode 100644 index 00000000000..2081aaf2874 Binary files /dev/null and b/data/images/creatures/granito/big/granito_stand-12.png differ diff --git a/data/images/creatures/granito/big/granito_stand-2.png b/data/images/creatures/granito/big/granito_stand-2.png new file mode 100644 index 00000000000..b42b4da3e9c Binary files /dev/null and b/data/images/creatures/granito/big/granito_stand-2.png differ diff --git a/data/images/creatures/granito/big/granito_stand-3.png b/data/images/creatures/granito/big/granito_stand-3.png new file mode 100644 index 00000000000..0ae4869f6c1 Binary files /dev/null and b/data/images/creatures/granito/big/granito_stand-3.png differ diff --git a/data/images/creatures/granito/big/granito_stand-4.png b/data/images/creatures/granito/big/granito_stand-4.png new file mode 100644 index 00000000000..42e1b133fb5 Binary files /dev/null and b/data/images/creatures/granito/big/granito_stand-4.png differ diff --git a/data/images/creatures/granito/big/granito_stand-5.png b/data/images/creatures/granito/big/granito_stand-5.png new file mode 100644 index 00000000000..abf47859364 Binary files /dev/null and b/data/images/creatures/granito/big/granito_stand-5.png differ diff --git a/data/images/creatures/granito/big/granito_stand-6.png b/data/images/creatures/granito/big/granito_stand-6.png new file mode 100644 index 00000000000..403eefdc850 Binary files /dev/null and b/data/images/creatures/granito/big/granito_stand-6.png differ diff --git a/data/images/creatures/granito/big/granito_stand-7.png b/data/images/creatures/granito/big/granito_stand-7.png new file mode 100644 index 00000000000..d46e8d64549 Binary files /dev/null and b/data/images/creatures/granito/big/granito_stand-7.png differ diff --git a/data/images/creatures/granito/big/granito_stand-8.png b/data/images/creatures/granito/big/granito_stand-8.png new file mode 100644 index 00000000000..16022ab209a Binary files /dev/null and b/data/images/creatures/granito/big/granito_stand-8.png differ diff --git a/data/images/creatures/granito/big/granito_stand-9.png b/data/images/creatures/granito/big/granito_stand-9.png new file mode 100644 index 00000000000..a8bd11572c5 Binary files /dev/null and b/data/images/creatures/granito/big/granito_stand-9.png differ diff --git a/data/images/creatures/granito/big/granito_walk-0.png b/data/images/creatures/granito/big/granito_walk-0.png new file mode 100644 index 00000000000..b2a4fb7b380 Binary files /dev/null and b/data/images/creatures/granito/big/granito_walk-0.png differ diff --git a/data/images/creatures/granito/big/granito_walk-1.png b/data/images/creatures/granito/big/granito_walk-1.png new file mode 100644 index 00000000000..4347a54b23d Binary files /dev/null and b/data/images/creatures/granito/big/granito_walk-1.png differ diff --git a/data/images/creatures/granito/big/granito_walk-2.png b/data/images/creatures/granito/big/granito_walk-2.png new file mode 100644 index 00000000000..63f3f2495bb Binary files /dev/null and b/data/images/creatures/granito/big/granito_walk-2.png differ diff --git a/data/images/creatures/granito/big/granito_walk-3.png b/data/images/creatures/granito/big/granito_walk-3.png new file mode 100644 index 00000000000..71eb4ed7255 Binary files /dev/null and b/data/images/creatures/granito/big/granito_walk-3.png differ diff --git a/data/images/creatures/granito/big/granito_walk-4.png b/data/images/creatures/granito/big/granito_walk-4.png new file mode 100644 index 00000000000..a012d9425cb Binary files /dev/null and b/data/images/creatures/granito/big/granito_walk-4.png differ diff --git a/data/images/creatures/granito/big/granito_walk-5.png b/data/images/creatures/granito/big/granito_walk-5.png new file mode 100644 index 00000000000..ab425734579 Binary files /dev/null and b/data/images/creatures/granito/big/granito_walk-5.png differ diff --git a/data/images/creatures/granito/big/granito_walk-6.png b/data/images/creatures/granito/big/granito_walk-6.png new file mode 100644 index 00000000000..101abfb5c55 Binary files /dev/null and b/data/images/creatures/granito/big/granito_walk-6.png differ diff --git a/data/images/creatures/granito/big/granito_walk-7.png b/data/images/creatures/granito/big/granito_walk-7.png new file mode 100644 index 00000000000..2e9f8041364 Binary files /dev/null and b/data/images/creatures/granito/big/granito_walk-7.png differ diff --git a/data/images/creatures/granito/corrupted/giant/corrupted_giant.sprite b/data/images/creatures/granito/corrupted/giant/corrupted_giant.sprite index d4baa174376..0519566886d 100644 --- a/data/images/creatures/granito/corrupted/giant/corrupted_giant.sprite +++ b/data/images/creatures/granito/corrupted/giant/corrupted_giant.sprite @@ -33,4 +33,10 @@ (fps 5) (mirror-action "husk3-left") ) + (action + (name "idle-left") + (clone-action "husk1-left")) + (action + (name "idle-right") + (clone-action "husk1-right")) ) diff --git a/data/images/creatures/granito/giant/granito_awake-0.png b/data/images/creatures/granito/giant/granito_awake-0.png new file mode 100644 index 00000000000..b324c31e135 Binary files /dev/null and b/data/images/creatures/granito/giant/granito_awake-0.png differ diff --git a/data/images/creatures/granito/giant/granito_awake-1.png b/data/images/creatures/granito/giant/granito_awake-1.png new file mode 100644 index 00000000000..de3653c36ab Binary files /dev/null and b/data/images/creatures/granito/giant/granito_awake-1.png differ diff --git a/data/images/creatures/granito/giant/granito_awake-2.png b/data/images/creatures/granito/giant/granito_awake-2.png new file mode 100644 index 00000000000..6bdbd3baadf Binary files /dev/null and b/data/images/creatures/granito/giant/granito_awake-2.png differ diff --git a/data/images/creatures/granito/giant/granito_awake-3.png b/data/images/creatures/granito/giant/granito_awake-3.png new file mode 100644 index 00000000000..475a03a4d54 Binary files /dev/null and b/data/images/creatures/granito/giant/granito_awake-3.png differ diff --git a/data/images/creatures/granito/giant/granito_giant.sprite b/data/images/creatures/granito/giant/granito_giant.sprite new file mode 100644 index 00000000000..1d211a13d2b --- /dev/null +++ b/data/images/creatures/granito/giant/granito_giant.sprite @@ -0,0 +1,76 @@ +(supertux-sprite + (action + (name "sleep-left") + (hitbox 85 27 90 156) + (fps 5) + (images "granito_sleep-0.png" + "granito_sleep-1.png" + "granito_sleep-2.png" + "granito_sleep-3.png" + "granito_sleep-3.png" + "granito_sleep-3.png" + "granito_sleep-3.png" + "granito_sleep-3.png" + "granito_sleep-2.png" + "granito_sleep-1.png" + "granito_sleep-0.png" + "granito_sleep-4.png" + "granito_sleep-4.png" + "granito_sleep-4.png" + "granito_sleep-4.png" + "granito_sleep-4.png") + ) + (action + (name "sleep-right") + (hitbox 47 27 90 156) + (fps 5) + (mirror-action "sleep-left") + ) + (action + (name "idle-left") + (hitbox 85 27 90 156) + (fps 10) + (images "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-0.png" + "granito_awake-1.png" + "granito_awake-2.png" + "granito_awake-3.png" + "granito_sleep-0.png" + "granito_awake-3.png" + "granito_awake-2.png" + "granito_awake-1.png") + ) + (action + (name "idle-right") + (hitbox 47 27 90 156) + (fps 10) + (mirror-action "idle-left") + ) +) diff --git a/data/images/creatures/granito/giant/granito_sleep-0.png b/data/images/creatures/granito/giant/granito_sleep-0.png new file mode 100644 index 00000000000..8dd072f3554 Binary files /dev/null and b/data/images/creatures/granito/giant/granito_sleep-0.png differ diff --git a/data/images/creatures/granito/giant/granito_sleep-1.png b/data/images/creatures/granito/giant/granito_sleep-1.png new file mode 100644 index 00000000000..73fb38d09e0 Binary files /dev/null and b/data/images/creatures/granito/giant/granito_sleep-1.png differ diff --git a/data/images/creatures/granito/giant/granito_sleep-2.png b/data/images/creatures/granito/giant/granito_sleep-2.png new file mode 100644 index 00000000000..3dd1115cb1e Binary files /dev/null and b/data/images/creatures/granito/giant/granito_sleep-2.png differ diff --git a/data/images/creatures/granito/giant/granito_sleep-3.png b/data/images/creatures/granito/giant/granito_sleep-3.png new file mode 100644 index 00000000000..ab1f7064102 Binary files /dev/null and b/data/images/creatures/granito/giant/granito_sleep-3.png differ diff --git a/data/images/creatures/granito/giant/granito_sleep-4.png b/data/images/creatures/granito/giant/granito_sleep-4.png new file mode 100644 index 00000000000..a86a1566593 Binary files /dev/null and b/data/images/creatures/granito/giant/granito_sleep-4.png differ diff --git a/data/images/creatures/granito/granito.sprite b/data/images/creatures/granito/granito.sprite new file mode 100644 index 00000000000..b389c8f142c --- /dev/null +++ b/data/images/creatures/granito/granito.sprite @@ -0,0 +1,255 @@ +(supertux-sprite + (action + (name "stand-left") + (hitbox 15 15 32 42) + (fps 10) + (images "granito_stand-0.png" + "granito_stand-1.png" + "granito_stand-2.png" + "granito_stand-3.png" + "granito_stand-4.png" + "granito_stand-3.png" + "granito_stand-2.png" + "granito_stand-1.png" + "granito_stand-0.png" + "granito_stand-5.png" + "granito_stand-0.png" + "granito_stand-1.png" + "granito_stand-2.png" + "granito_stand-3.png" + "granito_stand-4.png" + "granito_stand-3.png" + "granito_stand-2.png" + "granito_stand-1.png" + "granito_stand-0.png" + "granito_stand-5.png" + "granito_stand-0.png" + "granito_stand-1.png" + "granito_stand-2.png" + "granito_stand-3.png" + "granito_stand-4.png" + "granito_stand-3.png" + "granito_stand-2.png" + "granito_stand-1.png" + "granito_stand-0.png" + "granito_stand-6.png" + "granito_stand-7.png" + "granito_stand-8.png" + "granito_stand-2.png" + "granito_stand-3.png" + "granito_stand-4.png" + "granito_stand-3.png" + "granito_stand-2.png" + "granito_stand-1.png" + "granito_stand-0.png" + "granito_stand-5.png")) + + (action + (name "stand-right") + (hitbox 17 15 32 42) + (fps 10) + (mirror-action "stand-left")) + + (action + (name "left") + (hitbox 15 15 32 42) + (fps 12) + (images "granito_walk-0.png" + "granito_walk-1.png" + "granito_walk-2.png" + "granito_walk-3.png" + "granito_walk-4.png" + "granito_walk-5.png" + "granito_walk-6.png" + "granito_walk-7.png")) + + (action + (name "right") + (hitbox 17 15 32 42) + (fps 12) + (mirror-action "left")) + + (action + (name "jump-left") + (hitbox 15 15 32 42) + (fps 15) + (loops 1) + (images "granito_jump-0.png" + "granito_jump-1.png" + "granito_jump-2.png" + "granito_jump-3.png")) + + (action + (name "jump-right") + (hitbox 17 15 32 42) + (fps 15) + (loops 1) + (mirror-action "jump-left")) + + (action + (name "fall-left") + (hitbox 15 15 32 42) + (fps 15) + (loops 1) + (images "granito_jump-4.png" + "granito_jump-5.png" + "granito_jump-6.png" + "granito_jump-7.png")) + + (action + (name "fall-right") + (hitbox 17 15 32 42) + (fps 15) + (loops 1) + (mirror-action "fall-left")) + + (action + (name "sit-left") + (hitbox 15 25 32 32) + (fps 10) + (images "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-1.png" + "granito_sit-2.png" + "granito_sit-3.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png" + "granito_sit-0.png")) + + (action + (name "sit-right") + (hitbox 17 25 32 32) + (fps 10) + (mirror-action "sit-left")) + + (action + (name "lookup-left") + (hitbox 15 15 32 42) + (loop-frame 4) + (fps 12) + (images "granito_look-0.png" + "granito_look-1.png" + "granito_look-2.png" + "granito_look-2.png" + "granito_look-2.png" + "granito_look-2.png" + "granito_look-2.png" + "granito_look-2.png" + "granito_look-2.png" + "granito_look-2.png" + "granito_look-2.png" + "granito_look-2.png" + "granito_look-2.png" + "granito_look-2.png" + "granito_look-2.png" + "granito_look-2.png" + "granito_look-2.png" + "granito_look-2.png" + "granito_look-2.png" + "granito_look-2.png" + "granito_look-2.png" + "granito_look-2.png" + "granito_look-2.png" + "granito_look-2.png" + "granito_look-2.png" + "granito_look-2.png" + "granito_look-3.png" + "granito_look-4.png" + "granito_look-5.png" + "granito_look-2.png" + "granito_look-3.png" + "granito_look-4.png" + "granito_look-5.png" + "granito_look-2.png" + )) + + (action + (name "lookup-right") + (hitbox 17 15 32 42) + (loop-frame 4) + (fps 12) + (mirror-action "lookup-left")) + + (action + (name "lookdown-left") + (hitbox 15 15 32 42) + (loops 1) + (fps 12) + (images "granito_look-2.png" + "granito_look-1.png" + "granito_look-0.png" + "granito_stand-0.png" + )) + + (action + (name "lookdown-right") + (hitbox 17 15 32 42) + (loops 1) + (fps 12) + (mirror-action "lookdown-left")) + + (action + (name "wave-left") + (hitbox 21 21 32 42) + (fps 15) + (images "granito_wave-0.png" + "granito_wave-1.png" + "granito_wave-2.png" + "granito_wave-3.png" + "granito_wave-4.png" + "granito_wave-5.png" + "granito_wave-6.png" + "granito_wave-7.png" + "granito_wave-4.png" + "granito_wave-5.png" + "granito_wave-6.png" + "granito_wave-7.png" + "granito_wave-4.png" + "granito_wave-5.png" + "granito_wave-6.png" + "granito_wave-7.png" + "granito_wave-4.png" + "granito_wave-5.png" + "granito_wave-6.png" + "granito_wave-7.png" + "granito_wave-8.png" + "granito_wave-9.png")) + + (action + (name "wave-right") + (hitbox 17 21 32 42) + (fps 15) + (mirror-action "wave-left")) +) diff --git a/data/images/creatures/granito/granito_jump-0.png b/data/images/creatures/granito/granito_jump-0.png new file mode 100644 index 00000000000..720c204bc7c Binary files /dev/null and b/data/images/creatures/granito/granito_jump-0.png differ diff --git a/data/images/creatures/granito/granito_jump-1.png b/data/images/creatures/granito/granito_jump-1.png new file mode 100644 index 00000000000..86c4dd7828e Binary files /dev/null and b/data/images/creatures/granito/granito_jump-1.png differ diff --git a/data/images/creatures/granito/granito_jump-2.png b/data/images/creatures/granito/granito_jump-2.png new file mode 100644 index 00000000000..580eb7573a1 Binary files /dev/null and b/data/images/creatures/granito/granito_jump-2.png differ diff --git a/data/images/creatures/granito/granito_jump-3.png b/data/images/creatures/granito/granito_jump-3.png new file mode 100644 index 00000000000..980793bc447 Binary files /dev/null and b/data/images/creatures/granito/granito_jump-3.png differ diff --git a/data/images/creatures/granito/granito_jump-4.png b/data/images/creatures/granito/granito_jump-4.png new file mode 100644 index 00000000000..b204b46c934 Binary files /dev/null and b/data/images/creatures/granito/granito_jump-4.png differ diff --git a/data/images/creatures/granito/granito_jump-5.png b/data/images/creatures/granito/granito_jump-5.png new file mode 100644 index 00000000000..2269b74c1c2 Binary files /dev/null and b/data/images/creatures/granito/granito_jump-5.png differ diff --git a/data/images/creatures/granito/granito_jump-6.png b/data/images/creatures/granito/granito_jump-6.png new file mode 100644 index 00000000000..215e867038e Binary files /dev/null and b/data/images/creatures/granito/granito_jump-6.png differ diff --git a/data/images/creatures/granito/granito_jump-7.png b/data/images/creatures/granito/granito_jump-7.png new file mode 100644 index 00000000000..8d91ebc9ae1 Binary files /dev/null and b/data/images/creatures/granito/granito_jump-7.png differ diff --git a/data/images/creatures/granito/granito_look-0.png b/data/images/creatures/granito/granito_look-0.png new file mode 100644 index 00000000000..76bb548d32f Binary files /dev/null and b/data/images/creatures/granito/granito_look-0.png differ diff --git a/data/images/creatures/granito/granito_look-1.png b/data/images/creatures/granito/granito_look-1.png new file mode 100644 index 00000000000..02068641526 Binary files /dev/null and b/data/images/creatures/granito/granito_look-1.png differ diff --git a/data/images/creatures/granito/granito_look-2.png b/data/images/creatures/granito/granito_look-2.png new file mode 100644 index 00000000000..aeaf3d62c10 Binary files /dev/null and b/data/images/creatures/granito/granito_look-2.png differ diff --git a/data/images/creatures/granito/granito_look-3.png b/data/images/creatures/granito/granito_look-3.png new file mode 100644 index 00000000000..1dd99cb9a95 Binary files /dev/null and b/data/images/creatures/granito/granito_look-3.png differ diff --git a/data/images/creatures/granito/granito_look-4.png b/data/images/creatures/granito/granito_look-4.png new file mode 100644 index 00000000000..a3e2d572b9e Binary files /dev/null and b/data/images/creatures/granito/granito_look-4.png differ diff --git a/data/images/creatures/granito/granito_look-5.png b/data/images/creatures/granito/granito_look-5.png new file mode 100644 index 00000000000..fe682ba6ac1 Binary files /dev/null and b/data/images/creatures/granito/granito_look-5.png differ diff --git a/data/images/creatures/granito/granito_sit-0.png b/data/images/creatures/granito/granito_sit-0.png new file mode 100644 index 00000000000..ac70cacad1a Binary files /dev/null and b/data/images/creatures/granito/granito_sit-0.png differ diff --git a/data/images/creatures/granito/granito_sit-1.png b/data/images/creatures/granito/granito_sit-1.png new file mode 100644 index 00000000000..0ac60247751 Binary files /dev/null and b/data/images/creatures/granito/granito_sit-1.png differ diff --git a/data/images/creatures/granito/granito_sit-2.png b/data/images/creatures/granito/granito_sit-2.png new file mode 100644 index 00000000000..e7ecfebee15 Binary files /dev/null and b/data/images/creatures/granito/granito_sit-2.png differ diff --git a/data/images/creatures/granito/granito_sit-3.png b/data/images/creatures/granito/granito_sit-3.png new file mode 100644 index 00000000000..f97996b8426 Binary files /dev/null and b/data/images/creatures/granito/granito_sit-3.png differ diff --git a/data/images/creatures/granito/granito_stand-0.png b/data/images/creatures/granito/granito_stand-0.png new file mode 100644 index 00000000000..f92ea30fe4f Binary files /dev/null and b/data/images/creatures/granito/granito_stand-0.png differ diff --git a/data/images/creatures/granito/granito_stand-1.png b/data/images/creatures/granito/granito_stand-1.png new file mode 100644 index 00000000000..f0b602a1eda Binary files /dev/null and b/data/images/creatures/granito/granito_stand-1.png differ diff --git a/data/images/creatures/granito/granito_stand-2.png b/data/images/creatures/granito/granito_stand-2.png new file mode 100644 index 00000000000..2c1661f4f69 Binary files /dev/null and b/data/images/creatures/granito/granito_stand-2.png differ diff --git a/data/images/creatures/granito/granito_stand-3.png b/data/images/creatures/granito/granito_stand-3.png new file mode 100644 index 00000000000..29decb82684 Binary files /dev/null and b/data/images/creatures/granito/granito_stand-3.png differ diff --git a/data/images/creatures/granito/granito_stand-4.png b/data/images/creatures/granito/granito_stand-4.png new file mode 100644 index 00000000000..744c0cf365b Binary files /dev/null and b/data/images/creatures/granito/granito_stand-4.png differ diff --git a/data/images/creatures/granito/granito_stand-5.png b/data/images/creatures/granito/granito_stand-5.png new file mode 100644 index 00000000000..b2da5183f3d Binary files /dev/null and b/data/images/creatures/granito/granito_stand-5.png differ diff --git a/data/images/creatures/granito/granito_stand-6.png b/data/images/creatures/granito/granito_stand-6.png new file mode 100644 index 00000000000..fdb729cae1a Binary files /dev/null and b/data/images/creatures/granito/granito_stand-6.png differ diff --git a/data/images/creatures/granito/granito_stand-7.png b/data/images/creatures/granito/granito_stand-7.png new file mode 100644 index 00000000000..53fd043d994 Binary files /dev/null and b/data/images/creatures/granito/granito_stand-7.png differ diff --git a/data/images/creatures/granito/granito_stand-8.png b/data/images/creatures/granito/granito_stand-8.png new file mode 100644 index 00000000000..02b84a46bb0 Binary files /dev/null and b/data/images/creatures/granito/granito_stand-8.png differ diff --git a/data/images/creatures/granito/granito_walk-0.png b/data/images/creatures/granito/granito_walk-0.png new file mode 100644 index 00000000000..e90f4ffa335 Binary files /dev/null and b/data/images/creatures/granito/granito_walk-0.png differ diff --git a/data/images/creatures/granito/granito_walk-1.png b/data/images/creatures/granito/granito_walk-1.png new file mode 100644 index 00000000000..27278321ce7 Binary files /dev/null and b/data/images/creatures/granito/granito_walk-1.png differ diff --git a/data/images/creatures/granito/granito_walk-2.png b/data/images/creatures/granito/granito_walk-2.png new file mode 100644 index 00000000000..170c8c3f558 Binary files /dev/null and b/data/images/creatures/granito/granito_walk-2.png differ diff --git a/data/images/creatures/granito/granito_walk-3.png b/data/images/creatures/granito/granito_walk-3.png new file mode 100644 index 00000000000..1aff4784fe2 Binary files /dev/null and b/data/images/creatures/granito/granito_walk-3.png differ diff --git a/data/images/creatures/granito/granito_walk-4.png b/data/images/creatures/granito/granito_walk-4.png new file mode 100644 index 00000000000..49eb3fcbf5d Binary files /dev/null and b/data/images/creatures/granito/granito_walk-4.png differ diff --git a/data/images/creatures/granito/granito_walk-5.png b/data/images/creatures/granito/granito_walk-5.png new file mode 100644 index 00000000000..31ddca085ec Binary files /dev/null and b/data/images/creatures/granito/granito_walk-5.png differ diff --git a/data/images/creatures/granito/granito_walk-6.png b/data/images/creatures/granito/granito_walk-6.png new file mode 100644 index 00000000000..b80d5cae6e7 Binary files /dev/null and b/data/images/creatures/granito/granito_walk-6.png differ diff --git a/data/images/creatures/granito/granito_walk-7.png b/data/images/creatures/granito/granito_walk-7.png new file mode 100644 index 00000000000..b840c955f48 Binary files /dev/null and b/data/images/creatures/granito/granito_walk-7.png differ diff --git a/data/images/creatures/granito/granito_wave-0.png b/data/images/creatures/granito/granito_wave-0.png new file mode 100644 index 00000000000..459b220321b Binary files /dev/null and b/data/images/creatures/granito/granito_wave-0.png differ diff --git a/data/images/creatures/granito/granito_wave-1.png b/data/images/creatures/granito/granito_wave-1.png new file mode 100644 index 00000000000..ad05fbdc9c2 Binary files /dev/null and b/data/images/creatures/granito/granito_wave-1.png differ diff --git a/data/images/creatures/granito/granito_wave-2.png b/data/images/creatures/granito/granito_wave-2.png new file mode 100644 index 00000000000..931cf1e1019 Binary files /dev/null and b/data/images/creatures/granito/granito_wave-2.png differ diff --git a/data/images/creatures/granito/granito_wave-3.png b/data/images/creatures/granito/granito_wave-3.png new file mode 100644 index 00000000000..37d56c4fd0d Binary files /dev/null and b/data/images/creatures/granito/granito_wave-3.png differ diff --git a/data/images/creatures/granito/granito_wave-4.png b/data/images/creatures/granito/granito_wave-4.png new file mode 100644 index 00000000000..47ecc6360ab Binary files /dev/null and b/data/images/creatures/granito/granito_wave-4.png differ diff --git a/data/images/creatures/granito/granito_wave-5.png b/data/images/creatures/granito/granito_wave-5.png new file mode 100644 index 00000000000..10ab9cf3143 Binary files /dev/null and b/data/images/creatures/granito/granito_wave-5.png differ diff --git a/data/images/creatures/granito/granito_wave-6.png b/data/images/creatures/granito/granito_wave-6.png new file mode 100644 index 00000000000..c54f8b8773f Binary files /dev/null and b/data/images/creatures/granito/granito_wave-6.png differ diff --git a/data/images/creatures/granito/granito_wave-7.png b/data/images/creatures/granito/granito_wave-7.png new file mode 100644 index 00000000000..e1e11aebd32 Binary files /dev/null and b/data/images/creatures/granito/granito_wave-7.png differ diff --git a/data/images/creatures/granito/granito_wave-8.png b/data/images/creatures/granito/granito_wave-8.png new file mode 100644 index 00000000000..850396211bd Binary files /dev/null and b/data/images/creatures/granito/granito_wave-8.png differ diff --git a/data/images/creatures/granito/granito_wave-9.png b/data/images/creatures/granito/granito_wave-9.png new file mode 100644 index 00000000000..4297db0d5b8 Binary files /dev/null and b/data/images/creatures/granito/granito_wave-9.png differ diff --git a/data/images/creatures/haywire/haywire.sprite b/data/images/creatures/haywire/haywire.sprite index 2a0a0ad3d9b..11b379afd47 100644 --- a/data/images/creatures/haywire/haywire.sprite +++ b/data/images/creatures/haywire/haywire.sprite @@ -20,12 +20,12 @@ (action (name "iced-left") - (hitbox 5 8 32 32) + (hitbox 9 8 45 43) (images "left-0.png")) (action (name "iced-right") - (hitbox 5 8 32 32) + (hitbox 7 8 45 43) (mirror-action "iced-left")) (action diff --git a/data/images/creatures/igel/corrupted/corrupted_igel.sprite b/data/images/creatures/igel/corrupted/corrupted_igel.sprite new file mode 100644 index 00000000000..7d81430d37e --- /dev/null +++ b/data/images/creatures/igel/corrupted/corrupted_igel.sprite @@ -0,0 +1,103 @@ +(supertux-sprite + (action + (name "left") + (hitbox 16 24 36 38) + (fps 15) + (images "walk-0.png" + "walk-1.png" + "walk-2.png" + "walk-3.png" + "walk-4.png" + "walk-5.png" + "walk-6.png" + "walk-7.png") + ) + (action + (name "right") + (hitbox 18 24 36 38) + (fps 15) + (mirror-action "left") + ) + (action + (name "roll-start-left") + (hitbox 16 24 36 38) + (fps 20) + (loops 1) + (images "roll_start-0.png" + "roll_start-1.png" + "roll_start-2.png" + "roll_start-3.png") + ) + (action + (name "roll-start-right") + (hitbox 18 24 36 38) + (fps 20) + (loops 1) + (mirror-action "roll-start-left") + ) + (action + (name "roll-left") + (hitbox 7 10 36 32) + (fps 20) + (images "roll-0.png" + "roll-1.png" + "roll-2.png" + "roll-3.png" + "roll-4.png" + "roll-5.png") + ) + (action + (name "roll-right") + (hitbox 7 10 36 32) + (fps 20) + (mirror-action "roll-left") + ) + (action + (name "roll-end-left") + (hitbox 16 24 36 38) + (fps 20) + (loops 1) + (images "roll_start-3.png" + "roll_start-2.png" + "roll_start-1.png" + "roll_start-0.png") + ) + (action + (name "roll-end-right") + (hitbox 18 24 36 38) + (fps 20) + (loops 1) + (mirror-action "roll-end-left") + ) + (action + (name "iced-left") + (hitbox 2 18 64 43) + (images "walk-0.png") + ) + (action + (name "iced-right") + (hitbox 2 18 64 43) + (mirror-action "iced-left") + ) + (action + (name "burning-left") + (hitbox 15 10 36 32) + (fps 15) + (images "../burning-0.png" + "../burning-1.png" + "../burning-2.png" + "../burning-3.png" + "../burning-4.png" + "../burning-5.png" + "../burning-6.png" + "../burning-7.png" + "../burning-8.png" + "../burning-9.png") + ) + (action + (name "burning-right") + (fps 15) + (hitbox 17 10 36 32) + (mirror-action "burning-left") + ) +) diff --git a/data/images/creatures/igel/corrupted/roll-0.png b/data/images/creatures/igel/corrupted/roll-0.png new file mode 100644 index 00000000000..86b8c191d4d Binary files /dev/null and b/data/images/creatures/igel/corrupted/roll-0.png differ diff --git a/data/images/creatures/igel/corrupted/roll-1.png b/data/images/creatures/igel/corrupted/roll-1.png new file mode 100644 index 00000000000..ead7d444238 Binary files /dev/null and b/data/images/creatures/igel/corrupted/roll-1.png differ diff --git a/data/images/creatures/igel/corrupted/roll-2.png b/data/images/creatures/igel/corrupted/roll-2.png new file mode 100644 index 00000000000..f161de59753 Binary files /dev/null and b/data/images/creatures/igel/corrupted/roll-2.png differ diff --git a/data/images/creatures/igel/corrupted/roll-3.png b/data/images/creatures/igel/corrupted/roll-3.png new file mode 100644 index 00000000000..42bb5983e32 Binary files /dev/null and b/data/images/creatures/igel/corrupted/roll-3.png differ diff --git a/data/images/creatures/igel/corrupted/roll-4.png b/data/images/creatures/igel/corrupted/roll-4.png new file mode 100644 index 00000000000..75e9f9d89a8 Binary files /dev/null and b/data/images/creatures/igel/corrupted/roll-4.png differ diff --git a/data/images/creatures/igel/corrupted/roll-5.png b/data/images/creatures/igel/corrupted/roll-5.png new file mode 100644 index 00000000000..c4d67a043a4 Binary files /dev/null and b/data/images/creatures/igel/corrupted/roll-5.png differ diff --git a/data/images/creatures/igel/corrupted/roll_start-0.png b/data/images/creatures/igel/corrupted/roll_start-0.png new file mode 100644 index 00000000000..db54501984b Binary files /dev/null and b/data/images/creatures/igel/corrupted/roll_start-0.png differ diff --git a/data/images/creatures/igel/corrupted/roll_start-1.png b/data/images/creatures/igel/corrupted/roll_start-1.png new file mode 100644 index 00000000000..80469facacc Binary files /dev/null and b/data/images/creatures/igel/corrupted/roll_start-1.png differ diff --git a/data/images/creatures/igel/corrupted/roll_start-2.png b/data/images/creatures/igel/corrupted/roll_start-2.png new file mode 100644 index 00000000000..a7c04ea404f Binary files /dev/null and b/data/images/creatures/igel/corrupted/roll_start-2.png differ diff --git a/data/images/creatures/igel/corrupted/roll_start-3.png b/data/images/creatures/igel/corrupted/roll_start-3.png new file mode 100644 index 00000000000..c8ba1415b36 Binary files /dev/null and b/data/images/creatures/igel/corrupted/roll_start-3.png differ diff --git a/data/images/creatures/igel/corrupted/walk-0.png b/data/images/creatures/igel/corrupted/walk-0.png new file mode 100644 index 00000000000..194e1935bc3 Binary files /dev/null and b/data/images/creatures/igel/corrupted/walk-0.png differ diff --git a/data/images/creatures/igel/corrupted/walk-1.png b/data/images/creatures/igel/corrupted/walk-1.png new file mode 100644 index 00000000000..7ae6e48d13d Binary files /dev/null and b/data/images/creatures/igel/corrupted/walk-1.png differ diff --git a/data/images/creatures/igel/corrupted/walk-2.png b/data/images/creatures/igel/corrupted/walk-2.png new file mode 100644 index 00000000000..0406b77004c Binary files /dev/null and b/data/images/creatures/igel/corrupted/walk-2.png differ diff --git a/data/images/creatures/igel/corrupted/walk-3.png b/data/images/creatures/igel/corrupted/walk-3.png new file mode 100644 index 00000000000..013c96f863b Binary files /dev/null and b/data/images/creatures/igel/corrupted/walk-3.png differ diff --git a/data/images/creatures/igel/corrupted/walk-4.png b/data/images/creatures/igel/corrupted/walk-4.png new file mode 100644 index 00000000000..c13dbd0653a Binary files /dev/null and b/data/images/creatures/igel/corrupted/walk-4.png differ diff --git a/data/images/creatures/igel/corrupted/walk-5.png b/data/images/creatures/igel/corrupted/walk-5.png new file mode 100644 index 00000000000..766d84545c2 Binary files /dev/null and b/data/images/creatures/igel/corrupted/walk-5.png differ diff --git a/data/images/creatures/igel/corrupted/walk-6.png b/data/images/creatures/igel/corrupted/walk-6.png new file mode 100644 index 00000000000..a60718ab5bf Binary files /dev/null and b/data/images/creatures/igel/corrupted/walk-6.png differ diff --git a/data/images/creatures/igel/corrupted/walk-7.png b/data/images/creatures/igel/corrupted/walk-7.png new file mode 100644 index 00000000000..40cd65f05fb Binary files /dev/null and b/data/images/creatures/igel/corrupted/walk-7.png differ diff --git a/data/images/creatures/igel/igel.sprite b/data/images/creatures/igel/igel.sprite index 486244f193b..f92038c3063 100644 --- a/data/images/creatures/igel/igel.sprite +++ b/data/images/creatures/igel/igel.sprite @@ -1,72 +1,103 @@ (supertux-sprite (action (name "left") - (hitbox 9 10 48 32) - (fps 15) + (hitbox 15 10 36 32) + (fps 15) (images "walk-0.png" - "walk-1.png" - "walk-2.png" - "walk-3.png" - "walk-4.png" - "walk-5.png" - "walk-6.png" - "walk-7.png" - ) + "walk-1.png" + "walk-2.png" + "walk-3.png" + "walk-4.png" + "walk-5.png" + "walk-6.png" + "walk-7.png") ) (action (name "right") - (hitbox 11 10 48 32) - (fps 15) + (hitbox 17 10 36 32) + (fps 15) (mirror-action "left") ) + (action + (name "roll-start-left") + (hitbox 16 10 36 32) + (fps 20) + (loops 1) + (images "roll_start-0.png" + "roll_start-1.png" + "roll_start-2.png" + "roll_start-3.png") + ) + (action + (name "roll-start-right") + (hitbox 16 10 36 32) + (fps 20) + (loops 1) + (mirror-action "roll-start-left") + ) (action (name "roll-left") - (hitbox 10 10 32 32) - (fps 20) + (hitbox 7 10 36 32) + (fps 20) (images "roll-0.png" - "roll-1.png" - "roll-2.png" - "roll-3.png" - "roll-4.png" - "roll-5.png") + "roll-1.png" + "roll-2.png" + "roll-3.png" + "roll-4.png" + "roll-5.png") ) (action (name "roll-right") - (hitbox 10 10 32 32) - (fps 20) + (hitbox 7 10 36 32) + (fps 20) (mirror-action "roll-left") ) + (action + (name "roll-end-left") + (hitbox 16 10 36 32) + (fps 20) + (loops 1) + (images "roll_start-3.png" + "roll_start-2.png" + "roll_start-1.png" + "roll_start-0.png") + ) + (action + (name "roll-end-right") + (hitbox 16 10 36 32) + (fps 20) + (loops 1) + (mirror-action "roll-end-left") + ) (action (name "iced-left") - (hitbox -7 -8 45.8 25.8) + (hitbox 2 4 64 43) (images "walk-0.png") ) (action (name "iced-right") - (hitbox -7 -9 45.8 25.8) + (hitbox 2 4 64 43) (mirror-action "iced-left") ) (action (name "burning-left") - (hitbox 2.1 38.1 45.8 25.8) + (hitbox 15 10 36 32) (fps 15) - (images - "burning-0.png" - "burning-1.png" - "burning-2.png" - "burning-3.png" - "burning-4.png" - "burning-5.png" - "burning-6.png" - "burning-7.png" - "burning-8.png" - "burning-9.png" - ) + (images "burning-0.png" + "burning-1.png" + "burning-2.png" + "burning-3.png" + "burning-4.png" + "burning-5.png" + "burning-6.png" + "burning-7.png" + "burning-8.png" + "burning-9.png") ) (action (name "burning-right") (fps 15) - (hitbox 2.1 38.1 45.8 25.8) + (hitbox 17 10 36 32) (mirror-action "burning-left") ) ) diff --git a/data/images/creatures/igel/roll_start-0.png b/data/images/creatures/igel/roll_start-0.png new file mode 100644 index 00000000000..a6a6e3ca584 Binary files /dev/null and b/data/images/creatures/igel/roll_start-0.png differ diff --git a/data/images/creatures/igel/roll_start-1.png b/data/images/creatures/igel/roll_start-1.png new file mode 100644 index 00000000000..4801bd11107 Binary files /dev/null and b/data/images/creatures/igel/roll_start-1.png differ diff --git a/data/images/creatures/igel/roll_start-2.png b/data/images/creatures/igel/roll_start-2.png new file mode 100644 index 00000000000..ebcd933c3ab Binary files /dev/null and b/data/images/creatures/igel/roll_start-2.png differ diff --git a/data/images/creatures/igel/roll_start-3.png b/data/images/creatures/igel/roll_start-3.png new file mode 100644 index 00000000000..bf541d89beb Binary files /dev/null and b/data/images/creatures/igel/roll_start-3.png differ diff --git a/data/images/creatures/jumpy/corruptjumpy.sprite b/data/images/creatures/jumpy/corruptjumpy.sprite index 49fd46881c2..61d157db82e 100644 --- a/data/images/creatures/jumpy/corruptjumpy.sprite +++ b/data/images/creatures/jumpy/corruptjumpy.sprite @@ -42,12 +42,12 @@ (action (name "iced-left") - (hitbox 7 8 32 50) + (hitbox 2 8 45 64) (images "corrupt_up-0.png")) (action (name "iced-right") - (hitbox 9 8 32 50) + (hitbox 4 8 45 64) (mirror-action "iced-left")) (action diff --git a/data/images/creatures/jumpy/metaljumpy.sprite b/data/images/creatures/jumpy/metaljumpy.sprite index a8d71e405ee..5390077adcc 100644 --- a/data/images/creatures/jumpy/metaljumpy.sprite +++ b/data/images/creatures/jumpy/metaljumpy.sprite @@ -42,12 +42,12 @@ (action (name "iced-left") - (hitbox 9 8 32 43) + (hitbox 3 3 45 64) (images "metal_up-0.png")) (action (name "iced-right") - (hitbox 11 8 32 43) + (hitbox 3 3 45 64) (mirror-action "iced-left")) (action diff --git a/data/images/creatures/jumpy/snowjumpy.sprite b/data/images/creatures/jumpy/snowjumpy.sprite index 1e1a283b590..435112e7e3e 100644 --- a/data/images/creatures/jumpy/snowjumpy.sprite +++ b/data/images/creatures/jumpy/snowjumpy.sprite @@ -42,12 +42,12 @@ (action (name "iced-left") - (hitbox 7 8 32 40) + (hitbox 2 3 45 64) (images "snow_up-0.png")) (action (name "iced-right") - (hitbox 9 8 32 40) + (hitbox 4 3 45 64) (mirror-action "iced-left")) (action diff --git a/data/images/creatures/jumpy/woodjumpy.sprite b/data/images/creatures/jumpy/woodjumpy.sprite index 7dbac5ac829..d0ec5bf269f 100644 --- a/data/images/creatures/jumpy/woodjumpy.sprite +++ b/data/images/creatures/jumpy/woodjumpy.sprite @@ -42,12 +42,12 @@ (action (name "iced-left") - (hitbox 7 8 32 50) + (hitbox 2 8 45 64) (images "wood_up-0.png")) (action (name "iced-right") - (hitbox 9 8 32 50) + (hitbox 4 8 45 64) (mirror-action "iced-left")) (action diff --git a/data/images/creatures/laptop/laptop.sprite b/data/images/creatures/laptop/laptop.sprite index 174f928d32d..3a237db5bc8 100644 --- a/data/images/creatures/laptop/laptop.sprite +++ b/data/images/creatures/laptop/laptop.sprite @@ -53,4 +53,17 @@ (action (name "waking-right") (hitbox 6 26 32 16) - (mirror-action "waking-left"))) + (mirror-action "waking-left")) + + (action + (name "iced-left") + (hitbox 1 5 45 43) + (fps 12) + (images "laptop-0.png")) + + (action + (name "iced-right") + (hitbox 1 5 45 43) + (fps 12) + (mirror-action "iced-left")) +) diff --git a/data/images/creatures/mole/center.png b/data/images/creatures/mole/center.png index 885f0d87fd9..2bf64ce8e3b 100644 Binary files a/data/images/creatures/mole/center.png and b/data/images/creatures/mole/center.png differ diff --git a/data/images/creatures/mole/corrupted/core_glow/core_glow-0.png b/data/images/creatures/mole/corrupted/core_glow/core_glow-0.png new file mode 100644 index 00000000000..44c2bef5f87 Binary files /dev/null and b/data/images/creatures/mole/corrupted/core_glow/core_glow-0.png differ diff --git a/data/images/creatures/mole/corrupted/core_glow/core_glow-1.png b/data/images/creatures/mole/corrupted/core_glow/core_glow-1.png new file mode 100644 index 00000000000..d32f53bc6dd Binary files /dev/null and b/data/images/creatures/mole/corrupted/core_glow/core_glow-1.png differ diff --git a/data/images/creatures/mole/corrupted/core_glow/core_glow-10.png b/data/images/creatures/mole/corrupted/core_glow/core_glow-10.png new file mode 100644 index 00000000000..823670c4163 Binary files /dev/null and b/data/images/creatures/mole/corrupted/core_glow/core_glow-10.png differ diff --git a/data/images/creatures/mole/corrupted/core_glow/core_glow-2.png b/data/images/creatures/mole/corrupted/core_glow/core_glow-2.png new file mode 100644 index 00000000000..1cb5a14255e Binary files /dev/null and b/data/images/creatures/mole/corrupted/core_glow/core_glow-2.png differ diff --git a/data/images/creatures/mole/corrupted/core_glow/core_glow-3.png b/data/images/creatures/mole/corrupted/core_glow/core_glow-3.png new file mode 100644 index 00000000000..2cf86b15327 Binary files /dev/null and b/data/images/creatures/mole/corrupted/core_glow/core_glow-3.png differ diff --git a/data/images/creatures/mole/corrupted/core_glow/core_glow-4.png b/data/images/creatures/mole/corrupted/core_glow/core_glow-4.png new file mode 100644 index 00000000000..bebdcc98c42 Binary files /dev/null and b/data/images/creatures/mole/corrupted/core_glow/core_glow-4.png differ diff --git a/data/images/creatures/mole/corrupted/core_glow/core_glow-5.png b/data/images/creatures/mole/corrupted/core_glow/core_glow-5.png new file mode 100644 index 00000000000..ec284e47feb Binary files /dev/null and b/data/images/creatures/mole/corrupted/core_glow/core_glow-5.png differ diff --git a/data/images/creatures/mole/corrupted/core_glow/core_glow-6.png b/data/images/creatures/mole/corrupted/core_glow/core_glow-6.png new file mode 100644 index 00000000000..c74f0c59c06 Binary files /dev/null and b/data/images/creatures/mole/corrupted/core_glow/core_glow-6.png differ diff --git a/data/images/creatures/mole/corrupted/core_glow/core_glow-7.png b/data/images/creatures/mole/corrupted/core_glow/core_glow-7.png new file mode 100644 index 00000000000..2a168009ea2 Binary files /dev/null and b/data/images/creatures/mole/corrupted/core_glow/core_glow-7.png differ diff --git a/data/images/creatures/mole/corrupted/core_glow/core_glow-8.png b/data/images/creatures/mole/corrupted/core_glow/core_glow-8.png new file mode 100644 index 00000000000..3ae433d6a0e Binary files /dev/null and b/data/images/creatures/mole/corrupted/core_glow/core_glow-8.png differ diff --git a/data/images/creatures/mole/corrupted/core_glow/core_glow-9.png b/data/images/creatures/mole/corrupted/core_glow/core_glow-9.png new file mode 100644 index 00000000000..aaeae332b42 Binary files /dev/null and b/data/images/creatures/mole/corrupted/core_glow/core_glow-9.png differ diff --git a/data/images/creatures/mole/corrupted/core_glow/core_glow.sprite b/data/images/creatures/mole/corrupted/core_glow/core_glow.sprite new file mode 100644 index 00000000000..a37dbf947f7 --- /dev/null +++ b/data/images/creatures/mole/corrupted/core_glow/core_glow.sprite @@ -0,0 +1,27 @@ +(supertux-sprite + (action + (name "default") + (hitbox 183 193 350 350) + (fps 12) + (images "core_glow-0.png" + "core_glow-1.png" + "core_glow-2.png" + "core_glow-3.png" + "core_glow-4.png" + "core_glow-5.png" + "core_glow-6.png" + "core_glow-7.png" + "core_glow-8.png" + "core_glow-9.png" + "core_glow-10.png" + "core_glow-9.png" + "core_glow-8.png" + "core_glow-7.png" + "core_glow-6.png" + "core_glow-5.png" + "core_glow-4.png" + "core_glow-3.png" + "core_glow-2.png" + "core_glow-1.png") + ) +) diff --git a/data/images/creatures/mole/corrupted/corrupted_hill-0.png b/data/images/creatures/mole/corrupted/corrupted_hill-0.png new file mode 100644 index 00000000000..59595ccbe29 Binary files /dev/null and b/data/images/creatures/mole/corrupted/corrupted_hill-0.png differ diff --git a/data/images/creatures/mole/corrupted/corrupted_hill-0_left.png b/data/images/creatures/mole/corrupted/corrupted_hill-0_left.png new file mode 100644 index 00000000000..edc56d5052e Binary files /dev/null and b/data/images/creatures/mole/corrupted/corrupted_hill-0_left.png differ diff --git a/data/images/creatures/mole/corrupted/corrupted_hill-1.png b/data/images/creatures/mole/corrupted/corrupted_hill-1.png new file mode 100644 index 00000000000..ac972239ac6 Binary files /dev/null and b/data/images/creatures/mole/corrupted/corrupted_hill-1.png differ diff --git a/data/images/creatures/mole/corrupted/corrupted_hill-1_left.png b/data/images/creatures/mole/corrupted/corrupted_hill-1_left.png new file mode 100644 index 00000000000..bace2fe87a1 Binary files /dev/null and b/data/images/creatures/mole/corrupted/corrupted_hill-1_left.png differ diff --git a/data/images/creatures/mole/corrupted/corrupted_hill-2.png b/data/images/creatures/mole/corrupted/corrupted_hill-2.png new file mode 100644 index 00000000000..a95100bf761 Binary files /dev/null and b/data/images/creatures/mole/corrupted/corrupted_hill-2.png differ diff --git a/data/images/creatures/mole/corrupted/corrupted_hill-2_left.png b/data/images/creatures/mole/corrupted/corrupted_hill-2_left.png new file mode 100644 index 00000000000..9896aead2c0 Binary files /dev/null and b/data/images/creatures/mole/corrupted/corrupted_hill-2_left.png differ diff --git a/data/images/creatures/mole/corrupted/corrupted_hill-3.png b/data/images/creatures/mole/corrupted/corrupted_hill-3.png new file mode 100644 index 00000000000..f91c02669c2 Binary files /dev/null and b/data/images/creatures/mole/corrupted/corrupted_hill-3.png differ diff --git a/data/images/creatures/mole/corrupted/corrupted_hill-3_left.png b/data/images/creatures/mole/corrupted/corrupted_hill-3_left.png new file mode 100644 index 00000000000..2005227faf9 Binary files /dev/null and b/data/images/creatures/mole/corrupted/corrupted_hill-3_left.png differ diff --git a/data/images/creatures/mole/corrupted/corrupted_hill-4.png b/data/images/creatures/mole/corrupted/corrupted_hill-4.png new file mode 100644 index 00000000000..1bd1014e7b4 Binary files /dev/null and b/data/images/creatures/mole/corrupted/corrupted_hill-4.png differ diff --git a/data/images/creatures/mole/corrupted/corrupted_hill-4_left.png b/data/images/creatures/mole/corrupted/corrupted_hill-4_left.png new file mode 100644 index 00000000000..d9369c6ff56 Binary files /dev/null and b/data/images/creatures/mole/corrupted/corrupted_hill-4_left.png differ diff --git a/data/images/creatures/mole/corrupted/root.sprite b/data/images/creatures/mole/corrupted/root.sprite new file mode 100644 index 00000000000..9d51198fbe6 --- /dev/null +++ b/data/images/creatures/mole/corrupted/root.sprite @@ -0,0 +1,42 @@ +(supertux-sprite + (action + (name "root") + (hitbox 20 7 16 80) + (images "root_attack.png")) + + (action + (name "root-up") + (hitbox 20 7 16 80) + (clone-action "root")) + (action + (name "base-up") + (hitbox 20 7 16 80) + (images "root_base.png")) + + (action + (name "root-down") + (hitbox 20 9 16 80) + (flip-action "root-up")) + (action + (name "base-down") + (hitbox 20 9 16 80) + (flip-action "base-up")) + + (action + (name "root-left") + (hitbox 7 22 80 16) + (images "root_attack_left.png")) + (action + (name "base-left") + (hitbox 7 22 80 16) + (images "root_base_left.png")) + + (action + (name "root-right") + (hitbox 9 22 80 16) + (mirror-action "root-left")) + (action + (name "base-right") + (hitbox 9 22 80 16) + (mirror-action "base-left")) +) \ No newline at end of file diff --git a/data/images/creatures/mole/corrupted/root_attack.png b/data/images/creatures/mole/corrupted/root_attack.png new file mode 100644 index 00000000000..9ef59c47c76 Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_attack.png differ diff --git a/data/images/creatures/mole/corrupted/root_attack_left.png b/data/images/creatures/mole/corrupted/root_attack_left.png new file mode 100644 index 00000000000..f138aeeddd3 Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_attack_left.png differ diff --git a/data/images/creatures/mole/corrupted/root_base.png b/data/images/creatures/mole/corrupted/root_base.png new file mode 100644 index 00000000000..3e95f11edb4 Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_base.png differ diff --git a/data/images/creatures/mole/corrupted/root_base_left.png b/data/images/creatures/mole/corrupted/root_base_left.png new file mode 100644 index 00000000000..ac6bf0d1cfa Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_base_left.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling-0.png b/data/images/creatures/mole/corrupted/root_sapling-0.png new file mode 100644 index 00000000000..98938910524 Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_sapling-0.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling-0_left.png b/data/images/creatures/mole/corrupted/root_sapling-0_left.png new file mode 100644 index 00000000000..c1c25d59fd2 Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_sapling-0_left.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling-1.png b/data/images/creatures/mole/corrupted/root_sapling-1.png new file mode 100644 index 00000000000..2e6eead6529 Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_sapling-1.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling-10.png b/data/images/creatures/mole/corrupted/root_sapling-10.png new file mode 100644 index 00000000000..e02be6ac357 Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_sapling-10.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling-10_left.png b/data/images/creatures/mole/corrupted/root_sapling-10_left.png new file mode 100644 index 00000000000..fcd60e6c507 Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_sapling-10_left.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling-11.png b/data/images/creatures/mole/corrupted/root_sapling-11.png new file mode 100644 index 00000000000..5703d8d43e1 Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_sapling-11.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling-11_left.png b/data/images/creatures/mole/corrupted/root_sapling-11_left.png new file mode 100644 index 00000000000..b9597cf9ca1 Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_sapling-11_left.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling-1_left.png b/data/images/creatures/mole/corrupted/root_sapling-1_left.png new file mode 100644 index 00000000000..91461c4d769 Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_sapling-1_left.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling-2.png b/data/images/creatures/mole/corrupted/root_sapling-2.png new file mode 100644 index 00000000000..a9558b77168 Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_sapling-2.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling-2_left.png b/data/images/creatures/mole/corrupted/root_sapling-2_left.png new file mode 100644 index 00000000000..f1d17f9e222 Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_sapling-2_left.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling-3.png b/data/images/creatures/mole/corrupted/root_sapling-3.png new file mode 100644 index 00000000000..8cf45ed3b1a Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_sapling-3.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling-3_left.png b/data/images/creatures/mole/corrupted/root_sapling-3_left.png new file mode 100644 index 00000000000..146375a52f8 Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_sapling-3_left.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling-4.png b/data/images/creatures/mole/corrupted/root_sapling-4.png new file mode 100644 index 00000000000..54a5b72165e Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_sapling-4.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling-4_left.png b/data/images/creatures/mole/corrupted/root_sapling-4_left.png new file mode 100644 index 00000000000..94863e398ff Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_sapling-4_left.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling-5.png b/data/images/creatures/mole/corrupted/root_sapling-5.png new file mode 100644 index 00000000000..9433a2b9f9f Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_sapling-5.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling-5_left.png b/data/images/creatures/mole/corrupted/root_sapling-5_left.png new file mode 100644 index 00000000000..97dbed99e6c Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_sapling-5_left.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling-6.png b/data/images/creatures/mole/corrupted/root_sapling-6.png new file mode 100644 index 00000000000..fe218da636f Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_sapling-6.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling-6_left.png b/data/images/creatures/mole/corrupted/root_sapling-6_left.png new file mode 100644 index 00000000000..dcc4fe46594 Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_sapling-6_left.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling-7.png b/data/images/creatures/mole/corrupted/root_sapling-7.png new file mode 100644 index 00000000000..0d3e81bfbac Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_sapling-7.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling-7_left.png b/data/images/creatures/mole/corrupted/root_sapling-7_left.png new file mode 100644 index 00000000000..d1d9efa5e96 Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_sapling-7_left.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling-8.png b/data/images/creatures/mole/corrupted/root_sapling-8.png new file mode 100644 index 00000000000..ca04f375e77 Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_sapling-8.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling-8_left.png b/data/images/creatures/mole/corrupted/root_sapling-8_left.png new file mode 100644 index 00000000000..76a8607508c Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_sapling-8_left.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling-9.png b/data/images/creatures/mole/corrupted/root_sapling-9.png new file mode 100644 index 00000000000..8dae184e1f8 Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_sapling-9.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling-9_left.png b/data/images/creatures/mole/corrupted/root_sapling-9_left.png new file mode 100644 index 00000000000..16f7ce5ca36 Binary files /dev/null and b/data/images/creatures/mole/corrupted/root_sapling-9_left.png differ diff --git a/data/images/creatures/mole/corrupted/root_sapling.sprite b/data/images/creatures/mole/corrupted/root_sapling.sprite new file mode 100644 index 00000000000..a7f48cbef38 --- /dev/null +++ b/data/images/creatures/mole/corrupted/root_sapling.sprite @@ -0,0 +1,96 @@ +(supertux-sprite + (action + (name "idle") + (hitbox 24 22 32 32) + (fps 8) + (images "root_sapling-0.png" + "root_sapling-1.png" + "root_sapling-2.png" + "root_sapling-3.png" + "root_sapling-4.png" + "root_sapling-5.png" + "root_sapling-6.png" + "root_sapling-7.png" + "root_sapling-8.png" + "root_sapling-9.png" + "root_sapling-10.png" + "root_sapling-11.png" + ) + ) + (action + (name "idle-up") + (fps 8) + (hitbox 24 22 32 32) + (clone-action "idle") + ) + (action + (name "squished-up") + (fps 15) + (loops 1) + (hitbox 24 22 32 32) + (images "corrupted_hill-0.png" + "corrupted_hill-1.png" + "corrupted_hill-2.png" + "corrupted_hill-3.png" + "corrupted_hill-3.png" + "corrupted_hill-4.png" + ) + ) + (action + (name "idle-down") + (fps 8) + (hitbox 24 70 32 32) + (flip-action "idle-up") + ) + (action + (name "squished-down") + (fps 15) + (loops 1) + (hitbox 24 70 32 32) + (flip-action "squished-up") + ) + (action + (name "idle-left") + (hitbox 18 24 32 32) + (fps 8) + (images "root_sapling-0_left.png" + "root_sapling-1_left.png" + "root_sapling-2_left.png" + "root_sapling-3_left.png" + "root_sapling-4_left.png" + "root_sapling-5_left.png" + "root_sapling-6_left.png" + "root_sapling-7_left.png" + "root_sapling-8_left.png" + "root_sapling-9_left.png" + "root_sapling-10_left.png" + "root_sapling-11_left.png" + ) + ) + (action + (name "squished-left") + (fps 15) + (loops 1) + (hitbox 18 24 32 32) + (images "corrupted_hill-0_left.png" + "corrupted_hill-1_left.png" + "corrupted_hill-2_left.png" + "corrupted_hill-3_left.png" + "corrupted_hill-3_left.png" + "corrupted_hill-4_left.png" + ) + ) + (action + (name "idle-right") + (hitbox 70 24 32 32) + (fps 8) + (mirror-action "idle-left") + ) + (action + (name "squished-right") + (fps 15) + (loops 1) + (hitbox 70 24 32 32) + (mirror-action "squished-left") + ) +) diff --git a/data/images/creatures/mole/down-0.png b/data/images/creatures/mole/down-0.png index cf0f9c4ac2c..ccbb763b82a 100644 Binary files a/data/images/creatures/mole/down-0.png and b/data/images/creatures/mole/down-0.png differ diff --git a/data/images/creatures/mole/down-1.png b/data/images/creatures/mole/down-1.png index 99d031b9b22..888449a826f 100644 Binary files a/data/images/creatures/mole/down-1.png and b/data/images/creatures/mole/down-1.png differ diff --git a/data/images/creatures/mole/down-2.png b/data/images/creatures/mole/down-2.png index 3a5cb07744b..fa3351a7204 100644 Binary files a/data/images/creatures/mole/down-2.png and b/data/images/creatures/mole/down-2.png differ diff --git a/data/images/creatures/mole/mole.sprite b/data/images/creatures/mole/mole.sprite index fa847ee8354..37726542670 100644 --- a/data/images/creatures/mole/mole.sprite +++ b/data/images/creatures/mole/mole.sprite @@ -1,14 +1,14 @@ (supertux-sprite (action (name "idle") - (hitbox 18 22 32 40) + (hitbox 26 22 32 64) (fps 12) (images "mole_hill.png" ) ) (action (name "peeking") - (hitbox 18 22 32 40) + (hitbox 26 22 32 40) (fps 12) (images "mole_hill.png" "up-0.png" @@ -44,7 +44,7 @@ ) (action (name "burning") - (hitbox 18 22 32 40) + (hitbox 26 22 32 64) (fps 15) (loops 1) (images "mole_hill.png" @@ -54,8 +54,9 @@ (name "squished") (fps 12) (loops 1) - (hitbox 18 22 32 40) - (images "down-0.png" + (hitbox 26 22 32 64) + (images "up-3.png" + "down-0.png" "down-1.png" "down-2.png" "mole_hill.png" diff --git a/data/images/creatures/mole/mole_hill.png b/data/images/creatures/mole/mole_hill.png index 6bc441a44d1..23a93cad124 100644 Binary files a/data/images/creatures/mole/mole_hill.png and b/data/images/creatures/mole/mole_hill.png differ diff --git a/data/images/creatures/mole/mole_rock-0.png b/data/images/creatures/mole/mole_rock-0.png index 060b567e0c8..83452ebc0bf 100644 Binary files a/data/images/creatures/mole/mole_rock-0.png and b/data/images/creatures/mole/mole_rock-0.png differ diff --git a/data/images/creatures/mole/mole_rock-1.png b/data/images/creatures/mole/mole_rock-1.png index ec76110d66b..2c89ef62991 100644 Binary files a/data/images/creatures/mole/mole_rock-1.png and b/data/images/creatures/mole/mole_rock-1.png differ diff --git a/data/images/creatures/mole/mole_rock-2.png b/data/images/creatures/mole/mole_rock-2.png new file mode 100644 index 00000000000..d938adcd3f7 Binary files /dev/null and b/data/images/creatures/mole/mole_rock-2.png differ diff --git a/data/images/creatures/mole/mole_rock.sprite b/data/images/creatures/mole/mole_rock.sprite index d9019ef0043..148ddbb6052 100644 --- a/data/images/creatures/mole/mole_rock.sprite +++ b/data/images/creatures/mole/mole_rock.sprite @@ -1,17 +1,25 @@ (supertux-sprite (action - (name "medium") - (hitbox 0 0 13 12) + (name "variant-1") + (hitbox 5 6 15 15) (images "mole_rock-0.png" ) ) (action - (name "small") - (hitbox 0 0 10 10) + (name "variant-2") + (hitbox 5 6 15 15) (images "mole_rock-1.png" ) ) + + (action + (name "variant-3") + (hitbox 8 8 11 11) + (images + "mole_rock-2.png" + ) + ) ) diff --git a/data/images/creatures/mole/peek_left-0.png b/data/images/creatures/mole/peek_left-0.png index 3d7a437f903..deeb5a8909a 100644 Binary files a/data/images/creatures/mole/peek_left-0.png and b/data/images/creatures/mole/peek_left-0.png differ diff --git a/data/images/creatures/mole/peek_left-1.png b/data/images/creatures/mole/peek_left-1.png index 5a86c103685..7bc33782fa5 100644 Binary files a/data/images/creatures/mole/peek_left-1.png and b/data/images/creatures/mole/peek_left-1.png differ diff --git a/data/images/creatures/mole/peek_left-2.png b/data/images/creatures/mole/peek_left-2.png index 7a8316129ab..22722dbd088 100644 Binary files a/data/images/creatures/mole/peek_left-2.png and b/data/images/creatures/mole/peek_left-2.png differ diff --git a/data/images/creatures/mole/peek_right-0.png b/data/images/creatures/mole/peek_right-0.png index f639633efa3..21b486a08ca 100644 Binary files a/data/images/creatures/mole/peek_right-0.png and b/data/images/creatures/mole/peek_right-0.png differ diff --git a/data/images/creatures/mole/peek_right-1.png b/data/images/creatures/mole/peek_right-1.png index fa1ada2075a..3e820260235 100644 Binary files a/data/images/creatures/mole/peek_right-1.png and b/data/images/creatures/mole/peek_right-1.png differ diff --git a/data/images/creatures/mole/peek_right-2.png b/data/images/creatures/mole/peek_right-2.png index aebf84f52c4..c336f24897e 100644 Binary files a/data/images/creatures/mole/peek_right-2.png and b/data/images/creatures/mole/peek_right-2.png differ diff --git a/data/images/creatures/mole/up-0.png b/data/images/creatures/mole/up-0.png index 296b3b35f62..ba7145a04af 100644 Binary files a/data/images/creatures/mole/up-0.png and b/data/images/creatures/mole/up-0.png differ diff --git a/data/images/creatures/mole/up-1.png b/data/images/creatures/mole/up-1.png index 256232c1c0d..fee7bb25108 100644 Binary files a/data/images/creatures/mole/up-1.png and b/data/images/creatures/mole/up-1.png differ diff --git a/data/images/creatures/mole/up-2.png b/data/images/creatures/mole/up-2.png index 89544fe1960..71757771536 100644 Binary files a/data/images/creatures/mole/up-2.png and b/data/images/creatures/mole/up-2.png differ diff --git a/data/images/creatures/mole/up-3.png b/data/images/creatures/mole/up-3.png index 9d509a4fde2..162b29ae180 100644 Binary files a/data/images/creatures/mole/up-3.png and b/data/images/creatures/mole/up-3.png differ diff --git a/data/images/creatures/mr_bomb/mr_bomb.sprite b/data/images/creatures/mr_bomb/mr_bomb.sprite index 4393ab319f2..56e466ba18a 100644 --- a/data/images/creatures/mr_bomb/mr_bomb.sprite +++ b/data/images/creatures/mr_bomb/mr_bomb.sprite @@ -20,12 +20,12 @@ (action (name "iced-left") - (hitbox 5 8 32 32) + (hitbox 9 8 45 43) (images "left-0.png")) (action (name "iced-right") - (hitbox 5 8 32 32) + (hitbox 7 8 45 43) (mirror-action "iced-left")) (action diff --git a/data/images/creatures/mr_bomb/old_bomb/old_bomb.sprite b/data/images/creatures/mr_bomb/old_bomb/old_bomb.sprite index c9911b2c7b9..b8dbf6d866c 100644 --- a/data/images/creatures/mr_bomb/old_bomb/old_bomb.sprite +++ b/data/images/creatures/mr_bomb/old_bomb/old_bomb.sprite @@ -20,12 +20,12 @@ (action (name "iced-left") - (hitbox 14 19 32 32) + (hitbox 8 8 45 43) (images "left-0.png")) (action (name "iced-right") - (hitbox 14 19 32 32) + (hitbox 8 8 45 43) (mirror-action "iced-left")) (action diff --git a/data/images/creatures/mr_candle/mr-candle.sprite b/data/images/creatures/mr_candle/mr-candle.sprite index 0f6e6d183d3..9429355e3d4 100644 --- a/data/images/creatures/mr_candle/mr-candle.sprite +++ b/data/images/creatures/mr_candle/mr-candle.sprite @@ -20,12 +20,12 @@ ) (action (name "iced-left") - (hitbox 27 35 15 34) + (hitbox 27 35 45 43) (images "c-ice.png") ) (action (name "iced-right") - (hitbox 26 35 15 34) + (hitbox 26 35 45 43) (mirror-action "iced-left") ) ) diff --git a/data/images/creatures/mr_tree/corrupted/haunted_tree.sprite b/data/images/creatures/mr_tree/corrupted/haunted_tree.sprite index b10abf3e2ba..ab6ffc3015a 100644 --- a/data/images/creatures/mr_tree/corrupted/haunted_tree.sprite +++ b/data/images/creatures/mr_tree/corrupted/haunted_tree.sprite @@ -47,12 +47,12 @@ (mirror-action "burning-left") ) (action - (hitbox 14 10 62 78) + (hitbox 2 0 96 96) (name "iced-left") (images "haunted_tree-0.png") ) (action - (hitbox 14 10 62 78) + (hitbox 2 0 96 96) (name "iced-right") (mirror-action "iced-left") ) diff --git a/data/images/creatures/mr_tree/mr_tree.sprite b/data/images/creatures/mr_tree/mr_tree.sprite index 8e2095b82dc..3f6cd38b00b 100644 --- a/data/images/creatures/mr_tree/mr_tree.sprite +++ b/data/images/creatures/mr_tree/mr_tree.sprite @@ -43,12 +43,12 @@ (mirror-action "burning-left") ) (action - (hitbox 14 10 62 78) + (hitbox 2 0 96 96) (name "iced-left") (images "mr_tree-7.png") ) (action - (hitbox 14 10 62 78) + (hitbox 2 0 96 96) (name "iced-right") (mirror-action "iced-left") ) diff --git a/data/images/creatures/mr_tree/stumpy.sprite b/data/images/creatures/mr_tree/stumpy.sprite index d6525396ebe..1c80decf4b5 100644 --- a/data/images/creatures/mr_tree/stumpy.sprite +++ b/data/images/creatures/mr_tree/stumpy.sprite @@ -43,12 +43,12 @@ (mirror-action "burning-left") ) (action - (hitbox 22 38 46 50) + (hitbox 12 30 64 64) (name "iced-left") (images "stumpy-7.png") ) (action - (hitbox 22 38 46 50) + (hitbox 12 30 64 64) (name "iced-right") (mirror-action "iced-left") ) diff --git a/data/images/creatures/owl/owl.sprite b/data/images/creatures/owl/owl.sprite index 3e7411b3f05..0f2b05a7828 100644 --- a/data/images/creatures/owl/owl.sprite +++ b/data/images/creatures/owl/owl.sprite @@ -43,11 +43,11 @@ (action (name "iced-left") - (hitbox 24 15 45 44) + (hitbox 20 15 64 64) (images "carry-8.png")) (action (name "iced-right") - (hitbox 31 15 45 44) + (hitbox 20 15 64 64) (mirror-action "iced-left")) ) diff --git a/data/images/creatures/pumpkin/bumpkin.sprite b/data/images/creatures/pumpkin/bumpkin.sprite index 6829c58c88b..beb452425ee 100644 --- a/data/images/creatures/pumpkin/bumpkin.sprite +++ b/data/images/creatures/pumpkin/bumpkin.sprite @@ -50,6 +50,18 @@ (name "burning-right") (fps 15) (hitbox 8 44 38 38) - (mirror-action "burning-left") - ) + (mirror-action "burning-left")) + + (action + (name "iced-left") + (fps 12) + (hitbox 6 10 45 43) + (images "walk-1-0.png")) + + (action + (name "iced-right") + (fps 12) + (hitbox 6 10 45 43) + (mirror-action "iced-left")) + ) diff --git a/data/images/creatures/pumpkin/pumpkin.sprite b/data/images/creatures/pumpkin/pumpkin.sprite index ecf03f5bdd9..bfa2983aaeb 100644 --- a/data/images/creatures/pumpkin/pumpkin.sprite +++ b/data/images/creatures/pumpkin/pumpkin.sprite @@ -50,6 +50,17 @@ (name "burning-right") (fps 15) (hitbox 8 44 38 38) - (mirror-action "burning-left") - ) + (mirror-action "burning-left")) + + (action + (name "iced-left") + (fps 12) + (hitbox 6 10 45 43) + (images "walk-0-0.png")) + + (action + (name "iced-right") + (fps 12) + (hitbox 6 10 45 43) + (mirror-action "iced-left")) ) diff --git a/data/images/creatures/short_fuse/short_fuse.sprite b/data/images/creatures/short_fuse/short_fuse.sprite index 82c500552b3..fb2c2d01fb1 100644 --- a/data/images/creatures/short_fuse/short_fuse.sprite +++ b/data/images/creatures/short_fuse/short_fuse.sprite @@ -16,5 +16,17 @@ (name "right") (fps 15) (hitbox 8 10 26 26) - (mirror-action "left")) + (mirror-action "left")) + +(action + (name "iced-left") + (fps 15) + (hitbox 0 0 45 43) + (images "short_fuse-0.png")) + +(action + (name "iced-right") + (fps 15) + (hitbox 0 0 45 43) + (mirror-action "iced-left")) ) diff --git a/data/images/creatures/skydive/skydive.sprite b/data/images/creatures/skydive/skydive.sprite index 6ed32afc1a1..77078c62cef 100644 --- a/data/images/creatures/skydive/skydive.sprite +++ b/data/images/creatures/skydive/skydive.sprite @@ -21,6 +21,6 @@ (action (name "iced") - (hitbox 14 7 32 44) + (hitbox 0 0 64 64) (images "skydive-0.png")) ) diff --git a/data/images/creatures/snail/corrupted/corrupted_snail.sprite b/data/images/creatures/snail/corrupted/corrupted_snail.sprite index 26a84168d5c..db86c9f6735 100644 --- a/data/images/creatures/snail/corrupted/corrupted_snail.sprite +++ b/data/images/creatures/snail/corrupted/corrupted_snail.sprite @@ -41,12 +41,12 @@ (action (name "iced-left") - (hitbox 4 7 32 28) + (hitbox -1 2 45 43) (images "rotate-0.png") ) (action (name "iced-right") - (hitbox 4 7 32 28) + (hitbox -1 2 45 43) (mirror-action "iced-left") ) diff --git a/data/images/creatures/snail/snail.sprite b/data/images/creatures/snail/snail.sprite index 3d1006357f9..1cabb8a5386 100644 --- a/data/images/creatures/snail/snail.sprite +++ b/data/images/creatures/snail/snail.sprite @@ -41,12 +41,12 @@ (action (name "iced-left") - (hitbox 4 7 32 28) + (hitbox -1 2 45 43) (images "rotate-0.png") ) (action (name "iced-right") - (hitbox 4 7 32 28) + (hitbox -1 2 45 43) (mirror-action "iced-left") ) (action diff --git a/data/images/creatures/spidermite/burning-0.png b/data/images/creatures/spidermite/burning-0.png deleted file mode 100644 index 6cf03d8caea..00000000000 Binary files a/data/images/creatures/spidermite/burning-0.png and /dev/null differ diff --git a/data/images/creatures/spidermite/burning-1.png b/data/images/creatures/spidermite/burning-1.png deleted file mode 100644 index 50cafe13bb6..00000000000 Binary files a/data/images/creatures/spidermite/burning-1.png and /dev/null differ diff --git a/data/images/creatures/spidermite/burning-2.png b/data/images/creatures/spidermite/burning-2.png deleted file mode 100644 index 8311658be9b..00000000000 Binary files a/data/images/creatures/spidermite/burning-2.png and /dev/null differ diff --git a/data/images/creatures/spidermite/burning-3.png b/data/images/creatures/spidermite/burning-3.png deleted file mode 100644 index fa679a8d38f..00000000000 Binary files a/data/images/creatures/spidermite/burning-3.png and /dev/null differ diff --git a/data/images/creatures/spidermite/burning-4.png b/data/images/creatures/spidermite/burning-4.png deleted file mode 100644 index 608cb941102..00000000000 Binary files a/data/images/creatures/spidermite/burning-4.png and /dev/null differ diff --git a/data/images/creatures/spidermite/burning-5.png b/data/images/creatures/spidermite/burning-5.png deleted file mode 100644 index b299def8df2..00000000000 Binary files a/data/images/creatures/spidermite/burning-5.png and /dev/null differ diff --git a/data/images/creatures/spidermite/burning-6.png b/data/images/creatures/spidermite/burning-6.png deleted file mode 100644 index 0ae4431f4fb..00000000000 Binary files a/data/images/creatures/spidermite/burning-6.png and /dev/null differ diff --git a/data/images/creatures/spidermite/burning-7.png b/data/images/creatures/spidermite/burning-7.png deleted file mode 100644 index caa68a1383d..00000000000 Binary files a/data/images/creatures/spidermite/burning-7.png and /dev/null differ diff --git a/data/images/creatures/spidermite/spidermite-0.png b/data/images/creatures/spidermite/spidermite-0.png new file mode 100644 index 00000000000..0102ec9d6b2 Binary files /dev/null and b/data/images/creatures/spidermite/spidermite-0.png differ diff --git a/data/images/creatures/spidermite/spidermite-1.png b/data/images/creatures/spidermite/spidermite-1.png new file mode 100644 index 00000000000..c9362c7af29 Binary files /dev/null and b/data/images/creatures/spidermite/spidermite-1.png differ diff --git a/data/images/creatures/spidermite/spidermite-2.png b/data/images/creatures/spidermite/spidermite-2.png new file mode 100644 index 00000000000..1648f41c72f Binary files /dev/null and b/data/images/creatures/spidermite/spidermite-2.png differ diff --git a/data/images/creatures/spidermite/spidermite-3.png b/data/images/creatures/spidermite/spidermite-3.png new file mode 100644 index 00000000000..874d700005d Binary files /dev/null and b/data/images/creatures/spidermite/spidermite-3.png differ diff --git a/data/images/creatures/spidermite/spidermite-4.png b/data/images/creatures/spidermite/spidermite-4.png new file mode 100644 index 00000000000..180039c76fd Binary files /dev/null and b/data/images/creatures/spidermite/spidermite-4.png differ diff --git a/data/images/creatures/spidermite/spidermite-5.png b/data/images/creatures/spidermite/spidermite-5.png new file mode 100644 index 00000000000..c52868114e3 Binary files /dev/null and b/data/images/creatures/spidermite/spidermite-5.png differ diff --git a/data/images/creatures/spidermite/spidermite-6.png b/data/images/creatures/spidermite/spidermite-6.png new file mode 100644 index 00000000000..d001208251b Binary files /dev/null and b/data/images/creatures/spidermite/spidermite-6.png differ diff --git a/data/images/creatures/spidermite/spidermite-7.png b/data/images/creatures/spidermite/spidermite-7.png new file mode 100644 index 00000000000..c25d964c9cf Binary files /dev/null and b/data/images/creatures/spidermite/spidermite-7.png differ diff --git a/data/images/creatures/spidermite/spidermite-8.png b/data/images/creatures/spidermite/spidermite-8.png new file mode 100644 index 00000000000..355a4135708 Binary files /dev/null and b/data/images/creatures/spidermite/spidermite-8.png differ diff --git a/data/images/creatures/spidermite/spidermite-9.png b/data/images/creatures/spidermite/spidermite-9.png new file mode 100644 index 00000000000..081fba8aa30 Binary files /dev/null and b/data/images/creatures/spidermite/spidermite-9.png differ diff --git a/data/images/creatures/spidermite/spidermite-squish.png b/data/images/creatures/spidermite/spidermite-squish.png deleted file mode 100644 index 2a66cb30d3b..00000000000 Binary files a/data/images/creatures/spidermite/spidermite-squish.png and /dev/null differ diff --git a/data/images/creatures/spidermite/spidermite.sprite b/data/images/creatures/spidermite/spidermite.sprite index b38d4a8b4a5..cd0b2849d8b 100644 --- a/data/images/creatures/spidermite/spidermite.sprite +++ b/data/images/creatures/spidermite/spidermite.sprite @@ -1,50 +1,53 @@ (supertux-sprite - (action - (name "left") - (fps 15) - (hitbox 14 14 37 43) - (images "spidermite1.png" - "spidermite2.png" - "spidermite3.png" - "spidermite4.png" - "spidermite5.png" - "spidermite6.png")) - (action - (name "right") - (fps 15) - (hitbox 14 14 37 43) - (clone-action "left")) - - (action - (name "squished-left") - (hitbox 14 19 37 43) - (images "spidermite-squish.png")) - (action - (name "squished-right") - (hitbox 14 19 37 43) - (clone-action "squished-left")) - (action - (name "iced-left") - (hitbox 0 -1 37 43) - (images "spidermite1.png")) - (action - (name "iced-right") - (hitbox 5 -1 37 43) - (mirror-action "iced-left")) - (action - (name "burning-left") - (hitbox 14 14 37 43) - (fps 15) - (images "burning-0.png" - "burning-1.png" - "burning-2.png" - "burning-3.png" - "burning-4.png" - "burning-5.png" - "burning-6.png" - "burning-7.png")) - (action - (name "burning-right") - (hitbox 14 14 37 43) - (fps 15) - (clone-action "burning-left"))) + (action + (name "idle") + (hitbox 36 16 48 54) + (fps 10) + (images "spidermite-9.png" + "spidermite-9.png" + "spidermite-9.png" + "spidermite-9.png" + "spidermite-9.png" + "spidermite-9.png" + "spidermite-9.png" + "spidermite-9.png" + "spidermite-9.png" + "spidermite-9.png" + "spidermite-9.png" + "spidermite-9.png" + "spidermite-9.png" + "spidermite-9.png" + "spidermite-9.png" + "spidermite-7.png" + "spidermite-8.png" + "spidermite-9.png") + ) + (action + (name "dive") + (hitbox 36 16 48 54) + (fps 15) + (loops 1) + (images "spidermite-0.png" + "spidermite-1.png" + "spidermite-2.png" + "spidermite-3.png") + ) + (action + (name "rebound") + (hitbox 36 16 48 54) + (fps 15) + (loops 1) + (images "spidermite-3.png" + "spidermite-4.png" + "spidermite-5.png" + "spidermite-6.png" + "spidermite-7.png" + "spidermite-8.png" + "spidermite-9.png") + ) + (action + (name "squished") + (hitbox 36 16 48 47) + (images "squished.png") + ) + ) diff --git a/data/images/creatures/spidermite/spidermite1.png b/data/images/creatures/spidermite/spidermite1.png deleted file mode 100644 index 315dc9a2891..00000000000 Binary files a/data/images/creatures/spidermite/spidermite1.png and /dev/null differ diff --git a/data/images/creatures/spidermite/spidermite2.png b/data/images/creatures/spidermite/spidermite2.png deleted file mode 100644 index 058ed97943d..00000000000 Binary files a/data/images/creatures/spidermite/spidermite2.png and /dev/null differ diff --git a/data/images/creatures/spidermite/spidermite3.png b/data/images/creatures/spidermite/spidermite3.png deleted file mode 100644 index 9df74e0bcba..00000000000 Binary files a/data/images/creatures/spidermite/spidermite3.png and /dev/null differ diff --git a/data/images/creatures/spidermite/spidermite4.png b/data/images/creatures/spidermite/spidermite4.png deleted file mode 100644 index 349a0767161..00000000000 Binary files a/data/images/creatures/spidermite/spidermite4.png and /dev/null differ diff --git a/data/images/creatures/spidermite/spidermite5.png b/data/images/creatures/spidermite/spidermite5.png deleted file mode 100644 index a174f0b7eff..00000000000 Binary files a/data/images/creatures/spidermite/spidermite5.png and /dev/null differ diff --git a/data/images/creatures/spidermite/spidermite6.png b/data/images/creatures/spidermite/spidermite6.png deleted file mode 100644 index 067726336f3..00000000000 Binary files a/data/images/creatures/spidermite/spidermite6.png and /dev/null differ diff --git a/data/images/creatures/spidermite/squished.png b/data/images/creatures/spidermite/squished.png new file mode 100644 index 00000000000..497246761df Binary files /dev/null and b/data/images/creatures/spidermite/squished.png differ diff --git a/data/images/creatures/spiky/sleepingspiky.sprite b/data/images/creatures/spiky/sleepingspiky.sprite index 497c2c53716..f6a899cdd34 100644 --- a/data/images/creatures/spiky/sleepingspiky.sprite +++ b/data/images/creatures/spiky/sleepingspiky.sprite @@ -20,12 +20,12 @@ (action (name "iced-left") - (hitbox 8 13 32 32) + (hitbox 3 8 45 43) (images "spiky_sleep-3.png")) (action (name "iced-right") - (hitbox 8 13 32 32) + (hitbox 3 8 45 43) (mirror-action "iced-left")) (action diff --git a/data/images/creatures/spiky/spiky.sprite b/data/images/creatures/spiky/spiky.sprite index ba04dea86be..ddb851d586d 100644 --- a/data/images/creatures/spiky/spiky.sprite +++ b/data/images/creatures/spiky/spiky.sprite @@ -20,12 +20,12 @@ (action (name "iced-left") - (hitbox 8 13 32 32) + (hitbox 3 8 45 43) (images "spiky_sleep-3.png")) (action (name "iced-right") - (hitbox 8 13 32 32) + (hitbox 3 8 45 43) (mirror-action "iced-left")) (action diff --git a/data/images/creatures/tarantula/silk.png b/data/images/creatures/tarantula/silk.png new file mode 100644 index 00000000000..547979879f9 Binary files /dev/null and b/data/images/creatures/tarantula/silk.png differ diff --git a/data/images/creatures/tarantula/squished.png b/data/images/creatures/tarantula/squished.png new file mode 100644 index 00000000000..c891323e92b Binary files /dev/null and b/data/images/creatures/tarantula/squished.png differ diff --git a/data/images/creatures/tarantula/tarantula-0.png b/data/images/creatures/tarantula/tarantula-0.png new file mode 100644 index 00000000000..c6c4c32da84 Binary files /dev/null and b/data/images/creatures/tarantula/tarantula-0.png differ diff --git a/data/images/creatures/tarantula/tarantula-1.png b/data/images/creatures/tarantula/tarantula-1.png new file mode 100644 index 00000000000..f07fc27c085 Binary files /dev/null and b/data/images/creatures/tarantula/tarantula-1.png differ diff --git a/data/images/creatures/tarantula/tarantula-2.png b/data/images/creatures/tarantula/tarantula-2.png new file mode 100644 index 00000000000..c3fe0b8fdfc Binary files /dev/null and b/data/images/creatures/tarantula/tarantula-2.png differ diff --git a/data/images/creatures/tarantula/tarantula-3.png b/data/images/creatures/tarantula/tarantula-3.png new file mode 100644 index 00000000000..f144d777a3e Binary files /dev/null and b/data/images/creatures/tarantula/tarantula-3.png differ diff --git a/data/images/creatures/tarantula/tarantula-4.png b/data/images/creatures/tarantula/tarantula-4.png new file mode 100644 index 00000000000..abdcc41e975 Binary files /dev/null and b/data/images/creatures/tarantula/tarantula-4.png differ diff --git a/data/images/creatures/tarantula/tarantula-5.png b/data/images/creatures/tarantula/tarantula-5.png new file mode 100644 index 00000000000..227333ce0ed Binary files /dev/null and b/data/images/creatures/tarantula/tarantula-5.png differ diff --git a/data/images/creatures/tarantula/tarantula-6.png b/data/images/creatures/tarantula/tarantula-6.png new file mode 100644 index 00000000000..5cd9c5628fc Binary files /dev/null and b/data/images/creatures/tarantula/tarantula-6.png differ diff --git a/data/images/creatures/tarantula/tarantula-7.png b/data/images/creatures/tarantula/tarantula-7.png new file mode 100644 index 00000000000..ac5d76b3bab Binary files /dev/null and b/data/images/creatures/tarantula/tarantula-7.png differ diff --git a/data/images/creatures/tarantula/tarantula-8.png b/data/images/creatures/tarantula/tarantula-8.png new file mode 100644 index 00000000000..ffa39c1ae61 Binary files /dev/null and b/data/images/creatures/tarantula/tarantula-8.png differ diff --git a/data/images/creatures/tarantula/tarantula-9.png b/data/images/creatures/tarantula/tarantula-9.png new file mode 100644 index 00000000000..d2e5922cc94 Binary files /dev/null and b/data/images/creatures/tarantula/tarantula-9.png differ diff --git a/data/images/creatures/tarantula/tarantula.sprite b/data/images/creatures/tarantula/tarantula.sprite new file mode 100644 index 00000000000..fdcf5211dc1 --- /dev/null +++ b/data/images/creatures/tarantula/tarantula.sprite @@ -0,0 +1,53 @@ +(supertux-sprite + (action + (name "idle") + (hitbox 36 16 48 54) + (fps 10) + (images "tarantula-9.png" + "tarantula-9.png" + "tarantula-9.png" + "tarantula-9.png" + "tarantula-9.png" + "tarantula-9.png" + "tarantula-9.png" + "tarantula-9.png" + "tarantula-9.png" + "tarantula-9.png" + "tarantula-9.png" + "tarantula-9.png" + "tarantula-9.png" + "tarantula-9.png" + "tarantula-9.png" + "tarantula-7.png" + "tarantula-8.png" + "tarantula-9.png") + ) + (action + (name "dive") + (hitbox 36 16 48 54) + (fps 15) + (loops 1) + (images "tarantula-0.png" + "tarantula-1.png" + "tarantula-2.png" + "tarantula-3.png") + ) + (action + (name "rebound") + (hitbox 36 16 48 54) + (fps 15) + (loops 1) + (images "tarantula-3.png" + "tarantula-4.png" + "tarantula-5.png" + "tarantula-6.png" + "tarantula-7.png" + "tarantula-8.png" + "tarantula-9.png") + ) + (action + (name "squished") + (hitbox 36 16 48 45) + (images "squished.png") + ) + ) diff --git a/data/images/creatures/vicious_ivy/corrupted/rotten_ivy.sprite b/data/images/creatures/vicious_ivy/corrupted/rotten_ivy.sprite index e08e1120f84..e187f3f916e 100644 --- a/data/images/creatures/vicious_ivy/corrupted/rotten_ivy.sprite +++ b/data/images/creatures/vicious_ivy/corrupted/rotten_ivy.sprite @@ -43,13 +43,13 @@ (action (name "iced-left") - (hitbox 9 12 32 32) + (hitbox 3 6 64 43) (images "left-2.png") ) (action (name "iced-right") - (hitbox 19 12 32 32) + (hitbox 3 6 64 43) (mirror-action "iced-left") ) diff --git a/data/images/creatures/vicious_ivy/vicious_ivy.sprite b/data/images/creatures/vicious_ivy/vicious_ivy.sprite index 3bd8e12e5d3..95cdaff5d83 100644 --- a/data/images/creatures/vicious_ivy/vicious_ivy.sprite +++ b/data/images/creatures/vicious_ivy/vicious_ivy.sprite @@ -43,13 +43,13 @@ (action (name "iced-left") - (hitbox 9 12 32 32) + (hitbox 3 6 64 43) (images "left-2.png") ) (action (name "iced-right") - (hitbox 19 12 32 32) + (hitbox 3 6 64 43) (mirror-action "iced-left") ) diff --git a/data/images/creatures/walkingleaf/corrupted/rotten_leaf.sprite b/data/images/creatures/walkingleaf/corrupted/rotten_leaf.sprite index e102a384d67..55dfb6b812b 100644 --- a/data/images/creatures/walkingleaf/corrupted/rotten_leaf.sprite +++ b/data/images/creatures/walkingleaf/corrupted/rotten_leaf.sprite @@ -43,13 +43,13 @@ (action (name "iced-left") - (hitbox 9 12 32 32) + (hitbox 3 6 64 43) (images "left-2.png") ) (action (name "iced-right") - (hitbox 19 12 32 32) + (hitbox 3 6 64 43) (mirror-action "iced-left") ) diff --git a/data/images/creatures/walkingleaf/walkingleaf.sprite b/data/images/creatures/walkingleaf/walkingleaf.sprite index 756740262f9..59b13b125e3 100644 --- a/data/images/creatures/walkingleaf/walkingleaf.sprite +++ b/data/images/creatures/walkingleaf/walkingleaf.sprite @@ -43,13 +43,13 @@ (action (name "iced-left") - (hitbox 9 12 32 32) + (hitbox 3 6 64 43) (images "left-2.png") ) (action (name "iced-right") - (hitbox 19 12 32 32) + (hitbox 3 6 64 43) (mirror-action "iced-left") ) diff --git a/data/images/creatures/zeekling/zeekling.sprite b/data/images/creatures/zeekling/zeekling.sprite index 9fb58dda771..4a8bd9edef3 100644 --- a/data/images/creatures/zeekling/zeekling.sprite +++ b/data/images/creatures/zeekling/zeekling.sprite @@ -90,12 +90,12 @@ (action (name "iced-left") - (hitbox 12 42 44 34) - (images "dive-1.png") + (hitbox 9 42 64 43) + (images "charge-4.png") ) (action (name "iced-right") - (hitbox 36 42 44 34) + (hitbox 18 42 64 43) (mirror-action "iced-left") ) diff --git a/data/images/decal/forest/cedar-vine.deprecated.png b/data/images/decal/forest/cedar-vine.deprecated.png new file mode 100755 index 00000000000..3f0f342a7f8 Binary files /dev/null and b/data/images/decal/forest/cedar-vine.deprecated.png differ diff --git a/data/images/decal/forest/foresttree.deprecated.png b/data/images/decal/forest/foresttree.deprecated.png new file mode 100644 index 00000000000..2d581e8ee81 Binary files /dev/null and b/data/images/decal/forest/foresttree.deprecated.png differ diff --git a/data/images/decal/forest/ghost-bush-1.deprecated.png b/data/images/decal/forest/ghost-bush-1.deprecated.png new file mode 100644 index 00000000000..155a7cc6de4 Binary files /dev/null and b/data/images/decal/forest/ghost-bush-1.deprecated.png differ diff --git a/data/images/decal/forest/ghost-mushroom-1.deprecated.png b/data/images/decal/forest/ghost-mushroom-1.deprecated.png new file mode 100644 index 00000000000..7a1976178c9 Binary files /dev/null and b/data/images/decal/forest/ghost-mushroom-1.deprecated.png differ diff --git a/data/images/decal/forest/ghost-mushroom-10.deprecated.png b/data/images/decal/forest/ghost-mushroom-10.deprecated.png new file mode 100644 index 00000000000..82ea8c59e47 Binary files /dev/null and b/data/images/decal/forest/ghost-mushroom-10.deprecated.png differ diff --git a/data/images/decal/forest/ghost-mushroom-11.deprecated.png b/data/images/decal/forest/ghost-mushroom-11.deprecated.png new file mode 100644 index 00000000000..04670ee6bdc Binary files /dev/null and b/data/images/decal/forest/ghost-mushroom-11.deprecated.png differ diff --git a/data/images/decal/forest/ghost-mushroom-12.deprecated.png b/data/images/decal/forest/ghost-mushroom-12.deprecated.png new file mode 100644 index 00000000000..7f302781c97 Binary files /dev/null and b/data/images/decal/forest/ghost-mushroom-12.deprecated.png differ diff --git a/data/images/decal/forest/ghost-mushroom-2.deprecated.png b/data/images/decal/forest/ghost-mushroom-2.deprecated.png new file mode 100644 index 00000000000..9f42bb293d4 Binary files /dev/null and b/data/images/decal/forest/ghost-mushroom-2.deprecated.png differ diff --git a/data/images/decal/forest/ghost-mushroom-3.deprecated.png b/data/images/decal/forest/ghost-mushroom-3.deprecated.png new file mode 100644 index 00000000000..e3d5442c147 Binary files /dev/null and b/data/images/decal/forest/ghost-mushroom-3.deprecated.png differ diff --git a/data/images/decal/forest/ghost-mushroom-4.deprecated.png b/data/images/decal/forest/ghost-mushroom-4.deprecated.png new file mode 100644 index 00000000000..92d1cc1f85a Binary files /dev/null and b/data/images/decal/forest/ghost-mushroom-4.deprecated.png differ diff --git a/data/images/decal/forest/ghost-mushroom-5.deprecated.png b/data/images/decal/forest/ghost-mushroom-5.deprecated.png new file mode 100644 index 00000000000..49649563f6b Binary files /dev/null and b/data/images/decal/forest/ghost-mushroom-5.deprecated.png differ diff --git a/data/images/decal/forest/ghost-mushroom-6.deprecated.png b/data/images/decal/forest/ghost-mushroom-6.deprecated.png new file mode 100644 index 00000000000..0a7be261e69 Binary files /dev/null and b/data/images/decal/forest/ghost-mushroom-6.deprecated.png differ diff --git a/data/images/decal/forest/ghost-mushroom-7.deprecated.png b/data/images/decal/forest/ghost-mushroom-7.deprecated.png new file mode 100644 index 00000000000..d3e808decca Binary files /dev/null and b/data/images/decal/forest/ghost-mushroom-7.deprecated.png differ diff --git a/data/images/decal/forest/ghost-mushroom-8.deprecated.png b/data/images/decal/forest/ghost-mushroom-8.deprecated.png new file mode 100644 index 00000000000..b73de5118ec Binary files /dev/null and b/data/images/decal/forest/ghost-mushroom-8.deprecated.png differ diff --git a/data/images/decal/forest/ghost-mushroom-9.deprecated.png b/data/images/decal/forest/ghost-mushroom-9.deprecated.png new file mode 100644 index 00000000000..3309978cdb2 Binary files /dev/null and b/data/images/decal/forest/ghost-mushroom-9.deprecated.png differ diff --git a/data/images/decal/nightcave/lightflower1.deprecated.png b/data/images/decal/nightcave/lightflower1.deprecated.png new file mode 100644 index 00000000000..9b752869684 Binary files /dev/null and b/data/images/decal/nightcave/lightflower1.deprecated.png differ diff --git a/data/images/decal/nightcave/lightflower2.deprecated.png b/data/images/decal/nightcave/lightflower2.deprecated.png new file mode 100644 index 00000000000..54eec8c4bfc Binary files /dev/null and b/data/images/decal/nightcave/lightflower2.deprecated.png differ diff --git a/data/images/decal/nightcave/lightflower3.deprecated.png b/data/images/decal/nightcave/lightflower3.deprecated.png new file mode 100644 index 00000000000..1233588831b Binary files /dev/null and b/data/images/decal/nightcave/lightflower3.deprecated.png differ diff --git a/data/images/decal/retro/cloud.deprecated.png b/data/images/decal/retro/cloud.deprecated.png new file mode 100644 index 00000000000..55ac30c18f8 Binary files /dev/null and b/data/images/decal/retro/cloud.deprecated.png differ diff --git a/data/images/decal/retro/copter1.deprecated.png b/data/images/decal/retro/copter1.deprecated.png new file mode 100644 index 00000000000..3db63a8e252 Binary files /dev/null and b/data/images/decal/retro/copter1.deprecated.png differ diff --git a/data/images/decal/retro/copter2.deprecated.png b/data/images/decal/retro/copter2.deprecated.png new file mode 100644 index 00000000000..69991acd917 Binary files /dev/null and b/data/images/decal/retro/copter2.deprecated.png differ diff --git a/data/images/decal/retro/golden-herring.deprecated.png b/data/images/decal/retro/golden-herring.deprecated.png new file mode 100644 index 00000000000..1bcf2580b16 Binary files /dev/null and b/data/images/decal/retro/golden-herring.deprecated.png differ diff --git a/data/images/decal/retro/map.deprecated.png b/data/images/decal/retro/map.deprecated.png new file mode 100644 index 00000000000..0623ccc4da2 Binary files /dev/null and b/data/images/decal/retro/map.deprecated.png differ diff --git a/data/images/decal/retro/title_old.deprecated.png b/data/images/decal/retro/title_old.deprecated.png new file mode 100644 index 00000000000..1fb66a17648 Binary files /dev/null and b/data/images/decal/retro/title_old.deprecated.png differ diff --git a/data/images/decal/snow/exitbg.deprecated.png b/data/images/decal/snow/exitbg.deprecated.png new file mode 100644 index 00000000000..7ffb9d73997 Binary files /dev/null and b/data/images/decal/snow/exitbg.deprecated.png differ diff --git a/data/images/decal/snow/exitfg.deprecated.png b/data/images/decal/snow/exitfg.deprecated.png new file mode 100644 index 00000000000..60aa46a84cd Binary files /dev/null and b/data/images/decal/snow/exitfg.deprecated.png differ diff --git a/data/images/engine/editor/add.png b/data/images/engine/editor/add.png new file mode 100644 index 00000000000..3db48622c64 Binary files /dev/null and b/data/images/engine/editor/add.png differ diff --git a/data/images/engine/editor/arrow.png b/data/images/engine/editor/arrow.png index 73986b65443..cb74346d9d1 100644 Binary files a/data/images/engine/editor/arrow.png and b/data/images/engine/editor/arrow.png differ diff --git a/data/images/engine/editor/move-mode0.png b/data/images/engine/editor/move-mode0.png index d7f9479cd23..c2898377801 100644 Binary files a/data/images/engine/editor/move-mode0.png and b/data/images/engine/editor/move-mode0.png differ diff --git a/data/images/engine/editor/move-mode1.png b/data/images/engine/editor/move-mode1.png index 4be68059690..1827421e2f0 100644 Binary files a/data/images/engine/editor/move-mode1.png and b/data/images/engine/editor/move-mode1.png differ diff --git a/data/images/engine/editor/music.png b/data/images/engine/editor/music.png index 8f2172f36ec..eeca404198e 100644 Binary files a/data/images/engine/editor/music.png and b/data/images/engine/editor/music.png differ diff --git a/data/images/engine/editor/objects.stoi b/data/images/engine/editor/objects.stoi index 9116d8d13d2..a0314e2b306 100644 --- a/data/images/engine/editor/objects.stoi +++ b/data/images/engine/editor/objects.stoi @@ -105,7 +105,10 @@ (object (class "darttrap") (icon "images/creatures/darttrap/granito/empty_left.png")) - (object +(object + (class "root_sapling") + (icon "images/creatures/mole/corrupted/root_sapling-0.png")) +(object (class "ghoul") (icon "images/creatures/ghoul/g1.png")) (object @@ -148,20 +151,11 @@ (class "toad") (icon "images/creatures/toad/toad-idle-0.png")) (object - (class "spidermite") - (icon "images/creatures/spidermite/spidermite1.png")) - (object - (class "plant") - (icon "images/creatures/plant/left-0.png")) + (class "tarantula") + (icon "images/creatures/tarantula/tarantula-0.png")) (object (class "totem") (icon "images/creatures/totem/walking1.png")) - (object - (class "angrystone") - (icon "images/creatures/angrystone/charging-0.png")) - (object - (class "kugelblitz") - (icon "images/creatures/kugelblitz/flying-0.png")) ) (objectgroup @@ -183,7 +177,10 @@ (icon "images/engine/editor/stalactite_ice_yeti.png")) (object (class "dart") - (icon "images/creatures/darttrap/granito/root_dart_left.png")) + (icon "images/creatures/darttrap/granito/root_dart_left.png")) + (object + (class "bigsnowball") + (icon "images/objects/big_snowball/big_snowball.png")) ) (objectgroup @@ -219,6 +216,15 @@ (object (class "firefly") (icon "images/engine/editor/resetpoint.png")) + (object + (class "granito") + (icon "images/creatures/granito/granito_stand-0.png")) + (object + (class "granito_big") + (icon "images/creatures/granito/big/granito_stand-0.png")) + (object + (class "granito_giant") + (icon "images/creatures/granito/giant/granito_sleep-0.png")) (object (class "dispenser") (icon "images/creatures/dispenser/dropper.png")) @@ -335,9 +341,7 @@ (icon "images/engine/editor/textarray.png")) ) - (objectgroup - (name (_"Sector")) - (worldmap #f) + (layers (object (class "tilemap") (icon "images/engine/editor/tilemap.png")) @@ -365,24 +369,21 @@ (object (class "particles-ghosts") (icon "images/engine/editor/ghostparticles.png")) - - - ;; +-- This should be disabled, as it probably won't support multiple textures ;; | per config object. ;; v ~ Semphris (object (class "particles-custom") (icon "images/engine/editor/particle.png")) - - - (object (class "particles-custom-file") (icon "images/engine/editor/particle_file.png")) (object (class "textscroller") (icon "images/engine/editor/textscroller.png")) + (object + (class "sound-object") + (icon "images/engine/editor/sound.png")) ) (objectgroup @@ -406,6 +407,9 @@ (object (class "decal") (icon "images/engine/editor/decal.png")) + ) + + (layers-worldmap (object (class "tilemap") (icon "images/engine/editor/tilemap.png")) diff --git a/data/images/engine/editor/path_node.png b/data/images/engine/editor/path_node.png index 7d50dea5680..b2acc5f615b 100644 Binary files a/data/images/engine/editor/path_node.png and b/data/images/engine/editor/path_node.png differ diff --git a/data/images/engine/editor/rubber.png b/data/images/engine/editor/rubber.png index 936823df07e..bc605cedafe 100755 Binary files a/data/images/engine/editor/rubber.png and b/data/images/engine/editor/rubber.png differ diff --git a/data/images/engine/editor/select-mode0.png b/data/images/engine/editor/select-mode0.png index cde33567e34..88be83deefc 100755 Binary files a/data/images/engine/editor/select-mode0.png and b/data/images/engine/editor/select-mode0.png differ diff --git a/data/images/engine/editor/select-mode1.png b/data/images/engine/editor/select-mode1.png index a32f6239894..705dd60d99e 100755 Binary files a/data/images/engine/editor/select-mode1.png and b/data/images/engine/editor/select-mode1.png differ diff --git a/data/images/engine/editor/select-mode2.png b/data/images/engine/editor/select-mode2.png index fd05cc2220c..fd8a3257106 100644 Binary files a/data/images/engine/editor/select-mode2.png and b/data/images/engine/editor/select-mode2.png differ diff --git a/data/images/engine/editor/select-mode3.png b/data/images/engine/editor/select-mode3.png index ac80da9ede9..cfaa14120ca 100644 Binary files a/data/images/engine/editor/select-mode3.png and b/data/images/engine/editor/select-mode3.png differ diff --git a/data/images/engine/editor/sound.png b/data/images/engine/editor/sound.png new file mode 100644 index 00000000000..180744a5b32 Binary files /dev/null and b/data/images/engine/editor/sound.png differ diff --git a/data/images/engine/hud/arrowdown.png b/data/images/engine/hud/arrowdown.png index f5ab9855b35..a39b48ac870 100644 Binary files a/data/images/engine/hud/arrowdown.png and b/data/images/engine/hud/arrowdown.png differ diff --git a/data/images/engine/menu/logo_santahat.sprite b/data/images/engine/menu/logo_santahat.sprite deleted file mode 100644 index 35d2f457291..00000000000 --- a/data/images/engine/menu/logo_santahat.sprite +++ /dev/null @@ -1,6 +0,0 @@ -(supertux-sprite - (action - (name "default") - (images "../../engine/menu/logo_santahat.png") - ) -) diff --git a/data/images/objects/big_snowball/big_snowball.png b/data/images/objects/big_snowball/big_snowball.png new file mode 100644 index 00000000000..f8e7f6d46e7 Binary files /dev/null and b/data/images/objects/big_snowball/big_snowball.png differ diff --git a/data/images/objects/big_snowball/big_snowball.sprite b/data/images/objects/big_snowball/big_snowball.sprite new file mode 100644 index 00000000000..73ea8fd4c4b --- /dev/null +++ b/data/images/objects/big_snowball/big_snowball.sprite @@ -0,0 +1,11 @@ +(supertux-sprite + (action + (name "default") + (hitbox 6 6 87 84) + (images "big_snowball.png")) + + (action + (name "particle") + (hitbox 2 2 29 28) + (images "big_snowball_particle.png")) +) diff --git a/data/images/objects/big_snowball/big_snowball_particle.png b/data/images/objects/big_snowball/big_snowball_particle.png new file mode 100644 index 00000000000..1a6ba6c96dd Binary files /dev/null and b/data/images/objects/big_snowball/big_snowball_particle.png differ diff --git a/data/images/objects/logo/logo.sprite b/data/images/objects/logo/logo.sprite deleted file mode 100644 index adad135a747..00000000000 --- a/data/images/objects/logo/logo.sprite +++ /dev/null @@ -1,6 +0,0 @@ -(supertux-sprite - (action - (name "default") - (images "../../engine/menu/logo_dev.png") - ) -) diff --git a/data/images/objects/logo/logo_final.sprite b/data/images/objects/logo/logo_final.sprite deleted file mode 100644 index 815e301e5df..00000000000 --- a/data/images/objects/logo/logo_final.sprite +++ /dev/null @@ -1,6 +0,0 @@ -(supertux-sprite - (action - (name "default") - (images "../../engine/menu/logo.png") - ) -) diff --git a/data/images/objects/platforms/big.png b/data/images/objects/platforms/big.png index 61f59fc07da..ab7e91031c5 100644 Binary files a/data/images/objects/platforms/big.png and b/data/images/objects/platforms/big.png differ diff --git a/data/images/objects/platforms/circleplatform-editor.png b/data/images/objects/platforms/circleplatform-editor.png new file mode 100644 index 00000000000..f2fcff4d4e4 Binary files /dev/null and b/data/images/objects/platforms/circleplatform-editor.png differ diff --git a/data/images/objects/platforms/small.png b/data/images/objects/platforms/small.png index 301653f9ced..6c1d54eed1b 100644 Binary files a/data/images/objects/platforms/small.png and b/data/images/objects/platforms/small.png differ diff --git a/data/images/objects/platforms/vertical-wood.png b/data/images/objects/platforms/vertical-wood.png index 06c7de58f91..54f9ba800ad 100644 Binary files a/data/images/objects/platforms/vertical-wood.png and b/data/images/objects/platforms/vertical-wood.png differ diff --git a/data/images/objects/platforms/wood-fivetiles.png b/data/images/objects/platforms/wood-fivetiles.png index ac87565fc1b..5f15d86e945 100644 Binary files a/data/images/objects/platforms/wood-fivetiles.png and b/data/images/objects/platforms/wood-fivetiles.png differ diff --git a/data/images/objects/platforms/wood-tiny.png b/data/images/objects/platforms/wood-tiny.png index 60f78f5b69d..084ef372103 100644 Binary files a/data/images/objects/platforms/wood-tiny.png and b/data/images/objects/platforms/wood-tiny.png differ diff --git a/data/images/particles/corrupted_rock-0.png b/data/images/particles/corrupted_rock-0.png new file mode 100644 index 00000000000..9d93bccf6d7 Binary files /dev/null and b/data/images/particles/corrupted_rock-0.png differ diff --git a/data/images/particles/corrupted_rock-1.png b/data/images/particles/corrupted_rock-1.png new file mode 100644 index 00000000000..3d9748d8edd Binary files /dev/null and b/data/images/particles/corrupted_rock-1.png differ diff --git a/data/images/particles/corrupted_rock-2.png b/data/images/particles/corrupted_rock-2.png new file mode 100644 index 00000000000..d4d14f00311 Binary files /dev/null and b/data/images/particles/corrupted_rock-2.png differ diff --git a/data/images/particles/corrupted_rock-3.png b/data/images/particles/corrupted_rock-3.png new file mode 100644 index 00000000000..7f5969278c7 Binary files /dev/null and b/data/images/particles/corrupted_rock-3.png differ diff --git a/data/images/particles/corrupted_rock-4.png b/data/images/particles/corrupted_rock-4.png new file mode 100644 index 00000000000..3c5812ae2a7 Binary files /dev/null and b/data/images/particles/corrupted_rock-4.png differ diff --git a/data/images/particles/corrupted_rock.sprite b/data/images/particles/corrupted_rock.sprite new file mode 100644 index 00000000000..3162b2717cc --- /dev/null +++ b/data/images/particles/corrupted_rock.sprite @@ -0,0 +1,41 @@ +(supertux-sprite + (action + (name "piece-0") + (hitbox 0 0 8 8) + (images + "corrupted_rock-0.png" + ) + ) + + (action + (name "piece-1") + (hitbox 0 0 10 10) + (images + "corrupted_rock-1.png" + ) + ) + + (action + (name "piece-2") + (hitbox 0 0 16 16) + (images + "corrupted_rock-2.png" + ) + ) + + (action + (name "piece-3") + (hitbox 0 0 8 8) + (images + "corrupted_rock-3.png" + ) + ) + + (action + (name "piece-4") + (hitbox 0 0 10 10) + (images + "corrupted_rock-4.png" + ) + ) +) diff --git a/data/images/particles/rain0.png b/data/images/particles/rain0.png index f9cbf3a60da..2d19ed9f5f7 100644 Binary files a/data/images/particles/rain0.png and b/data/images/particles/rain0.png differ diff --git a/data/images/particles/rain1.png b/data/images/particles/rain1.png index 04dc1e16fd7..eb915aea9d9 100644 Binary files a/data/images/particles/rain1.png and b/data/images/particles/rain1.png differ diff --git a/data/images/particles/rainsplash-1.png b/data/images/particles/rainsplash-1.png index 2748e11482f..5a9c6ddd959 100644 Binary files a/data/images/particles/rainsplash-1.png and b/data/images/particles/rainsplash-1.png differ diff --git a/data/images/particles/rainsplash-2.png b/data/images/particles/rainsplash-2.png index 26d4c9cf4c1..ca35d5298ca 100644 Binary files a/data/images/particles/rainsplash-2.png and b/data/images/particles/rainsplash-2.png differ diff --git a/data/images/particles/rainsplash-3.png b/data/images/particles/rainsplash-3.png index 9ef77933937..b7f6176a1ff 100644 Binary files a/data/images/particles/rainsplash-3.png and b/data/images/particles/rainsplash-3.png differ diff --git a/data/images/particles/rainsplash-4.png b/data/images/particles/rainsplash-4.png index 3e6a83c65d2..39df79b8020 100644 Binary files a/data/images/particles/rainsplash-4.png and b/data/images/particles/rainsplash-4.png differ diff --git a/data/images/tiles.strf b/data/images/tiles.strf index 79cadacf19a..20d8eed0090 100644 --- a/data/images/tiles.strf +++ b/data/images/tiles.strf @@ -18,97 +18,123 @@ (autotileset (source "autotiles.satc") ) - - ;; next-id: 5117 - - ;; free/skipped ids (please use before any other): none - ;; Tile ids: 4225(4264) - 4292 (!reserved for crystal cave!) - + + ;; next-id: 7312 + ;; free/skipped ids (please use before any other): 101 + ;; 2080-2084 are empty tiles, 4619-4660, 4719-4722, 5037-5092, 5205, 5268-5283, 5433-5527, 6962-6977, 7002 7005 7007 7008 7173 + ;; No group ids are currently skipped! Delete this line if any are and replace it with said ids... + (tilegroup (name (_ "Snow")) (tiles 7 8 9 202 - 13 14 15 204 + 13 14 15 203 10 11 12 206 - 16 17 18 205 - - 275 278 279 280 - 276 281 0 282 - 277 283 0 284 - 0 289 292 0 - 290 291 293 294 - 285 286 483 484 - 287 288 485 486 - 0 0 487 488 - - 30 31 114 113 - 21 22 19 203 - 20 23 207 208 + 16 17 18 3059 + + 8 8 8 8 + 14 3988 3989 3990 + 5368 5369 19 1539 + 3991 3991 3991 3991 + 115 116 5364 5365 + 117 118 5366 5367 + + 5238 5239 5240 5241 + 5244 5245 11 5247 + 202 7 8 9 + 5250 5251 14 5253 + 30 31 7 9 + 21 22 114 113 + 20 23 23 20 + + 3055 204 0 0 + 205 214 0 0 + + 5538 5539 5540 0 + 5544 5545 5546 5553 + 5550 5551 5552 5554 + 5541 5542 5543 5549 + 5547 5548 5536 5537 + + 2121 2123 5530 5531 + 2131 2133 5534 5535 + 3251 3252 3249 3250 + 3255 3256 3253 3254 + 2124 2132 2125 0 + 2128 0 2126 0 + 2129 2122 2130 0 + + 0 1826 1827 0 + 1829 1830 1831 1832 + 1833 1834 1835 1836 + 2925 2926 2929 2930 + 0 2928 2931 0 + 0 0 1843 1844 + 1837 1838 1845 1846 + 1839 1840 1847 1848 + 1841 1842 1849 1850 + 2933 2935 2937 2940 + 2934 2936 2938 2941 + 0 0 2939 2942 + + 0 1826 1827 0 + 5384 1830 1831 5385 + 5388 1834 1835 5389 + 5372 2926 2929 5373 + 0 2928 2931 0 + 0 0 1843 1844 + 1837 1838 1845 1846 + 5386 5387 5392 5393 + 5390 5391 5396 5397 + 5370 5371 5374 5375 + 2934 2936 2938 2941 + 0 0 2939 2942 + + 0 5257 5258 0 + 5262 5263 5264 5265 + 0 0 5254 5255 + 5242 5243 5260 5261 + 5248 5249 5266 5267 + + 0 5257 5258 0 + 5376 5263 5264 5377 + 0 0 5254 5255 + 5242 5243 5260 5261 + 5378 5379 5380 5381 + + 0 0 2909 2910 + 2921 2922 2911 2912 + 2923 2924 1834 11 + 2913 2914 0 0 + 2915 2916 2917 2918 + 11 1835 2919 2920 + + 3139 3140 0 0 + 3143 3144 3149 0 + 11 3147 3151 3152 + 5368 5369 3155 3156 + 11 5368 5369 1835 + + 0 0 3141 3142 + 0 3150 3145 3146 + 3153 3154 3148 11 + 3157 3158 5368 5369 + 1834 5368 5369 11 + 3044 3045 3046 3047 3048 3049 3050 3051 - 3052 3053 3055 26 - 3056 3057 3059 0 + 3052 3053 207 5532 + 3056 3057 208 5533 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 - 4033 4034 4035 214 - 3261 3262 0 0 - 3265 3266 0 0 - 115 116 166 167 - 117 118 168 169 - - 2121 2122 2123 0 - 2126 2127 2128 1517 - 2131 2132 2133 1518 - 2124 2125 2469 4780 - 2129 2130 0 0 - - 149 150 3263 3264 - 151 152 3267 3268 - 3249 3250 3251 3252 - 3253 3254 3255 3256 - 242 243 244 0 - 245 0 254 0 - 255 256 257 0 - 170 171 0 0 - - 3988 3989 3990 3991 - 2134 2135 3429 3430 - 3427 3428 3431 3432 - 3454 3455 3456 3457 - 4750 4751 0 0 - 4752 4753 4756 4757 - 4754 4755 4758 4759 - 4760 4761 0 0 - 4762 4763 0 0 - - 2909 2910 2913 2914 - 2911 2912 2915 2916 - 1834 0 0 1835 - 2917 2918 2921 2922 - 2919 2920 2923 2924 - 0 1826 1827 0 - 1829 1830 1831 1832 - 1833 1834 1835 1836 - 3139 3140 3141 3142 - 3143 3144 3145 3146 - 0 3147 3148 0 - 3149 0 0 3150 - 3151 3152 3153 3154 - 3155 3156 3157 3158 - 0 1835 1834 0 - 1837 1838 1843 1844 - 1839 1840 1845 1846 - 1841 1842 1847 1848 - 0 0 1849 1850 - 2925 2926 2929 2930 - 0 2928 2931 0 - 2933 2935 2937 2940 - 2934 2936 2938 2941 - 0 0 2939 2942 + 4033 4034 4035 0 + 5528 5529 0 0 + + ;; Walljump + Unisolid + Ice Spike 4104 4105 4106 0 4109 4110 4111 0 @@ -117,28 +143,30 @@ 2050 2051 2060 2061 2055 2056 2065 2066 - 2052 2053 2054 4243 - 2057 2058 2059 4244 + 2052 2053 2054 5422 + 2057 2058 2059 5423 2062 2063 2064 0 2067 2068 2069 0 + 5428 5429 5430 0 2072 2073 2074 0 - 2075 2068 2076 2070 + 5411 2068 5415 2070 2077 2073 2078 2071 - 4241 4242 4247 4248 - 4249 4250 4262 4263 - 4256 4258 4259 4260 - 4245 2079 4246 0 - 4251 4252 4253 4254 - 4255 4257 0 0 - - 2178 2115 3039 2119 - 2114 3038 2120 3040 - - 2406 3041 3042 3043 + 5416 5417 5408 5409 + 5412 5413 5431 5432 + 5421 5427 5420 5426 + 5418 5419 5424 5425 + 5410 5414 0 0 + + 5400 5401 5402 5403 + 5404 5405 5406 5407 + + 5287 5284 5285 5286 2155 2156 2157 2163 2158 2159 2154 0 2160 2161 2162 0 + + ;; Underground Snow 2384 2385 2386 2949 2387 2388 2389 2950 @@ -149,7 +177,57 @@ 2957 2962 2398 2396 2958 2961 2399 2397 2959 2960 2997 2998 + + 0 2986 2990 0 + 2983 2987 2991 2994 + 2984 2988 2992 2995 + 2962 2391 2391 2957 + 2985 2989 2993 2996 + 0 0 2963 2969 + 2975 2979 2964 2970 + 2976 2980 2965 2971 + 2977 2981 2966 2972 + 2962 2957 2962 2957 + 2978 2982 2967 2973 + 0 0 2968 2974 + + 0 2986 2990 0 + 7053 2987 2991 7054 + 5639 2988 2992 5640 + + 0 0 2963 2969 + 2975 2979 2964 2970 + 5604 5605 5636 5673 + 5614 5629 5684 5695 + + 6980 6981 0 0 + 6984 6985 6986 6987 + 2391 2992 6990 6991 + 0 0 6978 6979 + 6988 6989 6982 6983 + 6992 6993 2988 2391 + + 6994 6995 0 0 + 6998 6999 7006 0 + 2391 7003 7010 7011 + 0 2391 7014 7015 + 0 0 2391 2992 + 0 0 6996 6997 + 0 7009 7000 7001 + 7012 7013 7004 2391 + 7016 7017 2391 0 + 2988 2391 0 0 + 7018 7019 7020 0 + 7025 0 7027 0 + 7032 7033 7034 0 + 7039 7040 0 0 + 7046 7047 0 0 + 7021 7022 7023 7024 + 7028 7029 7030 7031 + 7035 7036 7037 7038 + 7042 7043 7044 7045 + 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 @@ -160,91 +238,67 @@ 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 + 4077 0 0 0 + + ;; Snowfort + Ice Chunck + + 3930 3931 3932 3939 + 3933 3934 3935 3941 + 3936 3937 3938 3940 + 5310 5311 5312 3942 + 5313 3945 5314 5315 + 3944 3943 5316 5317 + 5318 5319 5320 5321 + 3947 3946 5322 5323 + 5324 5325 5326 5327 + 5328 5329 5330 5331 + 5332 5333 5288 5289 + 5290 5291 5292 0 - 4077 0 2963 2969 - 2975 2979 2964 2970 - 2976 2980 2965 2971 - 2977 2981 2966 2972 - 2978 2982 2967 2973 - 0 0 2968 2974 - 0 2986 2990 0 - 2983 2987 2991 2994 - 2984 2988 2992 2995 - 2985 2989 2993 2996 - 3588 3589 3590 3591 - 3592 3593 3594 3595 - 2988 0 0 2992 - 3596 3597 3598 3599 - 3600 3601 3602 3603 - 3604 3605 3606 3607 - 3608 3609 3610 3611 - 0 3612 3613 0 - 3614 0 0 3615 - 3616 3617 3618 3619 - 3620 4764 4765 4766 - 0 2992 2988 0 - 4768 4769 4772 4773 - 4770 4771 4774 4775 - 4776 4777 0 0 - 4778 4779 0 0 - 153 154 155 0 - 156 0 157 0 - 158 159 161 0 - 162 163 0 0 - 164 165 0 0 - 4781 4782 4785 4787 - 4783 4784 4786 4788 - 4789 4790 4793 4794 - 4791 4792 4795 4796 - - 3930 3931 3932 3939 - 3933 3934 3935 3941 - 3936 3937 3938 3940 - 2333 2334 2335 3942 - 2336 3945 2337 2338 - 3944 3943 2339 2340 - 2341 2342 2343 2344 - 3947 3946 2345 2346 - 2347 2348 2349 2350 - 2351 2352 2353 2354 - 2355 2356 2357 2358 - 2359 2360 2361 0 - 3948 3949 3950 3951 - 3954 3955 3956 3957 - 3960 3961 3962 3952 - 2362 2363 2364 3958 - 2365 3953 2366 2367 - 3964 3963 2368 2369 - 2370 2371 2372 2373 - 3965 3959 2374 2375 - 2376 2377 2378 2379 - 2174 2175 2176 2177 - 2080 2081 2082 2083 - 2084 2927 2932 0 - 3966 3967 3968 3054 - 3969 3970 3971 3058 - 3667 3668 3669 3670 - 3671 3672 3673 3674 - - 3972 3973 3974 3986 - 3976 3977 3978 3987 - 3980 3981 3982 3985 - 3983 3675 3676 3984 - 3677 3678 3679 3680 - 4036 4700 3979 4701 - 4702 4703 4704 4705 - 4706 4707 4708 3975 - 4709 4710 4711 4712 - 4713 4714 4715 4716 - 4717 4718 4719 4720 - 4721 4722 4723 0 + 3948 3949 3950 3951 + 3954 3955 3956 3957 + 3960 3961 3962 3952 + 5338 5339 5294 3958 + 5295 3953 5296 5298 + 3964 3963 5299 5300 + 5334 5335 5336 5337 + 3965 3959 5340 5341 + 5342 5343 5344 5345 + 5346 5347 5348 5349 + 5350 5351 5352 5353 + 5354 5355 5356 0 + + 3966 3967 3968 5297 + 3969 3970 3971 5301 + 5302 5303 5304 5305 + 5306 5307 5308 5309 + + 3972 3973 3974 5212 + 3976 3977 3978 5213 + 3980 3981 3982 3984 + 5210 5207 5211 5221 + 7195 7196 7197 7198 + 7199 7200 7201 7202 + 7203 7204 7207 7209 + 7205 7206 7208 7210 + 0 0 7211 7212 + 0 0 7213 7214 + 3987 3983 5232 5236 + 3975 3979 5235 5234 + 5225 5209 5224 5228 + 5206 5208 5217 3985 + 5233 5229 3986 0 + 5214 5215 5216 0 + 5218 5219 5220 0 + 5222 5223 0 0 + 5226 5227 0 0 + 5230 5231 0 0 ) ) - + (tilegroup (name (_ "Snow Background")) (tiles - 2185 2186 2180 2181 2193 2194 2188 2189 2197 2187 2195 2196 @@ -252,27 +306,22 @@ 2182 2183 2184 2179 2190 2191 2192 2201 2198 2199 2200 2202 - - 3541 3542 3543 3544 + + 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 - + 122 209 123 0 124 210 125 0 1345 1346 1344 0 106 107 108 0 109 110 111 0 - 24 25 112 0 + 5203 5204 24 0 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 - - 85 86 87 88 - 89 90 91 92 - 3419 3420 3421 3422 - 3423 3424 3425 3426 2611 2612 2613 2614 2619 2620 2621 2622 @@ -291,69 +340,110 @@ ) (tilegroup - (name (_ "Crystal")) - (tiles - 2437 2409 2410 2442 - 2438 2423 2424 2443 - 2449 2451 2452 2454 - 2463 2465 2466 2468 - 2445 2493 2494 2450 - 2446 2507 2508 2453 - - 2473 2474 2475 2476 - 2487 2488 2489 2490 - 2599 2600 2601 2602 - 2615 2616 2617 2618 - 0 2632 2633 0 - 2419 2420 2417 2418 - 2433 2434 2431 2432 - 2447 2448 2535 2538 - 2536 2537 2551 2554 - 2552 2553 2567 2570 - 2568 2569 2486 2483 - 2584 2585 2444 2441 - - 2407 2408 2411 2412 - 2421 2422 2425 2426 - 2435 2436 2439 2440 - 2477 2478 2481 2482 - 2491 2492 2495 2496 - 2505 2506 2509 2510 - 2413 2414 2415 2416 - 2427 2428 2429 2430 - 2497 2498 2499 2500 - 2511 2512 2513 2514 - 2455 2456 2461 2462 - 2457 2458 2464 2467 - - 2479 2480 2519 2520 - 2501 2502 2521 2522 - 2484 2485 4231 4232 - 2503 2504 4233 4234 - 4225 4226 4235 4236 - 4227 4228 4237 4238 - 4229 4230 4239 4240 - - 2647 2648 2649 2665 - 2650 2651 2652 2666 - 2653 2654 2655 2663 - 2656 2657 2658 2664 - 2659 2660 0 0 - 2661 2662 0 0 - - 0 2667 0 0 - 2668 2669 2670 2671 - 2672 2673 2674 2675 - 2676 2677 2678 3531 - 3532 3533 3534 0 - 3535 3536 3537 0 - 4724 4725 4726 0 - 4727 4728 4729 0 - 4730 4731 0 0 - 3538 3539 0 0 - 0 3540 0 0 - ) - ) + (name (_ "Crystal")) + (tiles + 4723 4724 4725 4726 + 4736 4737 4738 4739 + 4749 4750 4751 4752 + 4762 4763 4764 4765 + 4775 4776 4777 4778 + 4788 4789 4790 4791 + + 4723 4724 4725 4726 + 7221 7222 7223 7224 + 4788 4789 4790 4791 + 7215 7215 4766 4740 + 7216 7225 4753 4727 + 7217 7220 0 0 + 7218 0 0 0 + 7219 0 0 0 + 7220 0 0 0 + + 4728 4729 4730 4731 + 4741 4742 4743 4744 + 4754 4755 4756 4757 + 4767 4768 4769 4770 + + 4732 4733 4734 4735 + 4745 4746 4747 4748 + 4758 4759 4760 4761 + 4771 4772 4773 4774 + 4784 4785 0 0 + 4797 4798 0 0 + + 4728 4729 4730 4731 + 5023 4742 4743 5024 + 5025 4755 4756 5026 + 5027 4768 4769 5028 + + 4732 4733 4734 4735 + 4745 4746 5029 5030 + 5033 5034 5031 5032 + 5035 5036 4773 4774 + 4784 4785 0 0 + 4797 4798 0 0 + + 7226 7227 7228 7229 + 7230 7231 7232 7233 + 7234 7235 7236 7237 + 7238 7239 7240 7241 + 7242 7243 7244 0 + 7245 7246 7247 0 + 7248 7249 7250 0 + 7251 7252 0 0 + + 7277 7278 7279 7280 + 7282 7283 7284 7285 + 7287 7288 7289 7290 + 7292 7293 7294 7295 + 7297 7298 7299 7300 + 7281 7286 7291 7296 + 7301 0 0 0 + + 4814 4815 4816 4817 + 4824 4825 4826 4827 + 4834 4835 4836 4837 + 4844 4845 4846 4847 + 4854 4855 4856 4857 + 4864 4865 4866 4867 + + 4814 4815 4816 4817 + 4824 4825 4826 4827 + 4834 4835 4836 4837 + 4844 4845 4846 4847 + 4854 4855 4856 4857 + 4864 4865 4866 4867 + 4814 4815 4816 4817 + 4874 4875 4878 4879 + 4884 4885 4888 4889 + 4864 4865 4866 4867 + 4822 4823 0 0 + 4832 4833 0 0 + 4842 4843 0 0 + 4872 4873 0 0 + 4882 4883 0 0 + 4892 4893 0 0 + + 4894 4895 4896 4909 + 4900 4901 4902 4915 + 4897 4898 4899 4908 + 4903 4904 4905 4914 + 4906 4907 0 0 + 4912 4913 0 0 + + 0 4919 0 0 + 4925 4926 4927 4928 + 4932 4933 4934 4935 + 4939 4940 4941 4942 + 4936 4937 4938 0 + 4943 4944 4945 0 + 4946 4947 4948 0 + 4951 4952 4953 0 + 4956 4957 0 0 + 4954 4955 0 0 + 0 4960 0 0 + ) + ) (tilegroup (name (_ "Forest")) @@ -363,157 +453,227 @@ 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 - 3621 3622 3623 3624 + 1000 1001 1002 1003 + 3621 3622 3623 3624 + 1723 1724 1725 1726 1817 1013 1014 1820 - 4378 4379 0 4380 - 1632 1633 1634 1635 - 1636 1637 1638 1639 - 1640 1641 1644 1647 - 1642 1643 1645 1648 - 1819 0 1646 1649 - 1818 1533 1534 1535 - 3472 1536 1537 1538 - 3462 3463 3464 3465 - 3466 3467 3468 3469 - 3470 3471 0 0 - 4381 4382 1735 1736 + 1819 1038 1000 1003 + 1818 5560 5559 5562 + 0 1533 1534 1535 + 0 1536 1537 1538 + + 0 0 1038 1819 + 4317 4318 1044 1738 + 1035 1034 1033 1818 + 1041 1040 1039 1009 + 1000 1003 1038 1038 + 1036 1037 1737 4327 + 1040 1041 1039 3472 + + 5606 5607 5608 0 + 5613 0 5615 0 + 5620 5621 5622 0 + 5627 5628 5637 5638 + 5634 5635 5632 5633 + 5609 5610 5611 5612 + 5616 5617 5618 5619 + 5623 5624 5625 5626 + 5630 5631 0 0 + 0 1060 1061 0 1063 1064 1065 1066 1067 1068 1069 1070 - 1045 1046 1051 1052 - 1047 1048 1053 1054 - 1049 1050 1055 1056 - 1042 1043 1057 1058 - 1313 1314 1317 1318 - 1315 1316 1319 1320 - 4797 4798 0 0 - 4799 4800 0 0 - 4801 4802 4803 4804 - 4805 4806 0 0 - 1035 1034 1029 1030 - 1041 1040 1031 1032 - 1036 1037 1737 1038 - 1020 1021 1022 1044 - 1023 1024 1025 1033 - 1026 1027 1028 1039 + 4318 1009 1009 4317 + 3462 3463 3464 3465 + 0 0 1051 1052 + 1045 1046 1053 1054 + 1047 1048 1055 1056 + 1049 1050 1057 1058 + 4318 4317 4318 4317 + 3468 3469 3466 3467 + 0 0 3470 3471 + + 0 1060 1061 0 + 6044 1064 1065 6045 + 6048 1068 1069 6049 + 0 0 1051 1052 + 1045 1046 1053 1054 + 6046 6047 6052 6053 + 6050 6051 6056 6057 + + 0 5566 5567 0 + 5571 5572 5573 5574 + 0 0 5563 5564 + 5555 5556 5569 5570 + 5557 5558 5575 5576 + + 0 5566 5567 0 + 6060 5572 5573 6061 + 0 0 5563 5564 + 5555 5556 5569 5570 + 6062 6063 6064 6065 + + 6006 6007 0 0 + 6010 6011 6012 6013 + 1009 1069 6016 6017 + 0 0 6004 6005 + 6014 6015 6008 6009 + 6018 6019 1068 1009 + + 6020 6021 0 0 + 6024 6025 6032 0 + 1009 6029 6036 6037 + 1013 1014 6040 6041 + 1009 1013 1014 1069 + 0 0 6022 6023 + 0 6035 6026 6027 + 6038 6039 6030 1009 + 6042 6043 1013 1014 + 1068 1013 1014 1009 + 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 - 4317 4318 4319 4320 - 4321 4322 4323 4324 - 4325 4326 4327 1738 + 4321 4322 4319 4320 + 4325 4326 4323 4324 4328 4329 4330 4331 - 4362 4363 4364 4365 - 4366 4367 4368 4369 - 4370 4371 4372 4373 - 4374 4375 4376 4377 + 5586 5587 5588 5589 + 5591 5592 5593 5594 + 5596 5597 5598 5599 + 5600 5601 5602 5603 + 5590 5595 1042 1043 + + ;; Branch + Spike Vine + Foreground + + 4961 4962 4963 0 + 4964 4965 4966 0 + 1569 1571 4119 4120 1570 1573 4121 4122 1572 1574 4123 4124 - 3435 3436 3437 0 - - 5001 5002 5003 0 - 5004 0 5005 0 - 5006 5007 5008 0 - 5009 5010 0 0 - 5011 5012 0 0 - 5013 5014 5017 5018 - 5015 5016 5019 5020 - 5021 5022 5025 5026 - 5023 5024 5027 5028 - 5029 5030 0 0 - - 4825 4826 4829 4830 - 4827 4828 4831 4832 - 1068 0 0 1069 - 4833 4834 4837 4838 - 4835 4836 4839 4840 - 4841 4842 4846 4847 - 4843 4844 4848 4849 - 0 4845 4850 0 - 4851 0 0 4856 - 4852 4853 4857 4858 - 4854 4855 4859 4860 - 0 1069 1068 0 - - 1746 1747 1748 0 - 1749 1750 1751 0 - 1972 1976 1980 1984 1973 1977 1981 1985 1974 1978 1982 1986 1975 1979 1983 1987 - 464 465 466 0 - 470 471 467 0 - 472 468 469 0 - + 5577 5578 5583 5579 + 5582 5581 0 0 + 5580 0 0 0 + 5584 0 0 0 + 5585 0 0 0 + + 7055 7056 7057 0 + 7061 7062 7063 0 + 7067 7068 7069 0 + 7058 7059 7070 7071 + 7064 7065 7060 7066 + + ;; Underground Forest + 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1879 1880 + 1860 1861 1862 1863 3479 3480 3481 3482 - 3473 3474 0 0 - 3475 3476 3477 3478 - 3483 0 0 0 - 3484 3485 3488 3489 - 3486 3487 0 0 - 4487 4488 4489 4490 - 4491 4492 4493 0 - 1916 1917 1920 1921 - 1918 1919 1922 1923 - 1924 1925 3490 0 - 3491 3492 3493 3494 - 3495 3496 3497 3498 - 3499 3500 0 0 + + 0 0 3483 3483 + 7136 7137 3484 3484 + 3473 3474 3485 3486 + 3475 3476 3487 3488 + 1860 1863 3483 3483 + 3478 3477 3489 7142 + 3476 3475 3487 0 + + 7048 7049 7080 7095 + 7051 7052 7170 7172 + 7050 7041 7167 0 + + 7072 7073 7074 0 + 7079 0 7081 0 + 7086 7087 7088 0 + 7093 7094 0 0 + 7100 7101 0 0 + 7075 7076 7077 7078 + 7082 7083 7084 7085 + 7089 7090 7091 7092 + 7096 7097 7098 7099 + 0 1890 1891 0 1892 1893 1894 1895 1896 1897 1898 1899 + 7137 1869 1869 7136 + 3491 3492 3493 3494 0 0 3507 3508 3501 3502 3509 3510 3503 3504 3511 3512 3505 3506 3513 3514 - 4505 4506 4507 4508 - 4509 4510 4511 4512 - 4513 4514 4515 4516 - 4517 4518 4519 4520 - 4521 4522 4523 4524 - 4525 4526 4527 4528 - 4529 4530 4531 4532 - 4533 4534 4535 4536 - 4537 4538 0 0 - 4905 4906 4909 4910 - 4907 4908 4911 4912 - 4913 4914 0 0 - 4915 4916 0 0 - - 4929 4930 4933 4934 - 4931 4932 4935 4936 - 1897 0 0 1898 - 4937 4938 4941 4942 - 4939 4940 4943 4944 - 4945 4946 4950 4951 - 4947 4948 4952 4953 - 0 4949 4954 0 - 4955 0 0 4960 - 4956 4957 4961 4962 - 4958 4959 4963 4964 - 0 1898 1897 0 - - 5031 5032 5033 0 - 5034 0 5035 0 - 5036 5037 5038 0 - 5039 5040 0 0 - 5041 5042 0 0 - 5043 5044 5047 5048 - 5045 5046 5049 5050 - 5051 5052 5055 5056 - 5053 5054 5057 5058 - + 7137 7136 7137 7136 + 3497 3498 3495 3496 + 0 0 3499 3500 + + 0 1890 1891 0 + 7183 1893 1894 7184 + 7187 1897 1898 7188 + 0 0 3507 3508 + 3501 3502 3509 3510 + 7185 7186 7191 7192 + 7189 7190 7193 7194 + + + 7145 7146 0 0 + 7149 7150 7151 7152 + 1869 1898 7155 7156 + 0 0 7143 7144 + 7153 7154 7147 7148 + 7157 7158 1897 1869 + + 7159 7160 0 0 + 7163 7164 7171 0 + 1869 7168 7175 7176 + 1873 1874 7179 7180 + 1869 1873 1874 1898 + 0 0 7161 7162 + 0 7174 7165 7166 + 7177 7178 7169 1869 + 7181 7182 1873 1874 + 1897 1873 1874 1869 + + 7138 7139 7140 7141 + 7102 7103 7104 7105 + 7106 7107 7108 7109 + 7110 7111 7112 7113 + 7114 7115 7116 7117 + 7118 7119 7120 7121 + 7122 7123 7124 7125 + 7126 7127 7128 7129 + 7130 7131 7132 7133 + 7134 7135 0 0 + ) + ) + + (tilegroup + (name (_ "Forest Background")) + (tiles + 5645 5646 5663 5664 + 5643 5644 5665 5674 + 5675 5676 5685 5686 + 5666 5667 5668 5687 + 5677 0 5679 5680 + 5688 5689 5690 5681 + 5641 5642 5647 5648 + 5652 5653 5669 5670 + 5655 5656 5657 5647 + 5661 5658 5660 5659 + 5649 5678 5650 5682 + 5691 5654 5692 5683 + 5693 5694 5671 5672 + 5651 5662 0 0 + 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 @@ -522,33 +682,14 @@ 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 - 1936 1937 1938 1939 + + 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 - ) - ) - (tilegroup - (name (_ "Forest Background")) - (tiles - 4339 4340 2005 2006 - 4337 4338 2007 2008 - 2009 2010 2011 2012 - 473 474 475 2013 - 476 0 4356 4353 - 477 478 4357 4354 - 4333 4334 4341 4342 - 4335 4336 4349 4350 - 4358 4359 4332 4345 - 4348 0 4347 4346 - 4343 101 4344 4355 - 1352 2014 1353 1351 - 1354 1821 4351 4352 - 4360 4361 0 0 - - 402 403 404 405 + 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 @@ -562,14 +703,14 @@ 446 447 448 449 450 451 452 453 454 455 456 457 - - 323 324 322 360 - 325 326 0 0 - 327 328 0 0 + + 323 324 322 0 + 325 326 360 0 + 327 328 6609 0 329 330 0 0 - 2404 2043 2044 2164 - 2405 2045 2046 2165 - + 5996 5997 5998 5999 + 6000 6001 6002 6003 + 2460 2470 2471 2631 2634 2515 2516 2517 2518 4153 4154 4155 @@ -586,416 +727,476 @@ 2595 2596 2597 2598 2603 2604 2605 2606 2607 2608 2609 2610 - - 0 0 1071 1072 - 0 1073 1074 1075 - 0 1077 1078 1079 - 1081 1082 1083 1084 - 1087 1088 1089 1090 - 1093 1094 1095 1096 - 1099 1100 1101 1102 - 1105 1106 1107 1108 - 1111 1112 1113 1114 - 0 0 1117 1118 - 0 0 1119 1120 - 0 0 1121 1122 - 0 0 1123 1124 - 1076 0 0 0 - 1080 0 0 0 - 1085 1086 0 0 - 1091 1092 0 0 - 1097 1098 0 0 - 1103 1104 0 0 - 1109 1110 0 0 - 1115 1116 0 0 - - 0 0 0 1125 - 0 0 1127 1128 - 0 1131 1132 1133 - 0 1137 1138 1139 - 1143 1144 1145 1146 - 1151 1152 1153 1154 - 1159 1160 1161 1162 - 1167 1168 1169 1170 - 1175 1176 1177 1178 - 0 0 0 1183 - 0 0 0 1185 - 0 0 0 1187 - 0 0 0 1189 - 1126 0 0 0 - 1129 1130 0 0 - 1134 1135 1136 0 - 1140 1141 1142 0 - 1147 1148 1149 1150 - 1155 1156 1157 1158 - 1163 1164 1165 1166 - 1171 1172 1173 1174 - 1179 1180 1181 1182 - 1184 0 0 0 - 1186 0 0 0 - 1188 0 0 0 - 1190 0 0 0 - - 0 0 1194 0 - 0 1199 1200 0 - 0 1206 1207 0 - 0 1213 1214 0 - 1220 1221 1222 0 - 1229 1230 1231 0 - 1238 1239 1240 0 - 1247 1248 1249 0 - 1198 0 0 0 - 1204 1205 0 0 - 1211 1212 0 0 - 1218 1219 0 0 - 1226 1227 1228 0 - 1235 1236 1237 0 - 1244 1245 1246 0 - 1253 1254 1255 0 - 1191 1192 1193 0 - 1195 1196 1197 0 - 1201 1202 1203 0 - 1208 1209 1210 0 - 1215 1216 1217 0 - 1223 1224 1225 0 - 1232 1233 1234 0 - 1241 1242 1243 0 - 1250 1251 1252 0 - 1256 1257 1258 0 - 1259 1260 1261 0 - 1262 1263 1264 0 - 1265 1266 1277 0 - - 3625 3626 3637 3638 - 3627 3628 3639 3640 - 3629 3630 3641 3642 - 3631 3632 3643 3644 - 3633 3634 3645 3646 - 3635 3636 3647 3648 - 3649 3650 3651 0 - 3652 3653 3654 0 - 3655 3656 3657 0 - 3658 3659 3660 0 - 3661 3662 3663 0 - 3664 3665 3666 0 - ) - ) - -(tilegroup + + 0 0 5919 5920 + 0 5924 5925 5926 + 0 5930 5931 5932 + 5935 5936 5937 5938 + 5941 5942 5943 5944 + 5947 5948 5949 5950 + 5953 5954 5955 5956 + 5959 5960 5961 5962 + 5965 5966 5967 5968 + 0 0 5973 5974 + 0 0 5979 5980 + 0 0 5985 5986 + 0 0 5991 5992 + 5927 0 0 0 + 5933 0 0 0 + 5939 5940 0 0 + 5945 5946 0 0 + 5951 5952 0 0 + 5957 5958 0 0 + 5963 5964 0 0 + 5969 5970 0 0 + + 0 0 0 5816 + 0 0 5823 5824 + 0 5830 5831 5832 + 0 5838 5839 5840 + 5845 5846 5847 5848 + 5853 5854 5855 5856 + 5861 5862 5863 5864 + 5869 5870 5871 5872 + 5877 5878 5879 5880 + 0 0 0 5888 + 0 0 0 5896 + 0 0 0 5904 + 0 0 0 5912 + 5817 0 0 0 + 5825 5826 0 0 + 5833 5834 5835 0 + 5841 5842 5843 0 + 5849 5850 5851 5852 + 5857 5858 5859 5860 + 5865 5866 5867 5868 + 5873 5874 5875 5876 + 5881 5882 5883 5884 + 5889 0 0 0 + 5897 0 0 0 + 5905 0 0 0 + 5913 0 0 0 + + 0 0 5707 0 + 0 5715 5716 0 + 0 5724 5725 0 + 0 5733 5734 0 + 5741 5742 5743 0 + 5750 5751 5752 0 + 5759 5760 5761 0 + 5768 5769 5770 0 + 5711 0 0 0 + 5720 5721 0 0 + 5729 5730 0 0 + 5738 5739 0 0 + 5747 5748 5749 0 + 5756 5757 5758 0 + 5765 5766 5767 0 + 5774 5775 5776 0 + 5699 5700 5701 0 + 5708 5709 5710 0 + 5717 5718 5719 0 + 5726 5727 5728 0 + 5735 5736 5737 0 + 5744 5745 5746 0 + 5753 5754 5755 0 + 5762 5763 5764 0 + 5771 5772 5773 0 + 5780 5781 5782 0 + 5789 5790 5791 0 + 5798 5799 5800 0 + 5807 5808 5809 0 + + 6068 6069 6070 6071 + 6075 6076 6077 6078 + 6082 6083 6084 6085 + 6089 6090 6091 6092 + 5985 5986 5904 5905 + 5991 5992 5912 5913 + 6072 6073 6074 0 + 6079 6080 6081 0 + 6086 6087 6088 0 + 6093 6094 6095 0 + 5798 5799 5800 0 + 5807 5808 5809 0 + ) + ) + + (tilegroup (name (_ "Corrupted Forest")) (tiles - 1423 1424 1425 1426 + 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 - 3923 3924 3925 3926 + 1423 1424 1425 1426 + 3923 3924 3925 3926 + 6193 6194 6195 6196 + 6199 1432 1432 6202 + 6201 6541 1423 1426 + 6200 6206 6205 6208 + + 6545 3415 3414 6541 + 3417 3373 3374 6542 + 3378 3379 3380 6544 + 6541 1423 1426 6547 + 6543 3375 3376 6541 + 3378 3379 3380 6548 + + 6311 6312 6313 0 + 6318 0 6320 0 + 6325 6326 6327 0 + 6332 6333 0 0 + 6339 6340 0 0 + 6314 6315 6316 6317 + 6321 6322 6323 6324 + 6328 6329 6330 6331 + 6335 6336 6337 6338 + 6342 6343 0 0 + 0 1443 1444 0 1445 1446 1447 1448 1449 1450 1451 1452 - - 3417 3373 3374 3375 - 3378 3379 3380 3381 - 3376 3377 3414 3415 - 3382 3383 3390 3391 + 3415 1432 1432 3414 + 3406 3407 3408 3409 + 0 0 3390 3391 3384 3385 3392 3393 3386 3387 3394 3395 3388 3389 3396 3397 - 4807 4808 4811 4812 - 4809 4810 4813 4814 - 4815 4816 0 0 - 4817 4818 0 0 - 4819 4820 4821 4822 - 4823 4824 0 0 - - 4861 4862 4865 4866 - 4863 4864 4867 4868 - 1450 0 0 1451 - 4869 4870 4873 4874 - 4871 4872 4875 4876 - 4877 4878 4882 4883 - 4879 4880 4884 4885 - 0 4881 4886 0 - 4887 0 0 4892 - 4888 4889 4893 4894 - 4890 4891 4895 4896 - 0 1451 1450 0 - - 3398 3399 3400 3401 - 3406 3407 3408 3409 - 3402 3403 3404 3405 + 3415 3414 3415 3414 3410 3411 3412 3413 - 4383 0 3416 3418 - 491 492 493 494 - 495 496 497 498 - 4384 4385 4386 4387 - 1650 1651 1652 1653 - 1654 1655 1656 1657 - 1658 1660 1662 1665 - 1659 1661 1663 1666 - 0 0 1664 1667 - 4388 4389 4390 4391 - 4392 4393 4394 4395 - 4396 4397 4398 4399 - 4400 4401 4402 4403 - 4404 4405 4406 4407 - 4408 4409 4410 4411 - 4412 4413 4414 4415 - 4416 4417 4418 4419 - 4420 4421 4422 4423 - 4424 4425 4426 4427 - 4428 4429 4430 4431 - 4432 4433 0 0 - - 5059 5060 5061 0 - 5062 0 5063 0 - 5064 5065 5066 0 - 5067 5068 0 0 - 5069 5070 0 0 - 5071 5072 5075 5076 - 5073 5074 5077 5078 - 5079 5080 5083 5084 - 5081 5082 5085 5086 - 5087 5088 0 0 - - 1746 1747 1748 0 - 1749 1750 1751 0 - - 1998 2024 2025 2026 - 1999 1668 1669 2027 - 2000 1670 1671 2028 - 2023 2030 2031 2029 - 1672 1673 1674 0 - 1678 1679 1675 0 - 1680 1676 1677 0 - - 1358 1359 1360 0 - 1361 1362 1363 0 - 1364 1365 1366 0 - 458 459 460 1996 - 461 462 463 1997 - - 3687 3688 3689 3690 - 3691 3692 3693 3694 - 3695 3696 3697 3698 - 3699 3700 3701 3702 - 3703 3704 3705 3706 - 3707 3708 3709 3710 - 0 3741 3742 0 - 3743 3744 3745 3746 - 3747 3748 3749 3750 - 3765 3766 3767 3768 - 3751 3752 3757 3758 - 3753 3754 3759 3760 - 3755 3756 3761 3762 - 3769 3770 3771 3772 - 3711 3712 3773 3774 - 3713 3714 3775 3776 - 3715 3716 3728 3729 - 3730 3731 3738 3737 - 3717 3732 3739 3740 - 3735 3733 3738 3737 - 3736 3734 0 0 - 3777 3778 3779 3780 - 3781 3782 3783 3784 - 3785 3786 3787 3788 - 3789 3790 3791 3792 - 3793 3794 3795 3796 - 3797 3798 3799 3800 - 3801 3802 3803 3804 - 3805 3806 3807 3808 - 3809 3810 0 0 - 1926 1927 1930 1931 - 1928 1929 1932 1933 - 1934 1935 3811 0 - 4917 4918 4921 4922 - 4919 4920 4923 4924 - 4925 4926 0 0 - 4927 4928 0 0 - - 4965 4966 4969 4970 - 4967 4968 4971 4972 - 3748 0 0 3749 - 4973 4974 4977 4978 - 4975 4976 4979 4980 - 4981 4982 4986 4987 - 4983 4984 4988 4989 - 0 4985 4990 0 - 4991 0 0 4996 - 4992 4993 4997 4998 - 4994 4995 4999 5000 - 0 3749 3748 0 - - 5089 5090 5091 0 - 5092 0 5093 0 - 5094 5095 5096 0 - 5097 5098 0 0 - 5099 5100 0 0 - 5101 5102 5105 5106 - 5103 5104 5107 5108 - 5109 5110 5113 5114 - 5111 5112 5115 5116 - - 4539 4540 4547 4548 - 4541 4542 4549 4550 - 0 0 4543 4544 - 0 0 4545 4546 - 4551 4552 4555 4557 - 4553 4554 4556 4558 - 4559 4560 4563 4564 - 4561 4562 4565 4566 - 4567 4568 4571 4572 - 4569 4570 4573 4574 - 4575 4576 4577 4578 - 4579 4580 4581 4582 - 4583 4584 4585 4586 - 4587 4588 4589 4590 - 4591 4595 4599 4603 - 4592 4596 4600 4604 - 4593 4597 4601 4605 - 4594 4598 4602 4606 - 3868 3869 0 0 - 3870 3871 0 0 - 3872 1350 0 0 - ) + 0 0 3416 3418 + + 0 6212 6213 0 + 6217 6218 6219 6220 + 0 0 6209 6210 + 6197 6198 6215 6216 + 6203 6204 6221 6222 + + 0 6212 6213 0 + 6721 6218 6219 6722 + 0 0 6209 6210 + 6197 6198 6215 6216 + 6723 6724 6725 6726 + 0 1443 1444 0 + 6705 1446 1447 6706 + 6709 1450 1451 6710 + 0 0 3390 3391 + 3384 3385 3392 3393 + 6707 6708 6713 6714 + 6711 6712 6717 6718 + + 0 0 6271 6272 + 6281 6282 6275 6276 + 6285 6286 1450 1432 + 6273 6274 0 0 + 6277 6278 6279 6280 + 1432 1451 6283 6284 + 0 0 6289 6290 + 0 6302 6293 6294 + 6305 6306 6297 1432 + 6309 6310 1436 1437 + 1450 1436 1437 1432 + 6287 6288 0 0 + 6291 6292 6299 0 + 1432 6296 6303 6304 + 1436 1437 6307 6308 + 1432 1436 1437 1451 + + 6549 6550 6551 6552 + 6553 6554 6555 6556 + 6557 6558 6559 6560 + 6561 6562 6563 6564 + 6565 6566 6567 6568 + 6569 6570 6571 6572 + 6573 6574 6575 6576 + 6577 6578 6579 6580 + 6581 6582 6583 6584 + 6585 6586 6587 6588 + 6589 6590 6591 6592 + 6593 6594 6595 6596 + 6597 6598 6539 6540 + 6546 0 0 0 + + ;; Branch + Spike Vine + Foreground + + 4961 4962 4963 0 + 4964 4965 4966 0 + + 6110 6111 6112 6113 + 6117 6118 6119 6120 + 6124 6125 6126 6127 + 6131 6132 6133 6134 + 6114 6115 6129 6116 + 6123 6122 0 0 + 6121 0 0 0 + 6130 0 0 0 + 6137 0 0 0 + + 6410 6411 6412 0 + 6416 6417 6418 0 + 6422 6423 6424 0 + 6413 6414 6425 6415 + 6419 6420 6426 6421 + + ;; Underground Corrupted Forest + + 6808 6809 6810 6811 + 6822 6823 6824 6825 + 6836 6837 6838 6839 + 6850 6851 6852 6853 + 6864 6865 6866 6867 + 6808 6809 6810 6811 + 6804 6805 6806 6807 + + 0 0 6888 6888 + 6878 6879 6889 6889 + 6880 6881 6893 6891 + 6882 6883 6892 6896 + 6808 6811 6888 6888 + 6884 6885 6890 6897 + 6883 6882 6892 0 + + 6950 6951 6956 6957 + 6953 6954 6959 6960 + 6952 6955 6958 0 + + 6769 6770 6771 0 + 6776 0 6778 0 + 6783 6784 6785 0 + 6790 6791 0 0 + 6797 6798 0 0 + 6772 6773 6774 6775 + 6779 6780 6781 6782 + 6786 6787 6788 6789 + 6793 6794 6795 6796 + + 0 6813 6814 0 + 6826 6827 6828 6829 + 6840 6841 6842 6843 + 6879 6837 6837 6878 + 6854 6855 6856 6857 + 0 0 6818 6819 + 6816 6817 6832 6833 + 6830 6831 6846 6847 + 6844 6845 6860 6861 + 6879 6878 6879 6878 + 6858 6859 6820 6821 + 0 0 6834 6835 + + 0 6813 6814 0 + 6934 6827 6828 6935 + 6938 6841 6842 6939 + 0 0 6818 6819 + 6816 6817 6832 6833 + 6936 6937 6942 6943 + 6940 6941 6946 6947 + + 6731 6732 0 0 + 6735 6736 6737 6738 + 6837 6842 6741 6742 + 0 0 6729 6730 + 6739 6740 6733 6734 + 6743 6744 6841 6837 + + 6745 6746 0 0 + 6749 6750 6757 0 + 6837 6754 6761 6762 + 6851 6852 6765 6766 + 6837 6851 6852 6842 + + 0 0 6747 6748 + 0 6760 6751 6752 + 6763 6764 6755 6837 + 6767 6768 6851 6852 + 6841 6851 6852 6837 + + 6886 6887 6894 6895 + 6898 6899 6900 6901 + 6902 6903 6904 6905 + 6906 6907 6908 6909 + 6910 6911 6912 6913 + 6914 6915 6916 6917 + 6918 6919 6920 6921 + 6922 6923 6924 6925 + 6926 6927 6928 6929 + 6930 6931 0 0 + + 6619 6620 6621 6622 + 6627 6628 6629 6630 + 0 0 6637 6638 + 0 0 6645 6646 + 6651 6652 6653 6654 + 6659 6660 6661 6662 + 6667 6668 6669 6670 + 6675 6676 6677 6678 + 6683 6684 6685 6686 + 6691 6692 6693 6694 + 6623 6624 6625 6626 + 6631 6632 6633 6634 + 6639 6640 6641 6642 + 6647 6648 6649 6650 + 6655 6656 6657 6658 + 6663 6664 6665 6666 + 6671 6672 6673 6674 + 6679 6680 6681 6682 + 6699 6700 0 0 + 6701 6702 0 0 + 6703 6704 0 0 + ) ) + (tilegroup (name (_ "Corrupted Background")) (tiles - 4463 4464 4435 4436 - 4461 4462 4437 4438 - 4439 4440 4441 4442 - 4444 4445 4446 4443 - 4447 0 4448 4477 - 4449 4450 4451 4478 - 4457 4458 4465 4466 - 4459 4460 4473 4474 - 4454 4455 4456 4469 - 4472 0 4471 4470 - 4467 4452 4468 4479 - 4481 4453 4482 4480 - 4483 4484 4475 4476 - 4485 4486 0 0 - - 3812 3813 3814 3815 - 3816 3817 3818 3819 - 3820 3821 3822 3823 - 3824 3825 3826 3827 - 3828 3829 3830 3831 - 3832 3833 3834 3835 - 3836 3837 3838 3839 - 3840 3841 3842 3843 - 3844 3845 3846 3847 - 3848 3849 3850 3851 - 3852 3853 3854 3855 - 3856 3857 3858 3859 - 3860 3861 3862 3863 - 3864 3865 3866 3867 - - 313 314 358 361 - 315 316 0 0 - 317 318 0 0 - 319 320 0 0 - 3681 0 0 3685 - 3682 3683 3684 3686 - - 0 0 0 1278 - 0 0 1280 1281 - 0 0 1284 1285 - 0 0 1288 1289 - 0 0 1292 1293 - 0 1296 1297 1298 - 0 1302 1303 1304 - 0 0 1308 1309 - 0 0 1117 1118 - 0 0 1119 1120 - 0 0 1121 1122 - 0 0 1123 1124 - 1279 0 0 0 - 1282 1283 0 0 - 1286 1287 0 0 - 1290 1291 0 0 - 1294 1295 0 0 - 1299 1300 1301 0 - 1305 1306 1307 0 - 1310 1311 0 0 - - 0 0 0 4607 - 0 0 4609 4610 - 0 4613 4614 4615 - 0 4619 4620 4621 - 0 4625 4626 4627 - 0 4631 4632 4633 - 0 4637 4638 4639 - 0 4643 4644 4645 - 0 0 0 1183 - 0 0 0 1185 - 0 0 0 1187 - 0 0 0 1189 - 4608 0 0 0 - 4611 4612 0 0 - 4616 4617 4618 0 - 4622 4623 4624 0 - 4628 4629 4630 0 - 4634 4635 4636 0 - 4640 4641 4642 0 - 4646 4647 4648 0 - 1184 0 0 0 - 1186 0 0 0 - 1188 0 0 0 - 1190 0 0 0 - - 0 0 0 4649 - 0 0 4650 4651 - 0 4653 4654 4655 - 4658 4659 4660 4661 - 4665 4666 4667 4668 - 4672 4673 4674 4675 - 4679 4680 4681 4682 - 4686 4687 4688 4689 - 4693 4694 4695 4696 - 4652 0 0 0 - 4656 4657 0 0 - 4662 4663 4664 0 - 4669 4670 4671 0 - 4676 4677 4678 0 - 4683 4684 4685 0 - 4690 4691 4692 0 - 4697 4698 4699 0 - 1256 1257 1258 0 - 1259 1260 1261 0 - 1262 1263 1264 0 - 1265 1266 1277 0 - - 3625 3626 3637 3638 - 3627 3628 3639 3640 - 3629 3630 3641 3642 - 3631 3632 3643 3644 - 3633 3634 3645 3646 - 3635 3636 3647 3648 - 3649 3650 3651 0 - 3652 3653 3654 0 - 3655 3656 3657 0 - 3658 3659 3660 0 - 3661 3662 3663 0 - 3664 3665 3666 0 - ) + 6142 6143 6160 6161 + 6140 6141 6162 6171 + 6172 6173 6182 6183 + 6163 6164 6165 6184 + 6174 0 6176 6177 + 6185 6186 6187 6178 + 6138 6139 6144 6145 + 6149 6150 6166 6167 + 6152 6153 6154 6155 + 6158 0 6157 6156 + 6146 6175 6147 6179 + 6188 6151 6189 6180 + 6190 6191 6168 6169 + 6148 6159 0 0 + + 6346 6347 6348 6349 + 6354 6355 6356 6357 + 6362 6363 6364 6365 + 6370 6371 6372 6373 + 6378 6379 6380 6381 + 6386 6387 6388 6389 + 6350 6351 6352 6353 + 6358 6359 6360 6361 + 6366 6367 6368 6369 + 6374 6375 6376 6377 + 6382 6383 6384 6385 + 6390 6391 6392 6393 + 6398 6399 6400 6401 + 6406 6407 6408 6409 + + 6601 6602 6610 0 + 6603 6604 0 0 + 6605 6606 0 0 + 6607 6608 0 0 + 6611 0 0 6614 + 6615 6616 6617 6618 + + 0 0 2471 2631 + 2634 2515 2516 2517 + 2518 4153 4154 4155 + 2529 2530 2531 2532 + 2533 2534 2539 2540 + 2541 2542 2543 2544 + 2545 2546 2547 2548 + 2549 2550 2555 2566 + 2571 2572 2573 2574 + 2575 2576 2577 2578 + 2579 2580 2581 2582 + 2587 2588 2589 2590 + + 0 0 0 6225 + 0 0 6230 6231 + 0 0 6236 6237 + 0 0 6242 6243 + 0 0 6248 6249 + 0 6253 6254 6255 + 0 6259 6260 6261 + 0 0 6266 6267 + 0 0 5973 5974 + 0 0 5979 5980 + 0 0 5985 5986 + 0 0 5991 5992 + 6226 0 0 0 + 6232 6233 0 0 + 6238 6239 0 0 + 6244 6245 0 0 + 6250 6251 0 0 + 6256 6257 6258 0 + 6262 6263 6264 0 + 6268 6269 0 0 + + 0 0 0 6493 + 0 0 6498 6499 + 0 6503 6504 6505 + 0 6509 6510 6511 + 0 6515 6516 6517 + 0 6521 6522 6523 + 0 6527 6528 6529 + 0 6533 6534 6535 + 0 0 0 5888 + 0 0 0 5896 + 0 0 0 5904 + 0 0 0 5912 + 6494 0 0 0 + 6500 6501 0 0 + 6506 6507 6508 0 + 6512 6513 6514 0 + 6518 6519 6520 0 + 6524 6525 6526 0 + 6530 6531 6532 0 + 6536 6537 6538 0 + 5889 0 0 0 + 5897 0 0 0 + 5905 0 0 0 + 5913 0 0 0 + + 0 0 0 6431 + 0 0 6437 6438 + 0 6443 6444 6445 + 6449 6450 6451 6452 + 6456 6457 6458 6459 + 6463 6464 6465 6466 + 6470 6471 6472 6473 + 6477 6478 6479 6480 + 6484 6485 6486 6487 + 6439 0 0 0 + 6446 6447 0 0 + 6453 6454 6455 0 + 6460 6461 6462 0 + 6467 6468 6469 0 + 6474 6475 6476 0 + 6481 6482 6483 0 + 6488 6489 6490 0 + 5780 5781 5782 0 + 5789 5790 5791 0 + 5798 5799 5800 0 + 5807 5808 5809 0 + + 6068 6069 6070 6071 + 6075 6076 6077 6078 + 6082 6083 6084 6085 + 6089 6090 6091 6092 + 6096 6097 6098 6099 + 6103 6104 6105 6106 + 6072 6073 6074 0 + 6079 6080 6081 0 + 6086 6087 6088 0 + 6093 6094 6095 0 + 6100 6101 6102 0 + 6107 6108 6109 0 + ) ) (tilegroup (name (_ "Block + Bonus")) (tiles - 27 28 29 47 - 48 50 49 211 - 77 51 52 212 - 78 62 61 213 - 3159 44 83 2947 - 2948 84 103 128 - 102 140 3161 3162 - 104 105 3160 4434 - 3037 2943 2944 2945 - 2946 3372 1312 0 - + 27 28 29 47 + 48 50 49 211 + 77 51 52 212 + 78 62 61 213 + 3159 44 83 2947 + 2948 84 103 128 + 102 140 3161 3162 + 104 105 3160 7026 + 3037 2943 2944 2945 + 2946 112 1311 0 + 57 58 2841 2842 59 60 2843 2844 1742 1743 2845 2846 @@ -1009,7 +1210,7 @@ 2869 2870 2871 2872 2905 2906 2907 2908 - + 2085 2086 2873 2874 2087 2088 2875 2876 2089 2090 2877 2878 @@ -1021,49 +1222,49 @@ 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 - - 1540 1541 1542 0 - 1543 1544 1545 0 - 1546 1547 1548 0 - 1421 1700 2153 2459 - 1422 1701 1711 1712 - 0 0 1713 1714 - 1705 1706 1707 0 - 1708 1709 1710 0 - 1549 1550 1551 1357 - 1702 1703 1704 1539 - 1715 1716 3448 3449 - 3446 3447 1342 1343 - - 217 218 219 0 - 220 221 222 0 - 223 224 225 0 - 226 227 230 231 - 228 229 63 81 - 0 0 76 126 - 70 71 72 0 - 73 74 75 0 - 232 233 234 235 - 236 237 238 239 - 173 174 134 135 - 200 201 160 240 - - 3915 3916 3917 3918 - 3919 3920 3921 3922 - 3110 3111 3112 3113 - 4005 4006 4007 4008 - 3433 3434 4117 4118 - 2166 2170 0 0 - 2167 2171 0 0 - 2168 2172 0 0 - 2169 2173 0 0 + + 4412 4413 4414 0 + 4421 4422 4423 0 + 4430 4431 4432 0 + 4415 4416 4433 4434 + 4424 4425 4442 4443 + 0 0 5358 5359 + 4439 4440 4441 0 + 4392 4393 4394 0 + 4417 4418 4419 4420 + 4426 4427 4428 4429 + 4444 4445 4446 4447 + 5360 5361 5362 5363 + + 4368 4369 4370 0 + 4377 4378 4379 0 + 4386 4387 4388 0 + 4371 4372 4389 4390 + 4380 4381 4398 4399 + 0 0 4391 4407 + 4395 4396 4397 0 + 4404 4405 4406 0 + 4373 4374 4375 4376 + 4382 4383 4384 4385 + 4400 4401 4402 4403 + 4408 4409 4410 4411 + + 4340 4341 4342 4343 + 4347 4348 4349 4350 + 4354 4355 4356 4357 + 4361 4362 4363 4364 + 4344 4358 4365 0 + 4351 4345 4346 0 + 0 4352 4353 0 + 0 4359 4360 0 + 0 4366 4367 0 ) ) - + (tilegroup (name (_ "Pole + Signs")) (tiles - 136 137 141 142 + 136 137 141 142 138 139 143 144 1600 1601 1604 1605 1602 1603 1606 1607 @@ -1075,23 +1276,22 @@ 1626 1627 1630 1631 1727 1728 1731 1732 1729 1730 1733 1734 - 3992 3993 3996 3997 - 3994 3995 3998 3999 + 3992 3993 3996 3997 + 3994 3995 3998 3999 1822 1823 2400 2401 1824 1825 2402 2403 3163 3164 172 246 3165 3166 247 248 479 480 4125 4126 481 482 4127 4128 - 2380 2381 0 0 - 2382 2383 0 0 - + 5199 5200 0 0 + 5201 5202 0 0 + 1348 1720 1719 1718 79 80 1347 1722 1349 1717 1721 0 2001 2002 2149 2150 2003 2004 2151 2152 - 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 @@ -1108,84 +1308,113 @@ (tilegroup (name (_ "Liquid")) (tiles + + ;; Water + 2019 2140 2141 2142 - 2020 0 0 0 - - 191 192 193 194 - 187 188 189 190 - 183 184 185 186 - 179 180 181 182 - 175 176 177 178 - 195 0 196 0 - 197 198 199 0 - + 2020 2020 2020 2020 + + 191 192 193 194 + 187 188 189 190 + 183 184 185 186 + 179 180 181 182 + 175 176 177 178 + 195 176 177 196 + 197 198 198 199 + + ;; Lava + 2136 2137 2138 2139 - 4004 0 0 0 - ) + 4004 4004 4004 4004 + ) ) - (tilegroup + (tilegroup (name (_ "Castle")) (tiles - 2106 2092 2107 2108 - 2096 2112 2097 2098 - 2116 2102 2117 2118 - 2111 2113 2095 2094 - 1752 2104 2101 2103 - 1753 2100 3515 2105 - 1754 1755 2091 2093 - 2099 0 0 0 - - 3888 3889 1756 1758 - 3890 3891 1757 1759 - 3892 3893 1760 1761 - 3894 3895 3883 3884 - 3896 3897 3886 3887 - 3878 3879 3880 3881 - 3882 0 0 3885 - - 1779 1780 1781 1783 - 1784 1785 1786 1798 - 1789 1790 1792 1793 - 1794 1788 1807 1806 - 1801 1782 1799 1800 - 1802 1795 1805 1804 - 1774 1776 1796 1797 - 1775 0 0 0 - - 2265 3912 3913 3914 - 1777 1778 1803 1808 - - 1762 1763 3906 3907 - 1764 1765 3908 3909 - 1766 1767 1787 1791 - 1768 1769 3903 3904 - 1770 1771 3910 3911 - 3898 3899 3900 3901 - 3902 0 0 3905 - 1772 1773 2214 2215 - 3257 3258 2216 2217 - 3269 3270 2218 2219 - 3259 3260 2220 2221 - 3271 3272 2222 2223 - 2212 2213 2224 2225 - 2259 2260 0 0 - - 2226 2227 2232 2234 - 2228 2229 2233 2235 - 2236 2237 2241 2243 - 2238 2239 2242 2244 - 2245 2246 2250 2252 - 2247 2248 2251 2253 - 2230 2231 2240 2249 - 295 296 297 298 - - 2257 1489 2255 0 - 1482 1476 2254 0 - 2258 1496 2256 0 - 1478 1477 2261 2262 - 1503 1510 2263 2264 - 1467 1468 1469 1470 + ;; Ice Castle + + 4553 4569 4555 4556 + 4564 4565 4566 4558 + 4557 4566 4565 4567 + 4575 4577 4580 4578 + + 4581 4582 4559 4560 + 4592 4593 4570 4571 + 4568 4554 0 0 + 4579 4576 0 0 + + 4562 4563 4561 0 + 4573 4574 4572 0 + 4584 4585 4583 0 + 4595 4596 0 0 + 4606 4607 0 0 + + 4586 4587 4586 4587 + 4597 4598 4608 4609 + + 0 0 4588 4600 + 4588 4589 4611 4565 + 4599 4566 4565 4566 + 4601 4591 0 0 + 4565 4612 4590 4591 + 4566 4565 4566 4602 + + ;; Forest Castle + + 4463 4483 4465 4466 + 4478 4479 4480 4468 + 4467 4480 4479 4481 + 4493 4495 4498 4496 + + 4499 4500 4469 4470 + 4514 4515 4484 4485 + 4482 4464 0 0 + 4497 4494 0 0 + + 4543 4544 4545 4546 + 4516 4529 4530 4531 + + 4472 4473 4471 0 + 4487 4488 4486 0 + 4502 4503 4501 0 + 4517 4518 0 0 + 4532 4533 0 0 + + 4508 4509 4508 4509 + 4523 4524 4538 4539 + 0 0 4510 4511 + 4510 4526 4525 4480 + 4541 4479 4480 4479 + 4512 4513 0 0 + 4480 4528 4527 4513 + 4479 4480 4479 4542 + + ;; Ruin + + 4474 4475 4476 4477 + 4489 4490 4491 4492 + 4504 4505 4506 4507 + 4519 4520 4521 4522 + 4534 4535 4536 4537 + 4549 4550 4551 4552 + 4547 4548 0 0 + + 4689 4690 4692 4693 + 4694 4695 4697 4698 + 4699 4700 4702 4703 + 4704 4705 4707 4708 + 4709 4710 4712 4713 + 4714 4715 4717 4718 + 4691 4696 4701 4706 + 297 295 298 296 + + 4448 4449 4450 0 + 4453 4454 4455 0 + 4458 4459 4460 0 + 4451 4452 4461 4462 + 4456 4457 1476 1477 + 1467 1468 1469 1470 1471 1472 1473 1474 1479 1480 1481 0 1486 1487 1488 0 @@ -1196,26 +1425,26 @@ 1490 1491 1492 0 1497 1498 1499 0 1504 1505 1506 0 - - 1519 1520 1521 1522 - 1523 1524 1525 1526 - 1527 1528 1529 1530 - - 2807 2810 2811 2812 - 2808 2813 2815 2816 - 2809 2814 0 0 - 2323 2317 2320 2327 - 2324 2318 2321 2328 - 2325 2319 2322 2329 - 2326 2331 2332 2330 - - 1511 1512 1355 0 + + ;; Chains + + 4661 4662 4663 4664 + 4665 4666 4667 4668 + 4669 4670 0 0 + 4673 4674 4675 4676 + 4677 4678 4679 4680 + 4681 4682 4683 4684 + 4685 4686 4687 4688 + + ;; Misc + + 1511 1512 1355 0 1513 1514 1356 0 1515 1516 1411 0 337 338 339 0 340 341 342 0 - - 4082 4083 4088 4089 + + 4082 4083 4088 4089 4084 4085 4090 4091 4086 4087 4092 4093 4094 4095 1809 1812 @@ -1223,7 +1452,7 @@ 4098 4099 1811 1814 ) ) - + (tilegroup (name (_ "Halloween")) (tiles @@ -1239,32 +1468,32 @@ 3098 3099 3102 3103 3100 3101 3104 3105 - - 2268 2269 2270 2271 - 2272 2273 2274 2275 - 2276 2277 2278 2279 - 2280 2281 2282 2283 - 2284 2285 2286 2315 - 2287 2288 2289 2290 - 2291 2292 2293 2294 - 2295 2296 2297 2298 - 2299 2300 2301 2302 - 2303 2304 2305 2306 - 2307 2308 2309 2310 - 2311 2312 2313 2314 - 2316 0 0 0 - + + 4971 4972 4973 4974 + 4975 4976 4977 4978 + 4979 4980 4981 4982 + 4983 4984 4985 4986 + 4987 4988 4989 4990 + 4991 4992 4993 4994 + 4995 4996 4997 4998 + 4999 5000 5001 5002 + 5003 5004 5005 5006 + 5007 5008 5009 5010 + 5011 5012 5013 5014 + 5015 5016 5017 5018 + 5019 0 0 0 + 3114 3115 3116 3117 3121 3106 3107 3123 3122 3108 3109 3127 3131 3132 3133 3134 - 3118 3119 2266 2267 + 3118 3119 3120 3126 3124 3125 0 0 3128 3129 0 0 3135 3136 0 0 ) ) - + (tilegroup (name (_ "Industrial")) (tiles @@ -1277,9 +1506,9 @@ 3203 3204 3205 3206 3171 3172 3183 3184 3177 3178 3176 3182 - ) + ) ) - + (tilegroup (name (_ "Unisolid + Lightmap")) (tiles @@ -1306,87 +1535,118 @@ 0 4222 4223 4224 ) ) - + (tilegroup (name (_ "Miscellaneous")) (tiles - 130 129 127 0 - 133 132 131 0 - 3285 3286 2047 3927 - 3287 3288 2048 3928 - 3289 3290 2049 3929 - - 1988 1989 3060 3064 - 1990 1991 3061 3065 - 1992 1993 3062 3066 - 1994 1995 3063 3067 - 3438 3439 3450 3451 - 3440 3441 3458 3459 - 3442 3443 3452 3453 - 3444 3445 3460 3461 - + 130 4970 2047 3927 + 129 4969 2048 3928 + 4967 4968 2049 3929 + + 85 86 87 88 + 89 90 91 92 + 3419 3420 3421 3422 + 3423 3424 3425 3426 + + 3285 3286 0 0 + 3287 3288 0 0 + 3289 3290 0 0 + + 3060 3064 4332 4333 + 3061 3065 4336 4337 + 3062 3066 4334 4335 + 3063 3067 4338 4339 + 2203 2204 2205 0 2206 2207 2208 0 2209 2210 2211 0 - 2523 2524 0 0 + 2523 2524 0 0 2525 2526 0 0 2527 2528 0 0 + + 0 5117 0 0 + 5118 5119 5120 0 + 5121 5122 5124 0 + 5125 5126 5127 0 + 0 7302 0 0 + 7303 7304 7305 0 + 7306 7307 7308 0 + 7309 7310 7311 0 ) ) - - + (tilegroup (name (_ "Retro Tiles")) (tiles - 4000 4001 4002 4003 - 4078 4079 4080 4081 - 4100 4101 4102 0 - 4157 4158 4159 4160 + + ;; Retro Snow + + 4185 4102 4102 4102 + 4186 4001 4002 4003 + 4187 4000 4000 4000 + 4188 4079 4080 4081 + 4100 4101 4100 4101 + 4157 4158 4168 4169 4161 4162 4163 4164 - 4103 4165 4166 4167 - 4168 4169 4181 4182 - 4170 4171 4172 4190 - 4173 4175 4185 4191 - 4174 4176 4186 4192 - 4177 4178 4187 4193 - 4179 4183 4188 4194 - 4180 4184 4189 0 - 4738 4739 4740 4741 - 4742 4743 4744 4745 - 4746 4747 4748 4749 - 4732 4733 4734 4735 - 4736 4737 4899 4900 - 4901 4902 4903 4904 - + 4103 4165 4166 4167 + 4100 4101 4159 4160 + 4181 4182 4163 4164 + 4185 4102 4102 4102 + 4189 4170 4171 4172 + 4185 4184 4078 0 + 4194 4179 0 0 + 4183 4183 0 0 + + 4173 4175 4190 4192 + 4174 4176 4191 4193 + 4177 4178 4180 0 + 5093 5094 5096 5097 + 5099 5100 5102 5103 + 5106 5107 5110 5111 + 5113 5114 5115 5116 + 5109 5105 5095 5098 + 5101 5104 5108 5112 + 7275 7276 0 0 + 93 94 95 96 97 98 99 100 - - 33 32 34 1741 + + ;; Retro Cave + + 33 32 34 1741 35 37 39 1740 38 36 43 1739 40 41 42 1815 + 33 32 34 1741 119 121 120 1816 - - 3557 3558 3565 3582 - 3559 3560 3566 3584 - 3561 3562 3567 3581 - 3563 3564 3568 3583 - 3575 3576 3579 3580 - 3577 3578 4767 0 - 3569 3570 3571 0 - 3572 3573 3574 0 - - 489 65 490 3516 - 68 64 69 3517 - 67 66 321 3518 - 3280 3281 3282 4897 - 3519 3520 2472 4898 - 3521 3522 0 0 - 3277 3278 3279 0 - 3585 3586 3587 0 + + 5154 5155 5156 5191 + 5161 5162 5163 5198 + 5168 5169 5170 5190 + 5175 5176 5177 5197 + 5181 5182 5183 5184 + 5188 5189 5196 7267 + 5178 5179 5180 7268 + 5185 5186 5187 7266 + 7253 7260 7267 7259 + 7254 7261 7268 7265 + 7255 7262 7256 7263 + 7257 7264 7258 7269 + 7270 7271 7272 0 + + ;; Retro Castle + + 68 65 69 5123 + 5128 64 5130 5131 + 67 66 3518 5139 + 3521 3279 3516 3522 + 3517 3519 5134 5135 + 5140 5141 7273 7274 + 5144 3277 5146 0 + 3280 3278 5149 0 ) ) - + (tile (id 3162) (images @@ -1574,15 +1834,26 @@ (tile (id 2943) (images - "objects/bonus_block/lightblock_off.png" + "objects/bonus_block/full-0.png" + "objects/bonus_block/full-1.png" + "objects/bonus_block/full-2.png" + "objects/bonus_block/full-3.png" + "objects/bonus_block/full-4.png" + "objects/bonus_block/full-3.png" + "objects/bonus_block/full-2.png" + "objects/bonus_block/full-1.png" + "objects/bonus_block/full-0.png" + "objects/bonus_block/full-0.png" + "objects/bonus_block/full-0.png" ) (solid #t) (object-name "bonusblock") (object-data "(sprite \"images/objects/bonus_block/bonusblock.sprite\") (data 6)") (editor-images "objects/bonus_block/lightblock_off.png") (data 6) + (fps 15) ) - + (tile (id 1) (images @@ -1590,9 +1861,9 @@ ) (solid #t) ) + (tiles - (width 13) - (height 5) + (width 13)(height 5) (ids 7 8 9 0 1826 1827 0 1837 1838 1843 1844 2937 2940 13 14 15 1829 1830 1831 1832 1839 1840 1845 1846 2938 2941 @@ -1616,37 +1887,9 @@ ) (images "tiles/snow/convex.png") ) - - (tiles - (width 6) - (height 5) - (ids - 275 278 279 280 285 286 - 276 281 0 282 287 288 - 277 283 0 284 483 484 - 0 289 292 0 485 486 - 290 291 293 294 487 488 - ) - (attributes - 0 0 0 0 0 0 - 1 1 0 1 17 17 - 1 1 0 1 0 0 - 0 0 0 0 17 17 - 17 17 17 17 17 17 - ) - (datas - 0 0 0 0 0 0 - 0 0 0 0 2 0 - 0 0 0 0 0 0 - 0 0 0 0 66 48 - 18 34 32 16 50 64 - ) - (images "tiles/snow/ice-floor.png") - ) (tiles - (width 2) - (height 3) + (width 2)(height 3) (ids 30 31 21 22 @@ -1659,28 +1902,28 @@ ) (images "tiles/snow/concave.png") ) + (tiles - (width 2) - (height 5) + (width 2)(height 5) (ids 115 116 117 118 - 19 26 - 166 167 - 168 169 + 19 1539 + 5364 5365 + 5366 5367 ) (attributes 1 1 1 1 1 1 - 1 1 - 1 1 + 1 1 + 1 1 ) (images "tiles/snow/variants.png") ) + (tiles - (width 2) - (height 5) + (width 2)(height 5) (ids 114 113 207 208 @@ -1697,64 +1940,55 @@ ) (images "tiles/snow/special.png") ) + (tiles - (width 3) - (height 3) + (width 3)(height 3) (ids 122 209 123 124 210 125 1345 1346 1344 ) + (attributes + 3 3 3 + 0 0 0 + 0 0 0 + ) (images "tiles/snow/background2.png") ) - (tiles - (width 2) - (height 1) - (ids - 24 25 - ) - (images "tiles/snow/grass1.png") + (tile + (id 24) + (images "tiles/snow/grass2.png") ) + ; Duplicate of 24, retrocompatibility (tile - (id 112) + (id 25) + (deprecated #t) (images "tiles/snow/grass2.png") ) - (tiles - (width 3) - (height 1) - (ids - 27 28 29 - ) - (attributes - 1 1 1 - ) - (images "tiles/blocks/block_horiz.png") - ) - ; Yes, the numbering is extremely odd, backwards compatibility... - (tiles - (width 7) - (height 7) - (ids - 33 32 34 1741 3557 3558 3565 - 35 37 39 1740 3559 3560 3566 - 38 36 43 1739 3561 3562 3567 - 40 41 42 1815 3563 3564 3568 - 3569 3570 3571 3575 3576 3579 3580 - 3572 3573 3574 3577 3578 3581 3582 - 119 121 120 1816 4767 3583 3584 - ) - (attributes - 0 0 0 0 1 1 1 - 1 1 1 1 1 1 1 - 1 1 1 1 1 1 1 - 1 1 1 1 1 1 1 - 1 1 1 1 1 1 1 - 1 1 1 1 1 1 1 - 1 1 1 1 0 1 1 + (tile + ; dupe of tile 83, this one will be removed. + (id 26) + (images + "objects/bonus_block/full-0.png" + "objects/bonus_block/full-1.png" + "objects/bonus_block/full-2.png" + "objects/bonus_block/full-3.png" + "objects/bonus_block/full-4.png" + "objects/bonus_block/full-3.png" + "objects/bonus_block/full-2.png" + "objects/bonus_block/full-1.png" + "objects/bonus_block/full-0.png" + "objects/bonus_block/full-0.png" + "objects/bonus_block/full-0.png" ) - (images "tiles/retro/retro_cave.png") + (object-name "bonusblock") + (object-data "(sprite \"images/objects/bonus_block/bonusblock.sprite\") (data 1)") + (next-tile 84) + (data 1) + (fps 2) + (deprecated #t) ) (tile @@ -1768,32 +2002,25 @@ "objects/coin/coin-5.png" "objects/coin/coin-6.png" "objects/coin/coin-7.png" - "objects/coin/coin-8.png" - "objects/coin/coin-9.png" - "objects/coin/coin-10.png" - "objects/coin/coin-11.png" - "objects/coin/coin-12.png" - "objects/coin/coin-13.png" - "objects/coin/coin-14.png" - "objects/coin/coin-15.png" + "objects/coin/coin-8.png" + "objects/coin/coin-9.png" + "objects/coin/coin-10.png" + "objects/coin/coin-11.png" + "objects/coin/coin-12.png" + "objects/coin/coin-13.png" + "objects/coin/coin-14.png" + "objects/coin/coin-15.png" ) (object-name "coin") (fps 15) ) - (tile - (id 47) - (images - "tiles/blocks/block4.png" - ) - (solid #t) - ) + (tile (id 48) - (images - "tiles/blocks/block5.png" - ) + (images "tiles/blocks/block5.png") (solid #t) ) + (tiles (width 2) (height 2) @@ -1807,44 +2034,6 @@ ) (images "tiles/blocks/bigblock.png") ) - (tiles - (width 9) - (height 5) - (ids - 217 218 219 226 227 232 233 234 235 - 220 221 222 228 229 236 237 238 239 - 223 224 225 230 231 0 0 0 0 - 70 71 72 63 81 173 174 134 135 - 73 74 75 76 126 200 201 160 240 - ) - (attributes - 1 1 1 1 1 0 0 0 0 - 1 1 1 1 1 0 0 0 0 - 1 1 1 1 1 0 0 0 0 - 0 0 0 1 1 1 1 1 1 - 0 0 0 1 1 1 1 0 0 - ) - (images "tiles/blocks/bridge_brown.png") - ) - (tiles - (width 9) - (height 5) - (ids - 1540 1541 1542 1421 1700 1549 1550 1551 1357 - 1543 1544 1545 1422 1701 1702 1703 1704 1539 - 1546 1547 1548 2153 2459 0 0 0 0 - 1705 1706 1707 1711 1712 1715 1716 3448 3449 - 1708 1709 1710 1713 1714 3446 3447 1342 1343 - ) - (attributes - 1 1 1 1 1 0 0 0 0 - 1 1 1 1 1 0 0 0 0 - 1 1 1 1 1 0 0 0 0 - 0 0 0 1 1 1 1 1 1 - 0 0 0 1 1 1 1 0 0 - ) - (images "tiles/blocks/bridge_ice.png") - ) (tile (id 61) @@ -1853,6 +2042,7 @@ ) (solid #t) ) + (tile (id 62) (images @@ -1861,80 +2051,128 @@ (solid #t) ) + (tile + ; dupe of tile 70, this one will be removed. + (id 63) + (deprecated #t) + (images + "tiles/snow/underground/background.png" + ) + (solid #t) + ) + (tiles - (width 8) - (height 3) + (width 2) + (height 1) (ids - 489 65 490 3516 3280 3281 3282 2472 - 68 64 69 3517 3519 3520 4897 4898 - 67 66 321 3518 3521 3522 0 0 + 321 2459 ) (attributes - 1 1 1 1 1 1 1 1 - 1 1 1 1 1 1 1 1 - 1 1 1 1 1 1 0 0 + 1 0 ) - (images "tiles/retro/retro_castle.png") + (images "tiles/castle/deprecated/grey_brick_moss.png") + (deprecated #t) ) - (tiles - (width 3) - (height 2) - (ids - 3277 3278 3279 - 3585 3586 3587 - ) - (images "tiles/retro/retro_castlewall.png") + + (tile + ; dupe of tile 63, this one will be kept. + (id 70) + (deprecated #t) + (images "tiles/snow/underground/background.png") + (solid #t) ) - + (tile - (id 77) + (id 71) + (deprecated #t) + (images "tiles/background/deprecated/backgroundtile2.png") + (solid #t) + ) + + (tile + (id 72) + (deprecated #t) + (images "tiles/background/deprecated/backgroundtile3.png") + (solid #t) + ) + + (tile + (id 73) + (deprecated #t) + (images "tiles/background/deprecated/backgroundtile4.png") + (solid #t) + ) + + (tile + (id 74) + (deprecated #t) + (images "tiles/background/deprecated/backgroundtile5.png") + (solid #t) + ) + + (tile + (id 75) + (images "tiles/water/deprecated/water.png") + (water #t) + (deprecated #t) + ) + + (tile + (id 76) (images - "tiles/blocks/brick0.png" + "tiles/water/deprecated/waves-0.png" + "tiles/water/deprecated/waves-1.png" + "tiles/water/deprecated/waves-2.png" ) + (water #t) + (fps 10) + (deprecated #t) + ) + + (tile + (id 77) + (images "tiles/blocks/brick0.png") (solid #t) (object-name "brick") (object-data "(breakable #t) (sprite \"images/objects/bonus_block/brick.sprite\")") ) + (tile (id 78) - (images - "tiles/blocks/brick1.png" - ) + (images "tiles/blocks/brick1.png") (solid #t) - (object-name "brick") + (object-name "brick") (object-data "(breakable #t) (sprite \"images/objects/bonus_block/brickIce.sprite\")") ) + (tile (id 3159) - (images - "tiles/blocks/brick2.png" - ) + (images "tiles/blocks/brick2.png") (solid #t) (object-name "brick") (object-data "(breakable #t) (sprite \"images/objects/bonus_block/brickWeb.sprite\")") ) + (tile - (id 4434) - (images - "tiles/blocks/brick3.png" - ) + (id 7026) + (images "tiles/blocks/brick3.png") (solid #t) (object-name "heavy-brick") (object-data "(breakable #t)") ) - (tiles - (width 6) - (height 5) - (ids - 80 1717 1718 1719 1720 1721 - 1349 2001 2002 2149 2150 0 - 79 2003 2004 2151 2152 0 - 1348 1722 0 0 0 0 - 1347 0 0 0 0 0 + + (tile + (id 81) + (images + "tiles/doodads/deprecated/flag-0.png" + "tiles/doodads/deprecated/flag-1.png" ) - (images "tiles/pole/pole.png") + (fps 10) + (deprecated #t) ) + (tile + ; dupe of tile 26, this one will be kept. (id 83) (images "objects/bonus_block/full-0.png" @@ -1955,40 +2193,37 @@ (data 1) (fps 15) ) + (tile (id 84) (images - (surface (diffuse-texture (file "objects/bonus_block/empty.png")) - (displacement-texture (file "objects/bonus_block/displacement.png")) + (surface + (diffuse-texture (file "objects/bonus_block/empty.png")) + (displacement-texture (file "objects/bonus_block/displacement.png")) ) ) (solid #t) ) - (tile - (id 3372) - (solid #t) - (object-name "invisible_block") - (editor-images "objects/bonus_block/bonus-invisible.png") - ) + (tiles - (width 4) - (height 2) + (width 4)(height 2) (ids 85 86 87 88 89 90 91 92 ) (images "tiles/background/cloud.png") ) + (tiles ; 93 is a dupe of tile 101, 93 will be kept. - (width 4) - (height 2) + (width 4)(height 2) (ids 93 94 95 96 97 98 99 100 ) (images "tiles/retro/retro_background.png") ) + (tile (id 102) (images @@ -2009,8 +2244,9 @@ (object-data "(sprite \"images/objects/bonus_block/bonusblock.sprite\") (data 2)") (editor-images "objects/bonus_block/bonus-fire_flower.png") (data 2) - (fps 15) + (fps 2) ) + (tile (id 103) (images @@ -2031,48 +2267,68 @@ (object-data "(sprite \"images/objects/bonus_block/bonusblock.sprite\") (data 3)") (editor-images "objects/bonus_block/bonus-star.png") (data 3) - (fps 15) + (fps 2) ) + (tile (id 104) - (images - "tiles/blocks/brick0.png" - ) + (images "tiles/blocks/brick0.png") (editor-images "tiles/blocks/brick0_full.png") (solid #t) (object-name "brick") (object-data "(breakable #f) (sprite \"images/objects/bonus_block/brick.sprite\")") ) + (tile (id 105) - (images - "tiles/blocks/brick1.png" - ) + (images "tiles/blocks/brick1.png") (editor-images "tiles/blocks/brick1_full.png") (solid #t) (object-name "brick") (object-data "(breakable #f) (sprite \"images/objects/bonus_block/brickIce.sprite\")") ) + (tile (id 3160) - (images - "tiles/blocks/brick2.png" - ) + (images "tiles/blocks/brick2.png") (editor-images "tiles/blocks/brick2_full.png") (solid #t) (object-name "brick") (object-data "(breakable #f) (sprite \"images/objects/bonus_block/brickWeb.sprite\")") ) + (tiles - (width 3) - (height 2) + (width 3)(height 2) (ids 106 107 108 109 110 111 ) (images "tiles/snow/background.png") ) - + + (tile + (id 112) + (solid #t) + (object-name "invisible_block") + (editor-images "objects/bonus_block/bonus-invisible.png") + ) + + (tile + (id 126) + (deprecated #t) + (images "tiles/goal/deprecated/exitbg.png") + (object-name "decal") + (object-data "(sprite \"images/decal/snow/exitbg.png\") (z-pos -100)") + ) + + (tile + (id 127) + (deprecated #t) + (images "tiles/goal/deprecated/exitfg.png") + (object-name "decal") + (object-data "(sprite \"images/decal/snow/exitfg.png\") (z-pos 200)") + ) + (tile (id 128) (images @@ -2093,10 +2349,11 @@ (object-data "(sprite \"images/objects/bonus_block/bonusblock.sprite\") (data 4)") (editor-images "objects/bonus_block/bonus-1up.png") (data 4) - (fps 15) + (fps 2) ) + (tile - (id 127) + (id 4967) (images "tiles/goal/goal3-1.png" "tiles/goal/goal3-2.png" @@ -2113,6 +2370,7 @@ ) (fps 10) ) + (tile (id 129) (images @@ -2131,6 +2389,7 @@ ) (fps 10) ) + (tile (id 130) (images @@ -2149,8 +2408,9 @@ ) (fps 10) ) + (tile - (id 131) + (id 4968) (images "tiles/goal/goal3-1_secret.png" "tiles/goal/goal3-2_secret.png" @@ -2167,8 +2427,9 @@ ) (fps 10) ) + (tile - (id 132) + (id 4969) (images "tiles/goal/goal2-1_secret.png" "tiles/goal/goal2-2_secret.png" @@ -2185,8 +2446,9 @@ ) (fps 10) ) + (tile - (id 133) + (id 4970) (images "tiles/goal/goal1-1_secret.png" "tiles/goal/goal1-2_secret.png" @@ -2204,6 +2466,47 @@ (fps 10) ) + (tile + (id 131) + (deprecated #t) + (images + "tiles/auxiliary/black.png" + ) + ) + + (tile + (id 132) + (deprecated #t) + (object-name "sequencetrigger") + (object-data "(width 32) (height 32) (sequence \"stoptux\")") + (editor-images "tiles/auxiliary/finalgoal.png") + (data 1) + ) + + (tile + (id 133) + (deprecated #t) + (object-name "sequencetrigger") + (object-data "(width 32) (height 32) (sequence \"endsequence\")") + (editor-images "tiles/auxiliary/endseq.png") + ) + ; For compatibility with 0.1.x levels, use tile to 1809-1814 instead + (tile + (id 134) + (deprecated #t) + (images + (region "tiles/castle/nolok-statue.png" 0 0 32 96) + ) + ) + ; For compatibility with 0.1.x levels, use tile to 1809-1814 instead + (tile + (id 135) + (deprecated #t) + (images + (region "tiles/castle/nolok-statue.png" 32 0 32 96) + ) + ) + (tiles (width 2) (height 2) @@ -2234,22 +2537,78 @@ (object-data "(sprite \"images/objects/bonus_block/bonusblock.sprite\") (data 5)") (editor-images "objects/bonus_block/bonus-ice_flower.png") (data 5) - (fps 15) + (fps 2) ) (tiles - (width 2) - (height 2) + (width 2)(height 2) (ids 141 142 143 144 ) (images "tiles/signs/right.png") ) - + (tiles - (width 4) - (height 5) + (width 5)(height 3) + (ids + 149 150 151 158 242 + 152 153 154 159 243 + 155 156 157 245 244 + ) + (images "tiles/background/deprecated/snow-para-1.png") + (deprecated #t) + ) + + (tile + (id 160) + (images "tiles/background/deprecated/tile-160.png") + (deprecated #t) + ) + + (tiles + (width 5)(height 3) + (ids + 161 162 163 170 254 + 164 165 166 171 255 + 167 168 169 257 256 + ) + (images "tiles/background/deprecated/snow-para-2.png") + (deprecated #t) + ) + + (tile + (id 173) + (images + "tiles/lava/deprecated/lava1-1.png" + "tiles/lava/deprecated/lava1-2.png" + "tiles/lava/deprecated/lava1-3.png" + "tiles/lava/deprecated/lava1-4.png" + ) + (water #t) + (hurts #t) + (fire #t) + (fps 10) + (deprecated #t) + ) + + (tile + (id 174) + (images + "tiles/lava/deprecated/lava2-1.png" + "tiles/lava/deprecated/lava2-2.png" + "tiles/lava/deprecated/lava2-3.png" + "tiles/lava/deprecated/lava2-4.png" + ) + (water #t) + (hurts #t) + (fire #t) + (fps 10) + (deprecated #t) + ) + + (tiles + (width 4)(height 5) (ids 191 192 193 194 187 188 189 190 @@ -2265,51 +2624,72 @@ 512 512 512 512 ) (images - "tiles/water/waterfall0-0.png" - "tiles/water/waterfall0-1.png" - "tiles/water/waterfall0-2.png" - "tiles/water/waterfall0-3.png" + "tiles/waterfall/trans-0.png" + "tiles/waterfall/trans-1.png" + "tiles/waterfall/trans-2.png" + "tiles/waterfall/trans-3.png" ) (fps 10) ) + (tiles - (width 3) - (height 2) + (width 3)(height 2) (ids 195 0 196 - 197 198 199 + 197 198 199 + ) + (images + "tiles/waterfall/foam-0.png" + "tiles/waterfall/foam-1.png" + "tiles/waterfall/foam-2.png" + "tiles/waterfall/foam-3.png" ) - (attributes + (attributes 512 0 512 512 512 512 ) + (water #t) + (fps 10) + ) + + (tile + (id 200) + (images "tiles/water/deprecated/water-trans.png") + (water #t) + (deprecated #t) + ) + + (tile + (id 201) (images - "tiles/water/waterfall1-0.png" - "tiles/water/waterfall1-1.png" - "tiles/water/waterfall1-2.png" - "tiles/water/waterfall1-3.png" + "tiles/water/deprecated/waves-trans-0.png" + "tiles/water/deprecated/waves-trans-1.png" + "tiles/water/deprecated/waves-trans-2.png" ) + (water #t) (fps 10) + (deprecated #t) ) (tiles - (width 1) - (height 3) + (width 3)(height 4) (ids - 211 - 212 - 213 + 27 28 29 + 211 47 0 + 212 0 0 + 213 0 0 ) (attributes - 1 - 1 - 1 + 1 1 1 + 1 1 0 + 1 0 0 + 1 0 0 ) - (images "tiles/blocks/block_vert.png") + (images "tiles/blocks/block_wood.png") ) + (tiles - (width 2) - (height 2) + (width 2)(height 2) (ids 172 246 247 248 @@ -2318,22 +2698,60 @@ ) (tiles - (width 2) - (height 2) + (width 4)(height 5) (ids - 295 297 - 296 298 - ) + 291 292 293 294 + 287 288 289 290 + 283 284 285 286 + 279 280 281 282 + 275 276 277 278 + ) (attributes - 1024 1024 - 1024 1024 + 512 512 512 512 + 512 512 512 512 + 512 512 512 512 + 512 512 512 512 + 512 512 512 512 ) - (images "tiles/castle/ruin_spikes.png") + (images + "tiles/waterfall/deprecated/waterfall-0.png" + "tiles/waterfall/deprecated/waterfall-1.png" + "tiles/waterfall/deprecated/waterfall-2.png" + "tiles/waterfall/deprecated/waterfall-3.png" + ) + (fps 10) + (deprecated #t) ) (tiles - (width 3) - (height 3) + (width 5)(height 5) + (ids + 217 218 238 219 220 + 221 222 223 224 225 + 241 226 227 228 239 + 229 230 231 232 233 + 234 235 240 236 237 + ) + (attributes + 1042 1026 1026 1026 1042 + 1026 1026 1042 1026 1026 + 1026 1042 1024 1042 1026 + 1026 1026 1042 1026 1026 + 1042 1026 1026 1026 1042 + ) + (datas + 2 0 0 0 0 + 2 1 3 2 3 + 2 0 0 1 3 + 2 3 2 0 3 + 1 1 1 1 3 + ) + (images "tiles/blocks/deprecated/spikes-all.png") + (deprecated #t) + ) + + (tiles + (width 3)(height 3) (ids 301 302 303 304 305 306 @@ -2344,11 +2762,12 @@ 1 1 1 1 1 1 ) - (images "tiles/jungle/convex.png") + (images "tiles/jungle/deprecated/convex.png") + (deprecated #t) ) + (tiles - (width 2) - (height 2) + (width 2)(height 2) (ids 343 344 311 310 @@ -2357,30 +2776,33 @@ 1 1 1 1 ) - (images "tiles/jungle/concave.png") + (images "tiles/jungle/deprecated/concave.png") + (deprecated #t) ) + (tile (id 312) (images - "tiles/jungle/jungle12-1.png" - "tiles/jungle/jungle12-1.png" - "tiles/jungle/jungle12-1.png" - "tiles/jungle/jungle12-1.png" - "tiles/jungle/jungle12-2.png" - "tiles/jungle/jungle12-3.png" - "tiles/jungle/jungle12-4.png" - "tiles/jungle/jungle12-4.png" - "tiles/jungle/jungle12-4.png" - "tiles/jungle/jungle12-4.png" - "tiles/jungle/jungle12-3.png" - "tiles/jungle/jungle12-2.png" + "tiles/jungle/deprecated/jungle12-1.png" + "tiles/jungle/deprecated/jungle12-1.png" + "tiles/jungle/deprecated/jungle12-1.png" + "tiles/jungle/deprecated/jungle12-1.png" + "tiles/jungle/deprecated/jungle12-2.png" + "tiles/jungle/deprecated/jungle12-3.png" + "tiles/jungle/deprecated/jungle12-4.png" + "tiles/jungle/deprecated/jungle12-4.png" + "tiles/jungle/deprecated/jungle12-4.png" + "tiles/jungle/deprecated/jungle12-4.png" + "tiles/jungle/deprecated/jungle12-3.png" + "tiles/jungle/deprecated/jungle12-2.png" ) (solid #t) (fps 10) + (deprecated #t) ) + (tiles - (width 3) - (height 3) + (width 3)(height 3) (ids 345 346 347 348 349 350 @@ -2391,37 +2813,45 @@ 1 1 1 1 1 1 ) - (images "tiles/jungle/special.png") - ) - (tile - (id 322) - (images "tiles/forest/plant1.png") + (images "tiles/jungle/deprecated/special.png") + (deprecated #t) ) + (tiles - (width 4) - (height 2) + (width 2)(height 2) (ids - 2404 2043 2044 2164 - 2405 2045 2046 2165 + 313 314 + 315 316 ) - (images "tiles/forest/plant2.png") - ) - (tile - (id 358) - (images "tiles/ghostwood/plant1.png") + (attributes + 0 0 + 0 0 + ) + (images "tiles/doodads/deprecated/stone1.png") + (deprecated #t) ) + (tiles - (width 4) - (height 2) + (width 2)(height 2) (ids - 3681 0 0 3685 - 3682 3683 3684 3686 + 317 318 + 319 320 ) - (images "tiles/ghostwood/plant2.png") + (attributes + 0 0 + 0 0 + ) + (images "tiles/doodads/deprecated/stone2.png") + (deprecated #t) + ) + + (tile + (id 322) + (images "tiles/forest/plant1.png") ) + (tiles - (width 2) - (height 4) + (width 2)(height 4) (ids 323 324 325 326 @@ -2430,9 +2860,9 @@ ) (images "tiles/forest/liane.png") ) + (tiles - (width 3) - (height 2) + (width 3)(height 2) (ids 337 338 339 340 341 342 @@ -2453,15 +2883,11 @@ (tile (id 360) - (images "tiles/forest/mushrooms.png") - ) - (tile - (id 361) - (images "tiles/ghostwood/mushrooms.png") + (images"tiles/forest/mushrooms.png") ) + (tiles - (width 8) - (height 8) + (width 8)(height 8) (ids 402 403 404 405 426 427 428 429 406 407 408 409 430 431 432 433 @@ -2474,44 +2900,85 @@ ) (images "tiles/forest/foresttiles-12.png") ) + (tiles - (width 2) - (height 2) + (width 3)(height 5) + (ids + 458 459 460 + 461 462 463 + 464 465 466 + 467 468 469 + 470 471 472 + ) + (images "tiles/forest/deprecated/brush2.png") + (deprecated #t) + ) + + (tiles + (width 2)(height 3) + (ids + 473 474 + 475 476 + 477 478 + ) + (images "tiles/forest/deprecated/hole2.png") + (deprecated #t) + ) + + (tiles + (width 2)(height 2) (ids 479 480 481 482 ) (images "tiles/signs/platform_wood.png") ) + (tiles - (width 14) - (height 5) + (width 4)(height 2) + (ids + 483 484 485 486 + 487 488 489 490 + ) + (images "tiles/pole/deprecated/misc.png") + (deprecated #t) + ) + + (tiles + (width 4)(height 2) (ids - 1000 1001 1002 1003 0 1060 1061 0 1045 1046 1051 1052 3466 3467 - 1004 1005 1006 1007 1063 1064 1065 1066 1047 1048 1053 1054 3470 3471 - 1008 1009 1010 1011 1067 1068 1069 1070 1049 1050 1055 1056 0 0 - 1012 1013 1014 1015 3462 3463 3464 3465 3468 3469 1057 1058 0 0 - 1016 1017 1018 1019 0 0 0 0 0 0 0 0 0 0 + 491 492 493 494 + 495 496 497 498 ) (attributes - 0 0 0 0 0 0 0 0 0 0 0 0 17 17 - 1 1 1 1 17 17 17 17 17 17 17 17 17 17 - 1 1 1 1 1 1 1 1 1 1 17 17 0 0 - 1 1 1 1 17 17 17 17 17 17 1 1 0 0 - 1 1 1 1 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 + 1 1 1 1 ) - (datas - 0 0 0 0 0 0 0 0 0 0 0 0 49 67 - 0 0 0 0 18 34 32 16 2 0 66 48 65 51 - 0 0 0 0 0 0 0 0 0 0 50 64 0 0 - 0 0 0 0 33 17 19 35 1 3 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - ) - (images "tiles/forest/convex.png") + (images "tiles/ghostwood/deprecated/earth-floor.png") + (deprecated #t) ) + (tiles - (width 4) - (height 1) + (width 4)(height 5) + (ids + 1000 1001 1002 1003 + 1004 1005 1006 1007 + 1008 1009 1010 1011 + 1012 1013 1014 1015 + 1016 1017 1018 1019 + ) + (attributes + 0 0 0 0 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + ) + (images "tiles/forest/foresttiles-1.png") + ) + + (tiles + (width 4)(height 1) (ids 3621 3622 3623 3624 ) @@ -2520,284 +2987,371 @@ ) (images "tiles/forest/foresttiles-1a.png") ) + (tiles - (width 6) - (height 3) + (width 3)(height 3) (ids - 1020 1021 1022 1029 1030 1735 - 1023 1024 1025 1031 1032 1736 - 1026 1027 1028 4381 4382 0 + 1020 1021 1022 + 1023 1024 1025 + 1026 1027 1028 + ) + (attributes + 1 1 1 + 1 1 1 + 1 1 1 ) - (images "tiles/forest/foresttiles-2.png") + (images "tiles/forest/deprecated/foresttiles-2.png") + (deprecated #t) ) + (tiles - (width 2) - (height 3) + (width 2)(height 2) (ids - 4317 4318 - 1035 1034 - 1041 1040 + 1029 1030 + 1031 1032 ) (attributes 1 1 1 1 - 1 1 ) - (images "tiles/forest/concave.png") + (images "tiles/forest/deprecated/foresttiles-3.png") + (deprecated #t) ) + (tiles - (width 6) - (height 5) + (width 2)(height 2) (ids - 1723 1724 1725 1726 1640 1641 - 1817 1818 1819 1820 1642 1643 - 4378 4379 0 4380 1644 1647 - 1632 1633 1634 1635 1645 1648 - 1636 1637 1638 1639 1646 1649 + 1035 1034 + 1041 1040 ) (attributes - 0 0 0 0 0 0 - 1 1 0 1 17 17 - 1 1 0 1 0 0 - 0 0 0 0 17 17 - 17 17 17 17 17 17 - ) - (datas - 0 0 0 0 0 0 - 0 0 0 0 2 0 - 0 0 0 0 0 0 - 0 0 0 0 66 48 - 18 34 32 16 50 64 - ) - (images "tiles/forest/earth-floor.png") - ) - (tiles - (width 4) - (height 10) - (ids - 4825 4826 4829 4830 - 4827 4828 4831 4832 - 4833 4834 4837 4838 - 4835 4836 4839 4840 - 4841 4842 4846 4847 - 4843 4844 4848 4849 - 0 4845 4850 0 - 4851 0 0 4856 - 4852 4853 4857 4858 - 4854 4855 4859 4860 - ) - (attributes - 0 0 0 0 - 17 1 1 17 - 17 0 0 17 - 1 1 1 1 - 17 0 0 17 - 1 17 17 1 - 0 1 1 0 - 0 0 0 0 - 17 0 0 17 - 1 17 17 1 + 1 1 + 1 1 ) - (datas - 0 0 0 0 - 34 0 0 32 - 16 0 0 18 - 0 0 0 0 - 16 0 0 18 - 0 0 2 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 2 - 0 32 34 0 + (images "tiles/forest/concave.png") + ) + (tiles + (width 2)(height 2) + (ids + 1036 1037 + 1042 1043 ) - (images "tiles/forest/slope_transitions.png") + (attributes + 1 1 + 1 1 + ) + (images "tiles/forest/steps.png") ) + (tiles - (width 2) - (height 7) + (width 2)(height 3) (ids - 1036 1037 - 1042 1043 - 1038 1044 + 1038 1044 1737 1738 1039 1033 - 4312 4311 - 3472 4327 ) (attributes + 0 1 1 1 1 1 - 0 1 - 1 1 - 1 1 - 1 1 - 1 1 ) - (images "tiles/forest/special.png") + (images "tiles/forest/wall.png") ) + (tiles - (width 4) - (height 6) + (width 2)(height 3) (ids - 1313 1314 1317 1318 - 1315 1316 1319 1320 - 4797 4798 0 0 - 4799 4800 0 0 - 4801 4802 4803 4804 - 4805 4806 0 0 + 1045 1046 + 1047 1048 + 1049 1050 ) (attributes - 17 17 17 17 - 1 1 1 1 - 17 17 0 0 - 1 1 0 0 - 17 17 17 17 - 17 17 0 0 - ) - (datas - 18 16 2 0 - 0 0 0 0 - 50 64 0 0 - 0 0 0 0 - 18 16 2 0 - 50 64 0 0 - ) - (images "tiles/forest/variants.png") + 0 0 + 17 17 + 1 1 + ) + (datas + 0 0 + 2 0 + 0 0 + ) + (images "tiles/forest/foresttiles-5.png") ) + (tiles - (width 7) - (height 5) + (width 2)(height 4) (ids - 5001 5002 5003 5013 5014 5017 5018 - 5004 0 5005 5015 5016 5019 5020 - 5006 5007 5008 5021 5022 5025 5026 - 5009 5010 0 5023 5024 5027 5028 - 5011 5012 0 5029 5030 0 0 + 1051 1052 + 1053 1054 + 1055 1056 + 1057 1058 ) (attributes - 0 0 0 1 1 1 1 - 0 0 0 1 1 1 1 - 0 0 0 1 1 1 1 - 0 0 0 1 1 1 1 - 0 0 0 1 1 0 0 + 0 0 + 17 17 + 17 17 + 1 1 ) - (images "tiles/forest/forestmerge.png") + (datas + 0 0 + 66 48 + 50 64 + 0 0 + ) + (images "tiles/forest/foresttiles-6.png") ) - + (tiles - (width 6) - (height 13) + (width 4)(height 3) (ids - 0 0 1071 1072 0 0 - 0 1073 1074 1075 1076 0 - 0 1077 1078 1079 1080 0 - 1081 1082 1083 1084 1085 1086 - 1087 1088 1089 1090 1091 1092 - 1093 1094 1095 1096 1097 1098 - 1099 1100 1101 1102 1103 1104 - 1105 1106 1107 1108 1109 1110 - 1111 1112 1113 1114 1115 1116 - 0 0 1117 1118 0 0 - 0 0 1119 1120 0 0 - 0 0 1121 1122 0 0 - 0 0 1123 1124 0 0 + 0 1060 1061 0 + 1063 1064 1065 1066 + 1067 1068 1069 1070 + ) + (attributes + 0 0 0 0 + 17 17 17 17 + 1 1 1 1 + ) + (datas + 0 0 0 0 + 18 34 32 16 + 0 0 0 0 ) - (images "tiles/forest/foresttiles-10.png") + (images "tiles/forest/foresttiles-7.png") ) + (tiles - (width 8) - (height 13) - (ids - 0 0 0 1125 1126 0 0 0 - 0 0 1127 1128 1129 1130 0 0 - 0 1131 1132 1133 1134 1135 1136 0 - 0 1137 1138 1139 1140 1141 1142 0 - 1143 1144 1145 1146 1147 1148 1149 1150 - 1151 1152 1153 1154 1155 1156 1157 1158 - 1159 1160 1161 1162 1163 1164 1165 1166 - 1167 1168 1169 1170 1171 1172 1173 1174 - 1175 1176 1177 1178 1179 1180 1181 1182 - 0 0 0 1183 1184 0 0 0 - 0 0 0 1185 1186 0 0 0 - 0 0 0 1187 1188 0 0 0 - 0 0 0 1189 1190 0 0 0 - ) - (images "tiles/forest/foresttiles-9.png") - ) - (tiles - (width 9) - (height 13) - (ids - 0 0 0 1191 1192 1193 0 0 0 - 0 0 1194 1195 1196 1197 1198 0 0 - 0 1199 1200 1201 1202 1203 1204 1205 0 - 0 1206 1207 1208 1209 1210 1211 1212 0 - 0 1213 1214 1215 1216 1217 1218 1219 0 - 1220 1221 1222 1223 1224 1225 1226 1227 1228 - 1229 1230 1231 1232 1233 1234 1235 1236 1237 - 1238 1239 1240 1241 1242 1243 1244 1245 1246 - 1247 1248 1249 1250 1251 1252 1253 1254 1255 - 0 0 0 1256 1257 1258 0 0 0 - 0 0 0 1259 1260 1261 0 0 0 - 0 0 0 1262 1263 1264 0 0 0 - 0 0 0 1265 1266 1277 0 0 0 - ) - (images "tiles/forest/foresttiles-8.png") + (width 8)(height 12) + (ids + 1071 1072 1073 1074 1075 1076 1077 1078 + 1079 1080 1081 1082 1083 1084 1085 1086 + 1087 1088 1089 1090 1091 1092 1093 1094 + 1095 1096 1097 1098 1099 1100 1101 1102 + 1103 1104 1105 1106 1107 1108 1109 1110 + 1111 1112 1113 1114 1115 1116 1117 1118 + 1119 1120 1121 1122 1123 1124 1125 1126 + 1127 1128 1129 1130 1131 1132 1133 1134 + 1135 1136 1137 1138 1139 1140 1141 1142 + 1143 1144 1145 1146 1147 1148 1149 1150 + 1151 1152 1153 1154 1155 1156 1157 1158 + 1159 1160 1161 1162 1163 1164 1165 1166 + ) + (attributes + 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 + 3 3 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 + 3 3 0 0 0 0 0 0 + ) + (images "tiles/forest/deprecated/foresttiles-8.png") + (deprecated #t) ) + (tiles - (width 6) - (height 8) + (width 6)(height 12) (ids - 0 0 1278 1279 0 0 - 0 1280 1281 1282 1283 0 - 0 1284 1285 1286 1287 0 - 0 1288 1289 1290 1291 0 - 0 1292 1293 1294 1295 0 - 1296 1297 1298 1299 1300 1301 - 1302 1303 1304 1305 1306 1307 - 0 1308 1309 1310 1311 0 + 1167 1168 1169 1170 1171 1172 + 1173 1174 1175 1176 1177 1178 + 1179 1180 1181 1182 1183 1184 + 1185 1186 1187 1188 1189 1190 + 1191 1192 1193 1194 1195 1196 + 1197 1198 1199 1200 1201 1202 + 1203 1204 1205 1206 1207 1208 + 1209 1210 1211 1212 1213 1214 + 1215 1216 1217 1218 0 0 + 1221 1222 1223 1224 0 0 + 1227 1228 1229 1230 1231 1232 + 1233 1234 1235 1236 1237 1238 ) - (images "tiles/ghostwood/ghostwood-11.png") + (images "tiles/forest/deprecated/foresttiles-9.png") + (deprecated #t) ) + (tiles - (width 6) - (height 8) + (width 3)(height 2) (ids - 0 0 4607 4608 0 0 - 0 4609 4610 4611 4612 0 - 4613 4614 4615 4616 4617 4618 - 4619 4620 4621 4622 4623 4624 - 4625 4626 4627 4628 4629 4630 - 4631 4632 4633 4634 4635 4636 - 4637 4638 4639 4640 4641 4642 - 4643 4644 4645 4646 4647 4648 + 2045 1219 1220 + 2046 1225 1226 ) - (images "tiles/ghostwood/ghostwood-10.png") + (images "tiles/forest/deprecated/foresttiles-9a.png") + (deprecated #t) + ) + + (tiles + (width 4)(height 12) + (ids + 1239 1240 1241 1242 + 1243 1244 1245 1246 + 1247 1248 1249 1250 + 1251 1252 1253 1254 + 1255 1256 1257 1258 + 1259 1260 1261 1262 + 1263 1264 1265 1266 + 1267 1268 1269 1270 + 1271 1272 1273 1274 + 1275 1276 1277 1278 + 1279 1280 1281 1282 + 1283 1284 1285 1286 + ) + (images "tiles/forest/deprecated/foresttiles-10.png") + (deprecated #t) ) + (tiles - (width 7) - (height 9) - (ids - 0 0 0 4649 0 0 0 - 0 0 4650 4651 4652 0 0 - 0 4653 4654 4655 4656 4657 0 - 4658 4659 4660 4661 4662 4663 4664 - 4665 4666 4667 4668 4669 4670 4671 - 4672 4673 4674 4675 4676 4677 4678 - 4679 4680 4681 4682 4683 4684 4685 - 4686 4687 4688 4689 4690 4691 4692 - 4693 4694 4695 4696 4697 4698 4699 + (width 2)(height 12) + (ids + 1287 1288 + 1289 1290 + 1291 1292 + 1293 1294 + 1295 1296 + 1297 1298 + 1299 1300 + 1301 1302 + 1303 1304 + 1305 1306 + 1307 1308 + 1309 1310 ) - (images "tiles/ghostwood/ghostwood-9.png") + (images "tiles/forest/deprecated/foresttiles-11.png") + (deprecated #t) ) - + (tile - (id 1312) + (id 1311) (solid #t) (editor-images "tiles/auxiliary/invisible-editor.png") ) - + + (tile + (id 1312) + (deprecated #t) + (solid #t) + (hidden #t) + (images "tiles/doodads/deprecated/havoktux-0.png") + ) + + (tile + (id 1313) + (deprecated #t) + (solid #f) + (images + "particles/rainsplash-1.png" + "particles/rainsplash-2.png" + "particles/rainsplash-3.png" + "particles/rainsplash-4.png" + "tiles/auxiliary/blank.png" + ) + (fps 18) + ) + + (tile + (id 1314) + (deprecated #t) + (solid #f) + (images + "particles/rainsplash-2.png" + "particles/rainsplash-3.png" + "particles/rainsplash-4.png" + "tiles/auxiliary/blank.png" + "particles/rainsplash-1.png" + ) + (fps 20) + ) + + (tile + (id 1315) + (deprecated #t) + (solid #f) + (images + "particles/rainsplash-3.png" + "particles/rainsplash-4.png" + "tiles/auxiliary/blank.png" + "particles/rainsplash-1.png" + "particles/rainsplash-2.png" + ) + (fps 22) + ) + + (tile + (id 1316) + (deprecated #t) + (solid #f) + (images + "particles/rainsplash-4.png" + "tiles/auxiliary/blank.png" + "particles/rainsplash-1.png" + "particles/rainsplash-2.png" + "particles/rainsplash-3.png" + ) + (fps 24) + ) + + (tile + (id 1317) + (deprecated #t) + (solid #f) + (images + "particles/rainsplash-vertical-1.png" + "particles/rainsplash-vertical-2.png" + "particles/rainsplash-vertical-3.png" + "particles/rainsplash-vertical-4.png" + "tiles/auxiliary/blank.png" + ) + (fps 21) + ) + + (tile + (id 1318) + (deprecated #t) + (solid #f) + (images + "particles/rainsplash-vertical-2.png" + "particles/rainsplash-vertical-3.png" + "particles/rainsplash-vertical-4.png" + "tiles/auxiliary/blank.png" + "particles/rainsplash-vertical-1.png" + ) + (fps 19) + ) + + (tile + (id 1319) + (deprecated #t) + (solid #f) + (images + "particles/rainsplash-vertical-3.png" + "particles/rainsplash-vertical-4.png" + "tiles/auxiliary/blank.png" + "particles/rainsplash-vertical-1.png" + "particles/rainsplash-vertical-2.png" + ) + (fps 17) + ) + + (tile + (id 1320) + (deprecated #t) + (solid #f) + (images + "particles/rainsplash-vertical-4.png" + "tiles/auxiliary/blank.png" + "particles/rainsplash-vertical-1.png" + "particles/rainsplash-vertical-2.png" + "particles/rainsplash-vertical-3.png" + ) + (fps 15) + ) + (tiles (width 4) (height 4) @@ -2807,34 +3361,48 @@ 1329 1330 1331 1332 1333 1334 1335 1336 ) - (attributes - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - ) (images "tiles/snow/iceshrub.png") ) - + + (tile + (id 1342) + (images + "tiles/doodads/deprecated/blueice.png" + ) + (solid #t) + (deprecated #t) + ) + + (tile + (id 1343) + (images + "tiles/doodads/deprecated/blueicetop.png" + ) + (deprecated #t) + ) + + (tile + (id 1350) + (images + "tiles/doodads/deprecated/platter.png") + (solid #f) + (deprecated #t) + ) + (tiles - (width 11) + (width 3) (height 5) (ids - 4333 4334 4337 4338 4339 4340 4341 4342 4343 4344 4360 - 4335 4336 2014 4358 4359 4332 4345 4346 4347 4348 4361 - 2005 2006 2007 473 474 475 4349 4350 4351 4352 0 - 2008 2009 2010 476 101 4356 4353 4354 4355 1351 0 - 2011 2012 2013 477 478 4357 1352 1353 1354 1821 0 - ) - (attributes - 0 0 0 0 0 0 3 3 0 0 3 - 3 3 3 3 3 3 3 3 3 3 3 - 0 0 0 0 0 0 0 0 3 3 0 - 0 0 0 0 0 0 0 0 3 3 0 - 0 0 0 0 0 0 3 3 3 3 0 + 2005 1351 2010 + 2006 1352 2011 + 2007 1353 2012 + 2008 1354 2013 + 2009 1821 2014 ) - (images "tiles/forest/hole.png") + (images "tiles/forest/deprecated/hole.png") + (deprecated #t) ) + (tiles (width 1) (height 3) @@ -2850,6 +3418,25 @@ ) (images "tiles/castle/pedestal.png") ) + + (tile + (id 1357) + (images "tiles/forest/deprecated/vine1.png") + (deprecated #t) + ) + + (tiles + (width 3) + (height 3) + (ids + 1358 1359 1360 + 1361 1362 1363 + 1364 1365 1366 + ) + (images "tiles/forest/deprecated/brush.png") + (deprecated #t) + ) + (tiles (width 8) (height 6) @@ -2870,16 +3457,19 @@ 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ) - (images "tiles/castle/stone.png") + (images "tiles/castle/deprecated/stone.png") + (deprecated #t) ) ;dupe of 1385 ; this one should be removed (tile (id 1414) (images - (region "tiles/castle/stone.png" 128 64 32 32) + (region "tiles/castle/deprecated/stone.png" 128 64 32 32) ) (solid #t) + (deprecated #t) ) + (tiles (width 1) (height 4) @@ -2895,37 +3485,55 @@ 1 1 ) - (images "tiles/castle/window.png") + (images "tiles/castle/deprecated/window.png") + (deprecated #t) + ) + + (tile + (id 1421) + (images + "tiles/water/deprecated/electrified-0.png" + "tiles/water/deprecated/electrified-1.png" + ) + (fps 10) + (hurts #t) + (water #t) + (deprecated #t) + ) + + (tile + (id 1422) + (images + "tiles/water/deprecated/electrified_waves-0.png" + "tiles/water/deprecated/electrified_waves-1.png" + ) + (fps 10) + (hurts #t) + (water #t) + (deprecated #t) ) + (tiles - (width 14) - (height 5) + (width 4)(height 5) (ids - 1423 1424 1425 1426 0 1443 1444 0 3384 3385 3390 3391 3412 3413 - 1427 1428 1429 1430 1445 1446 1447 1448 3386 3387 3392 3393 3416 3418 - 1431 1432 1433 1434 1449 1450 1451 1452 3388 3389 3394 3395 0 0 - 1435 1436 1437 1438 3406 3407 3408 3409 3410 3411 3396 3397 0 0 - 1439 1440 1441 1442 0 0 0 0 0 0 0 0 0 0 + 1423 1424 1425 1426 + 1427 1428 1429 1430 + 1431 1432 1433 1434 + 1435 1436 1437 1438 + 1439 1440 1441 1442 ) (attributes - 0 0 0 0 0 0 0 0 0 0 0 0 17 17 - 1 1 1 1 17 17 17 17 17 17 17 17 17 17 - 1 1 1 1 1 1 1 1 1 1 17 17 0 0 - 1 1 1 1 17 17 17 17 17 17 1 1 0 0 - 1 1 1 1 0 0 0 0 0 0 0 0 0 0 - ) - (datas - 0 0 0 0 0 0 0 0 0 0 0 0 49 67 - 0 0 0 0 18 34 32 16 2 0 66 48 65 51 - 0 0 0 0 0 0 0 0 0 0 50 64 0 0 - 0 0 0 0 33 17 19 35 1 3 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 ) (images "tiles/ghostwood/ghostwood-1.png") ) + (tiles - (width 4) - (height 1) + (width 4)(height 1) (ids 3923 3924 3925 3926 ) @@ -2934,585 +3542,138 @@ ) (images "tiles/ghostwood/ghostwood-1a.png") ) + (tiles - (width 2) - (height 3) + (width 4)(height 3) (ids - 3414 3415 - 3374 3373 - 3380 3379 + 0 1443 1444 0 + 1445 1446 1447 1448 + 1449 1450 1451 1452 ) (attributes - 1 1 - 1 1 - 1 1 + 0 0 0 0 + 17 17 17 17 + 1 1 1 1 ) - (images "tiles/ghostwood/ghostwood-2.png") + (datas + 0 0 0 0 + 18 34 32 16 + 0 0 0 0 + ) + (images "tiles/ghostwood/ghostwood-7.png") ) + (tiles - (width 6) - (height 5) + (width 1)(height 5) (ids - 491 492 496 493 1658 1660 - 495 498 494 497 1659 1661 - 3404 3405 0 4383 1662 1665 - 1650 1651 1652 1653 1663 1666 - 1654 1655 1656 1657 1664 1667 + 1482 + 1489 + 1496 + 1503 + 1510 ) (attributes - 0 0 0 0 0 0 - 1 1 0 1 17 17 - 1 1 0 1 0 0 - 0 0 0 0 17 17 - 17 17 17 17 17 17 + 0 + 0 + 0 + 1 + 1 ) - (datas - 0 0 0 0 0 0 - 0 0 0 0 2 0 - 0 0 0 0 0 0 - 0 0 0 0 66 48 - 18 34 32 16 50 64 - ) - (images "tiles/ghostwood/ghostwood-3.png") + (images "tiles/castle/deprecated/castle_wall.png") + (deprecated #t) ) + (tiles - (width 2) - (height 7) + (width 2)(height 3) (ids - 3375 3376 - 3381 3382 - 3377 3383 - 3398 3399 - 3400 3417 - 3401 3378 - 3402 3403 - ) - (attributes - 1 1 - 1 1 - 0 1 - 1 1 - 1 1 - 1 1 - 1 1 + 1511 1512 + 1513 1514 + 1515 1516 ) - (images "tiles/ghostwood/ghostwood-4.png") + (images "tiles/castle/deprecated/stonewindow.png") ) - (tiles - (width 4) - (height 10) - (ids - 4861 4862 4865 4866 - 4863 4864 4867 4868 - 4869 4870 4873 4874 - 4871 4872 4875 4876 - 4877 4878 4882 4883 - 4879 4880 4884 4885 - 0 4881 4886 0 - 4887 0 0 4892 - 4888 4889 4893 4894 - 4890 4891 4895 4896 - ) - (attributes - 0 0 0 0 - 17 1 1 17 - 17 0 0 17 - 1 1 1 1 - 17 0 0 17 - 1 17 17 1 - 0 1 1 0 - 0 0 0 0 - 17 0 0 17 - 1 17 17 1 + + (tile + (id 1517) + (images + "tiles/castle/deprecated/walltorch/flame-0.png" + "tiles/castle/deprecated/walltorch/flame-0.png" + "tiles/castle/deprecated/walltorch/flame-1.png" + "tiles/castle/deprecated/walltorch/flame-1.png" + "tiles/castle/deprecated/walltorch/flame-2.png" + "tiles/castle/deprecated/walltorch/flame-2.png" + "tiles/castle/deprecated/walltorch/flame-3.png" + "tiles/castle/deprecated/walltorch/flame-3.png" + "tiles/castle/deprecated/walltorch/flame-4.png" + "tiles/castle/deprecated/walltorch/flame-4.png" + "tiles/castle/deprecated/walltorch/flame-5.png" + "tiles/castle/deprecated/walltorch/flame-5.png" + "tiles/castle/deprecated/walltorch/flame-6.png" + "tiles/castle/deprecated/walltorch/flame-6.png" ) - (datas - 0 0 0 0 - 34 0 0 32 - 16 0 0 18 - 0 0 0 0 - 16 0 0 18 - 0 0 2 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 2 - 0 32 34 0 + (fire #t) + (fps 10) + (deprecated #t) + ) + (tile + (id 1518) + (images + "tiles/castle/deprecated/walltorch/flame-base-0.png" ) - (images "tiles/ghostwood/ghostwood-12.png") + (deprecated #t) ) + (tiles - (width 4) - (height 6) + (width 4)(height 3) (ids - 4807 4808 4811 4812 - 4809 4810 4813 4814 - 4815 4816 0 0 - 4817 4818 0 0 - 4819 4820 4821 4822 - 4823 4824 0 0 - ) - (attributes - 17 17 17 17 - 1 1 1 1 - 17 17 0 0 - 1 1 0 0 - 17 17 17 17 - 17 17 0 0 - ) - (datas - 18 16 2 0 - 0 0 0 0 - 50 64 0 0 - 0 0 0 0 - 18 16 2 0 - 50 64 0 0 - ) - (images "tiles/ghostwood/variants_ghost.png") - ) - (tiles - (width 7) - (height 5) - (ids - 5059 5060 5061 5071 5072 5075 5076 - 5062 0 5063 5073 5074 5077 5078 - 5064 5065 5066 5079 5080 5083 5084 - 5067 5068 0 5081 5082 5085 5086 - 5069 5070 0 5087 5088 0 0 - ) - (attributes - 0 0 0 1 1 1 1 - 0 0 0 1 1 1 1 - 0 0 0 1 1 1 1 - 0 0 0 1 1 1 1 - 0 0 0 1 1 0 0 - ) - (images "tiles/ghostwood/ghostwood-13.png") - ) - (tiles - (width 4) - (height 13) - (ids - 4384 4385 4386 4387 - 4388 4389 4390 4391 - 4392 4393 4394 4395 - 4396 4397 4398 4399 - 4400 4401 4402 4403 - 4404 4405 4406 4407 - 4408 4409 4410 4411 - 4412 4413 4414 4415 - 4416 4417 4418 4419 - 4420 4421 4422 4423 - 4424 4425 4426 4427 - 4428 4429 4430 4431 - 4432 4433 0 0 - ) - (attributes - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 0 0 - ) - (images "tiles/ghostwood/ghostwood-5.png") - ) - (tiles - (width 11) - (height 5) - (ids - 4457 4458 4461 4462 4463 4464 4465 4466 4467 4468 4485 - 4459 4460 4453 4454 4455 4456 4469 4470 4471 4472 4486 - 4435 4436 4437 4444 4445 4446 4473 4474 4475 4476 0 - 4438 4439 4440 4447 4452 4448 4477 4478 4479 4480 0 - 4441 4442 4443 4449 4450 4451 4481 4482 4483 4484 0 - ) - (attributes - 0 0 0 0 0 0 3 3 0 0 3 - 3 3 3 3 3 3 3 3 3 3 3 - 0 0 0 0 0 0 0 0 3 3 0 - 0 0 0 0 0 0 0 0 3 3 0 - 0 0 0 0 0 0 3 3 3 3 0 - ) - (images "tiles/ghostwood/ghostwood-6.png") - ) - (tiles - (width 8) - (height 8) - (ids - 3812 3813 3814 3815 3836 3837 3838 3839 - 3816 3817 3818 3819 3840 3841 3842 3843 - 3820 3821 3822 3823 3844 3845 3846 3847 - 3824 3825 3826 3827 3848 3849 3850 3851 - 3828 3829 3830 3831 3852 3853 3854 3855 - 3832 3833 3834 3835 3856 3857 3858 3859 - 0 0 0 0 3860 3861 3862 3863 - 0 0 0 0 3864 3865 3866 3867 - ) - (images "tiles/ghostwood/ghostwood-7.png") - ) - (tiles - (width 6) - (height 3) - (ids - 1358 1359 1360 458 459 1996 - 1361 1362 1363 461 462 1997 - 1364 1365 1366 460 463 0 - ) - (images "tiles/ghostwood/ghostwood-8.png") - ) - - (tiles - (width 8) - (height 10) - (ids - 4539 4540 4547 4548 4575 4576 4577 4578 - 4541 4542 4549 4550 4579 4580 4581 4582 - 0 0 4543 4544 4583 4584 4585 4586 - 0 0 4545 4546 4587 4588 4589 4590 - 4551 4552 4555 4557 4591 4595 4599 4603 - 4553 4554 4556 4558 4592 4596 4600 4604 - 4559 4560 4563 4564 4593 4597 4601 4605 - 4561 4562 4565 4566 4594 4598 4602 4606 - 4567 4568 4571 4572 0 0 0 0 - 4569 4570 4573 4574 0 0 0 0 - ) - (attributes - 1 1 1 1 1 17 17 0 - 1 1 1 1 1 17 17 0 - 0 0 1 1 0 17 17 1 - 0 0 1 1 0 17 17 1 - 1024 1 1 1024 0 0 1 1 - 1 1024 1024 1 17 17 17 17 - 17 17 17 17 17 17 17 17 - 1 1 1 1 1 1 0 0 - 1 1 1 1 0 0 0 0 - 17 17 17 17 0 0 0 0 - ) - (datas - 0 0 0 0 0 32 16 0 - 0 0 0 0 0 19 35 0 - 0 0 0 0 0 18 34 0 - 0 0 0 0 0 33 17 0 - 0 0 0 0 0 0 0 0 - 0 0 0 0 66 48 49 67 - 18 34 32 16 50 64 65 51 - 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 - 33 17 19 35 0 0 0 0 - ) - (images "tiles/ghostwood/roots.png") - ) - - (tiles - (width 2) - (height 4) - (ids - 313 314 - 315 316 - 317 318 - 319 320 - ) - (images "tiles/ghostwood/liane_ghost.png") - ) - - (tiles - (width 14) - (height 5) - (ids - 3687 3688 3689 3690 0 3741 3742 0 3751 3752 3757 3758 3773 3774 - 3691 3692 3693 3694 3743 3744 3745 3746 3753 3754 3759 3760 3775 3776 - 3695 3696 3697 3698 3747 3748 3749 3750 3755 3756 3761 3762 0 0 - 3699 3700 3701 3702 3765 3766 3767 3768 3769 3770 3771 3772 0 0 - 3703 3704 3705 3706 0 0 0 0 0 0 0 0 0 0 - ) - (attributes - 0 0 0 0 0 0 0 0 0 0 0 0 17 17 - 1 1 1 1 17 17 17 17 17 17 17 17 17 17 - 1 1 1 1 1 1 1 1 1 1 17 17 0 0 - 1 1 1 1 17 17 17 17 17 17 1 1 0 0 - 1 1 1 1 0 0 0 0 0 0 0 0 0 0 - ) - (datas - 0 0 0 0 0 0 0 0 0 0 0 0 49 67 - 0 0 0 0 18 34 32 16 2 0 66 48 65 51 - 0 0 0 0 0 0 0 0 0 0 50 64 0 0 - 0 0 0 0 33 17 19 35 1 3 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - ) - (images "tiles/ghostwood/underground/ghostwood-1_under.png") - ) - (tiles - (width 4) - (height 1) - (ids - 3707 3708 3709 3710 - ) - (attributes - 1 1 1 1 - ) - (images "tiles/ghostwood/underground/ghostwood-1a_under.png") - ) - (tiles - (width 2) - (height 3) - (ids - 3711 3712 - 3713 3714 - 3715 3716 - ) - (attributes - 1 1 - 1 1 - 1 1 + 1519 1520 1521 1522 + 1523 1524 1525 1526 + 1527 1528 1529 1530 ) - (images "tiles/ghostwood/underground/ghostwood-2_under.png") + (images "tiles/castle/deprecated/door.png") ) + (tiles - (width 2) - (height 7) + (width 3)(height 2) (ids - 3728 3729 - 3730 3731 - 3717 3732 - 3735 3733 - 3736 3734 - 3738 3737 - 3739 3740 + 1533 1534 1535 + 1536 1537 1538 ) (attributes - 1 1 - 1 1 - 0 1 - 1 1 - 1 1 - 1 1 - 1 1 + 1 1 1 + 1 1 1 ) - (images "tiles/ghostwood/underground/ghostwood-3_under.png") + (images "tiles/forest/fishbone.png") ) + (tiles - (width 4) - (height 9) + (width 4)(height 3) (ids - 3777 3778 3779 3780 - 3781 3782 3783 3784 - 3785 3786 3787 3788 - 3789 3790 3791 3792 - 3793 3794 3795 3796 - 3797 3798 3799 3800 - 3801 3802 3803 3804 - 3805 3806 3807 3808 - 3809 3810 0 0 + 1551 1540 1541 1542 + 1543 1544 1545 1546 + 1547 1548 1549 1550 ) (attributes 1 1 1 1 1 1 1 1 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 0 0 - ) - (images "tiles/ghostwood/underground/ghostwood-4_under.png") - ) - (tiles - (width 3) - (height 4) - (ids - 1926 1927 1934 - 1928 1929 1935 - 1930 1931 3811 - 1932 1933 0 ) - (attributes - 1 1 1 - 1 1 1 - 1 1 1 - 1 1 0 - ) - (images "tiles/ghostwood/underground/variants_ghost.png") - ) - (tiles - (width 4) - (height 10) - (ids - 4965 4966 4969 4970 - 4967 4968 4971 4972 - 4973 4974 4977 4978 - 4975 4976 4979 4980 - 4981 4982 4986 4987 - 4983 4984 4988 4989 - 0 4985 4990 0 - 4991 0 0 4996 - 4992 4993 4997 4998 - 4994 4995 4999 5000 - ) - (attributes - 0 0 0 0 - 17 1 1 17 - 17 0 0 17 - 1 1 1 1 - 17 0 0 17 - 1 17 17 1 - 0 1 1 0 - 0 0 0 0 - 17 0 0 17 - 1 17 17 1 - ) - (datas - 0 0 0 0 - 34 0 0 32 - 16 0 0 18 - 0 0 0 0 - 16 0 0 18 - 0 0 2 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 2 - 0 32 34 0 - ) - (images "tiles/ghostwood/underground/ghostwood-12_under.png") - ) - (tiles - (width 4) - (height 4) - (ids - 4917 4918 4921 4922 - 4919 4920 4923 4924 - 4925 4926 0 0 - 4927 4928 0 0 - ) - (attributes - 17 17 17 17 - 1 1 1 1 - 17 17 0 0 - 1 1 0 0 - ) - (datas - 18 16 2 0 - 0 0 0 0 - 50 64 0 0 - 0 0 0 0 - ) - (images "tiles/ghostwood/underground/variants2_ghost.png") - ) - (tiles - (width 7) - (height 5) - (ids - 5089 5090 5091 5101 5102 5105 5106 - 5092 0 5093 5103 5104 5107 5108 - 5094 5095 5096 5109 5110 5113 5114 - 5097 5098 0 5111 5112 5115 5116 - 5099 5100 0 0 0 0 0 - ) - (attributes - 0 0 0 1 1 1 1 - 0 0 0 1 1 1 1 - 0 0 0 1 1 1 1 - 0 0 0 1 1 1 1 - 0 0 0 0 0 0 0 - ) - (images "tiles/ghostwood/underground/ghostwood-13_under.png") - ) - - (tiles - (width 6) - (height 7) - (ids - 1479 1480 1481 1483 1484 1485 - 1486 1487 1488 1490 1491 1492 - 1493 1494 1495 1497 1498 1499 - 1500 1501 1502 1504 1505 1506 - 1507 1508 1509 2263 2264 0 - 1467 1468 1469 1470 0 0 - 1471 1472 1473 1474 0 0 - ) - (images "tiles/castle/castle_wall.png") - ) - - (tiles - (width 5) - (height 3) - (ids - 2257 1489 2255 1478 1477 - 1482 1476 2254 1503 1510 - 2258 1496 2256 2261 2262 - ) - (images "tiles/castle/castle_corner.png") - ) - - - (tiles - (width 2) - (height 3) - (ids - 1511 1512 - 1513 1514 - 1515 1516 - ) - (images "tiles/castle/stonewindow.png") - ) - (tiles - (width 4) - (height 3) - (ids - 1519 1520 1521 1522 - 1523 1524 1525 1526 - 1527 1528 1529 1530 - ) - (images "tiles/castle/door.png") + (images "tiles/blocks/deprecated/icebridge.png") + (deprecated #t) ) - (tiles - (width 3) - (height 2) - (ids - 1533 1534 1535 - 1536 1537 1538 - ) - (attributes - 1 1 1 - 1 1 1 - ) - (images "tiles/forest/fishbone.png") - ) (tile (id 1568) (images - "tiles/castle/castle_block.png" + "tiles/castle/deprecated/castle_block.png" ) (solid #t) + (deprecated #t) ) (tiles - (width 2) - (height 3) - (ids - 1569 1571 - 1570 1573 - 1572 1574 - ) - (attributes - 1024 0 - 1024 1024 - 0 1024 - ) - (images "tiles/forest/pogonia.png") - ) - - (tiles - (width 2) - (height 2) + (width 2)(height 2) (ids 1600 1601 1602 1603 @@ -3521,8 +3682,7 @@ ) (tiles - (width 2) - (height 2) + (width 2)(height 2) (ids 1604 1605 1606 1607 @@ -3531,8 +3691,7 @@ ) (tiles - (width 2) - (height 2) + (width 2)(height 2) (ids 1608 1609 1610 1611 @@ -3541,8 +3700,7 @@ ) (tiles - (width 2) - (height 2) + (width 2)(height 2) (ids 1612 1613 1614 1615 @@ -3551,8 +3709,7 @@ ) (tiles - (width 2) - (height 2) + (width 2)(height 2) (ids 1616 1617 1618 1619 @@ -3561,8 +3718,7 @@ ) (tiles - (width 2) - (height 2) + (width 2)(height 2) (ids 1620 1621 1622 1623 @@ -3571,8 +3727,7 @@ ) (tiles - (width 2) - (height 2) + (width 2)(height 2) (ids 1624 1625 1626 1627 @@ -3581,1745 +3736,4286 @@ ) (tiles - (width 2) - (height 2) + (width 2)(height 2) (ids 1628 1629 1630 1631 ) (images "tiles/signs/danger.png") ) - + + (tiles + (width 7)(height 7) + (ids + 1632 1633 1634 1635 1636 1637 1638 + 1639 1640 1641 1642 1643 1644 1645 + 1646 1647 1648 1649 1650 1651 1652 + 1653 1654 1655 1656 1657 1658 1659 + 1660 1661 1662 1663 1664 1665 1666 + 1667 1668 1669 1670 1671 1672 1673 + 1674 1675 1676 1677 1678 1679 1680 + ) + (attributes + 0 0 0 0 0 0 0 + 0 1 1 0 0 0 0 + 0 1 1 0 0 0 0 + 0 1 1 0 0 0 0 + 0 1 1 1 1 0 0 + 0 0 0 0 0 1 0 + 0 0 0 0 0 1 0 + ) + (images "tiles/forest/deprecated/exit-tree.png") + (deprecated #t) + ) + + (tile + (id 1700) + (images + "tiles/lava/deprecated/zone/body-1-1.png" + "tiles/lava/deprecated/zone/body-1-2.png" + "tiles/lava/deprecated/zone/body-1-3.png" + "tiles/lava/deprecated/zone/body-1-4.png") + (water #t) + (hurts #t) + (fire #t) + (solid #f) + (fps 8) + (deprecated #t) + ) + + (tile + (id 1701) + (images + "tiles/lava/deprecated/zone/edge-1-1.png" + "tiles/lava/deprecated/zone/edge-1-2.png" + "tiles/lava/deprecated/zone/edge-1-3.png" + "tiles/lava/deprecated/zone/edge-1-4.png") + (water #t) + (hurts #t) + (fire #t) + (solid #f) + (fps 8) + (deprecated #t) + ) + + (tile + (id 1702) + (images + "tiles/lava/deprecated/zone/bubble-1-1.png" + "tiles/lava/deprecated/zone/bubble-1-2.png" + "tiles/lava/deprecated/zone/bubble-1-3.png" + "tiles/lava/deprecated/zone/bubble-1-4.png" + "tiles/lava/deprecated/zone/rest.png" + "tiles/lava/deprecated/zone/rest.png" + "tiles/lava/deprecated/zone/rest.png" + "tiles/lava/deprecated/zone/rest.png") + (hurts #t) + (fire #t) + (solid #f) + (fps 8) + (deprecated #t) + ) + + (tile + (id 1703) + (images + "tiles/lava/deprecated/zone/rest.png" + "tiles/lava/deprecated/zone/rest.png" + "tiles/lava/deprecated/zone/rest.png" + "tiles/lava/deprecated/zone/rest.png" + "tiles/lava/deprecated/zone/bubble-in-1-1.png" + "tiles/lava/deprecated/zone/bubble-in-1-2.png" + "tiles/lava/deprecated/zone/bubble-in-1-3.png" + "tiles/lava/deprecated/zone/bubble-in-1-4.png") + (fire #t) + (solid #f) + (fps 8) + (deprecated #t) + ) + + (tile + (id 1704) + (images + "tiles/lava/deprecated/zone/rest.png" + "tiles/lava/deprecated/zone/rest.png" + "tiles/lava/deprecated/zone/rest.png" + "tiles/lava/deprecated/zone/rest.png" + "tiles/lava/deprecated/zone/bubble-out-1-1.png" + "tiles/lava/deprecated/zone/bubble-out-1-2.png" + "tiles/lava/deprecated/zone/bubble-out-1-3.png" + "tiles/lava/deprecated/zone/bubble-out-1-4.png" + ) + (fire #t) + (solid #f) + (fps 8) + (deprecated #t) + ) + + (tile + (id 1705) + (images + "tiles/lava/deprecated/zone/body-2-1.png" + "tiles/lava/deprecated/zone/body-2-2.png" + "tiles/lava/deprecated/zone/body-2-3.png" + "tiles/lava/deprecated/zone/body-2-4.png" + ) + (water #t) + (hurts #t) + (fire #t) + (solid #f) + (fps 8) + (deprecated #t) + ) + + (tile + (id 1706) + (images + "tiles/lava/deprecated/zone/body-bottom-1-1.png" + "tiles/lava/deprecated/zone/body-bottom-1-2.png" + "tiles/lava/deprecated/zone/body-bottom-1-3.png" + "tiles/lava/deprecated/zone/body-bottom-1-4.png" + ) + (water #t) + (hurts #t) + (fire #t) + (solid #f) + (fps 8) + (deprecated #t) + ) + + (tile + (id 1707) + (images + "tiles/lava/deprecated/zone/edge-right-1-1.png" + "tiles/lava/deprecated/zone/edge-right-1-2.png" + "tiles/lava/deprecated/zone/edge-right-1-3.png" + "tiles/lava/deprecated/zone/edge-right-1-4.png" + ) + (fire #t) + (solid #f) + (fps 8) + (deprecated #t) + ) + + (tile + (id 1708) + (images + "tiles/lava/deprecated/zone/surface-1-1.png" + "tiles/lava/deprecated/zone/surface-1-2.png" + "tiles/lava/deprecated/zone/surface-1-3.png" + "tiles/lava/deprecated/zone/surface-1-4.png" + ) + (solid #f) + (fps 8) + (deprecated #t) + ) + + (tile + (id 1709) + (images + "tiles/lava/deprecated/zone/edge-left-1-1.png" + "tiles/lava/deprecated/zone/edge-left-1-2.png" + "tiles/lava/deprecated/zone/edge-left-1-3.png" + "tiles/lava/deprecated/zone/edge-left-1-4.png" + ) + (fire #t) + (solid #f) + (fps 8) + (deprecated #t) + ) + + (tile + (id 1710) + (images + "tiles/lava/deprecated/zone/edge-right-1-4.png" + "tiles/lava/deprecated/zone/edge-right-1-3.png" + "tiles/lava/deprecated/zone/edge-right-1-2.png" + "tiles/lava/deprecated/zone/edge-right-1-1.png" + ) + (fire #t) + (solid #f) + (fps 8) + (deprecated #t) + ) + + (tile + (id 1711) + (images + "tiles/lava/deprecated/zone/edge-left-1-4.png" + "tiles/lava/deprecated/zone/edge-left-1-3.png" + "tiles/lava/deprecated/zone/edge-left-1-3.png" + "tiles/lava/deprecated/zone/edge-left-1-4.png" + ) + (fire #t) + (solid #f) + (fps 8) + (deprecated #t) + ) + + (tile + (id 1712) + (images + "tiles/lava/deprecated/zone/edge-flip-1-1.png" + "tiles/lava/deprecated/zone/edge-flip-1-2.png" + "tiles/lava/deprecated/zone/edge-flip-1-3.png" + "tiles/lava/deprecated/zone/edge-flip-1-4.png" + ) + (fire #t) + (solid #f) + (fps 8) + (deprecated #t) + ) + + (tile + (id 1713) + (images + "tiles/lava/deprecated/zone/bubble-bottom-1-1.png" + "tiles/lava/deprecated/zone/bubble-bottom-1-2.png" + "tiles/lava/deprecated/zone/bubble-bottom-1-3.png" + "tiles/lava/deprecated/zone/bubble-bottom-1-4.png" + ) + (fire #t) + (solid #f) + (fps 8) + (deprecated #t) + ) + + (tile + (id 1714) + (images + "tiles/lava/deprecated/zone/rest.png" + "tiles/lava/deprecated/zone/rest.png" + "tiles/lava/deprecated/zone/rest.png" + "tiles/lava/deprecated/zone/rest.png" + "tiles/lava/deprecated/zone/bubble-out-1-1.png" + "tiles/lava/deprecated/zone/bubble-out-1-2.png" + "tiles/lava/deprecated/zone/bubble-out-1-3.png" + "tiles/lava/deprecated/zone/bubble-out-1-4.png" + ) + (fire #t) + (solid #f) + (fps 8) + (deprecated #t) + ) + + (tile + (id 1715) + (images + "tiles/lava/deprecated/zone/bubble-2-1.png" + "tiles/lava/deprecated/zone/bubble-2-2.png" + "tiles/lava/deprecated/zone/bubble-2-3.png" + "tiles/lava/deprecated/zone/bubble-2-4.png" + "tiles/lava/deprecated/zone/rest.png" + "tiles/lava/deprecated/zone/rest.png" + "tiles/lava/deprecated/zone/rest.png" + "tiles/lava/deprecated/zone/rest.png" + ) + (fire #t) + (solid #f) + (fps 8) + (deprecated #t) + ) + + (tile + (id 1716) + (images + "tiles/lava/deprecated/zone/rest.png" + "tiles/lava/deprecated/zone/rest.png" + "tiles/lava/deprecated/zone/rest.png" + "tiles/lava/deprecated/zone/rest.png" + "tiles/lava/deprecated/zone/bubble-in-1-1.png" + "tiles/lava/deprecated/zone/bubble-in-1-2.png" + "tiles/lava/deprecated/zone/bubble-in-1-3.png" + "tiles/lava/deprecated/zone/bubble-in-1-4.png" + ) + (fire #t) + (solid #f) + (fps 8) + (deprecated #t) + ) + + (tiles + (width 6) + (height 5) + (ids + 1723 1724 1725 1726 5555 5556 + 1817 1818 1819 1820 5557 5558 + 5559 5560 0 5562 5563 5564 + 0 5566 5567 0 5569 5570 + 5571 5572 5573 5574 5575 5576 + ) + (attributes + 0 0 0 0 0 0 + 1 1 0 1 17 17 + 1 1 0 1 0 0 + 0 0 0 0 17 17 + 17 17 17 17 17 17 + ) + (datas + 0 0 0 0 0 0 + 0 0 0 0 2 0 + 0 0 0 0 0 0 + 0 0 0 0 66 48 + 18 34 32 16 50 64 + ) + (images "tiles/forest/earth-floor.png") + ) + + (tiles + (width 2) + (height 2) + (ids + 1727 1728 + 1729 1730 + ) + (images "tiles/signs/color_cyan.png") + ) + + (tiles + (width 2) + (height 2) + (ids + 1731 1732 + 1733 1734 + ) + (images "tiles/signs/color_yellow.png") + ) + + (tiles + (width 2) + (height 2) + (ids + 3992 3993 + 3994 3995 + ) + (images "tiles/signs/color_green.png") + ) + + (tiles + (width 2) + (height 2) + (ids + 3996 3997 + 3998 3999 + ) + (images "tiles/signs/color_magenta.png") + ) + + (tile + (id 1735) + (images + "tiles/forest/deprecated/exit/top1.png" + "tiles/forest/deprecated/exit/top2.png" + "tiles/forest/deprecated/exit/top3.png" + "tiles/forest/deprecated/exit/top2.png" + ) + (hurts #f) + (solid #f) + (fps 2) + (deprecated #t) + ) + + (tile + (id 1736) + (images + "tiles/forest/deprecated/exit/bottom1.png" + "tiles/forest/deprecated/exit/bottom2.png" + "tiles/forest/deprecated/exit/bottom3.png" + "tiles/forest/deprecated/exit/bottom2.png" + ) + (hurts #t) + (solid #f) + (fps 2) + (deprecated #t) + ) + +;unisolid Branches. Tile ID 1746-1761 + (tiles + (width 4) + (height 6) + (ids + 0 0 1746 1747 + 1760 1761 1748 1749 + 0 0 1750 1751 + 1752 1753 0 0 + 1754 1755 1756 1757 + 1758 1759 0 0 + ) + (attributes + 0 0 0 0 + 3 3 3 3 + 0 0 0 0 + 0 0 0 0 + 3 3 3 3 + 0 0 0 0 + ) + (images "tiles/forest/deprecated/branch.png") + (deprecated #t) + ) + + (tiles + (width 2) + (height 6) + (ids + 1762 1763 + 1764 1765 + 1766 1767 + 1768 1769 + 1770 1771 + 1772 1773 + ) + (attributes + 1 1 + 1 1 + 1 1 + 1 1 + 1 1 + 1 1 + ) + (images "tiles/castle/deprecated/column.png") + (deprecated #t) + ) + + (tiles + (width 5) + (height 7) + (ids + 1774 1775 1776 1777 1778 + 1779 1780 1781 1782 1783 + 1784 1785 1786 1787 1788 + 1789 1790 1791 1792 1793 + 1794 1795 1796 1797 1798 + 1799 1800 1801 1802 1803 + 1804 1805 1806 1807 1808 + ) + (attributes + 0 0 0 0 0 + 1 1 1 1 1 + 1 1 1 1 1 + 1 1 1 1 1 + 1 1 1 1 1 + 1 1 1 1 1 + 1 1 1 1 1 + ) + (images "tiles/castle/deprecated/brown.png") + (deprecated #t) + ) + + ;Snow Castle, Tile ID 3878-3922 + (tiles + (width 4) + (height 12) + (ids + 3878 3879 3880 3881 + 3882 3883 3884 3885 + 3886 3887 3888 3889 + 3890 3891 3892 3893 + 3894 3895 3896 3897 + 3898 3899 3900 3901 + 3902 3903 3904 3905 + 3906 3907 3908 3909 + 3910 0 3911 0 + 3912 3913 3914 0 + 3915 3916 3917 3918 + 3919 3920 3921 3922 + ) + (attributes + 0 0 0 0 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 0 1 0 + 1 1 1 0 + 0 0 0 0 + 3 3 3 3 + ) + (images "tiles/castle/deprecated/snowcastle.png") + (deprecated #t) + ) + + ;Statue of Nolok, Tile ID 1809-1814 + (tiles + (width 2) + (height 3) + (ids + 1809 1812 + 1810 1813 + 1811 1814 + ) + (images "tiles/castle/nolok-statue.png") + ) + + (tiles + (width 2) + (height 2) + (ids + 1822 1823 + 1824 1825 + ) + (images "tiles/signs/needrock.png") + ) + + (tiles + (width 4) + (height 5) + (ids + 1860 1861 1862 1863 + 1864 1865 1866 1867 + 1868 1869 1870 1871 + 1872 1873 1874 1875 + 1876 1877 1879 1880 + ) + (attributes + 0 0 0 0 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + ) + (images "tiles/forest/underground/groundtiles-1.png") + ) + + (tiles + (width 4) + (height 3) + (ids + 0 1890 1891 0 + 1892 1893 1894 1895 + 1896 1897 1898 1899 + ) + (attributes + 0 0 0 0 + 17 17 17 17 + 1 1 1 1 + ) + (datas + 0 0 0 0 + 18 34 32 16 + 0 0 0 0 + ) + (images "tiles/forest/underground/slope-1.png") + ) + + (tiles + (width 4) + (height 4) + (ids + 1900 1901 1902 1903 + 1904 1905 1906 1907 + 1908 1909 1910 1911 + 1912 1913 1914 1915 + ) + (attributes + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + ) + (images "tiles/forest/underground/background1.png") + ) + + (tiles + (width 4) + (height 5) + (ids + 1916 1917 1918 1919 + 1920 1921 1922 1923 + 1924 1925 1926 1927 + 1928 1929 1930 1931 + 1932 1933 1934 1935 + ) + (attributes + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + ) + (images "tiles/forest/underground/deprecated/background.png") + (deprecated #t) + ) + + (tiles + (width 4) + (height 5) + (ids + 1936 1937 1938 1939 + 1940 1941 1942 1943 + 1944 1945 1946 1947 + 1948 1949 1950 1951 + 1952 1953 1954 1955 + ) + (images "tiles/forest/underground/roots.png") + ) + + (tiles + (width 4) + (height 4) + (ids + 1956 1957 1958 1959 + 1960 1961 1962 1963 + 1964 1965 1966 1967 + 1968 1969 1970 1971 + ) + (attributes + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + ) + (images "tiles/forest/underground/background2.png") + ) + + (tiles + (width 7) + (height 4) + (ids + 1972 1976 1980 1984 5577 5578 5579 + 1973 1977 1981 1985 5580 5581 5582 + 1974 1978 1982 1986 0 5583 5584 + 1975 1979 1983 1987 0 0 5585 + ) + (attributes + 1024 1024 1024 1024 1024 1024 1024 + 1024 1024 1024 1024 1024 1024 1024 + 1024 1024 1024 1024 0 1024 1024 + 1024 1024 1024 1024 0 0 1024 + ) + (images "tiles/forest/spikevine.png") + ) + + (tiles + (width 2) + (height 4) + (ids + 1988 1989 + 1990 1991 + 1992 1993 + 1994 1995 + ) + (attributes + 1 1 + 1 1 + 1 1 + 1 1 + ) + (images "tiles/forest/statue.png") + ) + + (tiles + (width 2) + (height 1) + (ids + 1996 1997 + ) + (attributes + 1 1 + ) + (images "tiles/forest/deprecated/dangersign.png") + (deprecated #t) + ) + + (tiles + (width 3) + (height 4) + (ids + 1998 1999 2000 + 2023 2024 2025 + 2026 2027 2028 + 2029 2030 2031 + ) + (attributes + 1 1 1 + 1 1 1 + 1 1 1 + 1 1 1 + ) + (images "tiles/forest/deprecated/exit/outhouse.png") + (deprecated #t) + ) + + (tiles + (width 4) + (height 4) + (ids + 2032 2033 2034 2035 + 2036 2037 0 2038 + 2039 0 0 2040 + 0 2041 2042 0 + ) + (images "tiles/lightmap/lightmap-bw.png") + ) + + (tiles + (width 4) + (height 4) + (ids + 4195 4196 4197 4198 + 4199 4200 4201 4202 + 4203 4204 4205 4206 + 0 4207 4208 4209 + ) + (images "tiles/lightmap/lightmap-white.png") + ) + + (tiles + (width 4) + (height 4) + (ids + 4210 4211 4212 4213 + 4214 4215 4216 4217 + 4218 4219 4220 4221 + 0 4222 4223 4224 + ) + (images "tiles/lightmap/lightmap-black.png") + ) + ; NOT dupes of 57/58 - unisolid + (tiles + (width 2) + (height 1) + (ids + 2043 2044 + ) + (attributes + 3 3 + ) + (images "tiles/pipe/green.png") + (deprecated #t) + ) + + (tiles + (width 1) + (height 3) + (ids + 2047 + 2048 + 2049 + ) + (images "tiles/forest/ladder.png") + ) + + (tiles + (width 4) + (height 1) + (ids + 2019 2140 2141 2142 + ) + (attributes + 512 512 512 512 + ) + (images + (surface (diffuse-texture (file "tiles/water/antarctic-1.png")) + (displacement-texture (file "tiles/water/antarctic-displacement.png"))) + (surface (diffuse-texture (file "tiles/water/antarctic-2.png")) + (displacement-texture (file "tiles/water/antarctic-displacement.png"))) + (surface (diffuse-texture (file "tiles/water/antarctic-3.png")) + (displacement-texture (file "tiles/water/antarctic-displacement.png"))) + (surface (diffuse-texture (file "tiles/water/antarctic-4.png")) + (displacement-texture (file "tiles/water/antarctic-displacement.png"))) + (surface (diffuse-texture (file "tiles/water/antarctic-5.png")) + (displacement-texture (file "tiles/water/antarctic-displacement.png"))) + (surface (diffuse-texture (file "tiles/water/antarctic-6.png")) + (displacement-texture (file "tiles/water/antarctic-displacement.png"))) + (surface (diffuse-texture (file "tiles/water/antarctic-7.png")) + (displacement-texture (file "tiles/water/antarctic-displacement.png"))) + (surface (diffuse-texture (file "tiles/water/antarctic-8.png")) + (displacement-texture (file "tiles/water/antarctic-displacement.png"))) + ) + (fps 16) + ) + + (tile + (id 2020) + (images + "tiles/water/antarctic.png") + (water #t) + ) + + (tiles + (width 5) + (height 7) + (ids 2091 2092 2093 2094 2095 + 2096 2097 2098 2099 2100 + 2101 2102 2103 2104 2105 + 2106 2107 2108 2109 2110 + 2111 2112 2113 2114 2115 + 2116 2117 2118 2119 2120 + 3515 0 0 0 0 + ) + (attributes + 1 1 1 1 1 + 1 1 1 1 1 + 1 1 1 1 1 + 1 1 1 1 1 + 1 1 1 1024 1024 + 1 1 1 1024 1024 + 1 0 0 0 0 + ) + (images "tiles/castle/deprecated/foreground.png") + (deprecated #t) + ) + + (tiles + (width 4) + (height 1) + (ids + 2136 2137 2138 2139 + ) + (attributes + 3584 3584 3584 3584 + ) + (images + "tiles/lava/lava-1.png" + "tiles/lava/lava-2.png" + "tiles/lava/lava-3.png" + "tiles/lava/lava-4.png" + "tiles/lava/lava-5.png" + "tiles/lava/lava-6.png" + "tiles/lava/lava-7.png" + "tiles/lava/lava-8.png" + ) + (fps 16) + ) + + (tile + (id 4004) + (images + "tiles/lava/lava.png") + (water #t) + (hurts #t) + (fire #t) + (solid #f) + ) + + (tile + (id 2153) + (unisolid #t) + (deprecated #t) + (editor-images "tiles/auxiliary/invisible-unisolid-editor.png") + ) + + (tiles + (width 6) + (height 2) + (ids + 2158 2159 2154 2155 2156 2157 + 2160 2161 2162 2163 2164 2165 + ) + (attributes + 0 0 0 3 3 3 + 0 0 0 3 3 3 + ) + (images "tiles/snow/air.png") + ) + + (tiles + (width 4) + (height 3) + (ids + 2166 2167 2168 2169 + 2170 2171 2172 2173 + 2174 2175 2176 2177) + (attributes + 3 3 3 3 + 0 0 0 0 + 0 0 0 0) + (images "tiles/snow/deprecated/unisolid.png") + (deprecated #t) + ) + + (tiles + (width 4) + (height 1) + (ids 2178 3038 3039 3040) + (attributes 1024 1024 1024 1024) + (images + "tiles/snow/deprecated/spike.png") + (deprecated #t) + ) + + (tiles + (width 8) + (height 3) + (ids + 2179 2180 2181 2182 2183 2184 2185 2186 + 2187 2188 2189 2190 2191 2192 2193 2194 + 2195 2196 2197 2198 2199 2200 2201 2202) + + (images "tiles/snow/background3.png")) + (tiles + (width 3) + (height 3) + (ids + 2203 2204 2205 + 2206 2207 2208 + 2209 2210 2211) + (attributes + 1 1 1 + 1 1 1 + 1 1 1) + (images "tiles/test/test.png")) + (tiles + (width 12) + (height 14) + (ids + 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 + 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 + 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 + 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 + 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 + 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 + 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 + 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 + 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 + 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 + 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 + 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 + 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 + 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379) + (images "tiles/castle/deprecated/background.png") + (deprecated #t) + ) + + (tiles + (width 2) + (height 2) + (ids + 2380 2381 + 2382 2383) + (images "tiles/castle/deprecated/stones.png") + (deprecated #t) + ) + + (tiles + (width 4) + (height 6) + (ids + 2384 2385 2386 2949 + 2387 2388 2389 2950 + 2390 2391 2392 2951 + 2393 2394 2395 2952 + 2953 2954 2955 2956 + 2396 2397 2398 2399 + ) + (attributes + 0 0 0 0 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + ) + (images "tiles/snow/underground/convex.png") + ) + + (tiles + (width 2) + (height 2) + (ids + 2400 2401 + 2402 2403 + ) + (attributes + 0 0 + 0 0 + ) + (images "tiles/signs/trampoline.png") + ) + + ; NOT dupes of 2085/2086 - unisolid + (tiles + (width 2) + (height 1) + (ids + 2404 2405 + ) + (attributes + 3 3 + ) + (images "tiles/pipe/blue.png") + (deprecated #t) + ) + + (tile + (id 2406) + (ice #t) + (solid #t) + (images + "objects/icecube/icecube.png") + (deprecated #t) + ) + + (tiles + (width 18) + (height 8) + (ids + 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2519 2520 2521 2522 + 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2535 2536 2537 2538 + 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2551 2552 2553 2554 + 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 0 0 2461 2462 2567 2568 2569 2570 + 2463 2464 2465 2466 2467 2468 2469 0 0 2472 2473 2474 2475 2476 2583 2584 2585 2586 + 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2599 2600 2601 2602 + 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2615 2616 2617 2618 + 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 0 0 0 0 0 2632 2633 0 + ) + (attributes + 0 0 0 0 0 0 1 1 1 1 17 17 17 17 1 1 1 1 + 1 1 1 1 1 1 1 1 1 1 1 1 17 17 1 1 1 1 + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 17 17 17 17 + 1 1 1 1 1 1 1 1 1 1 0 0 1 1 0 17 17 0 + 1 1 1 1 1 1 1 0 0 1 17 17 17 17 1 0 0 1 + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 1 1 1 1 1 1 1 1 1 1 1 0 0 1 17 17 17 17 + 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 + ) + (datas + 0 0 0 0 0 0 0 0 0 0 2 0 66 48 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 50 64 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 49 67 3 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65 51 0 + 0 0 0 0 0 0 0 0 0 0 18 34 32 16 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 33 17 19 35 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + ) + (images "tiles/crystalcave/deprecated/ground.png") + (deprecated #t) + ) + + (tiles + (width 8) + (height 6) + (ids + 2647 2648 2649 2650 2663 2664 2665 2675 + 2651 2652 2653 2654 2666 2667 2668 2676 + 2655 2656 2657 2658 2669 2670 2671 2677 + 2659 2660 2661 2662 2672 2673 2674 2678 + 3531 3532 0 0 3533 3534 3535 0 + 3536 3537 0 0 3538 3539 3540 0 + ) + (attributes + 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 + ) + (images "tiles/crystalcave/deprecated/background.png") + (deprecated #t) + ) + + (tiles + (width 16) + (height 8) + (ids + 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 + 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 + 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 + 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 + 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 + 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 + 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 + 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 + ) + (attributes + 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 + 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 + 1 1 1 1 1 1 1 1 17 1 1 1 1 17 0 0 + 1 1 1 1 1 1 1 1 0 17 1 1 17 0 0 0 + ) + (datas + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 1 0 0 0 0 3 0 0 + 0 0 0 0 0 0 0 0 0 1 0 0 3 0 0 0 + ) + (images "tiles/snowmountain/deprecated/ground.png") + (deprecated #t) + ) + + (tiles + (width 2) + (height 5) + (ids + 2807 2808 + 2809 2810 + 2811 2812 + 2813 2814 + 2815 2816 + ) + (attributes + 0 3 + 0 3 + 0 3 + 19 19 + 0 0 + ) + (datas + 0 0 + 0 0 + 0 0 + 2 0 + 0 0 + ) + (images "tiles/castle/deprecated/chain.png") + (deprecated #t) + ) + + (tiles + (width 4) + (height 6) + (ids + 2817 2818 2819 2820 + 2821 2822 2823 2824 + 2825 2826 2827 2828 + 2829 2830 2831 2832 + 2833 2834 2835 2836 + 2837 2838 2839 2840 + ) + (attributes + 3 3 3 3 + 19 19 19 19 + 19 19 19 19 + 19 19 19 19 + 19 19 19 19 + 19 19 19 19 + ) + (datas + 0 1 2 3 + 0 1 2 3 + 16 17 18 19 + 32 33 34 35 + 48 49 50 51 + 64 65 66 67 + ) + (editor-images "tiles/auxiliary/invisible-unisolid-slopes.png") + ) + + (tiles + (width 4) + (height 11) + (ids + 57 58 2841 2842 + 59 60 2843 2844 + 1742 1743 2845 2846 + 53 55 1744 2847 + 54 56 1745 2848 + 2849 2851 2852 2853 + 2850 2854 2855 2856 + 2857 2858 2859 2860 + 2861 2862 2863 2864 + 2865 2866 2867 2868 + 2869 2870 2871 2872 + ) + (attributes + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 17 1 1 17 + 1 1 1 1 + 1 1 1 1 + 17 1 1 17 + ) + (datas + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 2 0 0 0 + 0 0 0 0 + 0 0 0 0 + 1 0 0 3 + ) + (images "tiles/pipe/green.png") + ) + + (tiles + (width 4) + (height 11) + (ids + 2085 2086 2873 2874 + 2087 2088 2875 2876 + 2089 2090 2877 2878 + 2143 2144 2145 2879 + 2146 2147 2148 2880 + 2881 2883 2884 2885 + 2882 2886 2887 2888 + 2889 2890 2891 2892 + 2893 2894 2895 2896 + 2897 2898 2899 2900 + 2901 2902 2903 2904 + ) + (attributes + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 17 1 1 17 + 1 1 1 1 + 1 1 1 1 + 17 1 1 17 + ) + (datas + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 2 0 0 0 + 0 0 0 0 + 0 0 0 0 + 1 0 0 3 + ) + (images "tiles/pipe/blue.png") + ) + + (tiles + (width 2)(height 2) + (ids + 2905 2906 + 2907 2908 + ) + (attributes + 0 0 + 0 0 + ) + (images "tiles/pipe/mask.png") + ) + + (tiles + (width 4)(height 10) + (ids + 2909 2910 2913 2914 + 2911 2912 2915 2916 + 2917 2918 2921 2922 + 2919 2920 2923 2924 + 3139 3140 3141 3142 + 3143 3144 3145 3146 + 0 3147 3148 0 + 3149 0 0 3150 + 3151 3152 3153 3154 + 3155 3156 3157 3158 + ) + (attributes + 0 0 0 0 + 17 1 1 17 + 17 0 0 17 + 1 1 1 1 + 17 0 0 17 + 1 17 17 1 + 0 1 1 0 + 0 0 0 0 + 17 0 0 17 + 1 17 17 1 + ) + (datas + 0 0 0 0 + 34 0 0 32 + 16 0 0 18 + 0 0 0 0 + 16 0 0 18 + 0 0 2 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 2 + 0 32 34 0 + ) + (images "tiles/snow/slope_transitions.png" ) + ) + + (tiles + (width 2)(height 4) + (ids + 2957 2962 + 2958 2961 + 2959 2960 + 2997 2998 + ) + (attributes + 1 1 + 1 1 + 1 1 + 1 1 + ) + (images "tiles/snow/underground/concave.png") + ) + + (tiles + (width 8)(height 6) + (ids + 0 0 0 0 0 0 2963 2969 + 0 2986 2990 0 2975 2979 2964 2970 + 2983 2987 2991 2994 2976 2980 2965 2971 + 2984 2988 2992 2995 2977 2981 2966 2972 + 2985 2989 2993 2996 2978 2982 2967 2973 + 0 0 0 0 0 0 2968 2974 + ) + (attributes + 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 17 17 + 17 17 17 17 17 17 17 17 + 1 1 1 1 1 1 1 1 + 17 17 17 17 17 17 17 17 + 0 0 0 0 0 0 17 17 + ) + (datas + 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 66 48 + 18 34 32 16 2 0 50 64 + 0 0 0 0 0 0 0 0 + 33 17 19 35 1 3 49 67 + 0 0 0 0 0 0 65 51 + ) + (images "tiles/snow/underground/slope.png") + ) + + (tiles + (width 4)(height 10) + (ids + 2999 3000 3001 3002 + 3003 3004 3005 3006 + 3007 3008 3009 3010 + 3011 3012 3013 3014 + 3015 3016 3017 3018 + 3019 3020 3021 3022 + 3023 3024 3025 3026 + 3027 3028 3029 3030 + 3031 3032 3033 3034 + 3035 3036 0 0 + ) + (images "tiles/pole/diagonals.png") + ) + + (tiles + (width 3)(height 1) + (ids + 3041 3042 3043 + ) + (attributes + 257 257 257 + ) + (deprecated #t) + (images + (surface + (diffuse-texture (file "objects/icecube/iceslick.png")) + (displacement-texture (file "objects/icecube/iceslick-displacement.png")) + ) + ) + ) + + (tiles + (width 4)(height 4) + (ids + 3044 3045 3046 3047 + 3048 3049 3050 3051 + 3052 3053 0 3055 + 3056 3057 0 3059 + ) + (attributes + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 0 + ) + (images "tiles/snow/special2.png") + ) + + (tiles + (width 1)(height 2) + (ids + 3054 ;duplicate of 3045 + 3058 ;duplicate of 3049 + ) + (attributes + 1 + 1 + ) + (images (region "tiles/snow/special2.png" 32 0 32 64)) + (deprecated #t) + ) + + (tiles + (width 4)(height 4) + (ids + 3060 3062 3064 3066 + 3061 3063 3065 3067 + 4332 4333 4334 4335 + 4336 4337 4338 4339 + ) + (images "tiles/background/rope.png") + ) + + (tiles + (width 4)(height 5) + (ids + 3068 3069 3070 3071 + 3072 3073 3074 3075 + 3076 3077 3078 3079 + 3080 3081 3082 3083 + 3084 3085 3086 3087 + ) + (attributes + 0 0 0 0 + 0 1 1 0 + 0 1 1 0 + 0 1 1 0 + 0 0 0 0 + ) + (images "tiles/halloween/base.png") + ) + + (tiles + (width 2)(height 4) + (ids + 3088 3089 + 3090 3091 + 3092 3093 + 3137 3138 + ) + (attributes + 0 0 + 0 0 + 1 1 + 0 0 + ) + (images "tiles/halloween/inner.png") + ) + + (tiles + (width 2)(height 2) + (ids + 3094 3095 + 3096 3097 + ) + (attributes + 1 1 + 1 1 + ) + (images "tiles/halloween/variation.png") + ) + + (tiles + (width 2)(height 2) + (ids + 3098 3099 + 3100 3101 + ) + (attributes + 1 1 + 1 1 + ) + (images "tiles/halloween/outerdarkness.png") + ) + + (tiles + (width 2)(height 2) + (ids + 3102 3103 + 3104 3105 + ) + (attributes + 1 1 + 1 1 + ) + (images "tiles/halloween/innerdarkness.png") + ) + + (tiles + (width 7)(height 4) + (ids + 3114 3115 3116 3117 3118 3119 3120 + 3121 3106 3107 3123 3124 3125 3126 + 3122 3108 3109 3127 3128 3129 0 + 3131 3132 3133 3134 3135 3136 0 + ) + (images "tiles/halloween/darkness.png") + ) + + (tiles + (width 2)(height 2) + (ids + 3110 3111 + 3112 3113 + ) + (attributes + 1 1 + 1 1 + ) + (images "tiles/halloween/deprecated/black.png") + (deprecated #t) + ) + + (tiles + (width 2)(height 2) + (ids + 3163 3164 + 3165 3166 + ) + (images "tiles/signs/icehold.png") + ) + + (tiles + (width 4)(height 2) + (ids + 3257 3258 3269 3270 + 3259 3260 3271 3272 + ) + (attributes + 1 1 1 1 + 1 1 1 1 + ) + (images "tiles/castle/deprecated/grey_misc.png") + (deprecated #t) + ) + + (tiles + (width 6)(height 7) + (ids + 3167 3168 3169 3170 3171 3172 + 3173 3174 3175 3176 3177 3178 + 3179 3180 3181 3182 3183 3184 + 3185 3186 3187 3188 3189 3190 + 3191 3192 3193 3194 0 0 + 3197 3198 3199 3200 0 0 + 3203 3204 3205 3206 0 0 + ) + (attributes + 0 0 0 1 17 17 + 0 0 0 1 17 17 + 0 0 0 1 1 1 + 1 1 17 17 1 1 + 1 1 17 17 0 0 + 1024 1024 1024 1024 0 0 + 1024 1024 1024 1024 0 0 + ) + (datas + 0 0 0 0 2 0 + 0 0 0 0 1 3 + 0 0 0 0 0 0 + 0 0 2 0 0 0 + 0 0 1 3 0 0 + 0 0 0 0 0 0 + 0 0 0 0 0 0 + ) + (images "tiles/blocks/industrial.png") + ) + + (tiles + (width 4)(height 2) + (ids + 3261 3262 3263 3264 + 3265 3266 3267 3268 + ) + (attributes + 1 1 0 0 + 1 1 0 0 + ) + (images "tiles/snow/deprecated/custom.png") + (deprecated #t) + ) +(tiles + (width 3)(height 1) + (ids + 3281 3282 3520 + ) + (attributes + 3 3 3 + ) + (datas + 0 0 0 + ) + (images "tiles/castle/deprecated/grey_unisolid.png") + (deprecated #t) + ) +(tiles + (width 2)(height 3) + (ids + 3285 3286 + 3287 3288 + 3289 3290 + ) + (images "tiles/doodads/tux-statue.png") + ) +(tiles + (width 16)(height 8) + (ids + 0 0 3291 0 3292 0 3293 0 0 3294 0 3295 0 3296 0 0 + 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 + 3313 3314 3315 3316 0 0 0 3317 3318 0 0 0 0 0 0 0 + 3319 3320 3321 3322 0 3323 3324 3325 3326 3327 3328 0 0 0 0 0 + 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 0 0 0 0 + 0 3341 3342 0 3343 3344 3345 3346 3347 3348 3349 3350 0 0 0 0 + 3351 3352 3353 3354 0 3355 3356 3357 3358 3359 3360 0 0 0 0 0 + 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 0 0 0 0 + ) + (attributes + 0 0 17 0 17 0 17 0 0 17 0 17 0 17 0 0 + 17 17 1 17 1 17 1 17 17 1 17 1 17 1 17 17 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 1 1 1 0 0 17 17 17 17 0 0 0 0 0 0 + 1 1 1 1 17 17 1 1 1 1 17 17 0 0 0 0 + 0 17 17 0 1 1 1 1 1 1 1 1 0 0 0 0 + 17 17 17 17 0 17 17 17 17 17 17 0 0 0 0 0 + 17 1 1 17 17 1 1 1 1 1 1 17 0 0 0 0 + ) + (datas + 0 0 18 0 18 0 18 0 0 16 0 16 0 16 0 0 + 18 34 0 34 0 34 0 34 32 0 32 0 32 0 32 16 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 18 34 32 16 0 0 0 0 0 0 + 0 0 0 0 18 34 0 0 0 0 32 16 0 0 0 0 + 0 66 48 0 0 0 0 0 0 0 0 0 0 0 0 0 + 66 50 64 48 0 2 2 2 0 0 0 0 0 0 0 0 + 50 0 0 64 2 0 0 0 0 0 0 0 0 0 0 0 + ) + (images "tiles/snowmountain/deprecated/ground2.png") + (deprecated #t) + ) + + (tiles + (width 5)(height 2) + (ids + 3417 3373 3374 3375 3376 + 3378 3379 3380 3381 3382 + ) + (attributes + 1 1 1 1 1 + 1 1 1 1 1 + ) + (images "tiles/ghostwood/ghostwood-4.png") + ) + + (tiles + (width 1)(height 2) + (deprecated #t) + (ids + 3377 + 3383 + ) + (attributes + 0 + 1 + ) + (images (region "tiles/ghostwood/ghostwood-4.png" 160 0 32 64)) + ) + + (tiles + (width 2)(height 3) + (ids + 3384 3385 + 3386 3387 + 3388 3389 + ) + (attributes + 0 0 + 17 17 + 1 1 + ) + (datas + 0 0 + 2 0 + 0 0 + ) + (images "tiles/ghostwood/ghostwood-5.png") + ) + + (tiles + (width 2)(height 4) + (ids + 3390 3391 + 3392 3393 + 3394 3395 + 3396 3397 + ) + (attributes + 0 0 + 17 17 + 17 17 + 1 1 + ) + (datas + 0 0 + 66 48 + 50 64 + 0 0 + ) + (images "tiles/ghostwood/ghostwood-6.png") + ) + + (tiles + (width 8)(height 3) + (ids + 0 0 0 3401 0 0 0 0 + 3406 3407 3408 3409 3410 3411 3412 3413 + 3414 3415 0 0 0 0 3416 3418 + ) + (attributes + 1 1 1 1 1 1 1 1 + 17 17 17 17 17 17 17 17 + 1 1 0 0 0 0 17 17 + ) + (datas + 0 0 0 0 0 0 0 0 + 33 17 19 35 1 3 49 67 + 0 0 0 0 0 0 65 51 + ) + (images "tiles/ghostwood/ghostwood-2.png") + ) + + (tiles + (width 8)(height 1) + (deprecated #t) + (ids + 3398 3399 3400 0 3402 3403 3404 3405 + ) + (attributes + 1 1 1 0 1 1 1 1 + ) + (images "tiles/ghostwood/ghostwood-2.png") + ) + + (tiles + (width 4)(height 2) + (ids + 3419 3420 3421 3422 + 3423 3424 3425 3426 + ) + (attributes + 0 0 0 0 + 0 0 0 0 + ) + (images "tiles/background/storm-cloud.png") + ) + + (tiles + (width 4)(height 2) + (ids + 3427 3428 3429 3430 + 3431 3432 3433 3434 + ) + (attributes + 0 0 0 0 + 3 3 3 3 + ) + (images "tiles/background/storm-cloud.png") + (deprecated #t) + ) + + (tiles + (width 3)(height 1) + (ids + 3435 3436 3437 + ) + (attributes + 1 1 1 + ) + (images "tiles/forest/forestlog.png") + ) + + (tiles + (width 2)(height 4) + (ids + 3438 3439 + 3440 3441 + 3442 3443 + 3444 3445 + ) + (attributes + 1 1 + 1 1 + 1 1 + 1 1 + ) + (images "tiles/forest/statue2.png") + ) + + (tile + (id 3446) + (images "tiles/spike/deprecated/spikeup.png") + (hurts #t) + (deprecated #t) + ) + + (tile + (id 3447) + (images "tiles/spike/deprecated/spikedown.png") + (hurts #t) + (deprecated #t) + ) + + (tile + (id 3448) + (images "tiles/spike/deprecated/spikeleft.png") + (hurts #t) + (deprecated #t) + ) + + (tile + (id 3449) + (images "tiles/spike/deprecated/spikeright.png") + (hurts #t) + (deprecated #t) + ) + + (tiles + (width 2)(height 4) + (ids + 3450 3451 + 3452 3453 + 3454 3455 + 3456 3457 + ) + (attributes + 1 1 + 1 1 + 1 1 + 1 1 + ) + (images "tiles/forest/deprecated/nolok_statue.png") + (deprecated #t) + ) + + (tile + (id 3458) + (images "tiles/spike/deprecated/spikeup2.png") + (hurts #t) + (deprecated #t) + ) + + (tile + (id 3459) + (images "tiles/spike/deprecated/spikedown2.png") + (hurts #t) + (deprecated #t) + ) + + (tile + (id 3460) + (images "tiles/spike/deprecated/spikeleft2.png") + (hurts #t) + (deprecated #t) + ) + + (tile + (id 3461) + (images "tiles/spike/deprecated/spikeright2.png") + (hurts #t) + (deprecated #t) + ) + + (tiles + (width 4)(height 3) + (ids + 3462 3463 3464 3465 + 3466 3467 3468 3469 + 3470 3471 0 3472 + ) + (attributes + 17 17 17 17 + 17 17 17 17 + 17 17 0 1 + ) + (datas + 33 17 19 35 + 49 67 1 3 + 65 51 0 0 + ) + (images "tiles/forest/ceiling-slopes.png") + ) + + (tiles + (width 2)(height 3) + (ids + 3473 3474 + 3475 3476 + 3477 3478 + ) + (attributes + 1 1 + 1 1 + 1 1 + ) + (images "tiles/forest/underground/convex.png") + ) + + (tiles + (width 4)(height 1) + (ids + 3479 3480 3481 3482 + ) + (attributes + 1 1 1 1 + ) + (images "tiles/forest/underground/groundtiles-2.png") + ) + + (tiles + (width 2)(height 4) + (ids + 3483 0 + 3484 3485 + 3486 3487 + 3488 3489 + ) + (attributes + 0 0 + 1 1 + 1 1 + 1 1 + ) + (images "tiles/forest/underground/wall.png") + ) + + (tile + (id 3490) + (images "tiles/forest/underground/deprecated/variation-1.png") + (solid #t) + (deprecated #t) + ) + + (tiles + (width 4)(height 3) + (ids + 3491 3492 3493 3494 + 3495 3496 3497 3498 + 3499 3500 0 0 + ) + (attributes + 17 17 17 17 + 17 17 17 17 + 17 17 0 0 + ) + (datas + 33 17 19 35 + 49 67 1 3 + 65 51 0 0 + ) + (images "tiles/forest/underground/ceiling-slopes.png") + ) + + (tiles + (width 2)(height 3) + (ids + 3501 3502 + 3503 3504 + 3505 3506 + ) + (attributes + 0 0 + 17 17 + 1 1 + ) + (datas + 0 0 + 2 0 + 0 0 + ) + (images "tiles/forest/underground/slope-2.png") + ) + + (tiles + (width 2)(height 4) + (ids + 3507 3508 + 3509 3510 + 3511 3512 + 3513 3514 + ) + (attributes + 0 0 + 17 17 + 17 17 + 1 1 + ) + (datas + 0 0 + 66 48 + 50 64 + 0 0 + ) + (images "tiles/forest/underground/slope-3.png") + ) + + (tiles + (width 4)(height 2) + (ids + 3523 3524 3525 3526 + 3527 3528 3529 3530 + ) + (attributes + 1024 1024 1024 1024 + 1024 1024 1024 1024 + ) + (images "tiles/background/deprecated/storm-cloud-electrified.png") + (deprecated #t) + ) + + (tiles + (width 4)(height 4) + (images "tiles/snow/underground/background.png") + (ids + 3541 3542 3543 3544 + 3545 3546 3547 3548 + 3549 3550 3551 3552 + 3553 3554 3555 3556 + ) + ) + + (tiles + (width 4)(height 4) + (images "tiles/background/deprecated/backgroundtile2.png") + (ids + 3557 3558 3559 3560 + 3561 3562 3563 3564 + 3565 3566 3567 3568 + 3569 3570 3571 3572 + ) + (deprecated #t) + ) + + (tiles + (width 4)(height 4) + (images "tiles/background/deprecated/backgroundtile3.png") + (ids + 3573 3574 3575 3576 + 3577 3578 3579 3580 + 3581 3582 3583 3584 + 3585 3586 3587 3588 + ) + (deprecated #t) + ) + + (tiles + (width 4)(height 4) + (images "tiles/background/deprecated/backgroundtile4.png") + (ids + 3589 3590 3591 3592 + 3593 3594 3595 3596 + 3597 3598 3599 3600 + 3601 3602 3603 3604 + ) + (deprecated #t) + ) + + (tiles + (width 4)(height 4) + (images "tiles/background/deprecated/backgroundtile5.png") + (ids + 3605 3606 3607 3608 + 3609 3610 3611 3612 + 3613 3614 3615 3616 + 3617 3618 3619 3620 + ) + (deprecated #t) + ) + + (tiles + (width 4)(height 11) + (images "tiles/forest/deprecated/treelarge.png") + (ids + 3625 3626 3627 3628 + 3629 3630 3631 3632 + 3633 3634 3635 3636 + 3637 3638 3639 3640 + 3641 3642 3643 3644 + 3645 3646 3647 3648 + 3649 3650 3651 3652 + 3653 3654 3655 3656 + 3657 3658 3659 3660 + 3661 3662 3663 3664 + 3665 3666 3667 3668 + ) + (deprecated #t) + ) + + (tiles + (width 2)(height 9) + (images "tiles/forest/deprecated/treesmall.png") + (ids + 3669 3670 + 3671 3672 + 3673 3674 + 3675 3676 + 3677 3678 + 3679 3680 + 3681 3682 + 3683 3684 + 3685 3686 + ) + (deprecated #t) + ) + + (tiles + (width 4)(height 8) + (images "tiles/forest/deprecated/rock1.png") + (ids + 3687 3688 3689 3690 + 3691 3692 3693 3694 + 3695 3696 3697 3698 + 3699 3700 3701 3702 + 3703 3704 3705 3706 + 3707 3708 3709 3710 + 3711 3712 3713 3714 + 3715 3716 3717 3728 + ) + (attributes + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + ) + (deprecated #t) + ) + + (tiles + (width 4)(height 26) + (images "tiles/forest/deprecated/rock3.png") + (ids + 3769 3770 3771 3772 + 3773 3774 3775 3776 + 3777 3778 3779 3780 + 3781 3782 3783 3784 + 3785 3786 3787 3788 + 3789 3790 3791 3792 + 3793 3794 3795 3796 + 3797 3798 3799 3800 + 3801 3802 3803 3804 + 3805 3806 3807 3808 + 3809 3810 3811 3812 + 3813 3814 3815 3816 + 3817 3818 3819 3820 + 3821 3822 3823 3824 + 3825 3826 3827 3828 + 3829 3830 3831 3832 + 3833 3834 3835 3836 + 3837 3838 3839 3840 + 3841 3842 3843 3844 + 3845 3846 3847 3848 + 3849 3850 3851 3852 + 3853 3854 3855 3856 + 3857 3858 3859 3860 + 3861 3862 3863 3864 + 3865 3866 3867 3868 + 3869 3870 3871 3872 + ) + (attributes + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + ) + (deprecated #t) + ) + + (tiles + (width 4)(height 10) + (images "tiles/forest/deprecated/rock2.png") + (ids + 3729 3730 3731 3732 + 3733 3734 3735 3736 + 3737 3738 3739 3740 + 3741 3742 3743 3744 + 3745 3746 3747 3748 + 3749 3750 3751 3752 + 3753 3754 3755 3756 + 3757 3758 3759 3760 + 3761 3762 3763 3764 + 3765 3766 3767 3768 + ) + (attributes + 17 17 17 17 + 17 17 17 17 + 17 17 17 17 + 17 17 17 17 + 17 17 17 17 + 17 17 17 17 + 17 17 17 17 + 17 17 17 17 + 17 17 17 17 + 17 17 17 17 + ) + (datas + 18 34 18 34 + 33 17 33 17 + 32 16 32 16 + 19 35 19 35 + 2 0 2 0 + 1 3 1 3 + 66 48 66 48 + 50 64 50 64 + 49 67 49 67 + 65 51 65 51 + ) + (deprecated #t) + ) + + (tiles + (width 4)(height 1) + (fps 16) + (water #t) + (hurts #t) + (images + "tiles/water/antarctic-1a.png" + "tiles/water/antarctic-1b.png" + ) + (ids + 3873 3874 3875 3876 + ) + (attributes + 1024 1024 1024 1024 + ) + ) + + (tile + (fps 16) + (water #t) + (hurts #t) + (images + "tiles/water/antarctic-1c.png" + "tiles/water/antarctic-1d.png" + ) + (id 3877) + ) + + (tiles + (width 1)(height 3) + (images "tiles/snow/flagpole.png") + (ids + 3927 3928 3929 + ) + ) + + (tiles + (width 9)(height 11) + (images "tiles/snow/icechunk.png") + (ids + 3972 3973 3974 3987 3983 7195 7196 7197 7198 + 3976 3977 3978 3975 3979 7199 7200 7201 7202 + 3980 3981 3982 5225 5209 7203 7204 7207 7209 + 5212 5210 5207 5211 5217 7205 7206 7208 7210 + 5213 5221 0 5206 5208 0 0 7211 7212 + 3984 5224 5228 5233 5229 0 0 7213 7214 + 5214 5215 5216 5232 5236 0 0 0 0 + 5218 5219 5220 5235 5234 0 0 0 0 + 5222 5223 3985 0 0 0 0 0 0 + 5226 5227 3986 0 0 0 0 0 0 + 5230 5231 0 0 0 0 0 0 0 + ) + (attributes + 257 257 257 257 257 17 17 17 17 + 257 257 257 257 257 17 17 17 17 + 257 257 257 257 257 17 17 17 17 + 257 257 257 257 257 17 17 17 17 + 257 257 0 257 257 0 0 17 17 + 257 257 257 257 257 0 0 17 17 + 257 257 257 257 257 0 0 0 0 + 257 257 257 257 257 0 0 0 0 + 257 257 257 0 0 0 0 0 0 + 257 257 257 0 0 0 0 0 0 + 257 257 0 0 0 0 0 0 0 + ) + (datas + 0 0 0 0 0 18 34 32 16 + 0 0 0 0 0 33 17 19 35 + 0 0 0 0 0 2 0 66 48 + 0 0 0 0 0 1 3 50 64 + 0 0 0 0 0 0 0 49 67 + 0 0 0 0 0 0 0 65 51 + 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 + ) + ) + + (tiles + (width 4)(height 9) + (images "tiles/snow/variants2.png") + (ids + 3988 3989 3990 3991 + 5368 5369 5370 5371 + 5372 5373 5374 5375 + 5376 5377 5378 5379 + 5380 5381 0 0 + 5384 5385 5386 5387 + 5388 5389 5390 5391 + 5392 5393 0 0 + 5396 5397 0 0 + ) + (attributes + 1 1 1 0 + 1 1 17 17 + 17 17 17 17 + 17 17 17 17 + 17 17 0 0 + 17 17 17 17 + 1 1 1 1 + 17 17 0 0 + 1 1 0 0 + ) + (datas + 0 0 0 0 + 0 0 1 3 + 33 35 49 67 + 18 16 2 0 + 50 64 0 0 + 18 16 2 0 + 0 0 0 0 + 50 64 0 0 + 0 0 0 0 + ) + ) + + (tiles + (width 11)(height 7) + (images "tiles/retro/retro_snow.png") + (ids + 4000 4001 4002 4003 4170 4171 4172 4190 5093 5094 5095 + 4078 4079 4080 4081 4173 4175 4185 4191 5096 5097 5098 + 4100 4101 4102 4194 4174 4176 4186 4192 5099 5100 5101 + 4157 4158 4159 4160 4177 4178 4187 4193 5102 5103 5104 + 4161 4162 4163 4164 4179 4183 4188 5105 5106 5107 5108 + 4103 4165 4166 4167 4180 4184 4189 5109 5110 5111 5112 + 4168 4169 4181 4182 5113 5114 5115 5116 7275 7276 0 + ) + (attributes + 1 1 1 1 1 1 1 1 1 1 1 + 1 1 1 1 1 1 0 1 1 1 1 + 0 0 0 1 1 1 1 1 1 1 1 + 1 1 1 1 1 1 1 1 1 1 1 + 1 1 1 1 1 1 1 1 1 1 1 + 1 1 1 1 1 1 1 1 1 1 1 + 1 1 1 1 1 1 1 1 1 1 0 + ) + ) + + (tiles + (width 4)(height 1) + (images "tiles/blocks/deprecated/block_season.png") + (ids + 4005 4006 4007 4008 + ) + (attributes + 1 1 1 1 + ) + (deprecated #t) + ) + + (tiles + (width 4)(height 7) + (ids + 4009 4010 4011 4012 + 4013 4014 4015 4016 + 4017 4018 4019 4020 + 4021 4022 4023 4024 + 4025 4026 4027 4028 + 4029 4030 4031 4032 + 4033 4034 4035 0 + ) + (attributes + 1 1 1 1 + 1 1 1 1 + 1 1 1 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + ) + (images "tiles/snow/special3.png") + ) + + (tiles + (width 4)(height 11) + (ids + 4037 4038 4039 4040 + 4041 4042 4043 4044 + 4045 4046 4047 4048 + 4049 4050 4051 4052 + 4053 4054 4055 4056 + 4057 4058 4059 4060 + 4061 4062 4063 4064 + 4065 4066 4067 4068 + 4069 4070 4071 4072 + 4073 4074 4075 4076 + 4077 0 0 0 + ) + (attributes + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 0 0 0 + ) + (images "tiles/snow/underground/special.png") + ) + + (tiles + (width 2)(height 3) + (images "tiles/castle/nolok-statue-forest.png") + (ids + 4082 4083 + 4084 4085 + 4086 4087 + ) + (attributes + 0 0 + 0 0 + 0 0 + ) + ) + + (tiles + (width 2)(height 3) + (images "tiles/castle/nolok-statue-ghost.png") + (ids + 4088 4089 + 4090 4091 + 4092 4093 + ) + (atrributes + 0 0 + 0 0 + 0 0 + ) + ) + + (tiles + (width 2)(height 3) + (images "tiles/castle/nolok-statue-snow.png") + (ids + 4094 4095 + 4096 4097 + 4098 4099 + ) + (attributes + 0 0 + 0 0 + 0 0 + ) + ) + + (tiles + (width 2)(height 3) + (ids + 2523 2524 + 2525 2526 + 2527 2528) + (attributes + 4096 4096 + 4096 4096 + 4096 4096) + (images "tiles/test/walljump-test.png") + ) + (tiles + (width 5)(height 3) + (ids + 4104 4105 4106 4107 4108 + 4109 4110 4111 4112 4113 + 4114 4115 4116 0 0) + (attributes + 4096 1 4096 1 1 + 4096 1 4096 1 1 + 4096 1 4096 0 0) + (images "tiles/snow/snow-walljump.png") + ) + + (tiles + (width 2)(height 3) + (ids + 4119 4120 + 4121 4122 + 4123 4124) + (attributes + 4096 4096 + 4096 4096 + 4096 4096) + (images "tiles/forest/leaf-walljump.png") + ) + + (tiles + (width 2)(height 2) + (ids + 4125 4126 + 4127 4128) + (images "tiles/signs/walljump.png") + ) + + (tiles + (width 4)(height 16) + (ids + 2460 2470 2471 2631 + 2634 2515 2516 2517 + 2518 4153 4154 4155 + 2529 2530 2531 2532 + 2533 2534 2539 2540 + 2541 2542 2543 2544 + 2545 2546 2547 2548 + 2549 2550 2555 2566 + 2571 2572 2573 2574 + 2575 2576 2577 2578 + 2579 2580 2581 2582 + 2587 2588 2589 2590 + 2591 2592 2593 2594 + 2595 2596 2597 2598 + 2603 2604 2605 2606 + 2607 2608 2609 2610) + (images "tiles/forest/rocks-forest.png") + ) + + (tiles + (width 4)(height 13) + (ids + 2611 2612 2613 2614 + 2619 2620 2621 2622 + 2623 2624 2625 2626 + 2627 2628 2629 2630 + 2635 2636 2637 2638 + 2639 2640 2641 2642 + 2643 2644 2645 2646 + 4129 4130 4131 4132 + 4133 4134 4135 4136 + 4137 4138 4139 4140 + 4141 4142 4143 4144 + 4145 4146 4147 4148 + 4149 4150 4151 4152) + (images "tiles/snow/rocks-snow.png") + ) + (tiles - (width 2) - (height 2) + (width 10)(height 9) (ids - 1727 1728 - 1729 1730 + 4225 4226 4227 4228 0 0 4229 4230 4231 4232 + 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 + 4243 4244 4245 4246 0 0 4247 4248 4249 4250 + 4251 4252 4253 4254 0 0 4255 4256 4257 4258 + 4259 4260 4261 4262 0 0 4263 4264 4265 4266 + 4267 4268 4269 4270 4271 4272 4273 0 0 0 + 4274 4275 4276 0 4277 4278 0 0 0 0 + 4279 4280 4281 4282 4283 4284 4285 4286 0 0 + 4287 0 0 4288 4289 4290 4291 4292 0 0 ) - (images "tiles/signs/color_cyan.png") + (attributes + 1 1 1 1 0 0 1 0 0 0 + 1 1 1 1 1 1 1 1 1 1 + 1 1 1 1 0 0 1 1 1 1 + 1 1 1 0 0 0 0 1 1 1 + 1 0 0 1 0 0 1 0 0 0 + 1 1 1 1 1 1 1 0 0 0 + 1 1 1 0 1 1 0 0 0 0 + 1 0 0 1 1 1 1 1 0 0 + 1 0 0 1 1 1 1 1 0 0 + ) + (images "tiles/crystalcave/deprecated/ground_extra.png") + (deprecated #t) ) + (tiles - (width 2) - (height 2) + (width 4)(height 10) (ids - 1731 1732 - 1733 1734 + 4293 4294 4295 4296 + 4297 4298 4299 4300 + 4301 4302 4303 4304 + 4305 4306 4307 4308 + 4309 4310 4311 4312 + 4313 4314 4315 4316 + 4317 4318 4319 4320 + 4321 4322 4323 4324 + 4325 4326 4327 0 + 4328 4329 4330 4331 ) - (images "tiles/signs/color_yellow.png") + (attributes + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 0 + 1 1 1 1 + ) + (images "tiles/forest/foresttiles-13.png") ) + (tiles - (width 2) - (height 2) + (width 7)(height 4) (ids - 3992 3993 - 3994 3995 + 4340 4341 4342 4343 4344 4345 4346 + 4347 4348 4349 4350 4351 4352 4353 + 4354 4355 4356 4357 4358 4359 4360 + 4361 4362 4363 4364 4365 4366 4367 ) - (images "tiles/signs/color_green.png") + (images "tiles/blocks/block_overlays.png") ) + (tiles - (width 2) - (height 2) + (width 9)(height 5) (ids - 3996 3997 - 3998 3999 + 4368 4369 4370 4371 4372 4373 4374 4375 4376 + 4377 4378 4379 4380 4381 4382 4383 4384 4385 + 4386 4387 4388 4389 4390 0 0 0 0 + 4395 4396 4397 4398 4399 4400 4401 4402 4403 + 4404 4405 4406 4391 4407 4408 4409 4410 4411 ) - (images "tiles/signs/color_magenta.png") + (attributes + 1 1 1 1 1 0 0 0 0 + 1 1 1 1 1 0 0 0 0 + 1 1 1 1 1 0 0 0 0 + 0 0 0 1 1 1 1 1 1 + 0 0 0 1 1 1 1 0 0 + ) + (images "tiles/blocks/bridge_brown.png") ) (tiles - (width 3) - (height 2) + (width 9)(height 5) (ids - 1746 1747 1748 - 1749 1750 1751 + 4412 4413 4414 4415 4416 4417 4418 4419 4420 + 4421 4422 4423 4424 4425 4426 4427 4428 4429 + 4430 4431 4432 4433 4434 0 0 0 0 + 4439 4440 4441 4442 4443 4444 4445 4446 4447 + 4392 4393 4394 5358 5359 5360 5361 5362 5363 ) (attributes - 3 3 3 - 3 3 3 + 1 1 1 1 1 0 0 0 0 + 1 1 1 1 1 0 0 0 0 + 1 1 1 1 1 0 0 0 0 + 0 0 0 1 1 1 1 1 1 + 0 0 0 1 1 1 1 0 0 ) - (images "tiles/forest/branches.png") + (images "tiles/blocks/bridge_ice.png") ) - + (tiles - (width 11) - (height 6) + (width 5)(height 3) (ids - 2106 2092 2107 2108 2111 2113 2095 2094 1754 3888 3889 - 2096 2112 2097 2098 1752 2104 2101 2103 2099 3890 3891 - 2116 2102 2117 2118 1753 2100 3515 2105 1755 3892 3893 - 1756 1758 3878 3879 3880 3881 2091 2093 0 3894 3895 - 1757 1759 3882 3883 3884 3885 0 0 0 3896 3897 - 1760 1761 0 3886 3887 0 0 0 0 0 0 + 4448 4449 4450 4451 4452 + 4453 4454 4455 4456 4457 + 4458 4459 4460 4461 4462 ) - (attributes - 1 1 1 1 1 1 1 1 1 0 0 - 1 1 1 1 1 1 1 1 1 0 0 - 1 1 1 1 1 1 1 1 1 0 0 - 17 17 17 17 17 17 1 1 0 0 0 - 1 1 1 17 17 1 0 0 0 0 0 - 1 1 0 1 1 0 0 0 0 0 0 - ) - (datas - 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 - 2 0 18 34 32 16 0 0 0 0 0 - 0 0 0 34 32 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 - ) - (images "tiles/castle/castle_snow.png") + (images "tiles/castle/castle_corner.png") ) + (tiles - (width 15) - (height 6) - (ids - 1779 1780 1781 1783 1794 1788 1807 1806 1774 1762 1763 1772 1773 2214 2215 - 1784 1785 1786 1798 1801 1782 1799 1800 1775 1764 1765 3257 3258 2216 2217 - 1789 1790 1792 1793 1802 1795 1805 1804 1776 1766 1767 3269 3270 2218 2219 - 3906 3907 3898 3899 3900 3901 1796 1797 1777 1768 1769 3259 3260 2220 2221 - 3908 3909 3902 3903 3904 3905 1778 1803 1808 1770 1771 3271 3272 2222 2223 - 1787 1791 0 3910 3911 2265 3912 3913 3914 2259 2260 2212 2213 2224 2225 + (width 15)(height 6) + (ids + 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 + 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 + 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 + 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 + 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 + 4538 4539 0 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 ) (attributes 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 - 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 - 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 - 17 17 17 17 17 17 1 1 1 0 0 0 0 0 0 - 1 1 1 17 17 1 1 1 1 0 0 0 0 0 0 - 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 - ) - (datas - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 2 0 18 34 32 16 0 0 0 0 0 0 0 0 0 - 0 0 0 34 32 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - ) + 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 + 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 + 19 19 19 19 19 19 1 1 1 0 0 0 0 0 0 + 1 1 1 19 19 1 1 1 1 0 0 0 0 0 0 + 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 + ) + (datas + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 0 18 34 32 16 0 0 0 0 0 0 0 0 0 + 0 0 0 34 32 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + ) (images "tiles/castle/castle_forest.png") ) + (tiles - (width 5) - (height 6) + (width 11)(height 6) (ids - 2226 2227 2230 2232 2234 - 2228 2229 2231 2233 2235 - 2236 2237 2240 2241 2243 - 2238 2239 2249 2242 2244 - 2245 2246 0 2250 2252 - 2247 2248 0 2251 2253 + 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 + 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 + 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 + 4586 4587 4588 4589 4590 4591 4592 4593 0 4595 4596 + 4597 4598 4599 4600 4601 4602 0 0 0 4606 4607 + 4608 4609 0 4611 4612 0 0 0 0 0 0 ) (attributes - 1 1 1 1 1 - 1 1 1 1 1 - 1 1 1 1 1 - 1 1 1 1 1 - 1 1 0 1 1 - 1 1 0 1 1 + 1 1 1 1 1 1 1 1 1 0 0 + 1 1 1 1 1 1 1 1 1 0 0 + 1 1 1 1 1 1 1 1 1 0 0 + 19 19 19 19 19 19 1 1 0 0 0 + 1 1 1 19 19 1 0 0 0 0 0 + 1 1 0 1 1 0 0 0 0 0 0 ) - (images "tiles/castle/ruins.png") + (datas + 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 + 2 0 18 34 32 16 0 0 0 0 0 + 0 0 0 34 32 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 + ) + (images "tiles/castle/castle_snow.png") ) - ;Statue of Nolok, Tile ID 1809-1814 (tiles - (width 2) - (height 3) + (width 6)(height 7) (ids - 1809 1812 - 1810 1813 - 1811 1814 + 1479 1480 1481 1483 1484 1485 + 1486 1487 1488 1490 1491 1492 + 1493 1494 1495 1497 1498 1499 + 1500 1501 1502 1504 1505 1506 + 1507 1508 1509 1476 1477 0 + 1467 1468 1469 1470 0 0 + 1471 1472 1473 1474 0 0 ) - (images "tiles/castle/nolok-statue.png") + (images "tiles/castle/castle_wall.png") ) + (tiles - (width 2) - (height 2) + (width 4)(height 7) (ids - 1822 1823 - 1824 1825 + 4661 4662 4663 4664 + 4665 4666 4667 4668 + 4669 4670 0 0 + 4673 4674 4675 4676 + 4677 4678 4679 4680 + 4681 4682 4683 4684 + 4685 4686 4687 4688 ) - (images "tiles/signs/needrock.png") + (images "tiles/castle/chain.png") ) + (tiles - (width 14) - (height 5) + (width 2)(height 1) + (deprecated #t) (ids - 1860 1861 1862 1863 0 1890 1891 0 3501 3502 3507 3508 3495 3496 - 1864 1865 1866 1867 1892 1893 1894 1895 3503 3504 3509 3510 3499 3500 - 1868 1869 1870 1871 1896 1897 1898 1899 3505 3506 3511 3512 0 0 - 1872 1873 1874 1875 3491 3492 3493 3494 3497 3498 3513 3514 0 0 - 1876 1877 1879 1880 0 0 0 0 0 0 0 0 0 0 - ) - (attributes - 0 0 0 0 0 0 0 0 0 0 0 0 17 17 - 1 1 1 1 17 17 17 17 17 17 17 17 17 17 - 1 1 1 1 1 1 1 1 1 1 17 17 0 0 - 1 1 1 1 17 17 17 17 17 17 1 1 0 0 - 1 1 1 1 0 0 0 0 0 0 0 0 0 0 - ) - (datas - 0 0 0 0 0 0 0 0 0 0 0 0 49 67 - 0 0 0 0 18 34 32 16 2 0 66 48 65 51 - 0 0 0 0 0 0 0 0 0 0 50 64 0 0 - 0 0 0 0 33 17 19 35 1 3 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4671 4672 ) - (images "tiles/forest/underground/groundtiles-1.png") + (images (region "tiles/castle/chain.png" 64 64 64 32)) ) + (tiles - (width 4) - (height 1) + (width 5)(height 6) (ids - 3479 3480 3481 3482 + 4689 4690 4691 4692 4693 + 4694 4695 4696 4697 4698 + 4699 4700 4701 4702 4703 + 4704 4705 4706 4707 4708 + 4709 4710 0 4712 4713 + 4714 4715 0 4717 4718 ) (attributes - 1 1 1 1 + 1 1 1 1 1 + 1 1 1 1 1 + 1 1 1 1 1 + 1 1 1 1 1 + 1 1 0 1 1 + 1 1 0 1 1 ) - (images "tiles/forest/underground/groundtiles-1a.png") + (images "tiles/castle/ruins.png") ) + (tiles - (width 2) - (height 3) + (width 2)(height 2) (ids - 4487 4488 - 3473 3474 - 3475 3476 + 297 298 + 295 296 ) (attributes - 1 1 - 1 1 - 1 1 + 1024 1024 + 1024 1024 ) - (images "tiles/forest/underground/groundtiles-2.png") + (images "tiles/castle/ruin_spikes.png") ) + (tiles - (width 2) - (height 7) + (width 13)(height 7) (ids - 3478 3477 - 4489 4490 - 3483 3484 - 3489 3486 - 3487 3485 - 4491 4492 - 3488 4493 + 4723 4724 4725 4726 7215 4728 4729 4730 4731 4734 4735 4732 4733 + 4736 4737 4738 4739 7216 4741 4742 4743 4744 4747 4748 4745 4746 + 4749 4750 4751 4752 7217 4754 4755 4756 4757 4760 4761 4758 4759 + 4762 4763 4764 4765 7218 4767 4768 4769 4770 4773 4774 4771 4772 + 4775 4776 4777 4778 7219 4727 4753 0 0 0 0 4784 4785 + 4788 4789 4790 4791 7220 4740 4766 0 0 0 0 4797 4798 + 7221 7222 7223 7224 7225 0 0 4781 4782 4786 4787 4810 4811 ) (attributes - 1 1 - 1 1 - 0 1 - 1 1 - 1 1 - 1 1 - 1 1 + 0 0 0 0 0 19 19 19 19 19 19 19 19 + 1 1 1 1 1 1 1 1 1 1 1 19 19 + 1 1 1 1 1 1 1 1 1 1 1 1 1 + 1 1 1 1 1 19 19 19 19 19 19 1 1 + 1 1 1 1 1 1 1 0 0 0 0 19 19 + 0 0 0 0 0 1 1 0 0 0 0 19 19 + 1 1 1 1 1 0 0 0 0 0 0 0 0 + ) + (datas + 0 0 0 0 0 18 34 32 16 2 0 66 48 + 0 0 0 0 0 0 0 0 0 0 0 50 64 + 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 33 17 19 35 1 3 0 0 + 0 0 0 0 0 0 0 0 0 0 0 49 67 + 0 0 0 0 0 0 0 0 0 0 0 65 51 + 0 0 0 0 0 0 0 0 0 0 0 0 0 ) - (images "tiles/forest/underground/groundtiles-3.png") + (images "tiles/crystalcave/crystal_1x1.png") ) + (tiles - (width 4) - (height 9) + (width 4)(height 8) (ids - 4505 4506 4507 4508 - 4509 4510 4511 4512 - 4513 4514 4515 4516 - 4517 4518 4519 4520 - 4521 4522 4523 4524 - 4525 4526 4527 4528 - 4529 4530 4531 4532 - 4533 4534 4535 4536 - 4537 4538 0 0 + 7226 7227 7228 7229 + 7230 7231 7232 7233 + 7234 7235 7236 7237 + 7238 7239 7240 7241 + 7242 7243 7244 0 + 7245 7246 7247 0 + 7248 7249 7250 0 + 7251 7252 0 0 ) (attributes 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 0 0 + 1 1 1 0 + 1 1 1 0 + 1 1 1 0 + 1 1 0 0 ) - (images "tiles/forest/underground/groundtiles-4.png") + (images "tiles/crystalcave/crystal_1x1_extra.png") ) + (tiles - (width 3) - (height 4) + (width 6)(height 3) (ids - 1916 1917 1924 - 1918 1919 1925 - 1920 1921 3490 - 1922 1923 0 + 5023 5024 5029 5030 5033 5034 + 5025 5026 5031 5032 5035 5036 + 5027 5028 0 0 0 0 ) (attributes - 1 1 1 - 1 1 1 - 1 1 1 - 1 1 0 - ) - (images "tiles/forest/underground/variants.png") - ) - (tiles - (width 4) - (height 10) - (ids - 4929 4930 4933 4934 - 4931 4932 4935 4936 - 4937 4938 4941 4942 - 4939 4940 4943 4944 - 4945 4946 4950 4951 - 4947 4948 4952 4953 - 0 4949 4954 0 - 4955 0 0 4960 - 4956 4957 4961 4962 - 4958 4959 4963 4964 - ) - (attributes - 0 0 0 0 - 17 1 1 17 - 17 0 0 17 - 1 1 1 1 - 17 0 0 17 - 1 17 17 1 - 0 1 1 0 - 0 0 0 0 - 17 0 0 17 - 1 17 17 1 + 1 1 1 1 1 1 + 1 1 1 1 1 1 + 19 19 0 0 0 0 ) + (datas - 0 0 0 0 - 34 0 0 32 - 16 0 0 18 - 0 0 0 0 - 16 0 0 18 - 0 0 2 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 2 - 0 32 34 0 + 0 0 0 0 0 0 + 0 0 0 0 0 0 + 33 35 0 0 0 0 ) - (images "tiles/forest/underground/slope_transitions.png") + (images "tiles/crystalcave/crystal_variants.png") ) + (tiles - (width 4) - (height 4) + (width 5)(height 5) (ids - 4905 4906 4909 4910 - 4907 4908 4911 4912 - 4913 4914 0 0 - 4915 4916 0 0 + 7277 7278 7279 7280 7281 + 7282 7283 7284 7285 7286 + 7287 7288 7289 7290 7291 + 7292 7293 7294 7295 7296 + 7297 7298 7299 7300 7301 ) - (attributes - 17 17 17 17 - 1 1 1 1 - 17 17 0 0 - 1 1 0 0 - ) - (datas - 18 16 2 0 - 0 0 0 0 - 50 64 0 0 - 0 0 0 0 - ) - (images "tiles/forest/underground/variants2.png") + (images "tiles/crystalcave/crystal_1x1_extra2.png") ) + (tiles - (width 7) - (height 5) + (width 6)(height 8) (ids - 5031 5032 5033 5043 5044 5047 5048 - 5034 0 5035 5045 5046 5049 5050 - 5036 5037 5038 5051 5052 5055 5056 - 5039 5040 0 5053 5054 5057 5058 - 5041 5042 0 0 0 0 0 + 4814 4815 4816 4817 4822 4823 + 4824 4825 4826 4827 4832 4833 + 4834 4835 4836 4837 4842 4843 + 4844 4845 4846 4847 4872 4873 + 4854 4855 4856 4857 4882 4883 + 4864 4865 4866 4867 4892 4893 + 4874 4875 4878 4879 0 0 + 4884 4885 4888 4889 0 0 ) (attributes - 0 0 0 1 1 1 1 - 0 0 0 1 1 1 1 - 0 0 0 1 1 1 1 - 0 0 0 1 1 1 1 - 0 0 0 0 0 0 0 + 0 0 0 0 0 0 + 1 1 1 1 1 1 + 1 1 1 1 1 1 + 1 1 1 1 1 1 + 1 1 1 1 1 1 + 0 0 0 0 0 0 + 1 1 1 1 0 0 + 1 1 1 1 0 0 ) - (images "tiles/forest/underground/groundmerge.png") + (images "tiles/crystalcave/crystal_2x2.png") ) (tiles - (width 4) - (height 5) - (ids - 1936 1937 1938 1939 - 1940 1941 1942 1943 - 1944 1945 1946 1947 - 1948 1949 1950 1951 - 1952 1953 1954 1955 + (width 10)(height 8) + (ids + 0 0 0 0 4818 4819 4820 4821 0 0 + 0 0 0 0 4828 4829 4830 4831 0 0 + 0 0 0 0 4838 4839 4840 4841 0 0 + 0 0 0 0 4848 4849 4850 4851 4852 4853 + 0 0 0 0 4858 4859 4860 4861 4862 4863 + 0 0 0 0 4868 4869 4870 4871 0 0 + 0 0 4876 4877 0 0 0 0 0 0 + 0 0 4886 4887 0 0 0 0 0 0 ) (attributes - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - ) - (images "tiles/forest/underground/roots.png") + 0 0 0 0 1 1 1 1 0 0 + 0 0 0 0 1 1 1 1 0 0 + 0 0 0 0 1 1 1 1 0 0 + 0 0 0 0 1 1 1 1 1 1 + 0 0 0 0 1 1 1 1 1 1 + 0 0 0 0 1 1 1 1 0 0 + 0 0 1 1 0 0 0 0 0 0 + 0 0 1 1 0 0 0 0 0 0 + ) + (images "tiles/crystalcave/deprecated/crystal_2x2.png") + (deprecated #t) ) (tiles - (width 4) - (height 4) + (width 6)(height 4) (ids - 1900 1901 1902 1903 - 1904 1905 1906 1907 - 1908 1909 1910 1911 - 1912 1913 1914 1915 + 4894 4895 4896 4897 4898 4899 + 4900 4901 4902 4903 4904 4905 + 4906 4907 4908 4909 0 0 + 4912 4913 4914 4915 0 0 ) - (attributes - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 + (images "tiles/crystalcave/crystal_bg.png") + ) + + (tiles + (width 7)(height 4) + (ids + 0 4919 0 0 0 0 0 + 4925 4926 4927 4928 0 0 0 + 4932 4933 4934 4935 4936 4937 4938 + 4939 4940 4941 4942 4943 4944 4945 ) - (images "tiles/forest/underground/background1.png") + (images "tiles/crystalcave/crystals1.png") ) + (tiles - (width 4) - (height 4) + (width 5)(height 3) (ids - 1956 1957 1958 1959 - 1960 1961 1962 1963 - 1964 1965 1966 1967 - 1968 1969 1970 1971 + 4946 4947 4948 0 0 + 4951 4952 4953 4954 4955 + 4956 4957 0 0 4960 + ) + (images "tiles/crystalcave/crystals2.png") + ) + + (tiles + (width 3)(height 2) + (ids + 4961 4962 4963 + 4964 4965 4966 ) (attributes - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 + 3 3 3 + 3 3 3 ) - (images "tiles/forest/underground/background3.png") + (images "tiles/forest/branches.png") ) - + (tiles - (width 7) - (height 4) + (width 4)(height 13) + (ids + 4971 4972 4973 4974 + 4975 4976 4977 4978 + 4979 4980 4981 4982 + 4983 4984 4985 4986 + 4987 4988 4989 4990 + 4991 4992 4993 4994 + 4995 4996 4997 4998 + 4999 5000 5001 5002 + 5003 5004 5005 5006 + 5007 5008 5009 5010 + 5011 5012 5013 5014 + 5015 5016 5017 5018 + 5019 0 0 0 + ) + (images "tiles/halloween/halloween_extra.png") + ) + + (tiles + (width 6)(height 5) + (ids + 80 1717 1718 1719 1720 1721 + 1349 2001 2002 2149 2150 0 + 79 2003 2004 2151 2152 0 + 1348 1722 0 0 0 0 + 1347 0 0 0 0 0 + ) + (images "tiles/pole/pole.png") + ) + + (tiles + (width 8)(height 3) (ids - 1972 1976 1980 1984 464 465 466 - 1973 1977 1981 1985 470 471 467 - 1974 1978 1982 1986 0 472 468 - 1975 1979 1983 1987 0 0 469 + 68 65 69 5123 3521 3279 3516 3522 + 5128 64 5130 5131 3517 3519 5134 5135 + 67 66 3518 5139 5140 5141 7273 7274 ) (attributes - 1024 1024 1024 1024 1024 1024 1024 - 1024 1024 1024 1024 1024 1024 1024 - 1024 1024 1024 1024 0 1024 1024 - 1024 1024 1024 1024 0 0 1024 + 1 1 1 1 1 1 1 1 + 1 1 1 1 1 1 1 1 + 1 1 1 1 1 1 1 1 ) - (images "tiles/forest/spikevine.png") + (images "tiles/retro/retro_castle.png") ) + (tiles - (width 7) - (height 4) + (width 3)(height 2) (ids - 1998 2024 2025 2026 1672 1673 1674 - 1999 1668 1669 2027 1678 1679 1675 - 2000 1670 1671 2028 0 1680 1676 - 2023 2030 2031 2029 0 0 1677 - ) - (attributes - 1024 1024 1024 1024 1024 1024 1024 - 1024 1024 1024 1024 1024 1024 1024 - 1024 1024 1024 1024 0 1024 1024 - 1024 1024 1024 1024 0 0 1024 + 5144 3277 5146 + 3280 3278 5149 ) - (images "tiles/ghostwood/corruptvine.png") + (images "tiles/retro/retro_castlewall.png") ) - + (tiles - (width 2) - (height 4) + (width 10)(height 7) (ids - 1988 1989 - 1990 1991 - 1992 1993 - 1994 1995 + 33 32 34 1741 5154 5155 5156 7253 7260 7267 + 35 37 39 1740 5161 5162 5163 7254 7261 7268 + 38 36 43 1739 5168 5169 5170 7255 7262 7269 + 40 41 42 1815 5175 5176 5177 7256 7263 7270 + 5178 5179 5180 5181 5182 5183 5184 7257 7264 7271 + 5185 5186 5187 5188 5189 5190 5191 7258 7265 7272 + 119 121 120 1816 5196 5197 5198 7259 7266 0 ) (attributes - 1 1 - 1 1 - 1 1 - 1 1 + 0 0 0 0 1 1 1 1 1 1 + 1 1 1 1 1 1 1 1 1 1 + 1 1 1 1 1 1 1 1 1 0 + 1 1 1 1 1 1 1 1 1 0 + 1 1 1 1 1 1 1 1 1 0 + 1 1 1 1 1 1 1 1 1 0 + 1 1 1 1 1 1 1 1 1 0 ) - (images "tiles/forest/statue.png") + (images "tiles/retro/retro_cave.png") ) + (tiles - (width 4) - (height 4) + (width 2)(height 2) (ids - 2032 2033 2034 2035 - 2036 2037 0 2038 - 2039 0 0 2040 - 0 2041 2042 0 + 5199 5200 + 5201 5202 ) - (images "tiles/lightmap/lightmap-bw.png") + (images "tiles/signs/bombhold.png") ) + (tiles - (width 4) - (height 4) + (width 2)(height 1) (ids - 4195 4196 4197 4198 - 4199 4200 4201 4202 - 4203 4204 4205 4206 - 0 4207 4208 4209 + 5203 5204 ) - (images "tiles/lightmap/lightmap-white.png") + (images "tiles/snow/grass1.png") ) + (tiles - (width 4) - (height 4) + (width 6)(height 5) (ids - 4210 4211 4212 4213 - 4214 4215 4216 4217 - 4218 4219 4220 4221 - 0 4222 4223 4224 + 5238 5239 5240 5241 5242 5243 + 5244 5245 0 5247 5248 5249 + 5250 5251 0 5253 5254 5255 + 0 5257 5258 0 5260 5261 + 5262 5263 5264 5265 5266 5267 ) - (images "tiles/lightmap/lightmap-black.png") + (attributes + 0 0 0 0 0 0 + 1 1 0 1 17 17 + 1 1 0 1 0 0 + 0 0 0 0 17 17 + 17 17 17 17 17 17 + ) + (datas + 0 0 0 0 0 0 + 0 0 0 0 2 0 + 0 0 0 0 0 0 + 0 0 0 0 66 48 + 18 34 32 16 50 64 + ) + (images "tiles/snow/ice-floor.png") ) (tiles - (width 1) - (height 3) + (width 4)(height 1) (ids - 2047 - 2048 - 2049 + 5284 5285 5286 5287 + ) + (attributes 257 257 257 257) + (images + (surface + (diffuse-texture (file "tiles/snow/iceslick.png")) + (displacement-texture (file "tiles/snow/iceslick-displacement.png")) + ) ) - (images "tiles/forest/ladder.png") ) + (tiles - (width 11) - (height 5) - (ids 2050 2051 2052 2053 2054 2075 2076 4247 4248 4255 4256 - 2055 2056 2057 2058 2059 2077 2078 4249 4250 4257 4258 - 2060 2061 2062 2063 2064 4241 4242 4251 4252 4259 0 - 2065 2066 2067 2068 2069 4243 4244 4253 4254 4260 0 - 2070 2071 2072 2073 2074 4245 2079 4246 4262 4263 0 + (width 4)(height 12) + (ids + 3930 3931 3932 3939 + 3933 3934 3935 3941 + 3936 3937 3938 3940 + 5310 5311 5312 3942 + 5313 3945 5314 5315 + 3944 3943 5316 5317 + 5318 5319 5320 5321 + 3947 3946 5322 5323 + 5324 5325 5326 5327 + 5328 5329 5330 5331 + 5332 5333 5288 5289 + 5290 5291 5292 0 ) (attributes - 0 0 0 0 0 0 0 3 3 0 3 - 0 0 0 0 0 3 3 3 3 0 3 - 0 0 0 0 0 3 3 3 3 3 0 - 0 0 0 0 0 0 0 3 3 3 0 - 0 0 3 3 3 3 3 3 3 3 0 + 0 0 0 0 + 0 1 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 ) - (images "tiles/snow/unisolid.png") + (images "tiles/snow/snowfort_fg.png") ) (tiles - (width 4) - (height 1) + (width 4)(height 4) (ids - 2019 2140 2141 2142 + 3966 3967 3968 5297 + 3969 3970 3971 5301 + 5302 5303 5304 5305 + 5306 5307 5308 5309 ) (attributes - 512 512 512 512 - ) - (images - (surface (diffuse-texture (file "tiles/water/antarctic-1.png")) - (displacement-texture (file "tiles/water/antarctic-displacement.png"))) - (surface (diffuse-texture (file "tiles/water/antarctic-2.png")) - (displacement-texture (file "tiles/water/antarctic-displacement.png"))) - (surface (diffuse-texture (file "tiles/water/antarctic-3.png")) - (displacement-texture (file "tiles/water/antarctic-displacement.png"))) - (surface (diffuse-texture (file "tiles/water/antarctic-4.png")) - (displacement-texture (file "tiles/water/antarctic-displacement.png"))) - (surface (diffuse-texture (file "tiles/water/antarctic-5.png")) - (displacement-texture (file "tiles/water/antarctic-displacement.png"))) - (surface (diffuse-texture (file "tiles/water/antarctic-6.png")) - (displacement-texture (file "tiles/water/antarctic-displacement.png"))) - (surface (diffuse-texture (file "tiles/water/antarctic-7.png")) - (displacement-texture (file "tiles/water/antarctic-displacement.png"))) - (surface (diffuse-texture (file "tiles/water/antarctic-8.png")) - (displacement-texture (file "tiles/water/antarctic-displacement.png"))) + 1 1 1 1 + 1 1 1 1 + 0 0 0 0 + 0 0 0 0 ) - (fps 16) + (images "tiles/snow/snowfort_fence.png") ) - (tile - (id 2020) - (images - "tiles/water/antarctic.png") - (water #t) - ) (tiles - (width 6) - (height 3) - (ids 2121 2122 2123 2124 2125 2469 - 2126 2127 2128 2129 2130 4780 - 2131 2132 2133 1517 1518 0 + (width 4)(height 12) + (ids + 3948 3949 3950 3951 + 3954 3955 3956 3957 + 3960 3961 3962 3952 + 5338 5339 5294 3958 + 5295 3953 5296 5298 + 3964 3963 5299 5300 + 5334 5335 5336 5337 + 3965 3959 5340 5341 + 5342 5343 5344 5345 + 5346 5347 5348 5349 + 5350 5351 5352 5353 + 5354 5355 5356 0 ) - (images "tiles/snow/unisolid2.png") + (attributes + 0 0 0 0 + 0 1 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 0 + ) + (images "tiles/snow/snowfort_bg.png") ) (tiles - (width 4) - (height 1) + (width 4)(height 2) (ids - 2136 2137 2138 2139 + 5400 5401 5402 5403 + 5404 5405 5406 5407 ) (attributes - 3584 3584 3584 3584 - ) - (images - "tiles/lava/lava-1.png" - "tiles/lava/lava-2.png" - "tiles/lava/lava-3.png" - "tiles/lava/lava-4.png" - "tiles/lava/lava-5.png" - "tiles/lava/lava-6.png" - "tiles/lava/lava-7.png" - "tiles/lava/lava-8.png" + 1024 0 1024 0 + 0 1024 0 1024 ) - (fps 16) - ) - - (tile - (id 4004) - (images - "tiles/lava/lava.png") - (water #t) - (hurts #t) - (fire #t) - (solid #f) + (images "tiles/snow/spike.png") ) (tiles - (width 6) - (height 2) + (width 11)(height 5) (ids - 2158 2159 2154 2155 2156 2157 - 2160 2161 2162 2163 0 0 - ) + 2050 2051 2052 2053 2054 2075 2076 5408 5409 5410 5411 + 2055 2056 2057 2058 2059 2077 2078 5412 5413 5414 5415 + 2060 2061 2062 2063 2064 5416 5417 5418 5419 5420 5421 + 2065 2066 2067 2068 2069 5422 5423 5424 5425 5426 5427 + 2070 2071 2072 2073 2074 5428 5429 5430 5431 5432 2079 + ) (attributes - 0 0 0 3 3 3 - 0 0 0 3 0 0) - (images "tiles/snow/air.png")) + 0 0 0 0 0 0 0 3 3 0 0 + 0 0 0 0 0 3 3 3 3 0 0 + 0 0 0 0 0 3 3 3 3 3 3 + 0 0 0 0 0 0 0 3 3 3 3 + 0 0 3 3 3 3 3 3 3 3 0 + ) + (images "tiles/snow/unisolid.png") + ) (tiles - (width 4) - (height 2) + (width 7)(height 5) (ids - 2178 2115 3039 2119 - 2114 3038 2120 3040) + 2124 2132 2125 3251 3252 3249 3250 + 2128 0 2126 3255 3256 3253 3254 + 2129 2122 2130 5528 5529 5530 5531 + 2121 2123 0 5532 5533 5534 5535 + 2131 2133 0 5536 5537 0 0 + ) (attributes - 1024 0 1024 0 - 0 1024 0 1024) + 0 0 0 1 1 1 1 + 0 0 0 1 1 1 1 + 0 0 0 1 1 1 1 + 0 0 0 1 1 1 1 + 0 0 0 0 0 0 0 + ) + (images "tiles/snow/snowmerge.png") + ) + + (tile + (id 2127) + (images + "tiles/snow/deprecated/fallback_tile.png" + ) + (deprecated #t) + ) + + (tile + (id 2134) + (images + "tiles/snow/deprecated/fallback_tile.png" + ) + (deprecated #t) + ) + + (tile + (id 2135) (images - "tiles/snow/spike.png")) + "tiles/snow/deprecated/fallback_tile.png" + ) + (deprecated #t) + ) (tiles - (width 8) - (height 3) + (width 6)(height 3) (ids - 2179 2180 2181 2182 2183 2184 2185 2186 - 2187 2188 2189 2190 2191 2192 2193 2194 - 2195 2196 2197 2198 2199 2200 2201 2202 - ) - (images "tiles/snow/background3.png") + 5538 5539 5540 5541 5542 5543 + 5544 5545 5546 5547 5548 5549 + 5550 5551 5552 5553 5554 0 + ) + (images "tiles/snow/unisolid2.png") ) (tiles - (width 3) - (height 3) + (width 5)(height 4) (ids - 2203 2204 2205 - 2206 2207 2208 - 2209 2210 2211) + 5586 5587 5588 5589 5590 + 5591 5592 5593 5594 5595 + 5596 5597 5598 5599 0 + 5600 5601 5602 5603 0 + ) (attributes - 1 1 1 - 1 1 1 - 1 1 1) - (images "tiles/test/test.png")) + 1 1 1 1 1 + 1 1 1 1 1 + 1 1 1 1 0 + 1 1 1 1 0 + ) + (images "tiles/forest/foresttiles-earth.png") + ) (tiles - (width 4) - (height 6) + (width 7)(height 5) (ids - 2384 2385 2386 2949 - 2387 2388 2389 2950 - 2390 2391 2392 2951 - 2393 2394 2395 2952 - 2953 2954 2955 2956 - 2396 2397 2398 2399 + 5606 5607 5608 5609 5610 5611 5612 + 5613 0 5615 5616 5617 5618 5619 + 5620 5621 5622 5623 5624 5625 5626 + 5627 5628 0 5630 5631 5632 5633 + 5634 5635 0 5637 5638 0 0 ) (attributes - 0 0 0 0 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 + 0 0 0 1 1 0 0 + 0 0 0 1 1 0 0 + 0 0 0 1 1 0 0 + 0 0 0 1 1 0 0 + 0 0 0 0 0 0 0 ) - (images "tiles/snow/underground/convex.png") + (images "tiles/forest/forestmerge.png") ) (tiles - (width 2) - (height 2) + (width 11)(height 5) (ids - 2400 2401 - 2402 2403 + 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 + 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 + 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 0 + 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 0 + 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 0 ) (attributes - 0 0 - 0 0 + 0 0 0 0 0 0 3 3 0 0 3 + 3 3 3 3 3 3 3 3 3 3 3 + 0 0 0 0 0 0 0 0 3 3 0 + 0 0 0 0 0 0 0 0 3 3 0 + 0 0 0 0 0 0 3 3 3 3 0 ) - (images "tiles/signs/trampoline.png") + (images "tiles/forest/hole.png") ) (tiles - (width 13) - (height 7) + (width 9)(height 13) (ids - 2437 2409 2410 2442 2441 2473 2474 2475 2476 2419 2420 2417 2418 - 2438 2423 2424 2443 2483 2487 2488 2489 2490 2433 2434 2431 2432 - 2449 2451 2452 2454 2444 2599 2600 2601 2602 2447 2448 2535 2538 - 2463 2465 2466 2468 2486 2615 2616 2617 2618 2536 2537 2551 2554 - 2445 2493 2494 2450 0 0 2632 2633 0 2552 2553 2567 2570 - 2446 2507 2508 2453 0 0 0 0 0 2568 2569 0 0 - 0 0 0 0 0 0 0 0 0 2584 2585 0 0 - ) - (attributes - 0 0 0 0 1 17 17 17 17 17 17 17 17 - 1 1 1 1 1 1 1 1 1 17 17 1 1 - 1 1 1 1 1 1 1 1 1 1 1 1 1 - 1 1 1 1 1 17 17 17 17 1 1 17 17 - 1 1 1 1 0 0 0 0 0 17 17 0 0 - 0 0 0 0 0 0 0 0 0 17 17 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 - ) - (datas - 0 0 0 0 0 18 34 32 16 66 48 2 0 - 0 0 0 0 0 0 0 0 0 50 64 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 33 17 19 35 0 0 1 3 - 0 0 0 0 0 0 0 0 0 49 67 0 0 - 0 0 0 0 0 0 0 0 0 65 51 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 5699 5700 5701 0 0 0 + 0 0 5707 5708 5709 5710 5711 0 0 + 0 5715 5716 5717 5718 5719 5720 5721 0 + 0 5724 5725 5726 5727 5728 5729 5730 0 + 0 5733 5734 5735 5736 5737 5738 5739 0 + 5741 5742 5743 5744 5745 5746 5747 5748 5749 + 5750 5751 5752 5753 5754 5755 5756 5757 5758 + 5759 5760 5761 5762 5763 5764 5765 5766 5767 + 5768 5769 5770 5771 5772 5773 5774 5775 5776 + 0 0 0 5780 5781 5782 0 0 0 + 0 0 0 5789 5790 5791 0 0 0 + 0 0 0 5798 5799 5800 0 0 0 + 0 0 0 5807 5808 5809 0 0 0 ) - (images "tiles/crystalcave/crystal_1x1.png") + (images "tiles/forest/tree1.png") ) + (tiles - (width 10) - (height 8) + (width 8)(height 13) (ids - 2407 2408 2411 2412 2413 2414 2415 2416 4225 4226 - 2421 2422 2425 2426 2427 2428 2429 2430 4227 4228 - 2435 2436 2439 2440 2497 2498 2499 2500 4229 4230 - 2477 2478 2481 2482 2511 2512 2513 2514 4231 4232 - 2491 2492 2495 2496 2455 2456 2461 2462 4233 4234 - 2505 2506 2509 2510 2457 2458 2464 2467 4235 4236 - 2479 2480 2484 2485 2519 2520 0 0 4237 4238 - 2501 2502 2503 2504 2521 2522 0 0 4239 4240 - ) - (attributes - 0 0 0 0 1 1 1 1 0 0 - 1 1 1 1 1 1 1 1 1 1 - 1 1 1 1 1 1 1 1 1 1 - 1 1 1 1 1 1 1 1 1 1 - 1 1 1 1 1 1 1 1 1 1 - 0 0 0 0 1 1 1 1 1 1 - 1 1 1 1 1 1 0 0 1 1 - 1 1 1 1 1 1 0 0 0 0 - ) - (images "tiles/crystalcave/crystal_2x2.png") - ) - (tiles - (width 6) - (height 4) - (ids - 2647 2648 2649 2653 2654 2655 - 2650 2651 2652 2656 2657 2658 - 2659 2660 2663 2665 0 0 - 2661 2662 2664 2666 0 0 + 0 0 0 5816 5817 0 0 0 + 0 0 5823 5824 5825 5826 0 0 + 0 5830 5831 5832 5833 5834 5835 0 + 0 5838 5839 5840 5841 5842 5843 0 + 5845 5846 5847 5848 5849 5850 5851 5852 + 5853 5854 5855 5856 5857 5858 5859 5860 + 5861 5862 5863 5864 5865 5866 5867 5868 + 5869 5870 5871 5872 5873 5874 5875 5876 + 5877 5878 5879 5880 5881 5882 5883 5884 + 0 0 0 5888 5889 0 0 0 + 0 0 0 5896 5897 0 0 0 + 0 0 0 5904 5905 0 0 0 + 0 0 0 5912 5913 0 0 0 ) - (images "tiles/crystalcave/crystal_bg.png") + (images "tiles/forest/tree2.png") ) + (tiles - (width 7) - (height 4) - (ids - 0 2667 0 0 0 0 0 - 2668 2669 2670 2671 0 0 0 - 2672 2673 2674 2675 3532 3533 3534 - 2676 2677 2678 3531 3535 3536 3537 + (width 6)(height 13) + (ids + 0 0 5919 5920 0 0 + 0 5924 5925 5926 5927 0 + 0 5930 5931 5932 5933 0 + 5935 5936 5937 5938 5939 5940 + 5941 5942 5943 5944 5945 5946 + 5947 5948 5949 5950 5951 5952 + 5953 5954 5955 5956 5957 5958 + 5959 5960 5961 5962 5963 5964 + 5965 5966 5967 5968 5969 5970 + 0 0 5973 5974 0 0 + 0 0 5979 5980 0 0 + 0 0 5985 5986 0 0 + 0 0 5991 5992 0 0 ) - (images "tiles/crystalcave/crystals1.png") + (images "tiles/forest/tree3.png") ) + (tiles - (width 5) - (height 3) - (ids - 4724 4725 4726 0 0 - 4727 4728 4729 3538 3539 - 4730 4731 0 0 3540 + (width 4)(height 2) + (ids + 5996 5997 5998 5999 + 6000 6001 6002 6003 ) - (images "tiles/crystalcave/crystals2.png") + (images "tiles/forest/plant2.png") ) (tiles - (width 16) - (height 8) - (ids - 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 - 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 - 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 - 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 - 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 - 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 - 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 - 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 - ) - (attributes - 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 - 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 - 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 - 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 - 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 - 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 - 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 - 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 0 - ) - (images "tiles/snowmountain/ground.png")) - (tiles - (width 16) - (height 8) + (width 4)(height 10) (ids - 0 0 3291 0 3292 0 3293 0 0 3294 0 3295 0 3296 0 0 - 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 - 3313 3314 3315 3316 0 0 0 3317 3318 0 0 0 0 0 0 0 - 3319 3320 3321 3322 0 3323 3324 3325 3326 3327 3328 0 0 0 0 0 - 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 0 0 0 0 - 0 3341 3342 0 3343 3344 3345 3346 3347 3348 3349 3350 0 0 0 0 - 3351 3352 3353 3354 0 3355 3356 3357 3358 3359 3360 0 0 0 0 0 - 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 0 0 0 0 0 + 6004 6005 6006 6007 + 6008 6009 6010 6011 + 6012 6013 6014 6015 + 6016 6017 6018 6019 + 6020 6021 6022 6023 + 6024 6025 6026 6027 + 6028 6029 6030 6031 + 6032 6033 6034 6035 + 6036 6037 6038 6039 + 6040 6041 6042 6043 ) (attributes - 0 0 17 0 17 0 17 0 0 17 0 17 0 17 0 0 - 17 17 1 17 1 17 1 17 17 1 17 1 17 1 17 17 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 1 1 1 1 0 0 17 17 17 17 0 0 0 0 0 0 - 1 1 1 1 17 17 1 1 1 1 17 17 0 0 0 0 - 0 17 17 0 1 1 1 1 1 1 1 1 0 0 0 0 - 17 17 17 17 0 17 17 17 17 17 17 0 0 0 0 0 - 17 1 1 17 17 1 1 1 1 1 1 17 0 0 0 0 + 0 0 0 0 + 17 1 1 17 + 17 0 0 17 + 1 1 1 1 + 17 0 0 17 + 1 17 17 1 + 1 1 1 1 + 0 0 0 0 + 17 0 0 17 + 1 17 17 1 ) (datas - 0 0 18 0 18 0 18 0 0 16 0 16 0 16 0 0 - 18 34 0 34 0 34 0 34 32 0 32 0 32 0 32 16 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 18 34 32 16 0 0 0 0 0 0 - 0 0 0 0 18 34 0 0 0 0 32 16 0 0 0 0 - 0 66 48 0 0 0 0 0 0 0 0 0 0 0 0 0 - 66 50 64 48 0 2 2 2 0 0 0 0 0 0 0 0 - 50 0 0 64 2 0 0 0 0 0 0 0 0 0 0 0 - ) - (images "tiles/snowmountain/ground3.png") - ) - - (tiles - (width 4) - (height 7) - (ids - 2807 2810 2811 2812 - 2808 2813 2815 2816 - 2809 2814 0 0 - 2323 2317 2320 2327 - 2324 2318 2321 2328 - 2325 2319 2322 2329 - 2326 2331 2332 2330 + 0 0 0 0 + 34 0 0 32 + 16 0 0 18 + 0 0 0 0 + 16 0 0 18 + 0 0 2 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 2 + 0 32 34 0 ) - (images "tiles/castle/chain.png") + (images "tiles/forest/slope_transitions.png") ) (tiles - (width 4) - (height 6) - (ids - 2817 2818 2819 2820 - 2821 2822 2823 2824 - 2825 2826 2827 2828 - 2829 2830 2831 2832 - 2833 2834 2835 2836 - 2837 2838 2839 2840 + (width 4)(height 6) + (ids + 6044 6045 6046 6047 + 6048 6049 6050 6051 + 6052 6053 0 0 + 6056 6057 0 0 + 6060 6061 6062 6063 + 6064 6065 0 0 ) (attributes - 3 3 3 3 - 19 19 19 19 - 19 19 19 19 - 19 19 19 19 - 19 19 19 19 - 19 19 19 19 + 17 17 17 17 + 1 1 1 1 + 17 17 0 0 + 1 1 0 0 + 17 17 17 17 + 17 17 0 0 ) (datas - 0 1 2 3 - 0 1 2 3 - 16 17 18 19 - 32 33 34 35 - 48 49 50 51 - 64 65 66 67 + 18 16 2 0 + 0 0 0 0 + 50 64 0 0 + 0 0 0 0 + 18 16 2 0 + 50 64 0 0 ) - (editor-images "tiles/auxiliary/invisible-unisolid-slopes.png") + (images "tiles/forest/variants.png") ) (tiles - (width 4) - (height 11) + (width 7)(height 6) (ids - 57 58 2841 2842 - 59 60 2843 2844 - 1742 1743 2845 2846 - 53 55 1744 2847 - 54 56 1745 2848 - 2849 2851 2852 2853 - 2850 2854 2855 2856 - 2857 2858 2859 2860 - 2861 2862 2863 2864 - 2865 2866 2867 2868 - 2869 2870 2871 2872 - ) - (attributes - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 17 1 1 17 - 1 1 1 1 - 1 1 1 1 - 17 1 1 17 - ) - (datas - 0 0 0 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 0 - 2 0 0 0 - 0 0 0 0 - 0 0 0 0 - 1 0 0 3 + 6068 6069 6070 6071 6072 6073 6074 + 6075 6076 6077 6078 6079 6080 6081 + 6082 6083 6084 6085 6086 6087 6088 + 6089 6090 6091 6092 6093 6094 6095 + 6096 6097 6098 6099 6100 6101 6102 + 6103 6104 6105 6106 6107 6108 6109 ) - (images "tiles/pipe/green.png") + (images "tiles/forest/tree_special.png") ) (tiles - (width 4) - (height 11) + (width 7)(height 4) (ids - 2085 2086 2873 2874 - 2087 2088 2875 2876 - 2089 2090 2877 2878 - 2143 2144 2145 2879 - 2146 2147 2148 2880 - 2881 2883 2884 2885 - 2882 2886 2887 2888 - 2889 2890 2891 2892 - 2893 2894 2895 2896 - 2897 2898 2899 2900 - 2901 2902 2903 2904 - ) - (attributes - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 17 1 1 17 - 1 1 1 1 - 1 1 1 1 - 17 1 1 17 + 6110 6111 6112 6113 6114 6115 6116 + 6117 6118 6119 6120 6121 6122 6123 + 6124 6125 6126 6127 0 6129 6130 + 6131 6132 6133 6134 0 0 6137 ) - (datas - 0 0 0 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 0 - 2 0 0 0 - 0 0 0 0 - 0 0 0 0 - 1 0 0 3 + (attributes + 1024 1024 1024 1024 1024 1024 1024 + 1024 1024 1024 1024 1024 1024 1024 + 1024 1024 1024 1024 0 1024 1024 + 1024 1024 1024 1024 0 0 1024 ) - (images "tiles/pipe/blue.png") + (images "tiles/ghostwood/corruptvine.png") ) (tiles - (width 2) - (height 2) + (width 11)(height 5) (ids - 2905 2906 - 2907 2908 + 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 + 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 + 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 0 + 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 0 + 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 0 ) (attributes - 0 0 - 0 0 + 0 0 0 0 0 0 3 3 0 0 3 + 3 3 3 3 3 3 3 3 3 3 3 + 0 0 0 0 0 0 0 0 3 3 0 + 0 0 0 0 0 0 0 0 3 3 0 + 0 0 0 0 0 0 3 3 3 3 0 ) - (images "tiles/pipe/mask.png") - ) + (images "tiles/ghostwood/ghosthole.png") + ) - (tiles - (width 4) - (height 10) + (tiles + (width 6)(height 5) (ids - 2909 2910 2913 2914 - 2911 2912 2915 2916 - 2917 2918 2921 2922 - 2919 2920 2923 2924 - 3139 3140 3141 3142 - 3143 3144 3145 3146 - 0 3147 3148 0 - 3149 0 0 3150 - 3151 3152 3153 3154 - 3155 3156 3157 3158 + 6193 6194 6195 6196 6197 6198 + 6199 6200 6201 6202 6203 6204 + 6205 6206 0 6208 6209 6210 + 6211 6212 6213 6214 6215 6216 + 6217 6218 6219 6220 6221 6222 ) (attributes - 0 0 0 0 - 17 1 1 17 - 17 0 0 17 - 1 1 1 1 - 17 0 0 17 - 1 17 17 1 - 0 1 1 0 - 0 0 0 0 - 17 0 0 17 - 1 17 17 1 + 0 0 0 0 0 0 + 1 1 0 1 17 17 + 1 1 0 1 0 0 + 0 0 0 0 17 17 + 17 17 17 17 17 17 ) (datas - 0 0 0 0 - 34 0 0 32 - 16 0 0 18 - 0 0 0 0 - 16 0 0 18 - 0 0 2 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 2 - 0 32 34 0 - + 0 0 0 0 0 0 + 0 0 0 0 2 0 + 0 0 0 0 0 0 + 0 0 0 0 66 48 + 18 34 32 16 50 64 ) - (images "tiles/snow/slope_transitions.png") + (images "tiles/ghostwood/ghostwood-10.png") ) + (tiles - (width 2) - (height 4) + (width 6)(height 8) (ids - 2957 2962 - 2958 2961 - 2959 2960 - 2997 2998 - ) - (attributes - 1 1 - 1 1 - 1 1 - 1 1 + 0 0 6225 6226 0 0 + 0 6230 6231 6232 6233 0 + 0 6236 6237 6238 6239 0 + 0 6242 6243 6244 6245 0 + 0 6248 6249 6250 6251 0 + 6253 6254 6255 6256 6257 6258 + 6259 6260 6261 6262 6263 6264 + 0 6266 6267 6268 6269 0 ) - (images "tiles/snow/underground/concave.png") + (images "tiles/ghostwood/ghostwood-11.png") ) + (tiles - (width 8) - (height 6) + (width 4)(height 10) (ids - 0 0 0 0 0 0 2963 2969 - 0 2986 2990 0 2975 2979 2964 2970 - 2983 2987 2991 2994 2976 2980 2965 2971 - 2984 2988 2992 2995 2977 2981 2966 2972 - 2985 2989 2993 2996 2978 2982 2967 2973 - 0 0 0 0 0 0 2968 2974 + 6271 6272 6273 6274 + 6275 6276 6277 6278 + 6279 6280 6281 6282 + 6283 6284 6285 6286 + 6287 6288 6289 6290 + 6291 6292 6293 6294 + 0 6296 6297 0 + 6299 0 0 6302 + 6303 6304 6305 6306 + 6307 6308 6309 6310 ) (attributes - 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 17 17 - 17 17 17 17 17 17 17 17 - 1 1 1 1 1 1 1 1 - 17 17 17 17 17 17 17 17 - 0 0 0 0 0 0 17 17 + 0 0 0 0 + 17 1 1 17 + 17 0 0 17 + 1 1 1 1 + 17 0 0 17 + 1 17 17 1 + 0 1 1 0 + 0 0 0 0 + 17 0 0 17 + 1 17 17 1 ) (datas - 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 66 48 - 18 34 32 16 2 0 50 64 - 0 0 0 0 0 0 0 0 - 33 17 19 35 1 3 49 67 - 0 0 0 0 0 0 65 51 + 0 0 0 0 + 34 0 0 32 + 16 0 0 18 + 0 0 0 0 + 16 0 0 18 + 0 0 2 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 2 + 0 32 34 0 ) - (images "tiles/snow/underground/slope.png") + (images "tiles/ghostwood/ghostwood-12.png") ) - (tiles - (width 4) - (height 10) - (ids - 3588 3589 3590 3591 - 3592 3593 3594 3595 - 3596 3597 3598 3599 - 3600 3601 3602 3603 - 3604 3605 3606 3607 - 3608 3609 3610 3611 - 0 3612 3613 0 - 3614 0 0 3615 - 3616 3617 3618 3619 - 3620 4764 4765 4766 - ) - (attributes - 0 0 0 0 - 17 1 1 17 - 17 0 0 17 - 1 1 1 1 - 17 0 0 17 - 1 17 17 1 - 0 1 1 0 - 0 0 0 0 - 17 0 0 17 - 1 17 17 1 - ) - (datas - 0 0 0 0 - 34 0 0 32 - 16 0 0 18 - 0 0 0 0 - 16 0 0 18 - 0 0 2 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 2 - 0 32 34 0 - ) - (images "tiles/snow/underground/slope_transitions.png") - ) (tiles - (width 4) - (height 4) + (width 4)(height 1) + (deprecated #t) (ids - 4768 4769 4772 4773 - 4770 4771 4774 4775 - 4776 4777 0 0 - 4778 4779 0 0 + 6295 0 0 6298 ) (attributes - 17 17 17 17 - 1 1 1 1 - 17 17 0 0 - 1 1 0 0 - ) - (datas - 18 16 2 0 - 0 0 0 0 - 50 64 0 0 - 0 0 0 0 + 1 0 0 1 ) - (images "tiles/snow/underground/variants.png") + (images (region "tiles/ghostwood/ghostwood-12.png" 0 192 128 32)) ) + (tiles - (width 7) - (height 5) + (width 7)(height 5) (ids - 153 154 155 4781 4782 4785 4787 - 156 0 157 4783 4784 4786 4788 - 158 159 161 4789 4790 4793 4794 - 162 163 0 4791 4792 4795 4796 - 164 165 0 0 0 0 0 + 6311 6312 6313 6314 6315 6316 6317 + 6318 0 6320 6321 6322 6323 6324 + 6325 6326 6327 6328 6329 6330 6331 + 6332 6333 0 6335 6336 6337 6338 + 6339 6340 0 6342 6343 0 0 ) (attributes 0 0 0 1 1 1 1 0 0 0 1 1 1 1 - 0 0 0 1 1 1 1 - 0 0 0 1 1 1 1 - 0 0 0 0 0 0 0 + 0 0 0 1 1 1 1 + 0 0 0 1 1 1 1 + 0 0 0 1 1 0 0 ) - (images "tiles/snow/underground/snowmerge.png") + (images "tiles/ghostwood/ghostwood-13.png") ) - + (tiles - (width 4)(height 10) + (width 8)(height 8) (ids - 2999 3000 3001 3002 - 3003 3004 3005 3006 - 3007 3008 3009 3010 - 3011 3012 3013 3014 - 3015 3016 3017 3018 - 3019 3020 3021 3022 - 3023 3024 3025 3026 - 3027 3028 3029 3030 - 3031 3032 3033 3034 - 3035 3036 0 0 + 6346 6347 6348 6349 6350 6351 6352 6353 + 6354 6355 6356 6357 6358 6359 6360 6361 + 6362 6363 6364 6365 6366 6367 6368 6369 + 6370 6371 6372 6373 6374 6375 6376 6377 + 6378 6379 6380 6381 6382 6383 6384 6385 + 6386 6387 6388 6389 6390 6391 6392 6393 + 0 0 0 0 6398 6399 6400 6401 + 0 0 0 0 6406 6407 6408 6409 ) - (images "tiles/pole/diagonals.png") + (images "tiles/ghostwood/ghostwood-14.png") ) + (tiles - (width 4)(height 1) - (ids 3041 3042 3043 2406) - (attributes 257 257 257 257) - (images - (surface (diffuse-texture (file "tiles/snow/iceslick.png")) - (displacement-texture (file "tiles/snow/iceslick-displacement.png"))))) - (tiles - (width 4)(height 4) + (width 6)(height 3) (ids - 3044 3045 3046 3047 - 3048 3049 3050 3051 - 3052 3053 3055 0 - 3056 3057 3059 0 - ) - (attributes - 1 1 1 1 - 1 1 1 1 - 1 1 1 0 - 1 1 0 0 + 6410 6411 6412 6413 6414 6415 + 6416 6417 6418 6419 6420 6421 + 6422 6423 6424 6425 6426 0 ) - (images "tiles/snow/special2.png") + (images "tiles/ghostwood/ghostwood-15.png") ) (tiles - (width 4)(height 4) + (width 7)(height 9) (ids - 3060 3062 3064 3066 - 3061 3063 3065 3067 - 3450 3451 3452 3453 - 3458 3459 3460 3461 + 0 0 0 6431 0 0 0 + 0 0 6437 6438 6439 0 0 + 0 6443 6444 6445 6446 6447 0 + 6449 6450 6451 6452 6453 6454 6455 + 6456 6457 6458 6459 6460 6461 6462 + 6463 6464 6465 6466 6467 6468 6469 + 6470 6471 6472 6473 6474 6475 6476 + 6477 6478 6479 6480 6481 6482 6483 + 6484 6485 6486 6487 6488 6489 6490 ) - (images "tiles/background/rope.png") + (images "tiles/ghostwood/ghostwood-16.png") ) - (tiles - (width 4) - (height 5) + (width 6)(height 8) (ids - 3068 3069 3070 3071 - 3072 3073 3074 3075 - 3076 3077 3078 3079 - 3080 3081 3082 3083 - 3084 3085 3086 3087 + 0 0 6493 6494 0 0 + 0 6498 6499 6500 6501 0 + 6503 6504 6505 6506 6507 6508 + 6509 6510 6511 6512 6513 6514 + 6515 6516 6517 6518 6519 6520 + 6521 6522 6523 6524 6525 6526 + 6527 6528 6529 6530 6531 6532 + 6533 6534 6535 6536 6537 6538 ) - (attributes - 0 0 0 0 - 0 1 1 0 - 0 1 1 0 - 0 1 1 0 - 0 0 0 0 - ) - (images "tiles/halloween/base.png") + (images "tiles/ghostwood/ghostwood-17.png") ) + (tiles - (width 2) - (height 4) + (width 2)(height 5) (ids - 3088 3089 - 3090 3091 - 3092 3093 - 3137 3138 + 6539 6540 + 6541 6542 + 6543 6544 + 6545 6546 + 6547 6548 ) (attributes - 0 0 - 0 0 1 1 - 0 0 + 0 1 + 1 1 + 1 1 + 1 1 ) - (images "tiles/halloween/inner.png") + (images "tiles/ghostwood/ghostwood-8.png") ) + (tiles - (width 4) - (height 13) - (ids - 2268 2269 2270 2271 - 2272 2273 2274 2275 - 2276 2277 2278 2279 - 2280 2281 2282 2283 - 2284 2285 2286 2315 - 2287 2288 2289 2290 - 2291 2292 2293 2294 - 2295 2296 2297 2298 - 2299 2300 2301 2302 - 2303 2304 2305 2306 - 2307 2308 2309 2310 - 2311 2312 2313 2314 - 2316 0 0 0 + (width 4)(height 13) + (ids + 6549 6550 6551 6552 + 6553 6554 6555 6556 + 6557 6558 6559 6560 + 6561 6562 6563 6564 + 6565 6566 6567 6568 + 6569 6570 6571 6572 + 6573 6574 6575 6576 + 6577 6578 6579 6580 + 6581 6582 6583 6584 + 6585 6586 6587 6588 + 6589 6590 6591 6592 + 6593 6594 6595 6596 + 6597 6598 0 0 ) - (images "tiles/halloween/halloween_extra.png") + (attributes + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 0 0 + ) + (images "tiles/ghostwood/ghostwood-9.png") ) (tiles - (width 2) - (height 2) + (width 2)(height 4) (ids - 3094 3095 - 3096 3097 - ) - (attributes - 1 1 - 1 1 + 6601 6602 + 6603 6604 + 6605 6606 + 6607 6608 ) - (images "tiles/halloween/variation.png") + (images "tiles/ghostwood/liane_ghost.png") ) - (tiles - (width 2) - (height 2) + (width 1)(height 1) (ids - 3098 3099 - 3100 3101 + 6609 ) - (attributes - 1 1 - 1 1 + (images "tiles/ghostwood/mushrooms.png") + ) + + (tiles + (width 1)(height 1) + (ids + 6610 ) - (images "tiles/halloween/outerdarkness.png") + (images "tiles/ghostwood/plant1.png") ) (tiles - (width 2) - (height 2) + (width 4)(height 2) (ids - 3102 3103 - 3104 3105 - ) - (images "tiles/halloween/innerdarkness.png") + 6611 0 0 6614 + 6615 6616 6617 6618 + ) + (images "tiles/ghostwood/plant2.png") ) (tiles - (width 7) - (height 4) + (width 8)(height 10) (ids - 3114 3115 3116 3117 3118 3119 2266 - 3121 3106 3107 3123 3124 3125 2267 - 3122 3108 3109 3127 3128 3129 0 - 3131 3132 3133 3134 3135 3136 0 + 6619 6620 6621 6622 6623 6624 6625 6626 + 6627 6628 6629 6630 6631 6632 6633 6634 + 0 0 6637 6638 6639 6640 6641 6642 + 0 0 6645 6646 6647 6648 6649 6650 + 6651 6652 6653 6654 6655 6656 6657 6658 + 6659 6660 6661 6662 6663 6664 6665 6666 + 6667 6668 6669 6670 6671 6672 6673 6674 + 6675 6676 6677 6678 6679 6680 6681 6682 + 6683 6684 6685 6686 0 0 0 0 + 6691 6692 6693 6694 0 0 0 0 ) - (images "tiles/halloween/darkness.png") + (attributes + 1 1 1 1 1 17 17 0 + 1 1 1 1 1 17 17 0 + 0 0 1 1 0 17 17 1 + 0 0 1 1 0 17 17 1 + 1024 1 1 1024 0 0 1 1 + 1 1024 1024 1 17 17 17 17 + 17 17 17 17 17 17 17 17 + 1 1 1 1 1 1 0 0 + 1 1 1 1 0 0 0 0 + 17 17 17 17 0 0 0 0 + ) + (datas + 0 0 0 0 0 32 16 0 + 0 0 0 0 0 19 35 0 + 0 0 0 0 0 18 34 0 + 0 0 0 0 0 33 17 0 + 0 0 0 0 0 0 0 0 + 0 0 0 0 66 48 49 67 + 18 34 32 16 50 64 65 51 + 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 + 33 17 19 35 0 0 0 0 + ) + (images "tiles/ghostwood/roots.png") ) (tiles - (width 2) - (height 2) - (ids - 3163 3164 - 3165 3166 - ) - (images "tiles/signs/icehold.png") + (width 2)(height 3) + (ids + 6699 6700 + 6701 6702 + 6703 6704 + ) + (attributes + 4096 4096 + 4096 4096 + 4096 4096 + ) + (images "tiles/ghostwood/root-walljump.png") ) - + (tiles - (width 2) - (height 2) - (ids - 2380 2381 - 2382 2383 - ) - (images "tiles/signs/bombhold.png") + (width 4)(height 6) + (ids + 6705 6706 6707 6708 + 6709 6710 6711 6712 + 6713 6714 0 0 + 6717 6718 0 0 + 6721 6722 6723 6724 + 6725 6726 0 0 + ) + (attributes + 17 17 17 17 + 1 1 1 1 + 17 17 0 0 + 1 1 0 0 + 17 17 17 17 + 17 17 0 0 + ) + (datas + 18 16 2 0 + 0 0 0 0 + 50 64 0 0 + 0 0 0 0 + 18 16 2 0 + 50 64 0 0 + ) + (images "tiles/ghostwood/variants_ghost.png") ) (tiles - (width 6) - (height 7) + (width 4)(height 10) (ids - 3167 3168 3169 3170 3171 3172 - 3173 3174 3175 3176 3177 3178 - 3179 3180 3181 3182 3183 3184 - 3185 3186 3187 3188 3189 3190 - 3191 3192 3193 3194 0 0 - 3197 3198 3199 3200 0 0 - 3203 3204 3205 3206 0 0 + 6729 6730 6731 6732 + 6733 6734 6735 6736 + 6737 6738 6739 6740 + 6741 6742 6743 6744 + 6745 6746 6747 6748 + 6749 6750 6751 6752 + 0 6754 6755 0 + 6757 0 0 6760 + 6761 6762 6763 6764 + 6765 6766 6767 6768 ) (attributes - 0 0 0 1 17 17 - 0 0 0 1 17 17 - 0 0 0 1 1 1 - 1 1 17 17 1 1 - 1 1 17 17 0 0 - 1024 1024 1024 1024 0 0 - 1024 1024 1024 1024 0 0 + 0 0 0 0 + 17 1 1 17 + 17 0 0 17 + 1 1 1 1 + 17 0 0 17 + 1 17 17 1 + 0 1 1 0 + 0 0 0 0 + 17 0 0 17 + 1 17 17 1 ) (datas - 0 0 0 0 2 0 - 0 0 0 0 1 3 - 0 0 0 0 0 0 - 0 0 2 0 0 0 - 0 0 1 3 0 0 - 0 0 0 0 0 0 - 0 0 0 0 0 0 + 0 0 0 0 + 34 0 0 32 + 16 0 0 18 + 0 0 0 0 + 16 0 0 18 + 0 0 2 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 2 + 0 32 34 0 ) - (images "tiles/blocks/industrial.png") + (images "tiles/ghostwood/underground/ghostwood-12_under.png") ) - + + (tiles + (width 4)(height 1) + (deprecated #t) + (ids + 6753 0 0 6756 + ) + (attributes + 1 0 0 1 + ) + (images (region "tiles/ghostwood/underground/ghostwood-12_under.png" 0 192 128 32)) + ) + (tiles - (width 7) - (height 5) + (width 7)(height 5) (ids - 242 243 244 3249 3250 3251 3252 - 245 0 254 3253 3254 3255 3256 - 255 256 257 3261 3262 3263 3264 - 149 150 0 3265 3266 3267 3268 - 151 152 0 170 171 0 0 + 6769 6770 6771 6772 6773 6774 6775 + 6776 0 6778 6779 6780 6781 6782 + 6783 6784 6785 6786 6787 6788 6789 + 6790 6791 0 6793 6794 6795 6796 + 6797 6798 0 0 0 0 0 ) (attributes 0 0 0 1 1 1 1 0 0 0 1 1 1 1 - 0 0 0 1 1 1 1 - 0 0 0 1 1 1 1 - 0 0 0 1 1 0 0 + 0 0 0 1 1 1 1 + 0 0 0 1 1 1 1 + 0 0 0 0 0 0 0 ) - (images "tiles/snow/snowmerge.png") + (images "tiles/ghostwood/underground/ghostwood-13_under.png") ) (tiles - (width 2) - (height 3) + (width 4)(height 1) (ids - 3285 3286 - 3287 3288 - 3289 3290 + 6804 6805 6806 6807 ) - (images "tiles/doodads/tux-statue.png") + (attributes + 1 1 1 1 + ) + (images "tiles/ghostwood/underground/ghostwood-1a_under.png") ) + (tiles - (width 4) - (height 2) + (width 14)(height 5) (ids - 3419 3420 3421 3422 - 3423 3424 3425 3426 + 6808 6809 6810 6811 0 6813 6814 0 6816 6817 6818 6819 6820 6821 + 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 + 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 0 0 + 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 0 0 + 6864 6865 6866 6867 0 0 0 0 0 0 0 0 0 0 ) - (images "tiles/background/storm-cloud.png") + (attributes + 0 0 0 0 0 0 0 0 0 0 0 0 17 17 + 1 1 1 1 17 17 17 17 17 17 17 17 17 17 + 1 1 1 1 1 1 1 1 1 1 17 17 0 0 + 1 1 1 1 17 17 17 17 17 17 1 1 0 0 + 1 1 1 1 0 0 0 0 0 0 0 0 0 0 + ) + (datas + 0 0 0 0 0 0 0 0 0 0 0 0 49 67 + 0 0 0 0 18 34 32 16 2 0 66 48 65 51 + 0 0 0 0 0 0 0 0 0 0 50 64 0 0 + 0 0 0 0 33 17 19 35 1 3 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + ) + (images "tiles/ghostwood/underground/ghostwood-1_under.png") ) + (tiles - (width 3) - (height 1) + (width 2)(height 3) (ids - 3435 3436 3437 + 6878 6879 + 6880 6881 + 6882 6883 ) (attributes - 1 1 1 + 1 1 + 1 1 + 1 1 ) - (images "tiles/forest/forestlog.png") + (images "tiles/ghostwood/underground/ghostwood-2_under.png") ) + (tiles - (width 2) - (height 4) + (width 2)(height 7) (ids - 3438 3439 - 3440 3441 - 3442 3443 - 3444 3445 + 6884 6885 + 6886 6887 + 6888 6889 + 6890 6891 + 6892 6893 + 6894 6895 + 6896 6897 ) (attributes + 1 1 + 1 1 + 0 1 1 1 1 1 1 1 1 1 ) - (images "tiles/forest/statue2.png") + (images "tiles/ghostwood/underground/ghostwood-3_under.png") ) + (tiles - (width 4) - (height 2) + (width 4)(height 9) (ids - 3523 3524 3525 3526 - 3527 3528 3529 3530 + 6898 6899 6900 6901 + 6902 6903 6904 6905 + 6906 6907 6908 6909 + 6910 6911 6912 6913 + 6914 6915 6916 6917 + 6918 6919 6920 6921 + 6922 6923 6924 6925 + 6926 6927 6928 6929 + 6930 6931 0 0 ) (attributes - 1024 1024 1024 1024 - 1024 1024 1024 1024 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 1 1 + 1 1 0 0 ) - (images "tiles/background/storm-cloud-electrified.png") + (images "tiles/ghostwood/underground/ghostwood-4_under.png") ) (tiles - (width 4) - (height 4) - (images "tiles/snow/underground/background1.png") + (width 4)(height 4) (ids - 3541 3542 3543 3544 - 3545 3546 3547 3548 - 3549 3550 3551 3552 - 3553 3554 3555 3556 - ) + 6934 6935 6936 6937 + 6938 6939 6940 6941 + 6942 6943 0 0 + 6946 6947 0 0 + ) + (attributes + 17 17 17 17 + 1 1 1 1 + 17 17 0 0 + 1 1 0 0 + ) + (datas + 18 16 2 0 + 0 0 0 0 + 50 64 0 0 + 0 0 0 0 + ) + (images "tiles/ghostwood/underground/variants2_ghost.png") ) - + (tiles - (width 7) - (height 6) - (images "tiles/forest/tree_special.png") + (width 3)(height 4) (ids - 3625 3626 3637 3638 3649 3650 3651 - 3627 3628 3639 3640 3652 3653 3654 - 3629 3630 3641 3642 3655 3656 3657 - 3631 3632 3643 3644 3658 3659 3660 - 3633 3634 3645 3646 3661 3662 3663 - 3635 3636 3647 3648 3664 3665 3666 - ) - ) - - (tiles - (width 4) - (height 1) - (fps 16) - (water #t) - (hurts #t) - (images "tiles/water/antarctic-1a.png" - "tiles/water/antarctic-1b.png") - (ids - 3873 3874 3875 3876 - ) - (attributes - 1024 1024 1024 1024 - ) - ) - - (tile - (fps 16) - (water #t) - (hurts #t) - (images "tiles/water/antarctic-1c.png" - "tiles/water/antarctic-1d.png") - (id - 3877 - ) + 6950 6951 6952 + 6953 6954 6955 + 6956 6957 6958 + 6959 6960 0 + ) + (attributes + 1 1 1 + 1 1 1 + 1 1 1 + 1 1 0 + ) + (images "tiles/ghostwood/underground/variants_ghost.png") ) - + (tiles - (width 1) - (height 3) - (images "tiles/snow/flagpole.png") + (width 4)(height 10) (ids - 3927 3928 3929 - ) + 6978 6979 6980 6981 + 6982 6983 6984 6985 + 6986 6987 6988 6989 + 6990 6991 6992 6993 + 6994 6995 6996 6997 + 6998 6999 7000 7001 + 0 7003 7004 0 + 7006 0 0 7009 + 7010 7011 7012 7013 + 7014 7015 7016 7017 + ) + (attributes + 0 0 0 0 + 17 1 1 17 + 17 0 0 17 + 1 1 1 1 + 17 0 0 17 + 1 17 17 1 + 0 1 1 0 + 0 0 0 0 + 17 0 0 17 + 1 17 17 1 + ) + (datas + 0 0 0 0 + 34 0 0 32 + 16 0 0 18 + 0 0 0 0 + 16 0 0 18 + 0 0 2 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 2 + 0 32 34 0 + ) + (images "tiles/snow/underground/slope_transitions.png") ) - + (tiles - (width 4) - (height 12) + (width 7)(height 5) (ids - 3930 3931 3932 3939 - 3933 3934 3935 3941 - 3936 3937 3938 3940 - 2333 2334 2335 3942 - 2336 3945 2337 2338 - 3944 3943 2339 2340 - 2341 2342 2343 2344 - 3947 3946 2345 2346 - 2347 2348 2349 2350 - 2351 2352 2353 2354 - 2355 2356 2357 2358 - 2359 2360 2361 0 - ) - (attributes - 0 0 0 0 - 0 1 0 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 0 - ) - (images "tiles/snow/snowfort.png") + 7018 7019 7020 7021 7022 7023 7024 + 7025 0 7027 7028 7029 7030 7031 + 7032 7033 7034 7035 7036 7037 7038 + 7039 7040 0 7042 7043 7044 7045 + 7046 7047 0 0 0 0 0 + ) + (attributes + 0 0 0 1 1 1 1 + 0 0 0 1 1 1 1 + 0 0 0 1 1 1 1 + 0 0 0 1 1 1 1 + 0 0 0 0 0 0 0 + ) + (images "tiles/snow/underground/snowmerge.png") ) + (tiles - (width 4) - (height 12) + (width 4)(height 4) (ids - 3948 3949 3950 3951 - 3954 3955 3956 3957 - 3960 3961 3962 3952 - 2362 2363 2364 3958 - 2365 3953 2366 2367 - 3964 3963 2368 2369 - 2370 2371 2372 2373 - 3965 3959 2374 2375 - 2376 2377 2378 2379 - 2174 2175 2176 2177 - 2080 2081 2082 2083 - 2084 2927 2932 0 - ) - (images "tiles/snow/snowfort_bg.png") + 7053 7054 5604 5605 + 5639 5640 5614 5629 + 5636 5673 0 0 + 5684 5695 0 0 + ) + (attributes + 17 17 17 17 + 1 1 1 1 + 17 17 0 0 + 1 1 0 0 + ) + (datas + 18 16 2 0 + 0 0 0 0 + 50 64 0 0 + 0 0 0 0 + ) + (images "tiles/snow/underground/variants.png") ) + (tiles - (width 4) - (height 4) + (width 6)(height 3) (ids - 3966 3967 3968 3054 - 3969 3970 3971 3058 - 3667 3668 3669 3670 - 3671 3672 3673 3674 - ) - (attributes - 1 1 1 1 - 1 1 1 1 - 0 0 0 0 - 0 0 0 0 - ) - (images "tiles/snow/snowfort_fence.png") + 7055 7056 7057 7058 7059 7060 + 7061 7062 7063 7064 7065 7066 + 7067 7068 7069 7070 7071 0 + ) + (images "tiles/forest/foresttiles-bush.png") ) - - (tiles - (width 4) - (height 12) - (images "tiles/snow/icechunk.png") - (ids - 3972 3973 3974 3986 - 3976 3977 3978 3987 - 3980 3981 3982 3985 - 3983 3675 3676 3984 - 3677 3678 3679 3680 - 4036 4700 3979 4701 - 4702 4703 4704 4705 - 4706 4707 4708 3975 - 4709 4710 4711 4712 - 4713 4714 4715 4716 - 4717 4718 4719 4720 - 4721 4722 4723 0 - ) - (attributes - 257 257 257 257 - 257 257 257 257 - 257 257 257 257 - 257 257 257 257 - 257 257 257 257 - 257 257 257 257 - 257 257 257 257 - 257 257 257 257 - 257 257 257 257 - 257 257 257 257 - 257 257 257 257 - 257 257 257 0 - ) - ) - + (tiles - (width 4) - (height 9) - (ids - 3988 3989 3990 3991 - 2134 2135 3429 3430 - 3427 3428 3431 3432 - 3454 3455 3456 3457 - 4750 4751 0 0 - 4752 4753 4756 4757 - 4754 4755 4758 4759 - 4760 4761 0 0 - 4762 4763 0 0 - ) - (attributes - 1 1 1 0 - 1 1 17 17 - 17 17 17 17 - 17 17 17 17 - 17 17 0 0 - 17 17 17 17 - 1 1 1 1 - 17 17 0 0 - 1 1 0 0 - ) - (datas - 0 0 0 0 - 0 0 1 3 - 33 35 49 67 - 18 16 2 0 - 50 64 0 0 - 18 16 2 0 - 0 0 0 0 - 50 64 0 0 - 0 0 0 0 - ) - (images "tiles/snow/variants2.png") - ) - - (tiles - (width 11) - (height 7) - (images "tiles/retro/retro_snow.png") + (width 2)(height 3) (ids - 4000 4001 4002 4003 4170 4171 4172 4190 4738 4739 4899 - 4078 4079 4080 4081 4173 4175 4185 4191 4740 4741 4900 - 4100 4101 4102 4194 4174 4176 4186 4192 4742 4743 4901 - 4157 4158 4159 4160 4177 4178 4187 4193 4744 4745 4902 - 4161 4162 4163 4164 4179 4183 4188 4737 4746 4747 4903 - 4103 4165 4166 4167 4180 4184 4189 4736 4748 4749 4904 - 4168 4169 4181 4182 4732 4733 4734 4735 0 0 0 + 1569 1571 + 1570 1573 + 1572 1574 ) (attributes - 1 1 1 1 1 1 1 1 1 1 1 - 1 1 1 1 1 1 0 1 1 1 1 - 0 0 0 1 1 1 1 1 1 1 1 - 1 1 1 1 1 1 1 1 1 1 1 - 1 1 1 1 1 1 1 1 1 1 1 - 1 1 1 1 1 1 1 1 1 1 1 - 1 1 1 1 1 1 1 1 0 0 0 - ) - ) - - (tiles - (width 7) - (height 4) - (ids - 3915 3916 3917 3918 3433 2166 2170 - 3919 3920 3921 3922 3434 2167 2171 - 3110 3111 3112 3113 4117 2168 2172 - 4005 4006 4007 4008 4118 2169 2173 + 1024 1024 + 1024 1024 + 1024 1024 ) - (images "tiles/blocks/block_overlays.png") + (images "tiles/forest/pogonia.png") ) (tiles - (width 4)(height 7) + (width 7)(height 5) (ids - 4009 4010 4011 4012 - 4013 4014 4015 4016 - 4017 4018 4019 4020 - 4021 4022 4023 4024 - 4025 4026 4027 4028 - 4029 4030 4031 4032 - 4033 4034 4035 0 + 7072 7073 7074 7075 7076 7077 7078 + 7079 0 7081 7082 7083 7084 7085 + 7086 7087 7088 7089 7090 7091 7092 + 7093 7094 0 7096 7097 7098 7099 + 7100 7101 0 0 0 0 0 ) (attributes - 1 1 1 1 - 1 1 1 1 - 1 1 1 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 0 + 0 0 0 1 1 1 1 + 0 0 0 1 1 1 1 + 0 0 0 1 1 1 1 + 0 0 0 1 1 1 1 + 0 0 0 0 0 0 0 ) - (images "tiles/snow/special3.png") + (images "tiles/forest/underground/groundmerge.png") ) (tiles (width 4)(height 11) (ids - 4037 4038 4039 4040 - 4041 4042 4043 4044 - 4045 4046 4047 4048 - 4049 4050 4051 4052 - 4053 4054 4055 4056 - 4057 4058 4059 4060 - 4061 4062 4063 4064 - 4065 4066 4067 4068 - 4069 4070 4071 4072 - 4073 4074 4075 4076 - 4077 0 0 0 + 7102 7103 7104 7105 + 7106 7107 7108 7109 + 7110 7111 7112 7113 + 7114 7115 7116 7117 + 7118 7119 7120 7121 + 7122 7123 7124 7125 + 7126 7127 7128 7129 + 7130 7131 7132 7133 + 7134 7135 7136 7137 + 7138 7139 7140 7141 + 7142 0 0 0 ) (attributes 1 1 1 1 @@ -5334,196 +8030,111 @@ 1 1 1 1 1 0 0 0 ) - (images "tiles/snow/underground/special.png") + (images "tiles/forest/underground/groundtiles-more.png") ) - + (tiles - (width 2) - (height 3) - (images "tiles/castle/nolok-statue-forest.png") + (width 4)(height 10) (ids - 4082 4083 - 4084 4085 - 4086 4087 - ) - (attributes - 0 0 - 0 0 - 0 0 - ) - ) - - (tiles - (width 2) - (height 3) - (images "tiles/castle/nolok-statue-ghost.png") - (ids - 4088 4089 - 4090 4091 - 4092 4093 - ) - (atrributes - 0 0 - 0 0 - 0 0 - ) + 7143 7144 7145 7146 + 7147 7148 7149 7150 + 7151 7152 7153 7154 + 7155 7156 7157 7158 + 7159 7160 7161 7162 + 7163 7164 7165 7166 + 0 7168 7169 0 + 7171 0 0 7174 + 7175 7176 7177 7178 + 7179 7180 7181 7182 ) - - (tiles - (width 2) - (height 3) - (images "tiles/castle/nolok-statue-snow.png") - (ids - 4094 4095 - 4096 4097 - 4098 4099 - ) - (attributes - 0 0 - 0 0 - 0 0 - ) - ) - - (tiles - (width 2) - (height 3) - (ids - 2523 2524 - 2525 2526 - 2527 2528) (attributes - 4096 4096 - 4096 4096 - 4096 4096) - (images "tiles/test/walljump-test.png")) + 0 0 0 0 + 17 1 1 17 + 17 0 0 17 + 1 1 1 1 + 17 0 0 17 + 1 17 17 1 + 0 1 1 0 + 0 0 0 0 + 17 0 0 17 + 1 17 17 1 + ) + (datas + 0 0 0 0 + 34 0 0 32 + 16 0 0 18 + 0 0 0 0 + 16 0 0 18 + 0 0 2 0 + 0 0 0 0 + 0 0 0 0 + 0 0 0 2 + 0 32 34 0 + ) + (images "tiles/forest/underground/slope_transitions.png") + ) (tiles - (width 5) - (height 3) + (width 3)(height 4) (ids - 4104 4105 4106 4107 4108 - 4109 4110 4111 4112 4113 - 4114 4115 4116 0 0 - ) + 7048 7049 7050 + 7051 7052 7041 + 7080 7095 7167 + 7170 7172 0 + ) (attributes - 4096 1 4096 1 1 - 4096 1 4096 1 1 - 4096 1 4096 0 0 - ) - (images "tiles/snow/snow-walljump.png")) + 1 1 1 + 1 1 1 + 1 1 1 + 1 1 0 + ) + (images "tiles/forest/underground/variants.png") + ) (tiles - (width 2) - (height 3) - (ids - 4119 4120 - 4121 4122 - 4123 4124) - (attributes - 4096 4096 - 4096 4096 - 4096 4096) - (images "tiles/forest/leaf-walljump.png")) - - (tiles - (width 2) - (height 3) + (width 4)(height 4) (ids - 3868 3869 - 3870 3871 - 3872 1350) + 7183 7184 7185 7186 + 7187 7188 7189 7190 + 7191 7192 0 0 + 7193 7194 0 0 + ) (attributes - 4096 4096 - 4096 4096 - 4096 4096) - (images "tiles/ghostwood/root-walljump.png")) + 17 17 17 17 + 1 1 1 1 + 17 17 0 0 + 1 1 0 0 + ) + (datas + 18 16 2 0 + 0 0 0 0 + 50 64 0 0 + 0 0 0 0 + ) + (images "tiles/forest/underground/variants2.png") + ) (tiles - (width 2) - (height 2) + (width 3)(height 4) (ids - 4125 4126 - 4127 4128) - (images "tiles/signs/walljump.png")) - - (tiles - (width 4) - (height 16) - (ids - 2460 2470 2471 2631 - 2634 2515 2516 2517 - 2518 4153 4154 4155 - 2529 2530 2531 2532 - 2533 2534 2539 2540 - 2541 2542 2543 2544 - 2545 2546 2547 2548 - 2549 2550 2555 2566 - 2571 2572 2573 2574 - 2575 2576 2577 2578 - 2579 2580 2581 2582 - 2587 2588 2589 2590 - 2591 2592 2593 2594 - 2595 2596 2597 2598 - 2603 2604 2605 2606 - 2607 2608 2609 2610) - (images "tiles/forest/rocks-forest.png")) - - (tiles - (width 4) - (height 13) - (ids - 2611 2612 2613 2614 - 2619 2620 2621 2622 - 2623 2624 2625 2626 - 2627 2628 2629 2630 - 2635 2636 2637 2638 - 2639 2640 2641 2642 - 2643 2644 2645 2646 - 4129 4130 4131 4132 - 4133 4134 4135 4136 - 4137 4138 4139 4140 - 4141 4142 4143 4144 - 4145 4146 4147 4148 - 4149 4150 4151 4152) - (images "tiles/snow/rocks-snow.png")) + 0 5117 0 + 5118 5119 5120 + 5121 5122 5124 + 5125 5126 5127 + ) + (images "tiles/background/seaweed-0.png") + ) (tiles - (width 4) - (height 13) + (width 3)(height 4) (ids - 4293 4294 4295 4296 - 4297 4298 4299 4300 - 4301 4302 4303 4304 - 4305 4306 4307 4308 - 4309 4310 4362 4363 - 4313 4314 4315 4316 - 4364 4365 4319 4320 - 4321 4322 4323 4324 - 4325 4326 4366 4367 - 4328 4329 4330 4331 - 4368 4369 4370 4371 - 4372 4373 4374 4375 - 4376 4377 0 0 - ) - (attributes - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 1 1 - 1 1 0 0 + 0 7302 0 + 7303 7304 7305 + 7306 7307 7308 + 7309 7310 7311 ) - (images "tiles/forest/special2.png") + (images "tiles/background/corrupt_seaweed-0.png") ) - ;; Additional attributes (additional (thunderstorm @@ -5542,6 +8153,12 @@ 3424 3528 3425 3529 3426 3530 + + ;; Deprecated + 75 1421 + 200 1421 + 76 1422 + 201 1422 ) ) ) diff --git a/data/images/tiles/auxiliary/black.png b/data/images/tiles/auxiliary/black.png new file mode 100644 index 00000000000..ea60bc71eb4 Binary files /dev/null and b/data/images/tiles/auxiliary/black.png differ diff --git a/data/images/tiles/auxiliary/endseq.png b/data/images/tiles/auxiliary/endseq.png new file mode 100644 index 00000000000..ac2c6dccb3d Binary files /dev/null and b/data/images/tiles/auxiliary/endseq.png differ diff --git a/data/images/tiles/auxiliary/finalgoal.png b/data/images/tiles/auxiliary/finalgoal.png new file mode 100644 index 00000000000..5a81df15558 Binary files /dev/null and b/data/images/tiles/auxiliary/finalgoal.png differ diff --git a/data/images/tiles/auxiliary/invisible-unisolid-editor.png b/data/images/tiles/auxiliary/invisible-unisolid-editor.png new file mode 100644 index 00000000000..f8dae9622e6 Binary files /dev/null and b/data/images/tiles/auxiliary/invisible-unisolid-editor.png differ diff --git a/data/images/tiles/background/corrupt_seaweed-0.png b/data/images/tiles/background/corrupt_seaweed-0.png new file mode 100644 index 00000000000..b2917a61e1f Binary files /dev/null and b/data/images/tiles/background/corrupt_seaweed-0.png differ diff --git a/data/images/tiles/background/deprecated/backgroundtile2.png b/data/images/tiles/background/deprecated/backgroundtile2.png new file mode 100644 index 00000000000..d83240345fd Binary files /dev/null and b/data/images/tiles/background/deprecated/backgroundtile2.png differ diff --git a/data/images/tiles/background/deprecated/backgroundtile3.png b/data/images/tiles/background/deprecated/backgroundtile3.png new file mode 100644 index 00000000000..46f8982d93a Binary files /dev/null and b/data/images/tiles/background/deprecated/backgroundtile3.png differ diff --git a/data/images/tiles/background/deprecated/backgroundtile4.png b/data/images/tiles/background/deprecated/backgroundtile4.png new file mode 100644 index 00000000000..ad7c6a832b4 Binary files /dev/null and b/data/images/tiles/background/deprecated/backgroundtile4.png differ diff --git a/data/images/tiles/background/deprecated/backgroundtile5.png b/data/images/tiles/background/deprecated/backgroundtile5.png new file mode 100644 index 00000000000..bf20427ce7a Binary files /dev/null and b/data/images/tiles/background/deprecated/backgroundtile5.png differ diff --git a/data/images/tiles/background/deprecated/snow-para-1.png b/data/images/tiles/background/deprecated/snow-para-1.png new file mode 100644 index 00000000000..240432ee511 Binary files /dev/null and b/data/images/tiles/background/deprecated/snow-para-1.png differ diff --git a/data/images/tiles/background/deprecated/snow-para-2.png b/data/images/tiles/background/deprecated/snow-para-2.png new file mode 100644 index 00000000000..14623275a2e Binary files /dev/null and b/data/images/tiles/background/deprecated/snow-para-2.png differ diff --git a/data/images/tiles/background/storm-cloud-electrified.png b/data/images/tiles/background/deprecated/storm-cloud-electrified.png similarity index 100% rename from data/images/tiles/background/storm-cloud-electrified.png rename to data/images/tiles/background/deprecated/storm-cloud-electrified.png diff --git a/data/images/tiles/background/deprecated/tile-160.png b/data/images/tiles/background/deprecated/tile-160.png new file mode 100644 index 00000000000..0992797b85a Binary files /dev/null and b/data/images/tiles/background/deprecated/tile-160.png differ diff --git a/data/images/tiles/background/seaweed-0.png b/data/images/tiles/background/seaweed-0.png new file mode 100644 index 00000000000..1701e6cb969 Binary files /dev/null and b/data/images/tiles/background/seaweed-0.png differ diff --git a/data/images/tiles/blocks/block4.png b/data/images/tiles/blocks/block4.png deleted file mode 100644 index 7a720f8c87d..00000000000 Binary files a/data/images/tiles/blocks/block4.png and /dev/null differ diff --git a/data/images/tiles/blocks/block_horiz.png b/data/images/tiles/blocks/block_horiz.png deleted file mode 100644 index dc6214f690e..00000000000 Binary files a/data/images/tiles/blocks/block_horiz.png and /dev/null differ diff --git a/data/images/tiles/blocks/block_vert.png b/data/images/tiles/blocks/block_vert.png deleted file mode 100644 index 373f53220dc..00000000000 Binary files a/data/images/tiles/blocks/block_vert.png and /dev/null differ diff --git a/data/images/tiles/blocks/block_wood.png b/data/images/tiles/blocks/block_wood.png new file mode 100644 index 00000000000..fafe1bae7ce Binary files /dev/null and b/data/images/tiles/blocks/block_wood.png differ diff --git a/data/images/tiles/blocks/deprecated/block_season.png b/data/images/tiles/blocks/deprecated/block_season.png new file mode 100644 index 00000000000..d1f629ffa83 Binary files /dev/null and b/data/images/tiles/blocks/deprecated/block_season.png differ diff --git a/data/images/tiles/blocks/deprecated/icebridge.png b/data/images/tiles/blocks/deprecated/icebridge.png new file mode 100644 index 00000000000..2cdecff3709 Binary files /dev/null and b/data/images/tiles/blocks/deprecated/icebridge.png differ diff --git a/data/images/tiles/blocks/deprecated/spikes-all.png b/data/images/tiles/blocks/deprecated/spikes-all.png new file mode 100644 index 00000000000..6217d92de0f Binary files /dev/null and b/data/images/tiles/blocks/deprecated/spikes-all.png differ diff --git a/data/images/tiles/castle/deprecated/background.png b/data/images/tiles/castle/deprecated/background.png new file mode 100644 index 00000000000..4fe34896b69 Binary files /dev/null and b/data/images/tiles/castle/deprecated/background.png differ diff --git a/data/images/tiles/castle/deprecated/brown.png b/data/images/tiles/castle/deprecated/brown.png new file mode 100644 index 00000000000..69f363f36e4 Binary files /dev/null and b/data/images/tiles/castle/deprecated/brown.png differ diff --git a/data/images/tiles/castle/castle_block.png b/data/images/tiles/castle/deprecated/castle_block.png similarity index 100% rename from data/images/tiles/castle/castle_block.png rename to data/images/tiles/castle/deprecated/castle_block.png diff --git a/data/images/tiles/castle/deprecated/castle_wall.png b/data/images/tiles/castle/deprecated/castle_wall.png new file mode 100644 index 00000000000..9f927fd46fe Binary files /dev/null and b/data/images/tiles/castle/deprecated/castle_wall.png differ diff --git a/data/images/tiles/castle/deprecated/chain.png b/data/images/tiles/castle/deprecated/chain.png new file mode 100644 index 00000000000..a935005fbd0 Binary files /dev/null and b/data/images/tiles/castle/deprecated/chain.png differ diff --git a/data/images/tiles/castle/deprecated/column.png b/data/images/tiles/castle/deprecated/column.png new file mode 100644 index 00000000000..b84293d7a79 Binary files /dev/null and b/data/images/tiles/castle/deprecated/column.png differ diff --git a/data/images/tiles/castle/door.png b/data/images/tiles/castle/deprecated/door.png similarity index 100% rename from data/images/tiles/castle/door.png rename to data/images/tiles/castle/deprecated/door.png diff --git a/data/images/tiles/castle/deprecated/foreground.png b/data/images/tiles/castle/deprecated/foreground.png new file mode 100644 index 00000000000..58cdb88bc49 Binary files /dev/null and b/data/images/tiles/castle/deprecated/foreground.png differ diff --git a/data/images/tiles/castle/deprecated/grey_brick_moss.png b/data/images/tiles/castle/deprecated/grey_brick_moss.png new file mode 100644 index 00000000000..8226535ba24 Binary files /dev/null and b/data/images/tiles/castle/deprecated/grey_brick_moss.png differ diff --git a/data/images/tiles/castle/deprecated/grey_misc.png b/data/images/tiles/castle/deprecated/grey_misc.png new file mode 100644 index 00000000000..37d1fea615c Binary files /dev/null and b/data/images/tiles/castle/deprecated/grey_misc.png differ diff --git a/data/images/tiles/castle/deprecated/grey_unisolid.png b/data/images/tiles/castle/deprecated/grey_unisolid.png new file mode 100644 index 00000000000..24eefacff5e Binary files /dev/null and b/data/images/tiles/castle/deprecated/grey_unisolid.png differ diff --git a/data/images/tiles/castle/deprecated/snowcastle.png b/data/images/tiles/castle/deprecated/snowcastle.png new file mode 100644 index 00000000000..caec158e5a3 Binary files /dev/null and b/data/images/tiles/castle/deprecated/snowcastle.png differ diff --git a/data/images/tiles/castle/stone.png b/data/images/tiles/castle/deprecated/stone.png similarity index 100% rename from data/images/tiles/castle/stone.png rename to data/images/tiles/castle/deprecated/stone.png diff --git a/data/images/tiles/castle/deprecated/stones.png b/data/images/tiles/castle/deprecated/stones.png new file mode 100644 index 00000000000..26a31b15364 Binary files /dev/null and b/data/images/tiles/castle/deprecated/stones.png differ diff --git a/data/images/tiles/castle/stonewindow.png b/data/images/tiles/castle/deprecated/stonewindow.png similarity index 100% rename from data/images/tiles/castle/stonewindow.png rename to data/images/tiles/castle/deprecated/stonewindow.png diff --git a/data/images/tiles/castle/deprecated/walltorch/flame-0.png b/data/images/tiles/castle/deprecated/walltorch/flame-0.png new file mode 100644 index 00000000000..a43cda5fadd Binary files /dev/null and b/data/images/tiles/castle/deprecated/walltorch/flame-0.png differ diff --git a/data/images/tiles/castle/deprecated/walltorch/flame-1.png b/data/images/tiles/castle/deprecated/walltorch/flame-1.png new file mode 100644 index 00000000000..828a6d8955a Binary files /dev/null and b/data/images/tiles/castle/deprecated/walltorch/flame-1.png differ diff --git a/data/images/tiles/castle/deprecated/walltorch/flame-2.png b/data/images/tiles/castle/deprecated/walltorch/flame-2.png new file mode 100644 index 00000000000..cabeef97ac2 Binary files /dev/null and b/data/images/tiles/castle/deprecated/walltorch/flame-2.png differ diff --git a/data/images/tiles/castle/deprecated/walltorch/flame-3.png b/data/images/tiles/castle/deprecated/walltorch/flame-3.png new file mode 100644 index 00000000000..b6f6b9c03b7 Binary files /dev/null and b/data/images/tiles/castle/deprecated/walltorch/flame-3.png differ diff --git a/data/images/tiles/castle/deprecated/walltorch/flame-4.png b/data/images/tiles/castle/deprecated/walltorch/flame-4.png new file mode 100644 index 00000000000..1bb35932873 Binary files /dev/null and b/data/images/tiles/castle/deprecated/walltorch/flame-4.png differ diff --git a/data/images/tiles/castle/deprecated/walltorch/flame-5.png b/data/images/tiles/castle/deprecated/walltorch/flame-5.png new file mode 100644 index 00000000000..1af5046ec7b Binary files /dev/null and b/data/images/tiles/castle/deprecated/walltorch/flame-5.png differ diff --git a/data/images/tiles/castle/deprecated/walltorch/flame-6.png b/data/images/tiles/castle/deprecated/walltorch/flame-6.png new file mode 100644 index 00000000000..fb32d794607 Binary files /dev/null and b/data/images/tiles/castle/deprecated/walltorch/flame-6.png differ diff --git a/data/images/tiles/castle/deprecated/walltorch/flame-base-0.png b/data/images/tiles/castle/deprecated/walltorch/flame-base-0.png new file mode 100644 index 00000000000..bef2912c851 Binary files /dev/null and b/data/images/tiles/castle/deprecated/walltorch/flame-base-0.png differ diff --git a/data/images/tiles/castle/window.png b/data/images/tiles/castle/deprecated/window.png similarity index 100% rename from data/images/tiles/castle/window.png rename to data/images/tiles/castle/deprecated/window.png diff --git a/data/images/tiles/crystalcave/crystal_1x1.png b/data/images/tiles/crystalcave/crystal_1x1.png index 05e3a2a6d1e..4d7bd246302 100644 Binary files a/data/images/tiles/crystalcave/crystal_1x1.png and b/data/images/tiles/crystalcave/crystal_1x1.png differ diff --git a/data/images/tiles/crystalcave/crystal_1x1_extra.png b/data/images/tiles/crystalcave/crystal_1x1_extra.png new file mode 100644 index 00000000000..39d99268b9c Binary files /dev/null and b/data/images/tiles/crystalcave/crystal_1x1_extra.png differ diff --git a/data/images/tiles/crystalcave/crystal_1x1_extra2.png b/data/images/tiles/crystalcave/crystal_1x1_extra2.png new file mode 100644 index 00000000000..f63ed951f3e Binary files /dev/null and b/data/images/tiles/crystalcave/crystal_1x1_extra2.png differ diff --git a/data/images/tiles/crystalcave/crystal_2x2.png b/data/images/tiles/crystalcave/crystal_2x2.png index 7e84b4cfca4..31313a9d337 100644 Binary files a/data/images/tiles/crystalcave/crystal_2x2.png and b/data/images/tiles/crystalcave/crystal_2x2.png differ diff --git a/data/images/tiles/crystalcave/crystal_variants.png b/data/images/tiles/crystalcave/crystal_variants.png new file mode 100644 index 00000000000..ee2c2054c98 Binary files /dev/null and b/data/images/tiles/crystalcave/crystal_variants.png differ diff --git a/data/images/tiles/crystalcave/deprecated/background.png b/data/images/tiles/crystalcave/deprecated/background.png new file mode 100644 index 00000000000..f8a34eeb73b Binary files /dev/null and b/data/images/tiles/crystalcave/deprecated/background.png differ diff --git a/data/images/tiles/crystalcave/deprecated/crystal_2x2.png b/data/images/tiles/crystalcave/deprecated/crystal_2x2.png new file mode 100644 index 00000000000..7e84b4cfca4 Binary files /dev/null and b/data/images/tiles/crystalcave/deprecated/crystal_2x2.png differ diff --git a/data/images/tiles/crystalcave/deprecated/ground.png b/data/images/tiles/crystalcave/deprecated/ground.png new file mode 100644 index 00000000000..8e7cf591abe Binary files /dev/null and b/data/images/tiles/crystalcave/deprecated/ground.png differ diff --git a/data/images/tiles/crystalcave/deprecated/ground_extra.png b/data/images/tiles/crystalcave/deprecated/ground_extra.png new file mode 100644 index 00000000000..4bdc6236490 Binary files /dev/null and b/data/images/tiles/crystalcave/deprecated/ground_extra.png differ diff --git a/data/images/tiles/doodads/clover.png b/data/images/tiles/doodads/clover.png deleted file mode 100644 index b7df2b5c698..00000000000 Binary files a/data/images/tiles/doodads/clover.png and /dev/null differ diff --git a/data/images/tiles/doodads/deprecated/blueice.png b/data/images/tiles/doodads/deprecated/blueice.png new file mode 100644 index 00000000000..ec60a278659 Binary files /dev/null and b/data/images/tiles/doodads/deprecated/blueice.png differ diff --git a/data/images/tiles/doodads/deprecated/blueicetop.png b/data/images/tiles/doodads/deprecated/blueicetop.png new file mode 100644 index 00000000000..b83bbe12126 Binary files /dev/null and b/data/images/tiles/doodads/deprecated/blueicetop.png differ diff --git a/data/images/tiles/doodads/deprecated/flag-0.png b/data/images/tiles/doodads/deprecated/flag-0.png new file mode 100644 index 00000000000..2c170d3d12f Binary files /dev/null and b/data/images/tiles/doodads/deprecated/flag-0.png differ diff --git a/data/images/tiles/doodads/deprecated/flag-1.png b/data/images/tiles/doodads/deprecated/flag-1.png new file mode 100644 index 00000000000..3a111dc5abe Binary files /dev/null and b/data/images/tiles/doodads/deprecated/flag-1.png differ diff --git a/data/images/tiles/doodads/deprecated/havoktux-0.png b/data/images/tiles/doodads/deprecated/havoktux-0.png new file mode 100644 index 00000000000..9b72b914295 Binary files /dev/null and b/data/images/tiles/doodads/deprecated/havoktux-0.png differ diff --git a/data/images/tiles/doodads/deprecated/platter.png b/data/images/tiles/doodads/deprecated/platter.png new file mode 100644 index 00000000000..9e513c83289 Binary files /dev/null and b/data/images/tiles/doodads/deprecated/platter.png differ diff --git a/data/images/tiles/doodads/deprecated/stone1.png b/data/images/tiles/doodads/deprecated/stone1.png new file mode 100644 index 00000000000..46c6e20ff26 Binary files /dev/null and b/data/images/tiles/doodads/deprecated/stone1.png differ diff --git a/data/images/tiles/doodads/deprecated/stone2.png b/data/images/tiles/doodads/deprecated/stone2.png new file mode 100644 index 00000000000..a391fc47d9c Binary files /dev/null and b/data/images/tiles/doodads/deprecated/stone2.png differ diff --git a/data/images/tiles/doodads/iceshrub.png b/data/images/tiles/doodads/iceshrub.png new file mode 100644 index 00000000000..e70bf74124b Binary files /dev/null and b/data/images/tiles/doodads/iceshrub.png differ diff --git a/data/images/engine/menu/logo.sprite b/data/images/tiles/doodads/iceshrub.sprite similarity index 65% rename from data/images/engine/menu/logo.sprite rename to data/images/tiles/doodads/iceshrub.sprite index 902f41a7a10..34ec355efcf 100644 --- a/data/images/engine/menu/logo.sprite +++ b/data/images/tiles/doodads/iceshrub.sprite @@ -1,6 +1,6 @@ (supertux-sprite (action (name "default") - (images "logo.png") + (images "iceshrub.png") ) ) diff --git a/data/images/tiles/doodads/plant1.png b/data/images/tiles/doodads/plant1.png new file mode 100644 index 00000000000..b48291542f2 Binary files /dev/null and b/data/images/tiles/doodads/plant1.png differ diff --git a/data/images/tiles/forest/ceiling-slopes.png b/data/images/tiles/forest/ceiling-slopes.png new file mode 100644 index 00000000000..639f8f1d896 Binary files /dev/null and b/data/images/tiles/forest/ceiling-slopes.png differ diff --git a/data/images/tiles/forest/concave.png b/data/images/tiles/forest/concave.png index 406844bfbe7..ee2b2e2ecf2 100644 Binary files a/data/images/tiles/forest/concave.png and b/data/images/tiles/forest/concave.png differ diff --git a/data/images/tiles/forest/convex.png b/data/images/tiles/forest/convex.png deleted file mode 100644 index e65169662eb..00000000000 Binary files a/data/images/tiles/forest/convex.png and /dev/null differ diff --git a/data/images/tiles/forest/deprecated/branch.png b/data/images/tiles/forest/deprecated/branch.png new file mode 100644 index 00000000000..cb56d10ad84 Binary files /dev/null and b/data/images/tiles/forest/deprecated/branch.png differ diff --git a/data/images/tiles/forest/deprecated/brush.png b/data/images/tiles/forest/deprecated/brush.png new file mode 100644 index 00000000000..b97925f8b07 Binary files /dev/null and b/data/images/tiles/forest/deprecated/brush.png differ diff --git a/data/images/tiles/forest/deprecated/brush2.png b/data/images/tiles/forest/deprecated/brush2.png new file mode 100644 index 00000000000..4cf2da75b10 Binary files /dev/null and b/data/images/tiles/forest/deprecated/brush2.png differ diff --git a/data/images/tiles/forest/deprecated/dangersign.png b/data/images/tiles/forest/deprecated/dangersign.png new file mode 100644 index 00000000000..0b99cdbe107 Binary files /dev/null and b/data/images/tiles/forest/deprecated/dangersign.png differ diff --git a/data/images/tiles/forest/deprecated/exit-tree.png b/data/images/tiles/forest/deprecated/exit-tree.png new file mode 100644 index 00000000000..01abcde81eb Binary files /dev/null and b/data/images/tiles/forest/deprecated/exit-tree.png differ diff --git a/data/images/tiles/forest/deprecated/exit/bottom1.png b/data/images/tiles/forest/deprecated/exit/bottom1.png new file mode 100644 index 00000000000..c1daceead1d Binary files /dev/null and b/data/images/tiles/forest/deprecated/exit/bottom1.png differ diff --git a/data/images/tiles/forest/deprecated/exit/bottom2.png b/data/images/tiles/forest/deprecated/exit/bottom2.png new file mode 100644 index 00000000000..2fb496486b2 Binary files /dev/null and b/data/images/tiles/forest/deprecated/exit/bottom2.png differ diff --git a/data/images/tiles/forest/deprecated/exit/bottom3.png b/data/images/tiles/forest/deprecated/exit/bottom3.png new file mode 100644 index 00000000000..f49bd1a3188 Binary files /dev/null and b/data/images/tiles/forest/deprecated/exit/bottom3.png differ diff --git a/data/images/tiles/forest/deprecated/exit/outhouse.png b/data/images/tiles/forest/deprecated/exit/outhouse.png new file mode 100644 index 00000000000..6e2e9fc978b Binary files /dev/null and b/data/images/tiles/forest/deprecated/exit/outhouse.png differ diff --git a/data/images/tiles/forest/deprecated/exit/top1.png b/data/images/tiles/forest/deprecated/exit/top1.png new file mode 100644 index 00000000000..d6f70c88ae4 Binary files /dev/null and b/data/images/tiles/forest/deprecated/exit/top1.png differ diff --git a/data/images/tiles/forest/deprecated/exit/top2.png b/data/images/tiles/forest/deprecated/exit/top2.png new file mode 100644 index 00000000000..d74a54d9079 Binary files /dev/null and b/data/images/tiles/forest/deprecated/exit/top2.png differ diff --git a/data/images/tiles/forest/deprecated/exit/top3.png b/data/images/tiles/forest/deprecated/exit/top3.png new file mode 100644 index 00000000000..0e5e435a732 Binary files /dev/null and b/data/images/tiles/forest/deprecated/exit/top3.png differ diff --git a/data/images/tiles/forest/deprecated/foresttiles-10.png b/data/images/tiles/forest/deprecated/foresttiles-10.png new file mode 100644 index 00000000000..a646bd5dcb8 Binary files /dev/null and b/data/images/tiles/forest/deprecated/foresttiles-10.png differ diff --git a/data/images/tiles/forest/deprecated/foresttiles-11.png b/data/images/tiles/forest/deprecated/foresttiles-11.png new file mode 100644 index 00000000000..9fe6603b814 Binary files /dev/null and b/data/images/tiles/forest/deprecated/foresttiles-11.png differ diff --git a/data/images/tiles/forest/deprecated/foresttiles-2.png b/data/images/tiles/forest/deprecated/foresttiles-2.png new file mode 100644 index 00000000000..f713989cc6c Binary files /dev/null and b/data/images/tiles/forest/deprecated/foresttiles-2.png differ diff --git a/data/images/tiles/forest/deprecated/foresttiles-3.png b/data/images/tiles/forest/deprecated/foresttiles-3.png new file mode 100644 index 00000000000..929c3c31400 Binary files /dev/null and b/data/images/tiles/forest/deprecated/foresttiles-3.png differ diff --git a/data/images/tiles/forest/deprecated/foresttiles-8.png b/data/images/tiles/forest/deprecated/foresttiles-8.png new file mode 100644 index 00000000000..f13d92ec085 Binary files /dev/null and b/data/images/tiles/forest/deprecated/foresttiles-8.png differ diff --git a/data/images/tiles/forest/deprecated/foresttiles-9.png b/data/images/tiles/forest/deprecated/foresttiles-9.png new file mode 100644 index 00000000000..f6b15fc4a34 Binary files /dev/null and b/data/images/tiles/forest/deprecated/foresttiles-9.png differ diff --git a/data/images/tiles/forest/deprecated/foresttiles-9a.png b/data/images/tiles/forest/deprecated/foresttiles-9a.png new file mode 100644 index 00000000000..7404ba6428d Binary files /dev/null and b/data/images/tiles/forest/deprecated/foresttiles-9a.png differ diff --git a/data/images/tiles/forest/deprecated/hole.png b/data/images/tiles/forest/deprecated/hole.png new file mode 100644 index 00000000000..21c82cf3984 Binary files /dev/null and b/data/images/tiles/forest/deprecated/hole.png differ diff --git a/data/images/tiles/forest/deprecated/hole2.png b/data/images/tiles/forest/deprecated/hole2.png new file mode 100644 index 00000000000..a23d2c87cb3 Binary files /dev/null and b/data/images/tiles/forest/deprecated/hole2.png differ diff --git a/data/images/tiles/forest/nolok_statue.png b/data/images/tiles/forest/deprecated/nolok_statue.png similarity index 100% rename from data/images/tiles/forest/nolok_statue.png rename to data/images/tiles/forest/deprecated/nolok_statue.png diff --git a/data/images/tiles/forest/deprecated/rock1.png b/data/images/tiles/forest/deprecated/rock1.png new file mode 100644 index 00000000000..a1fe3ff87ba Binary files /dev/null and b/data/images/tiles/forest/deprecated/rock1.png differ diff --git a/data/images/tiles/forest/deprecated/rock2.png b/data/images/tiles/forest/deprecated/rock2.png new file mode 100644 index 00000000000..1d706228fb8 Binary files /dev/null and b/data/images/tiles/forest/deprecated/rock2.png differ diff --git a/data/images/tiles/forest/deprecated/rock3.png b/data/images/tiles/forest/deprecated/rock3.png new file mode 100644 index 00000000000..c07c7e8d106 Binary files /dev/null and b/data/images/tiles/forest/deprecated/rock3.png differ diff --git a/data/images/tiles/forest/deprecated/treelarge.png b/data/images/tiles/forest/deprecated/treelarge.png new file mode 100644 index 00000000000..c3c146d6be1 Binary files /dev/null and b/data/images/tiles/forest/deprecated/treelarge.png differ diff --git a/data/images/tiles/forest/deprecated/treesmall.png b/data/images/tiles/forest/deprecated/treesmall.png new file mode 100644 index 00000000000..053077eecbc Binary files /dev/null and b/data/images/tiles/forest/deprecated/treesmall.png differ diff --git a/data/images/tiles/forest/deprecated/vine1.png b/data/images/tiles/forest/deprecated/vine1.png new file mode 100644 index 00000000000..e8f3e2b0529 Binary files /dev/null and b/data/images/tiles/forest/deprecated/vine1.png differ diff --git a/data/images/tiles/forest/foresttiles-1.png b/data/images/tiles/forest/foresttiles-1.png new file mode 100644 index 00000000000..91170ab9fea Binary files /dev/null and b/data/images/tiles/forest/foresttiles-1.png differ diff --git a/data/images/tiles/forest/foresttiles-13.png b/data/images/tiles/forest/foresttiles-13.png new file mode 100644 index 00000000000..4e91387b407 Binary files /dev/null and b/data/images/tiles/forest/foresttiles-13.png differ diff --git a/data/images/tiles/forest/foresttiles-5.png b/data/images/tiles/forest/foresttiles-5.png new file mode 100644 index 00000000000..11cc07e9b6a Binary files /dev/null and b/data/images/tiles/forest/foresttiles-5.png differ diff --git a/data/images/tiles/forest/foresttiles-6.png b/data/images/tiles/forest/foresttiles-6.png new file mode 100644 index 00000000000..8bc8dee989a Binary files /dev/null and b/data/images/tiles/forest/foresttiles-6.png differ diff --git a/data/images/tiles/forest/foresttiles-7.png b/data/images/tiles/forest/foresttiles-7.png new file mode 100644 index 00000000000..01021f43b45 Binary files /dev/null and b/data/images/tiles/forest/foresttiles-7.png differ diff --git a/data/images/tiles/forest/foresttiles-2.png b/data/images/tiles/forest/foresttiles-bush.png similarity index 100% rename from data/images/tiles/forest/foresttiles-2.png rename to data/images/tiles/forest/foresttiles-bush.png diff --git a/data/images/tiles/forest/foresttiles-earth.png b/data/images/tiles/forest/foresttiles-earth.png new file mode 100644 index 00000000000..619278c25f4 Binary files /dev/null and b/data/images/tiles/forest/foresttiles-earth.png differ diff --git a/data/images/tiles/forest/pogonia.png b/data/images/tiles/forest/pogonia.png index 6c47fc380f0..e6ef7bfbbaa 100644 Binary files a/data/images/tiles/forest/pogonia.png and b/data/images/tiles/forest/pogonia.png differ diff --git a/data/images/tiles/forest/special.png b/data/images/tiles/forest/special.png deleted file mode 100644 index 599f7608ed1..00000000000 Binary files a/data/images/tiles/forest/special.png and /dev/null differ diff --git a/data/images/tiles/forest/special2.png b/data/images/tiles/forest/special2.png deleted file mode 100644 index cdaa74ba878..00000000000 Binary files a/data/images/tiles/forest/special2.png and /dev/null differ diff --git a/data/images/tiles/forest/spikevine.png b/data/images/tiles/forest/spikevine.png index 26d5c5b302e..b412f21ba01 100644 Binary files a/data/images/tiles/forest/spikevine.png and b/data/images/tiles/forest/spikevine.png differ diff --git a/data/images/tiles/forest/steps.png b/data/images/tiles/forest/steps.png new file mode 100644 index 00000000000..29cecae8f33 Binary files /dev/null and b/data/images/tiles/forest/steps.png differ diff --git a/data/images/tiles/forest/foresttiles-8.png b/data/images/tiles/forest/tree1.png similarity index 100% rename from data/images/tiles/forest/foresttiles-8.png rename to data/images/tiles/forest/tree1.png diff --git a/data/images/tiles/forest/foresttiles-9.png b/data/images/tiles/forest/tree2.png similarity index 100% rename from data/images/tiles/forest/foresttiles-9.png rename to data/images/tiles/forest/tree2.png diff --git a/data/images/tiles/forest/foresttiles-10.png b/data/images/tiles/forest/tree3.png similarity index 100% rename from data/images/tiles/forest/foresttiles-10.png rename to data/images/tiles/forest/tree3.png diff --git a/data/images/tiles/forest/underground/background3.png b/data/images/tiles/forest/underground/background2.png similarity index 100% rename from data/images/tiles/forest/underground/background3.png rename to data/images/tiles/forest/underground/background2.png diff --git a/data/images/tiles/forest/underground/ceiling-slopes.png b/data/images/tiles/forest/underground/ceiling-slopes.png new file mode 100644 index 00000000000..b87db3db558 Binary files /dev/null and b/data/images/tiles/forest/underground/ceiling-slopes.png differ diff --git a/data/images/tiles/forest/underground/convex.png b/data/images/tiles/forest/underground/convex.png new file mode 100644 index 00000000000..05ad96b47e2 Binary files /dev/null and b/data/images/tiles/forest/underground/convex.png differ diff --git a/data/images/tiles/forest/underground/deprecated/background.png b/data/images/tiles/forest/underground/deprecated/background.png new file mode 100644 index 00000000000..f210ba49206 Binary files /dev/null and b/data/images/tiles/forest/underground/deprecated/background.png differ diff --git a/data/images/tiles/forest/underground/deprecated/variation-1.png b/data/images/tiles/forest/underground/deprecated/variation-1.png new file mode 100644 index 00000000000..70a2b55c097 Binary files /dev/null and b/data/images/tiles/forest/underground/deprecated/variation-1.png differ diff --git a/data/images/tiles/forest/underground/groundtiles-1.png b/data/images/tiles/forest/underground/groundtiles-1.png index b4ba6640689..d6d810d51f1 100644 Binary files a/data/images/tiles/forest/underground/groundtiles-1.png and b/data/images/tiles/forest/underground/groundtiles-1.png differ diff --git a/data/images/tiles/forest/underground/groundtiles-1a.png b/data/images/tiles/forest/underground/groundtiles-1a.png deleted file mode 100644 index 73c4f55b376..00000000000 Binary files a/data/images/tiles/forest/underground/groundtiles-1a.png and /dev/null differ diff --git a/data/images/tiles/forest/underground/groundtiles-2.png b/data/images/tiles/forest/underground/groundtiles-2.png index 645b2eb1d33..5ec86a5ca68 100644 Binary files a/data/images/tiles/forest/underground/groundtiles-2.png and b/data/images/tiles/forest/underground/groundtiles-2.png differ diff --git a/data/images/tiles/forest/underground/groundtiles-3.png b/data/images/tiles/forest/underground/groundtiles-3.png deleted file mode 100644 index 37fc4c5f816..00000000000 Binary files a/data/images/tiles/forest/underground/groundtiles-3.png and /dev/null differ diff --git a/data/images/tiles/forest/underground/groundtiles-4.png b/data/images/tiles/forest/underground/groundtiles-4.png deleted file mode 100644 index 676fa1a36d3..00000000000 Binary files a/data/images/tiles/forest/underground/groundtiles-4.png and /dev/null differ diff --git a/data/images/tiles/forest/underground/groundtiles-more.png b/data/images/tiles/forest/underground/groundtiles-more.png new file mode 100644 index 00000000000..175c831e1b7 Binary files /dev/null and b/data/images/tiles/forest/underground/groundtiles-more.png differ diff --git a/data/images/tiles/forest/underground/slope-1.png b/data/images/tiles/forest/underground/slope-1.png new file mode 100644 index 00000000000..fe7a4de6d05 Binary files /dev/null and b/data/images/tiles/forest/underground/slope-1.png differ diff --git a/data/images/tiles/forest/underground/slope-2.png b/data/images/tiles/forest/underground/slope-2.png new file mode 100644 index 00000000000..901bcbcddd7 Binary files /dev/null and b/data/images/tiles/forest/underground/slope-2.png differ diff --git a/data/images/tiles/forest/underground/slope-3.png b/data/images/tiles/forest/underground/slope-3.png new file mode 100644 index 00000000000..429d38d9d85 Binary files /dev/null and b/data/images/tiles/forest/underground/slope-3.png differ diff --git a/data/images/tiles/forest/underground/wall.png b/data/images/tiles/forest/underground/wall.png new file mode 100644 index 00000000000..9057c3cb512 Binary files /dev/null and b/data/images/tiles/forest/underground/wall.png differ diff --git a/data/images/tiles/forest/wall.png b/data/images/tiles/forest/wall.png new file mode 100644 index 00000000000..c46b019fb56 Binary files /dev/null and b/data/images/tiles/forest/wall.png differ diff --git a/data/images/tiles/ghostwood/deprecated/earth-floor.png b/data/images/tiles/ghostwood/deprecated/earth-floor.png new file mode 100644 index 00000000000..4de572117ce Binary files /dev/null and b/data/images/tiles/ghostwood/deprecated/earth-floor.png differ diff --git a/data/images/tiles/ghostwood/ghosthole.png b/data/images/tiles/ghostwood/ghosthole.png new file mode 100644 index 00000000000..70b6cee3506 Binary files /dev/null and b/data/images/tiles/ghostwood/ghosthole.png differ diff --git a/data/images/tiles/ghostwood/ghostwood-1.png b/data/images/tiles/ghostwood/ghostwood-1.png index 708c6f3f668..051137f4f3f 100644 Binary files a/data/images/tiles/ghostwood/ghostwood-1.png and b/data/images/tiles/ghostwood/ghostwood-1.png differ diff --git a/data/images/tiles/ghostwood/ghostwood-10.png b/data/images/tiles/ghostwood/ghostwood-10.png index d0b03e34191..f8889c16467 100644 Binary files a/data/images/tiles/ghostwood/ghostwood-10.png and b/data/images/tiles/ghostwood/ghostwood-10.png differ diff --git a/data/images/tiles/ghostwood/ghostwood-14.png b/data/images/tiles/ghostwood/ghostwood-14.png new file mode 100644 index 00000000000..6d4e541f611 Binary files /dev/null and b/data/images/tiles/ghostwood/ghostwood-14.png differ diff --git a/data/images/tiles/ghostwood/ghostwood-15.png b/data/images/tiles/ghostwood/ghostwood-15.png new file mode 100644 index 00000000000..930124c18a8 Binary files /dev/null and b/data/images/tiles/ghostwood/ghostwood-15.png differ diff --git a/data/images/tiles/ghostwood/ghostwood-16.png b/data/images/tiles/ghostwood/ghostwood-16.png new file mode 100644 index 00000000000..fbbe6019200 Binary files /dev/null and b/data/images/tiles/ghostwood/ghostwood-16.png differ diff --git a/data/images/tiles/ghostwood/ghostwood-17.png b/data/images/tiles/ghostwood/ghostwood-17.png new file mode 100644 index 00000000000..d0b03e34191 Binary files /dev/null and b/data/images/tiles/ghostwood/ghostwood-17.png differ diff --git a/data/images/tiles/ghostwood/ghostwood-2.png b/data/images/tiles/ghostwood/ghostwood-2.png index 7e2778f77ad..71c25edfd08 100644 Binary files a/data/images/tiles/ghostwood/ghostwood-2.png and b/data/images/tiles/ghostwood/ghostwood-2.png differ diff --git a/data/images/tiles/ghostwood/ghostwood-3.png b/data/images/tiles/ghostwood/ghostwood-3.png deleted file mode 100644 index f8889c16467..00000000000 Binary files a/data/images/tiles/ghostwood/ghostwood-3.png and /dev/null differ diff --git a/data/images/tiles/ghostwood/ghostwood-4.png b/data/images/tiles/ghostwood/ghostwood-4.png index 002cb342dcd..fa6ed31c576 100644 Binary files a/data/images/tiles/ghostwood/ghostwood-4.png and b/data/images/tiles/ghostwood/ghostwood-4.png differ diff --git a/data/images/tiles/ghostwood/ghostwood-5.png b/data/images/tiles/ghostwood/ghostwood-5.png index 992698f1040..0f41b55a299 100644 Binary files a/data/images/tiles/ghostwood/ghostwood-5.png and b/data/images/tiles/ghostwood/ghostwood-5.png differ diff --git a/data/images/tiles/ghostwood/ghostwood-6.png b/data/images/tiles/ghostwood/ghostwood-6.png index 70b6cee3506..3028d7ea35d 100644 Binary files a/data/images/tiles/ghostwood/ghostwood-6.png and b/data/images/tiles/ghostwood/ghostwood-6.png differ diff --git a/data/images/tiles/ghostwood/ghostwood-7.png b/data/images/tiles/ghostwood/ghostwood-7.png index 6d4e541f611..f0585f2cf57 100644 Binary files a/data/images/tiles/ghostwood/ghostwood-7.png and b/data/images/tiles/ghostwood/ghostwood-7.png differ diff --git a/data/images/tiles/ghostwood/ghostwood-8.png b/data/images/tiles/ghostwood/ghostwood-8.png index 930124c18a8..2851bcc8238 100644 Binary files a/data/images/tiles/ghostwood/ghostwood-8.png and b/data/images/tiles/ghostwood/ghostwood-8.png differ diff --git a/data/images/tiles/ghostwood/ghostwood-9.png b/data/images/tiles/ghostwood/ghostwood-9.png index fbbe6019200..992698f1040 100644 Binary files a/data/images/tiles/ghostwood/ghostwood-9.png and b/data/images/tiles/ghostwood/ghostwood-9.png differ diff --git a/data/images/tiles/goal/deprecated/exitbg.png b/data/images/tiles/goal/deprecated/exitbg.png new file mode 100644 index 00000000000..7ffb9d73997 Binary files /dev/null and b/data/images/tiles/goal/deprecated/exitbg.png differ diff --git a/data/images/tiles/goal/deprecated/exitfg.png b/data/images/tiles/goal/deprecated/exitfg.png new file mode 100644 index 00000000000..60aa46a84cd Binary files /dev/null and b/data/images/tiles/goal/deprecated/exitfg.png differ diff --git a/data/images/tiles/goal/goal1-1.png b/data/images/tiles/goal/goal1-1.png index 6e092394664..ae8d4b116ea 100644 Binary files a/data/images/tiles/goal/goal1-1.png and b/data/images/tiles/goal/goal1-1.png differ diff --git a/data/images/tiles/goal/goal1-2.png b/data/images/tiles/goal/goal1-2.png index 4b164bb7b45..ac069c61c9a 100644 Binary files a/data/images/tiles/goal/goal1-2.png and b/data/images/tiles/goal/goal1-2.png differ diff --git a/data/images/tiles/goal/goal1-3.png b/data/images/tiles/goal/goal1-3.png index 52181d3862a..d10de5fab27 100644 Binary files a/data/images/tiles/goal/goal1-3.png and b/data/images/tiles/goal/goal1-3.png differ diff --git a/data/images/tiles/goal/goal1-4.png b/data/images/tiles/goal/goal1-4.png index 066232f8ce5..b698bc7266b 100644 Binary files a/data/images/tiles/goal/goal1-4.png and b/data/images/tiles/goal/goal1-4.png differ diff --git a/data/images/tiles/goal/goal1-5.png b/data/images/tiles/goal/goal1-5.png index b44059230ff..b1e3681c027 100644 Binary files a/data/images/tiles/goal/goal1-5.png and b/data/images/tiles/goal/goal1-5.png differ diff --git a/data/images/tiles/halloween/deprecated/black.png b/data/images/tiles/halloween/deprecated/black.png new file mode 100644 index 00000000000..2de44f493ec Binary files /dev/null and b/data/images/tiles/halloween/deprecated/black.png differ diff --git a/data/images/tiles/jungle/concave.png b/data/images/tiles/jungle/deprecated/concave.png similarity index 100% rename from data/images/tiles/jungle/concave.png rename to data/images/tiles/jungle/deprecated/concave.png diff --git a/data/images/tiles/jungle/convex.png b/data/images/tiles/jungle/deprecated/convex.png similarity index 100% rename from data/images/tiles/jungle/convex.png rename to data/images/tiles/jungle/deprecated/convex.png diff --git a/data/images/tiles/jungle/jungle12-1.png b/data/images/tiles/jungle/deprecated/jungle12-1.png similarity index 100% rename from data/images/tiles/jungle/jungle12-1.png rename to data/images/tiles/jungle/deprecated/jungle12-1.png diff --git a/data/images/tiles/jungle/jungle12-2.png b/data/images/tiles/jungle/deprecated/jungle12-2.png similarity index 100% rename from data/images/tiles/jungle/jungle12-2.png rename to data/images/tiles/jungle/deprecated/jungle12-2.png diff --git a/data/images/tiles/jungle/jungle12-3.png b/data/images/tiles/jungle/deprecated/jungle12-3.png similarity index 100% rename from data/images/tiles/jungle/jungle12-3.png rename to data/images/tiles/jungle/deprecated/jungle12-3.png diff --git a/data/images/tiles/jungle/jungle12-4.png b/data/images/tiles/jungle/deprecated/jungle12-4.png similarity index 100% rename from data/images/tiles/jungle/jungle12-4.png rename to data/images/tiles/jungle/deprecated/jungle12-4.png diff --git a/data/images/tiles/jungle/special.png b/data/images/tiles/jungle/deprecated/special.png similarity index 100% rename from data/images/tiles/jungle/special.png rename to data/images/tiles/jungle/deprecated/special.png diff --git a/data/images/tiles/lava/deprecated/lava1-1.png b/data/images/tiles/lava/deprecated/lava1-1.png new file mode 100644 index 00000000000..7cef80d011a Binary files /dev/null and b/data/images/tiles/lava/deprecated/lava1-1.png differ diff --git a/data/images/tiles/lava/deprecated/lava1-2.png b/data/images/tiles/lava/deprecated/lava1-2.png new file mode 100644 index 00000000000..d33fa147149 Binary files /dev/null and b/data/images/tiles/lava/deprecated/lava1-2.png differ diff --git a/data/images/tiles/lava/deprecated/lava1-3.png b/data/images/tiles/lava/deprecated/lava1-3.png new file mode 100644 index 00000000000..8ce913b1d47 Binary files /dev/null and b/data/images/tiles/lava/deprecated/lava1-3.png differ diff --git a/data/images/tiles/lava/deprecated/lava1-4.png b/data/images/tiles/lava/deprecated/lava1-4.png new file mode 100644 index 00000000000..2b95205e730 Binary files /dev/null and b/data/images/tiles/lava/deprecated/lava1-4.png differ diff --git a/data/images/tiles/lava/deprecated/lava2-1.png b/data/images/tiles/lava/deprecated/lava2-1.png new file mode 100644 index 00000000000..25f73082a58 Binary files /dev/null and b/data/images/tiles/lava/deprecated/lava2-1.png differ diff --git a/data/images/tiles/lava/deprecated/lava2-2.png b/data/images/tiles/lava/deprecated/lava2-2.png new file mode 100644 index 00000000000..abaae54ebe0 Binary files /dev/null and b/data/images/tiles/lava/deprecated/lava2-2.png differ diff --git a/data/images/tiles/lava/deprecated/lava2-3.png b/data/images/tiles/lava/deprecated/lava2-3.png new file mode 100644 index 00000000000..619a7d02460 Binary files /dev/null and b/data/images/tiles/lava/deprecated/lava2-3.png differ diff --git a/data/images/tiles/lava/deprecated/lava2-4.png b/data/images/tiles/lava/deprecated/lava2-4.png new file mode 100644 index 00000000000..6f25a94d602 Binary files /dev/null and b/data/images/tiles/lava/deprecated/lava2-4.png differ diff --git a/data/images/tiles/lava/deprecated/zone/body-1-1.png b/data/images/tiles/lava/deprecated/zone/body-1-1.png new file mode 100644 index 00000000000..fcd7ff50b2c Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/body-1-1.png differ diff --git a/data/images/tiles/lava/deprecated/zone/body-1-2.png b/data/images/tiles/lava/deprecated/zone/body-1-2.png new file mode 100644 index 00000000000..8827a94751c Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/body-1-2.png differ diff --git a/data/images/tiles/lava/deprecated/zone/body-1-3.png b/data/images/tiles/lava/deprecated/zone/body-1-3.png new file mode 100644 index 00000000000..9d7c7d058c1 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/body-1-3.png differ diff --git a/data/images/tiles/lava/deprecated/zone/body-1-4.png b/data/images/tiles/lava/deprecated/zone/body-1-4.png new file mode 100644 index 00000000000..9dbf3432131 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/body-1-4.png differ diff --git a/data/images/tiles/lava/deprecated/zone/body-2-1.png b/data/images/tiles/lava/deprecated/zone/body-2-1.png new file mode 100644 index 00000000000..c0a5a8e3119 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/body-2-1.png differ diff --git a/data/images/tiles/lava/deprecated/zone/body-2-2.png b/data/images/tiles/lava/deprecated/zone/body-2-2.png new file mode 100644 index 00000000000..23ffba8d52b Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/body-2-2.png differ diff --git a/data/images/tiles/lava/deprecated/zone/body-2-3.png b/data/images/tiles/lava/deprecated/zone/body-2-3.png new file mode 100644 index 00000000000..904646efa28 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/body-2-3.png differ diff --git a/data/images/tiles/lava/deprecated/zone/body-2-4.png b/data/images/tiles/lava/deprecated/zone/body-2-4.png new file mode 100644 index 00000000000..050721f9087 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/body-2-4.png differ diff --git a/data/images/tiles/lava/deprecated/zone/body-bottom-1-1.png b/data/images/tiles/lava/deprecated/zone/body-bottom-1-1.png new file mode 100644 index 00000000000..3336482419e Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/body-bottom-1-1.png differ diff --git a/data/images/tiles/lava/deprecated/zone/body-bottom-1-2.png b/data/images/tiles/lava/deprecated/zone/body-bottom-1-2.png new file mode 100644 index 00000000000..f845fe9e5fb Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/body-bottom-1-2.png differ diff --git a/data/images/tiles/lava/deprecated/zone/body-bottom-1-3.png b/data/images/tiles/lava/deprecated/zone/body-bottom-1-3.png new file mode 100644 index 00000000000..b9fbb586fb3 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/body-bottom-1-3.png differ diff --git a/data/images/tiles/lava/deprecated/zone/body-bottom-1-4.png b/data/images/tiles/lava/deprecated/zone/body-bottom-1-4.png new file mode 100644 index 00000000000..7a0ffc0ebeb Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/body-bottom-1-4.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-1-1.png b/data/images/tiles/lava/deprecated/zone/bubble-1-1.png new file mode 100644 index 00000000000..d6a5d5ba69b Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-1-1.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-1-2.png b/data/images/tiles/lava/deprecated/zone/bubble-1-2.png new file mode 100644 index 00000000000..a35b52f04db Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-1-2.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-1-3.png b/data/images/tiles/lava/deprecated/zone/bubble-1-3.png new file mode 100644 index 00000000000..4cfedaafa3b Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-1-3.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-1-4.png b/data/images/tiles/lava/deprecated/zone/bubble-1-4.png new file mode 100644 index 00000000000..17aa0906b00 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-1-4.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-2-1.png b/data/images/tiles/lava/deprecated/zone/bubble-2-1.png new file mode 100644 index 00000000000..158b61d0a08 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-2-1.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-2-2.png b/data/images/tiles/lava/deprecated/zone/bubble-2-2.png new file mode 100644 index 00000000000..58a0afb23b3 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-2-2.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-2-3.png b/data/images/tiles/lava/deprecated/zone/bubble-2-3.png new file mode 100644 index 00000000000..4732ced54bd Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-2-3.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-2-4.png b/data/images/tiles/lava/deprecated/zone/bubble-2-4.png new file mode 100644 index 00000000000..b559b4aaea6 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-2-4.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-bottom-1-1.png b/data/images/tiles/lava/deprecated/zone/bubble-bottom-1-1.png new file mode 100644 index 00000000000..5632328c714 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-bottom-1-1.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-bottom-1-2.png b/data/images/tiles/lava/deprecated/zone/bubble-bottom-1-2.png new file mode 100644 index 00000000000..317c0c8d36e Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-bottom-1-2.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-bottom-1-3.png b/data/images/tiles/lava/deprecated/zone/bubble-bottom-1-3.png new file mode 100644 index 00000000000..36acdc896a7 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-bottom-1-3.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-bottom-1-4.png b/data/images/tiles/lava/deprecated/zone/bubble-bottom-1-4.png new file mode 100644 index 00000000000..e63da588c01 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-bottom-1-4.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-in-1-1.png b/data/images/tiles/lava/deprecated/zone/bubble-in-1-1.png new file mode 100644 index 00000000000..44b90b629bb Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-in-1-1.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-in-1-2.png b/data/images/tiles/lava/deprecated/zone/bubble-in-1-2.png new file mode 100644 index 00000000000..bf2e55d3244 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-in-1-2.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-in-1-3.png b/data/images/tiles/lava/deprecated/zone/bubble-in-1-3.png new file mode 100644 index 00000000000..fe56133c36e Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-in-1-3.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-in-1-4.png b/data/images/tiles/lava/deprecated/zone/bubble-in-1-4.png new file mode 100644 index 00000000000..17aa0906b00 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-in-1-4.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-in-2-1.png b/data/images/tiles/lava/deprecated/zone/bubble-in-2-1.png new file mode 100644 index 00000000000..fc06d44b6f4 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-in-2-1.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-in-2-2.png b/data/images/tiles/lava/deprecated/zone/bubble-in-2-2.png new file mode 100644 index 00000000000..c1d6f87adab Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-in-2-2.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-in-2-3.png b/data/images/tiles/lava/deprecated/zone/bubble-in-2-3.png new file mode 100644 index 00000000000..0eef7c2a452 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-in-2-3.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-in-2-4.png b/data/images/tiles/lava/deprecated/zone/bubble-in-2-4.png new file mode 100644 index 00000000000..930fcec103d Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-in-2-4.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-out-1-1.png b/data/images/tiles/lava/deprecated/zone/bubble-out-1-1.png new file mode 100644 index 00000000000..c2fe8cdffc5 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-out-1-1.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-out-1-2.png b/data/images/tiles/lava/deprecated/zone/bubble-out-1-2.png new file mode 100644 index 00000000000..8189a79a6cd Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-out-1-2.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-out-1-3.png b/data/images/tiles/lava/deprecated/zone/bubble-out-1-3.png new file mode 100644 index 00000000000..6003f3d43c5 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-out-1-3.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-out-1-4.png b/data/images/tiles/lava/deprecated/zone/bubble-out-1-4.png new file mode 100644 index 00000000000..3aba6a05941 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-out-1-4.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-out-2-1.png b/data/images/tiles/lava/deprecated/zone/bubble-out-2-1.png new file mode 100644 index 00000000000..aeb2d22cc4f Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-out-2-1.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-out-2-2.png b/data/images/tiles/lava/deprecated/zone/bubble-out-2-2.png new file mode 100644 index 00000000000..78cb8b01e8f Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-out-2-2.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-out-2-3.png b/data/images/tiles/lava/deprecated/zone/bubble-out-2-3.png new file mode 100644 index 00000000000..f7925012008 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-out-2-3.png differ diff --git a/data/images/tiles/lava/deprecated/zone/bubble-out-2-4.png b/data/images/tiles/lava/deprecated/zone/bubble-out-2-4.png new file mode 100644 index 00000000000..bf2607242e4 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/bubble-out-2-4.png differ diff --git a/data/images/tiles/lava/deprecated/zone/edge-1-1.png b/data/images/tiles/lava/deprecated/zone/edge-1-1.png new file mode 100644 index 00000000000..907be1d0c95 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/edge-1-1.png differ diff --git a/data/images/tiles/lava/deprecated/zone/edge-1-2.png b/data/images/tiles/lava/deprecated/zone/edge-1-2.png new file mode 100644 index 00000000000..27a62f158f7 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/edge-1-2.png differ diff --git a/data/images/tiles/lava/deprecated/zone/edge-1-3.png b/data/images/tiles/lava/deprecated/zone/edge-1-3.png new file mode 100644 index 00000000000..39dec98cbc4 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/edge-1-3.png differ diff --git a/data/images/tiles/lava/deprecated/zone/edge-1-4.png b/data/images/tiles/lava/deprecated/zone/edge-1-4.png new file mode 100644 index 00000000000..e25a17c2c3f Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/edge-1-4.png differ diff --git a/data/images/tiles/lava/deprecated/zone/edge-flip-1-1.png b/data/images/tiles/lava/deprecated/zone/edge-flip-1-1.png new file mode 100644 index 00000000000..5235de1f301 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/edge-flip-1-1.png differ diff --git a/data/images/tiles/lava/deprecated/zone/edge-flip-1-2.png b/data/images/tiles/lava/deprecated/zone/edge-flip-1-2.png new file mode 100644 index 00000000000..6a3365b075b Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/edge-flip-1-2.png differ diff --git a/data/images/tiles/lava/deprecated/zone/edge-flip-1-3.png b/data/images/tiles/lava/deprecated/zone/edge-flip-1-3.png new file mode 100644 index 00000000000..4e4f88021f2 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/edge-flip-1-3.png differ diff --git a/data/images/tiles/lava/deprecated/zone/edge-flip-1-4.png b/data/images/tiles/lava/deprecated/zone/edge-flip-1-4.png new file mode 100644 index 00000000000..d1f0f48b27e Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/edge-flip-1-4.png differ diff --git a/data/images/tiles/lava/deprecated/zone/edge-left-1-1.png b/data/images/tiles/lava/deprecated/zone/edge-left-1-1.png new file mode 100644 index 00000000000..e32b15291d9 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/edge-left-1-1.png differ diff --git a/data/images/tiles/lava/deprecated/zone/edge-left-1-2.png b/data/images/tiles/lava/deprecated/zone/edge-left-1-2.png new file mode 100644 index 00000000000..4ab3b8bd85b Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/edge-left-1-2.png differ diff --git a/data/images/tiles/lava/deprecated/zone/edge-left-1-3.png b/data/images/tiles/lava/deprecated/zone/edge-left-1-3.png new file mode 100644 index 00000000000..1a6606e57b5 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/edge-left-1-3.png differ diff --git a/data/images/tiles/lava/deprecated/zone/edge-left-1-4.png b/data/images/tiles/lava/deprecated/zone/edge-left-1-4.png new file mode 100644 index 00000000000..26c914fa60f Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/edge-left-1-4.png differ diff --git a/data/images/tiles/lava/deprecated/zone/edge-right-1-1.png b/data/images/tiles/lava/deprecated/zone/edge-right-1-1.png new file mode 100644 index 00000000000..11777b9e82b Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/edge-right-1-1.png differ diff --git a/data/images/tiles/lava/deprecated/zone/edge-right-1-2.png b/data/images/tiles/lava/deprecated/zone/edge-right-1-2.png new file mode 100644 index 00000000000..d97294476bd Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/edge-right-1-2.png differ diff --git a/data/images/tiles/lava/deprecated/zone/edge-right-1-3.png b/data/images/tiles/lava/deprecated/zone/edge-right-1-3.png new file mode 100644 index 00000000000..c321b2188cf Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/edge-right-1-3.png differ diff --git a/data/images/tiles/lava/deprecated/zone/edge-right-1-4.png b/data/images/tiles/lava/deprecated/zone/edge-right-1-4.png new file mode 100644 index 00000000000..be81bb40933 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/edge-right-1-4.png differ diff --git a/data/images/tiles/lava/deprecated/zone/rest.png b/data/images/tiles/lava/deprecated/zone/rest.png new file mode 100644 index 00000000000..016e71f4aba Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/rest.png differ diff --git a/data/images/tiles/lava/deprecated/zone/surface-1-1.png b/data/images/tiles/lava/deprecated/zone/surface-1-1.png new file mode 100644 index 00000000000..b7ffe680399 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/surface-1-1.png differ diff --git a/data/images/tiles/lava/deprecated/zone/surface-1-2.png b/data/images/tiles/lava/deprecated/zone/surface-1-2.png new file mode 100644 index 00000000000..a472da3ffb2 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/surface-1-2.png differ diff --git a/data/images/tiles/lava/deprecated/zone/surface-1-3.png b/data/images/tiles/lava/deprecated/zone/surface-1-3.png new file mode 100644 index 00000000000..0181e6406df Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/surface-1-3.png differ diff --git a/data/images/tiles/lava/deprecated/zone/surface-1-4.png b/data/images/tiles/lava/deprecated/zone/surface-1-4.png new file mode 100644 index 00000000000..3609465c944 Binary files /dev/null and b/data/images/tiles/lava/deprecated/zone/surface-1-4.png differ diff --git a/data/images/tiles/pole/deprecated/misc.png b/data/images/tiles/pole/deprecated/misc.png new file mode 100644 index 00000000000..9a72b82cbd8 Binary files /dev/null and b/data/images/tiles/pole/deprecated/misc.png differ diff --git a/data/images/tiles/retro/retro_castle.png b/data/images/tiles/retro/retro_castle.png index 8631b49171b..604d9a8852e 100644 Binary files a/data/images/tiles/retro/retro_castle.png and b/data/images/tiles/retro/retro_castle.png differ diff --git a/data/images/tiles/retro/retro_cave.png b/data/images/tiles/retro/retro_cave.png index b070a4e35d8..4a36722d0e3 100644 Binary files a/data/images/tiles/retro/retro_cave.png and b/data/images/tiles/retro/retro_cave.png differ diff --git a/data/images/tiles/retro/retro_snow.png b/data/images/tiles/retro/retro_snow.png index 91d77c95aba..2df8579e7e4 100644 Binary files a/data/images/tiles/retro/retro_snow.png and b/data/images/tiles/retro/retro_snow.png differ diff --git a/data/images/tiles/snow/air.png b/data/images/tiles/snow/air.png index f71353c5737..180e23b8a43 100644 Binary files a/data/images/tiles/snow/air.png and b/data/images/tiles/snow/air.png differ diff --git a/data/images/tiles/snow/deprecated/custom.png b/data/images/tiles/snow/deprecated/custom.png new file mode 100644 index 00000000000..324b5dc451f Binary files /dev/null and b/data/images/tiles/snow/deprecated/custom.png differ diff --git a/data/images/tiles/snow/deprecated/fallback_tile.png b/data/images/tiles/snow/deprecated/fallback_tile.png new file mode 100644 index 00000000000..5b6c1460c53 Binary files /dev/null and b/data/images/tiles/snow/deprecated/fallback_tile.png differ diff --git a/data/images/tiles/snow/deprecated/spike.png b/data/images/tiles/snow/deprecated/spike.png new file mode 100644 index 00000000000..9cf61eb8f64 Binary files /dev/null and b/data/images/tiles/snow/deprecated/spike.png differ diff --git a/data/images/tiles/snow/deprecated/unisolid.png b/data/images/tiles/snow/deprecated/unisolid.png new file mode 100644 index 00000000000..50a6c44c913 Binary files /dev/null and b/data/images/tiles/snow/deprecated/unisolid.png differ diff --git a/data/images/tiles/snow/icechunk.png b/data/images/tiles/snow/icechunk.png index d2521658580..02dda77b168 100644 Binary files a/data/images/tiles/snow/icechunk.png and b/data/images/tiles/snow/icechunk.png differ diff --git a/data/images/tiles/snow/snow-walljump.png b/data/images/tiles/snow/snow-walljump.png index daa5c359fb3..4d4c090c798 100644 Binary files a/data/images/tiles/snow/snow-walljump.png and b/data/images/tiles/snow/snow-walljump.png differ diff --git a/data/images/tiles/snow/snowfort.png b/data/images/tiles/snow/snowfort_fg.png similarity index 100% rename from data/images/tiles/snow/snowfort.png rename to data/images/tiles/snow/snowfort_fg.png diff --git a/data/images/tiles/snow/special2.png b/data/images/tiles/snow/special2.png index 45fdd37847a..7a5f9ddcc20 100644 Binary files a/data/images/tiles/snow/special2.png and b/data/images/tiles/snow/special2.png differ diff --git a/data/images/tiles/snow/underground/background.png b/data/images/tiles/snow/underground/background.png new file mode 100644 index 00000000000..9250155eef3 Binary files /dev/null and b/data/images/tiles/snow/underground/background.png differ diff --git a/data/images/tiles/snow/underground/background1.png b/data/images/tiles/snow/underground/background1.png deleted file mode 100644 index 505f15a558c..00000000000 Binary files a/data/images/tiles/snow/underground/background1.png and /dev/null differ diff --git a/data/images/tiles/snow/unisolid.png b/data/images/tiles/snow/unisolid.png index b370f7c6f0a..3aca31ead04 100644 Binary files a/data/images/tiles/snow/unisolid.png and b/data/images/tiles/snow/unisolid.png differ diff --git a/data/images/tiles/snowmountain/ground.png b/data/images/tiles/snowmountain/deprecated/ground.png similarity index 100% rename from data/images/tiles/snowmountain/ground.png rename to data/images/tiles/snowmountain/deprecated/ground.png diff --git a/data/images/tiles/snowmountain/ground3.png b/data/images/tiles/snowmountain/deprecated/ground2.png similarity index 100% rename from data/images/tiles/snowmountain/ground3.png rename to data/images/tiles/snowmountain/deprecated/ground2.png diff --git a/data/images/tiles/snowmountain/ground2.png b/data/images/tiles/snowmountain/ground2.png deleted file mode 100644 index 783667453ce..00000000000 Binary files a/data/images/tiles/snowmountain/ground2.png and /dev/null differ diff --git a/data/images/tiles/spike/deprecated/spikedown.png b/data/images/tiles/spike/deprecated/spikedown.png new file mode 100644 index 00000000000..7164f5fbe2b Binary files /dev/null and b/data/images/tiles/spike/deprecated/spikedown.png differ diff --git a/data/images/tiles/spike/deprecated/spikedown2.png b/data/images/tiles/spike/deprecated/spikedown2.png new file mode 100644 index 00000000000..477b7a767a2 Binary files /dev/null and b/data/images/tiles/spike/deprecated/spikedown2.png differ diff --git a/data/images/tiles/spike/deprecated/spikeleft.png b/data/images/tiles/spike/deprecated/spikeleft.png new file mode 100644 index 00000000000..602372d1ab6 Binary files /dev/null and b/data/images/tiles/spike/deprecated/spikeleft.png differ diff --git a/data/images/tiles/spike/deprecated/spikeleft2.png b/data/images/tiles/spike/deprecated/spikeleft2.png new file mode 100644 index 00000000000..e002230e2cb Binary files /dev/null and b/data/images/tiles/spike/deprecated/spikeleft2.png differ diff --git a/data/images/tiles/spike/deprecated/spikeright.png b/data/images/tiles/spike/deprecated/spikeright.png new file mode 100644 index 00000000000..d3a13ad8bad Binary files /dev/null and b/data/images/tiles/spike/deprecated/spikeright.png differ diff --git a/data/images/tiles/spike/deprecated/spikeright2.png b/data/images/tiles/spike/deprecated/spikeright2.png new file mode 100644 index 00000000000..4eb1a933213 Binary files /dev/null and b/data/images/tiles/spike/deprecated/spikeright2.png differ diff --git a/data/images/tiles/spike/deprecated/spikeup.png b/data/images/tiles/spike/deprecated/spikeup.png new file mode 100644 index 00000000000..c7476b68455 Binary files /dev/null and b/data/images/tiles/spike/deprecated/spikeup.png differ diff --git a/data/images/tiles/spike/deprecated/spikeup2.png b/data/images/tiles/spike/deprecated/spikeup2.png new file mode 100644 index 00000000000..034f594ef74 Binary files /dev/null and b/data/images/tiles/spike/deprecated/spikeup2.png differ diff --git a/data/images/tiles/water/deprecated/electrified-0.png b/data/images/tiles/water/deprecated/electrified-0.png new file mode 100644 index 00000000000..bc29386bdcf Binary files /dev/null and b/data/images/tiles/water/deprecated/electrified-0.png differ diff --git a/data/images/tiles/water/deprecated/electrified-1.png b/data/images/tiles/water/deprecated/electrified-1.png new file mode 100644 index 00000000000..ecca81aeb35 Binary files /dev/null and b/data/images/tiles/water/deprecated/electrified-1.png differ diff --git a/data/images/tiles/water/deprecated/electrified_waves-0.png b/data/images/tiles/water/deprecated/electrified_waves-0.png new file mode 100644 index 00000000000..e481db1a524 Binary files /dev/null and b/data/images/tiles/water/deprecated/electrified_waves-0.png differ diff --git a/data/images/tiles/water/deprecated/electrified_waves-1.png b/data/images/tiles/water/deprecated/electrified_waves-1.png new file mode 100644 index 00000000000..fc1fab55061 Binary files /dev/null and b/data/images/tiles/water/deprecated/electrified_waves-1.png differ diff --git a/data/images/tiles/water/deprecated/water-trans.png b/data/images/tiles/water/deprecated/water-trans.png new file mode 100644 index 00000000000..fa531a7ffe7 Binary files /dev/null and b/data/images/tiles/water/deprecated/water-trans.png differ diff --git a/data/images/tiles/water/deprecated/water.png b/data/images/tiles/water/deprecated/water.png new file mode 100644 index 00000000000..706a9e1fbbc Binary files /dev/null and b/data/images/tiles/water/deprecated/water.png differ diff --git a/data/images/tiles/water/deprecated/waves-0.png b/data/images/tiles/water/deprecated/waves-0.png new file mode 100644 index 00000000000..f1263163b6d Binary files /dev/null and b/data/images/tiles/water/deprecated/waves-0.png differ diff --git a/data/images/tiles/water/deprecated/waves-1.png b/data/images/tiles/water/deprecated/waves-1.png new file mode 100644 index 00000000000..a01311f9aff Binary files /dev/null and b/data/images/tiles/water/deprecated/waves-1.png differ diff --git a/data/images/tiles/water/deprecated/waves-2.png b/data/images/tiles/water/deprecated/waves-2.png new file mode 100644 index 00000000000..a1ae90e3e92 Binary files /dev/null and b/data/images/tiles/water/deprecated/waves-2.png differ diff --git a/data/images/tiles/water/deprecated/waves-trans-0.png b/data/images/tiles/water/deprecated/waves-trans-0.png new file mode 100644 index 00000000000..a5d88721aba Binary files /dev/null and b/data/images/tiles/water/deprecated/waves-trans-0.png differ diff --git a/data/images/tiles/water/deprecated/waves-trans-1.png b/data/images/tiles/water/deprecated/waves-trans-1.png new file mode 100644 index 00000000000..5aa5a6ad23b Binary files /dev/null and b/data/images/tiles/water/deprecated/waves-trans-1.png differ diff --git a/data/images/tiles/water/deprecated/waves-trans-2.png b/data/images/tiles/water/deprecated/waves-trans-2.png new file mode 100644 index 00000000000..3d32e56e525 Binary files /dev/null and b/data/images/tiles/water/deprecated/waves-trans-2.png differ diff --git a/data/images/tiles/waterfall/deprecated/waterfall-0.png b/data/images/tiles/waterfall/deprecated/waterfall-0.png new file mode 100644 index 00000000000..2eaf9ed54ed Binary files /dev/null and b/data/images/tiles/waterfall/deprecated/waterfall-0.png differ diff --git a/data/images/tiles/waterfall/deprecated/waterfall-1.png b/data/images/tiles/waterfall/deprecated/waterfall-1.png new file mode 100644 index 00000000000..ad621b110b7 Binary files /dev/null and b/data/images/tiles/waterfall/deprecated/waterfall-1.png differ diff --git a/data/images/tiles/waterfall/deprecated/waterfall-2.png b/data/images/tiles/waterfall/deprecated/waterfall-2.png new file mode 100644 index 00000000000..93a90faf91b Binary files /dev/null and b/data/images/tiles/waterfall/deprecated/waterfall-2.png differ diff --git a/data/images/tiles/waterfall/deprecated/waterfall-3.png b/data/images/tiles/waterfall/deprecated/waterfall-3.png new file mode 100644 index 00000000000..39080fc7b39 Binary files /dev/null and b/data/images/tiles/waterfall/deprecated/waterfall-3.png differ diff --git a/data/images/tiles/water/waterfall1-0.png b/data/images/tiles/waterfall/foam-0.png similarity index 100% rename from data/images/tiles/water/waterfall1-0.png rename to data/images/tiles/waterfall/foam-0.png diff --git a/data/images/tiles/water/waterfall1-1.png b/data/images/tiles/waterfall/foam-1.png similarity index 100% rename from data/images/tiles/water/waterfall1-1.png rename to data/images/tiles/waterfall/foam-1.png diff --git a/data/images/tiles/water/waterfall1-2.png b/data/images/tiles/waterfall/foam-2.png similarity index 100% rename from data/images/tiles/water/waterfall1-2.png rename to data/images/tiles/waterfall/foam-2.png diff --git a/data/images/tiles/water/waterfall1-3.png b/data/images/tiles/waterfall/foam-3.png similarity index 100% rename from data/images/tiles/water/waterfall1-3.png rename to data/images/tiles/waterfall/foam-3.png diff --git a/data/images/tiles/water/waterfall0-0.png b/data/images/tiles/waterfall/trans-0.png similarity index 100% rename from data/images/tiles/water/waterfall0-0.png rename to data/images/tiles/waterfall/trans-0.png diff --git a/data/images/tiles/water/waterfall0-1.png b/data/images/tiles/waterfall/trans-1.png similarity index 100% rename from data/images/tiles/water/waterfall0-1.png rename to data/images/tiles/waterfall/trans-1.png diff --git a/data/images/tiles/water/waterfall0-2.png b/data/images/tiles/waterfall/trans-2.png similarity index 100% rename from data/images/tiles/water/waterfall0-2.png rename to data/images/tiles/waterfall/trans-2.png diff --git a/data/images/tiles/water/waterfall0-3.png b/data/images/tiles/waterfall/trans-3.png similarity index 100% rename from data/images/tiles/water/waterfall0-3.png rename to data/images/tiles/waterfall/trans-3.png diff --git a/data/levels/bonus1/af_ZA.po b/data/levels/bonus1/af_ZA.po index cbc547ed093..33de84cfdcf 100644 --- a/data/levels/bonus1/af_ZA.po +++ b/data/levels/bonus1/af_ZA.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Afrikaans (South Africa) (http://www.transifex.com/arctic-games/supertux/language/af_ZA/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: Martin van Zijl , 2019\n" +"Language-Team: Afrikaans (South Africa) (http://app.transifex.com/arctic-games/supertux/language/af_ZA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus1/ar.po b/data/levels/bonus1/ar.po index e3a6bdc2f4b..f4a7ad8baab 100644 --- a/data/levels/bonus1/ar.po +++ b/data/levels/bonus1/ar.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:04+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Arabic (http://app.transifex.com/arctic-games/supertux/language/ar/)\n" diff --git a/data/levels/bonus1/az.po b/data/levels/bonus1/az.po index 0020b1267c1..07e67ea2289 100644 --- a/data/levels/bonus1/az.po +++ b/data/levels/bonus1/az.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:04+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Azerbaijani (http://app.transifex.com/arctic-games/supertux/language/az/)\n" diff --git a/data/levels/bonus1/be.po b/data/levels/bonus1/be.po index 0d0f86ec979..0efbf13181c 100644 --- a/data/levels/bonus1/be.po +++ b/data/levels/bonus1/be.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Belarusian (http://www.transifex.com/arctic-games/supertux/language/be/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: se luxxy <70luxxy@gmail.com>, 2018\n" +"Language-Team: Belarusian (http://app.transifex.com/arctic-games/supertux/language/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus1/bg.po b/data/levels/bonus1/bg.po index 0acb8ae771a..4fb5f0dec20 100644 --- a/data/levels/bonus1/bg.po +++ b/data/levels/bonus1/bg.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 07:16+0000\n" -"Last-Translator: Любомир Василев\n" -"Language-Team: Bulgarian (http://www.transifex.com/arctic-games/supertux/language/bg/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: Любомир Василев, 2021\n" +"Language-Team: Bulgarian (http://app.transifex.com/arctic-games/supertux/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus1/br.po b/data/levels/bonus1/br.po index 39f188d37ed..97748794405 100644 --- a/data/levels/bonus1/br.po +++ b/data/levels/bonus1/br.po @@ -4,15 +4,15 @@ # # Translators: # Gwenn M , 2015,2019 -# Irriep Nala Novram , 2017-2018 +# Irriep Nala Novram , 2017-2018 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Breton (http://www.transifex.com/arctic-games/supertux/language/br/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: Gwenn M , 2015,2019\n" +"Language-Team: Breton (http://app.transifex.com/arctic-games/supertux/language/br/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus1/ca.po b/data/levels/bonus1/ca.po index 6bc0d1a21fc..cd597ce979e 100644 --- a/data/levels/bonus1/ca.po +++ b/data/levels/bonus1/ca.po @@ -5,16 +5,17 @@ # Translators: # Ariadna Pascual , 2016 # Catalanoic , 2016 +# IAN RODRÍGUEZ Lorenzo, 2022 # 76352799d6904fac47e3a0fa3ed5fd59_334826e , 2014 # Yael Codesal, 2016 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Catalan (http://www.transifex.com/arctic-games/supertux/language/ca/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" +"Language-Team: Catalan (http://app.transifex.com/arctic-games/supertux/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -108,7 +109,7 @@ msgstr "Els enemics fan pudor!" msgid "" "#These levels were made Swimming-Ready by Serano and revamped by " "AllyTheOcelot" -msgstr "" +msgstr "#Aquests nivells van ser preparats per a la natació per Serano i renovats per AllyTheOcelot" #: data/levels/bonus1/torfi-level1.stl:3 msgid "A good start" @@ -120,7 +121,7 @@ msgstr "Massa fàcil" #: data/levels/bonus1/torfi-level2.stl:56 msgid "#All these levels were upgraded for milestone 2 by Hume." -msgstr "" +msgstr "#Tots aquests nivells van ser actualitzats per a la fita 2 per Hume." #: data/levels/bonus1/torfi-level3.stl:3 msgid "Still too easy" diff --git a/data/levels/bonus1/cmn.po b/data/levels/bonus1/cmn.po index a3604840d14..abd38dae1cc 100644 --- a/data/levels/bonus1/cmn.po +++ b/data/levels/bonus1/cmn.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Chinese (Mandarin) (http://www.transifex.com/arctic-games/supertux/language/cmn/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: 趙惟倫 , 2013\n" +"Language-Team: Chinese (Mandarin) (http://app.transifex.com/arctic-games/supertux/language/cmn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus1/cs.po b/data/levels/bonus1/cs.po index 88b4f03a3ba..f362ceed426 100644 --- a/data/levels/bonus1/cs.po +++ b/data/levels/bonus1/cs.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:04+0000\n" "Last-Translator: Jiří Paleček , 2021-2023\n" "Language-Team: Czech (http://app.transifex.com/arctic-games/supertux/language/cs/)\n" diff --git a/data/levels/bonus1/da.po b/data/levels/bonus1/da.po index 4d035355024..ff5eca06022 100644 --- a/data/levels/bonus1/da.po +++ b/data/levels/bonus1/da.po @@ -4,14 +4,15 @@ # # Translators: # Joe Hansen , 2015-2016 +# Lars Lyngby , 2022 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Danish (http://www.transifex.com/arctic-games/supertux/language/da/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: Lars Lyngby , 2022\n" +"Language-Team: Danish (http://app.transifex.com/arctic-games/supertux/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -105,7 +106,7 @@ msgstr "Fjender stinker!" msgid "" "#These levels were made Swimming-Ready by Serano and revamped by " "AllyTheOcelot" -msgstr "" +msgstr "#Disse baner blev skabt svømmeklare af Serano og fornyet af AllyTheOcelot" #: data/levels/bonus1/torfi-level1.stl:3 msgid "A good start" @@ -117,7 +118,7 @@ msgstr "For nemt" #: data/levels/bonus1/torfi-level2.stl:56 msgid "#All these levels were upgraded for milestone 2 by Hume." -msgstr "" +msgstr "#Alle disse baner blev opgraderet til milepæl 2 af Hume." #: data/levels/bonus1/torfi-level3.stl:3 msgid "Still too easy" diff --git a/data/levels/bonus1/de.po b/data/levels/bonus1/de.po index d4fd8dcbf56..fc3eab299f9 100644 --- a/data/levels/bonus1/de.po +++ b/data/levels/bonus1/de.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Wuzzy , 2015-2016 +# Wuzzy , 2015-2016 # Christoph Sommer , 2013 # Moritz Hofmann , 2021 # mteufel, 2018 @@ -14,10 +14,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 00:10+0000\n" -"Last-Translator: Tobias Markus \n" -"Language-Team: German (http://www.transifex.com/arctic-games/supertux/language/de/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: Tobias Markus , 2018-2019,2021\n" +"Language-Team: German (http://app.transifex.com/arctic-games/supertux/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus1/el.po b/data/levels/bonus1/el.po index 5a1f5087830..90147c52686 100644 --- a/data/levels/bonus1/el.po +++ b/data/levels/bonus1/el.po @@ -3,17 +3,18 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: +# IAN RODRÍGUEZ Lorenzo, 2022 # I will not tell you that , 2015 # Vangelis Nomikos , 2013-2014 -# Vangelis Skarmoutsos , 2016 +# Vangelis Skarmoutsos (SkarmoutsosV) , 2016 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Greek (http://www.transifex.com/arctic-games/supertux/language/el/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" +"Language-Team: Greek (http://app.transifex.com/arctic-games/supertux/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -107,7 +108,7 @@ msgstr "Οι κακοί βρωμάνε!" msgid "" "#These levels were made Swimming-Ready by Serano and revamped by " "AllyTheOcelot" -msgstr "" +msgstr "#Αυτά τα επίπεδα έγιναν Swimming-Ready από τον Serano και ανανεώθηκαν από τον AllyTheOcelot" #: data/levels/bonus1/torfi-level1.stl:3 msgid "A good start" @@ -119,7 +120,7 @@ msgstr "Πολύ εύκολο" #: data/levels/bonus1/torfi-level2.stl:56 msgid "#All these levels were upgraded for milestone 2 by Hume." -msgstr "" +msgstr "#Όλα αυτά τα επίπεδα αναβαθμίστηκαν για το ορόσημο 2 από τον Hume." #: data/levels/bonus1/torfi-level3.stl:3 msgid "Still too easy" diff --git a/data/levels/bonus1/eo.po b/data/levels/bonus1/eo.po index ea9e775955e..6eb5eb92a48 100644 --- a/data/levels/bonus1/eo.po +++ b/data/levels/bonus1/eo.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-20 07:51+0000\n" -"Last-Translator: vpzomtrrfrt \n" -"Language-Team: Esperanto (http://www.transifex.com/arctic-games/supertux/language/eo/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: vpzomtrrfrt , 2020-2021\n" +"Language-Team: Esperanto (http://app.transifex.com/arctic-games/supertux/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus1/es.po b/data/levels/bonus1/es.po index 944f6ac0bff..b03da44005a 100644 --- a/data/levels/bonus1/es.po +++ b/data/levels/bonus1/es.po @@ -6,21 +6,22 @@ # 69fe870410d3e630a708a509aed5c0f9_e3efcca <3d48305986fd1b36087a0ec11b9a769d_288033>, 2015 # Germana , 2013 # Juan Jaramillo , 2015 +# Martin, 2022 # Swyter , 2021 # William Beltrán , 2015-2016 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 23:42+0000\n" -"Last-Translator: Swyter \n" -"Language-Team: Spanish (http://www.transifex.com/arctic-games/supertux/language/es/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: Martin, 2022\n" +"Language-Team: Spanish (http://app.transifex.com/arctic-games/supertux/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/bonus1/abednego-level1.stl:3 msgid "Flight Test" @@ -121,7 +122,7 @@ msgstr "Fácil no, lo siguiente" #: data/levels/bonus1/torfi-level2.stl:56 msgid "#All these levels were upgraded for milestone 2 by Hume." -msgstr "#Hume ha mejorado todos estos niveles para el segundo hito de desarrollo." +msgstr "#Hume ha mejorado todos estos niveles para el hito 2 de desarrollo." #: data/levels/bonus1/torfi-level3.stl:3 msgid "Still too easy" diff --git a/data/levels/bonus1/es_AR.po b/data/levels/bonus1/es_AR.po index 182a013968b..8de9948c522 100644 --- a/data/levels/bonus1/es_AR.po +++ b/data/levels/bonus1/es_AR.po @@ -4,19 +4,20 @@ # # Translators: # Alejo Fernandez , 2020 +# Salomón Duarte , 2021 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Spanish (Argentina) (http://www.transifex.com/arctic-games/supertux/language/es_AR/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: Salomón Duarte , 2021\n" +"Language-Team: Spanish (Argentina) (http://app.transifex.com/arctic-games/supertux/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_AR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/bonus1/abednego-level1.stl:3 msgid "Flight Test" @@ -105,7 +106,7 @@ msgstr "Los chicos malos apestan" msgid "" "#These levels were made Swimming-Ready by Serano and revamped by " "AllyTheOcelot" -msgstr "" +msgstr "#Estos niveles son hechos Listos-para-nadar por Serano y renovados por AllyTheOcelot" #: data/levels/bonus1/torfi-level1.stl:3 msgid "A good start" @@ -117,7 +118,7 @@ msgstr "Demasiado facil" #: data/levels/bonus1/torfi-level2.stl:56 msgid "#All these levels were upgraded for milestone 2 by Hume." -msgstr "" +msgstr "#Todos estos niveles fueron mejorados para la milestone 2 por Hume" #: data/levels/bonus1/torfi-level3.stl:3 msgid "Still too easy" diff --git a/data/levels/bonus1/et.po b/data/levels/bonus1/et.po index 000761be639..853e3dd3f0f 100644 --- a/data/levels/bonus1/et.po +++ b/data/levels/bonus1/et.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:04+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Estonian (http://app.transifex.com/arctic-games/supertux/language/et/)\n" diff --git a/data/levels/bonus1/eu.po b/data/levels/bonus1/eu.po index c773524c832..12e00218a62 100644 --- a/data/levels/bonus1/eu.po +++ b/data/levels/bonus1/eu.po @@ -4,12 +4,12 @@ # # Translators: # IAN RODRÍGUEZ Lorenzo, 2023 -# Mielanjel Iraeta , 2018 +# Mielanjel Iraeta , 2018 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:04+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Basque (http://app.transifex.com/arctic-games/supertux/language/eu/)\n" diff --git a/data/levels/bonus1/fi.po b/data/levels/bonus1/fi.po index e79c52966b5..9b2e0fe3727 100644 --- a/data/levels/bonus1/fi.po +++ b/data/levels/bonus1/fi.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Jaakoppi Horila , 2016,2018,2020-2021 +# Jaakoppi Horila , 2016,2018,2020-2023 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 16:23+0000\n" -"Last-Translator: Jaakoppi Horila \n" -"Language-Team: Finnish (http://www.transifex.com/arctic-games/supertux/language/fi/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: Jaakoppi Horila , 2016,2018,2020-2023\n" +"Language-Team: Finnish (http://app.transifex.com/arctic-games/supertux/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,7 +24,7 @@ msgstr "Lentokoe" #: data/levels/bonus1/abednego-level2.stl:3 msgid "Dungeons but no Dragons" -msgstr "Tyrmiä, muttei lohikäärmeitä" +msgstr "Tyrmiä vailla lohikäärmeitä" #: data/levels/bonus1/abednego-level3.stl:3 msgid "Lies!" @@ -32,7 +32,7 @@ msgstr "Valheita!" #: data/levels/bonus1/abednego-level4.stl:3 msgid "Train Leaves in One Minute" -msgstr "Juna lähtee minuutin päästä" +msgstr "Juna lähtee minuutin kuluttua" #: data/levels/bonus1/bonus-level1.stl:3 msgid "Bonus Dias!" @@ -79,11 +79,11 @@ msgid "" "#A big \"Thank you\" goes out to\n" "#everyone who contributed to this\n" "#release. We hope you enjoyed it!" -msgstr "Onnittelut!\n\n#Olet läpäissyt\n#ensimmäisen Lisäsaaren\n\n\tKentät tekivät\n\tJason W. Thompson\n\tTorfi Gunnarsson\n\tAbednego\n\tMatr1x\n\n\n#Jos et vielä läpäissyt kaikkia kenttiä,\n#mene kotiin ja ota toinen polku.\n#Sinulla on edessäsi vielä\n#paljon haasteita!\n\n#Ja täällä on myös salainen\n#kenttä löydettäväksi...\n\n#Iso kiitos jokaiselle, joka\n#osallistui tämän julkaisun\n#tekoon. Toivottavasti pidit siitä!" +msgstr "Onnittelut!\n\n#Olet läpäissyt\n#ensimmäisen Lisäsaaren\n\n\tKentät tekivät\n\tJason W. Thompson\n\tTorfi Gunnarsson\n\tAbednego\n\tMatr1x\n\n\n#Jos et vielä läpäissyt kaikkia kenttiä,\n#palaa kotiin ja ota toinen polku.\n#Sinulla on edessäsi vielä\n#paljon haasteita!\n\n#Ja täällä on myös salainen\n#kenttä löydettäväksi...\n\n#Iso kiitos jokaiselle, joka\n#osallistui tämän julkaisun\n#tekoon. Toivottavasti pidit siitä!" #: data/levels/bonus1/matr1x-level1.stl:3 msgid "Pipe Down Over There" -msgstr "Seuraa putkia" +msgstr "Putki umpeen" #: data/levels/bonus1/matr1x-level2.stl:3 msgid "Something Fishy" @@ -125,7 +125,7 @@ msgstr "Edelleen liian helppoa" #: data/levels/bonus1/wansti-level1.stl:3 msgid "Semi-Frozen" -msgstr "Puoliksi jäässä" +msgstr "Vähän jäissä" #: data/levels/bonus1/wansti-level2.stl:3 msgid "Cave Of Mirrors" @@ -153,7 +153,7 @@ msgstr "Löysit salaisen paikan!" #: data/levels/bonus1/worldmap.stwm:135 msgid "Hint: Use igloos to get back here." -msgstr "Vihje: Käytä igluja päästäksesi takaisin tänne." +msgstr "Vihje: Käytä igluja palataksesi tänne." #: data/levels/bonus1/worldmap.stwm:144 msgid "Warp to Matr1x' Sector" @@ -165,7 +165,7 @@ msgstr "Siirry Thompsonin domainille" #: data/levels/bonus1/worldmap.stwm:158 data/levels/bonus1/worldmap.stwm:221 msgid "Leave the SuperTux Team Island" -msgstr "Poistu SuperTux-ryhmän saarelta" +msgstr "Poistu SuperTux-tiimin saarelta" #: data/levels/bonus1/worldmap.stwm:165 msgid "Warp to Abednego's Area" @@ -173,7 +173,7 @@ msgstr "Siirry Abednegon alueelle" #: data/levels/bonus1/worldmap.stwm:172 data/levels/bonus1/worldmap.stwm:262 msgid "Leave Torfi's Territory" -msgstr "Poistu Torfin reviiriltä" +msgstr "Poistu Torfin territoriolta" #: data/levels/bonus1/worldmap.stwm:179 data/levels/bonus1/worldmap.stwm:207 msgid "Leave Abednego's Area" @@ -193,7 +193,7 @@ msgstr "Siirry kotiin" #: data/levels/bonus1/worldmap.stwm:214 msgid "Warp to the SuperTux Team Island" -msgstr "Siirry SuperTux-ryhmän saarelle" +msgstr "Siirry SuperTux-tiimin saarelle" #: data/levels/bonus1/worldmap.stwm:241 msgid "Leave Matr1x' Sector" @@ -205,4 +205,4 @@ msgstr "Jatka Matr1xin sektoria" #: data/levels/bonus1/worldmap.stwm:255 msgid "Warp to Torfi's Territory" -msgstr "Siirry Torfin reviirille" +msgstr "Siirry Torfin territoriolle" diff --git a/data/levels/bonus1/fr.po b/data/levels/bonus1/fr.po index 8a8c6de5590..e274d1f968b 100644 --- a/data/levels/bonus1/fr.po +++ b/data/levels/bonus1/fr.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# a a, 2021 +# Semphris , 2021 # mol1 , 2015 # Lucas Mascaro , 2016 # Raphaël Desprez-Le Goarant , 2021 @@ -13,15 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 00:46+0000\n" -"Last-Translator: a a\n" -"Language-Team: French (http://www.transifex.com/arctic-games/supertux/language/fr/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: Semphris , 2021\n" +"Language-Team: French (http://app.transifex.com/arctic-games/supertux/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/bonus1/abednego-level1.stl:3 msgid "Flight Test" diff --git a/data/levels/bonus1/fr_CA.po b/data/levels/bonus1/fr_CA.po index 2c973b05d9f..9adecdbce35 100644 --- a/data/levels/bonus1/fr_CA.po +++ b/data/levels/bonus1/fr_CA.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:04+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: French (Canada) (http://app.transifex.com/arctic-games/supertux/language/fr_CA/)\n" diff --git a/data/levels/bonus1/gd.po b/data/levels/bonus1/gd.po index 78e92572b82..a9d805f52f8 100644 --- a/data/levels/bonus1/gd.po +++ b/data/levels/bonus1/gd.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-17 20:56+0000\n" -"Last-Translator: GunChleoc\n" -"Language-Team: Gaelic, Scottish (http://www.transifex.com/arctic-games/supertux/language/gd/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: GunChleoc, 2016,2019\n" +"Language-Team: Gaelic, Scottish (http://app.transifex.com/arctic-games/supertux/language/gd/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus1/gl.po b/data/levels/bonus1/gl.po index b95480744d5..93608e5b765 100644 --- a/data/levels/bonus1/gl.po +++ b/data/levels/bonus1/gl.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# xanvieiro , 2019-2020 +# Xan Vieiro , 2019-2021 +# Xan Vieiro , 2021 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Galician (http://www.transifex.com/arctic-games/supertux/language/gl/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: Xan Vieiro , 2021\n" +"Language-Team: Galician (http://app.transifex.com/arctic-games/supertux/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -105,7 +106,7 @@ msgstr "Os Tipos Malos Feden!" msgid "" "#These levels were made Swimming-Ready by Serano and revamped by " "AllyTheOcelot" -msgstr "" +msgstr "#Serano deixou preparados estes niveis listos para nadar e AllyTheOcelot deixounos renovados" #: data/levels/bonus1/torfi-level1.stl:3 msgid "A good start" @@ -117,7 +118,7 @@ msgstr "Demasiado fácil" #: data/levels/bonus1/torfi-level2.stl:56 msgid "#All these levels were upgraded for milestone 2 by Hume." -msgstr "" +msgstr "# Todos estes niveis foron actualizados á etapa 2 por Hume." #: data/levels/bonus1/torfi-level3.stl:3 msgid "Still too easy" diff --git a/data/levels/bonus1/he.po b/data/levels/bonus1/he.po index 983bcb4234c..189546fa421 100644 --- a/data/levels/bonus1/he.po +++ b/data/levels/bonus1/he.po @@ -4,22 +4,23 @@ # # Translators: # Evgeny Satanovsky , 2019 -# Omer I.S. , 2020-2021 -# Omer I.S. , 2021 -# Omer I.S. , 2020 +# IAN RODRÍGUEZ Lorenzo, 2022 +# 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e , 2020-2021 +# 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e , 2021 +# 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e , 2020 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Hebrew (http://www.transifex.com/arctic-games/supertux/language/he/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" +"Language-Team: Hebrew (http://app.transifex.com/arctic-games/supertux/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: he\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" +"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n" #: data/levels/bonus1/abednego-level1.stl:3 msgid "Flight Test" @@ -108,7 +109,7 @@ msgstr "הרעים מסריחים!" msgid "" "#These levels were made Swimming-Ready by Serano and revamped by " "AllyTheOcelot" -msgstr "" +msgstr "#רמות אלו נעשו מוכנות לשחייה על ידי Serano ושופצו על ידי AllyTheOcelot" #: data/levels/bonus1/torfi-level1.stl:3 msgid "A good start" @@ -120,7 +121,7 @@ msgstr "קל מדיי" #: data/levels/bonus1/torfi-level2.stl:56 msgid "#All these levels were upgraded for milestone 2 by Hume." -msgstr "" +msgstr "#כל הרמות הללו שודרגו עבור אבן דרך 2 על ידי Hume." #: data/levels/bonus1/torfi-level3.stl:3 msgid "Still too easy" @@ -140,7 +141,7 @@ msgstr "מבוך בשמיים" #: data/levels/bonus1/wansti-level4.stl:3 msgid "Collapse Imminent!" -msgstr "" +msgstr "קריסה קרובה!" #: data/levels/bonus1/wansti-level5.stl:3 msgid "Tip Of The Iceberg" diff --git a/data/levels/bonus1/hr.po b/data/levels/bonus1/hr.po index f5b5b6ef5a5..b2893a8e30d 100644 --- a/data/levels/bonus1/hr.po +++ b/data/levels/bonus1/hr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:04+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Croatian (http://app.transifex.com/arctic-games/supertux/language/hr/)\n" diff --git a/data/levels/bonus1/hu.po b/data/levels/bonus1/hu.po index 1572cfad10d..4c8f310c1cb 100644 --- a/data/levels/bonus1/hu.po +++ b/data/levels/bonus1/hu.po @@ -6,6 +6,7 @@ # a3c26b0c46589cfc4adc6b915848a308_dec3c1d <78de00fab75bbfdea72c30362fd33a08_110353>, 2015 # D. J. S. , 2012 # Norbert Molnár , 2013 +# Guih48, 2022 # Haba Tamás , 2016 # Kővágó Zoltán , 2006 # Kristóf Kófiás , 2020 @@ -14,10 +15,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Hungarian (http://www.transifex.com/arctic-games/supertux/language/hu/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: Guih48, 2022\n" +"Language-Team: Hungarian (http://app.transifex.com/arctic-games/supertux/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -111,7 +112,7 @@ msgstr "A Rosszfiúk Bűzlenek" msgid "" "#These levels were made Swimming-Ready by Serano and revamped by " "AllyTheOcelot" -msgstr "" +msgstr "#Ezeket a pályákat az úszésra előkészítette Serano és átdolgozta AllyTheOcelot" #: data/levels/bonus1/torfi-level1.stl:3 msgid "A good start" @@ -123,7 +124,7 @@ msgstr "Túl könnyű" #: data/levels/bonus1/torfi-level2.stl:56 msgid "#All these levels were upgraded for milestone 2 by Hume." -msgstr "" +msgstr "#Ezt az összes pályát Hume tette alkalmassá a 2. mérföldkőre." #: data/levels/bonus1/torfi-level3.stl:3 msgid "Still too easy" diff --git a/data/levels/bonus1/hy.po b/data/levels/bonus1/hy.po index ba4645770c8..467351e8de7 100644 --- a/data/levels/bonus1/hy.po +++ b/data/levels/bonus1/hy.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:04+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Armenian (http://app.transifex.com/arctic-games/supertux/language/hy/)\n" diff --git a/data/levels/bonus1/id.po b/data/levels/bonus1/id.po index d74c0040228..61d63b517fe 100644 --- a/data/levels/bonus1/id.po +++ b/data/levels/bonus1/id.po @@ -3,16 +3,17 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Christian Elbrianno, 2017 -# Christian Elbrianno, 2016 +# Chris , 2022 +# Chris , 2017 +# Chris , 2016 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Indonesian (http://www.transifex.com/arctic-games/supertux/language/id/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: Chris , 2022\n" +"Language-Team: Indonesian (http://app.transifex.com/arctic-games/supertux/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -106,7 +107,7 @@ msgstr "Orang Jahat Bau!" msgid "" "#These levels were made Swimming-Ready by Serano and revamped by " "AllyTheOcelot" -msgstr "" +msgstr "#Sekarang, Tux bisa berenang di level ini, berkat Serano dan dibantu oleh AllyTheOcelot" #: data/levels/bonus1/torfi-level1.stl:3 msgid "A good start" @@ -118,7 +119,7 @@ msgstr "Terlalu mudah" #: data/levels/bonus1/torfi-level2.stl:56 msgid "#All these levels were upgraded for milestone 2 by Hume." -msgstr "" +msgstr "#Semua level ini telah diperbarui untuk milestone 2 oleh Hume." #: data/levels/bonus1/torfi-level3.stl:3 msgid "Still too easy" diff --git a/data/levels/bonus1/is.po b/data/levels/bonus1/is.po index 676a7dc49dd..5bca0218218 100644 --- a/data/levels/bonus1/is.po +++ b/data/levels/bonus1/is.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:04+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Icelandic (http://app.transifex.com/arctic-games/supertux/language/is/)\n" diff --git a/data/levels/bonus1/it.po b/data/levels/bonus1/it.po index 974c4de6deb..b2d2bd62d1f 100644 --- a/data/levels/bonus1/it.po +++ b/data/levels/bonus1/it.po @@ -4,6 +4,7 @@ # # Translators: # Angela , 2014 +# A-TNT DC, 2021 # Ioma Taani, 2015 # Seb47 , 2016 # Andrius Štikonas , 2006 @@ -11,15 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Italian (http://www.transifex.com/arctic-games/supertux/language/it/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: A-TNT DC, 2021\n" +"Language-Team: Italian (http://app.transifex.com/arctic-games/supertux/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/bonus1/abednego-level1.stl:3 msgid "Flight Test" @@ -108,7 +109,7 @@ msgstr "I cattivi puzzano!" msgid "" "#These levels were made Swimming-Ready by Serano and revamped by " "AllyTheOcelot" -msgstr "" +msgstr "#Questi livelli sono stati creati Swimming-Ready da Serano e rinnovati da AllyTheOcelot" #: data/levels/bonus1/torfi-level1.stl:3 msgid "A good start" @@ -120,7 +121,7 @@ msgstr "Troppo facile" #: data/levels/bonus1/torfi-level2.stl:56 msgid "#All these levels were upgraded for milestone 2 by Hume." -msgstr "" +msgstr "#Tutti questi livelli sono stati aggiornati alla Milestone 2 da Hume." #: data/levels/bonus1/torfi-level3.stl:3 msgid "Still too easy" diff --git a/data/levels/bonus1/ja.po b/data/levels/bonus1/ja.po index 9a75d0ac659..305c2a8c784 100644 --- a/data/levels/bonus1/ja.po +++ b/data/levels/bonus1/ja.po @@ -5,16 +5,16 @@ # Translators: # IAN RODRÍGUEZ Lorenzo, 2023 # 515ce455fbf38ec9585626e8d26b6324_7a9a6ef, 2017 -# Ryo Nakano, 2019,2021 +# Ryo Nakano, 2019,2021,2024 # Sanshiro sumita, 2015-2016 # Sanshiro sumita, 2015 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:04+0000\n" -"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" +"Last-Translator: Ryo Nakano, 2019,2021,2024\n" "Language-Team: Japanese (http://app.transifex.com/arctic-games/supertux/language/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -99,7 +99,7 @@ msgstr "天空の火" #: data/levels/bonus1/thompson-level1.stl:3 msgid "Have I been here before?" -msgstr "見たことのある光景" +msgstr "見覚えのある光景" #: data/levels/bonus1/thompson-level2.stl:3 msgid "Bad Guys Stink!" @@ -109,7 +109,7 @@ msgstr "悪者は臭う!" msgid "" "#These levels were made Swimming-Ready by Serano and revamped by " "AllyTheOcelot" -msgstr "#これらのレベルは Serano によって Swimming-Ready にされ、AllyTheOcelot によって改良されました" +msgstr "#これらのレベルは Serano によって潜水対応になり、AllyTheOcelot によって改良されました" #: data/levels/bonus1/torfi-level1.stl:3 msgid "A good start" @@ -121,7 +121,7 @@ msgstr "簡単すぎるレベル" #: data/levels/bonus1/torfi-level2.stl:56 msgid "#All these levels were upgraded for milestone 2 by Hume." -msgstr "#これらすべてのレベルは、ヒュームによってマイルストーン 2 にアップグレードされました。" +msgstr "#これらすべてのレベルは、Hume によってマイルストーン 2 にアップグレードされました。" #: data/levels/bonus1/torfi-level3.stl:3 msgid "Still too easy" diff --git a/data/levels/bonus1/ko.po b/data/levels/bonus1/ko.po index e9a7f312a07..4ee23ed41a0 100644 --- a/data/levels/bonus1/ko.po +++ b/data/levels/bonus1/ko.po @@ -5,13 +5,13 @@ # Translators: # Go Nam Hyeon , 2021 # 최이준, 2023 -# JungHee Lee , 2022 +# Junghee Lee , 2022 # Myeongjin , 2016-2017,2019 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:04+0000\n" "Last-Translator: 최이준, 2023\n" "Language-Team: Korean (http://app.transifex.com/arctic-games/supertux/language/ko/)\n" diff --git a/data/levels/bonus1/la.po b/data/levels/bonus1/la.po index 275ddf44823..528259d4850 100644 --- a/data/levels/bonus1/la.po +++ b/data/levels/bonus1/la.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Latin (http://www.transifex.com/arctic-games/supertux/language/la/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: Alisa P , 2016,2018\n" +"Language-Team: Latin (http://app.transifex.com/arctic-games/supertux/language/la/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus1/lt.po b/data/levels/bonus1/lt.po index 5d0d17938ab..1e812438509 100644 --- a/data/levels/bonus1/lt.po +++ b/data/levels/bonus1/lt.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Lithuanian (http://www.transifex.com/arctic-games/supertux/language/lt/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: Tom Urisk, 2021\n" +"Language-Team: Lithuanian (http://app.transifex.com/arctic-games/supertux/language/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus1/messages.pot b/data/levels/bonus1/messages.pot index 39b9ee8c65b..8ad48ed96eb 100644 --- a/data/levels/bonus1/messages.pot +++ b/data/levels/bonus1/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: SuperTux v0.6.2-963-gb4a1b149f\n" +"Project-Id-Version: SuperTux v0.6.3-1080-g2e08c1b7f\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/data/levels/bonus1/ml.po b/data/levels/bonus1/ml.po index 607b0c8e384..e2ecb6bb554 100644 --- a/data/levels/bonus1/ml.po +++ b/data/levels/bonus1/ml.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Adharsh 01 , 2019 -# Adithyan S S , 2020 +# Adharsh P S , 2019 +# Adithyan S S , 2020,2023 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Malayalam (http://www.transifex.com/arctic-games/supertux/language/ml/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: Adithyan S S , 2020,2023\n" +"Language-Team: Malayalam (http://app.transifex.com/arctic-games/supertux/language/ml/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -21,15 +21,15 @@ msgstr "" #: data/levels/bonus1/abednego-level1.stl:3 msgid "Flight Test" -msgstr "പറക്കുന്നതിന്റെ പരീക്ഷണം" +msgstr "വ്യോമയാനപ്പരീക്ഷണം" #: data/levels/bonus1/abednego-level2.stl:3 msgid "Dungeons but no Dragons" -msgstr "ഇരുട്ടറയുണ്ട് പക്ഷെ ഡ്രാഗണുകൾ ഇല്ല" +msgstr "അസുരന്മാർ ഇല്ല അന്ധകാരം ഉണ്ട്" #: data/levels/bonus1/abednego-level3.stl:3 msgid "Lies!" -msgstr "നുണകൾ" +msgstr "നുണകൾ!" #: data/levels/bonus1/abednego-level4.stl:3 msgid "Train Leaves in One Minute" @@ -37,7 +37,7 @@ msgstr "തീവണ്ടി ഒരു മിനിറ്റിനകം പോ #: data/levels/bonus1/bonus-level1.stl:3 msgid "Bonus Dias!" -msgstr "ബോണസ് വേദി" +msgstr "ബോണസ് വേദി!" #: data/levels/bonus1/bonus-level2.stl:3 msgid "Castle Gate" @@ -45,7 +45,7 @@ msgstr "കൊട്ടാരത്തിന്റെ കവാടം" #: data/levels/bonus1/bonus-level3.stl:3 msgid "A Long Way Home" -msgstr "വീട്ടിലേക്കുള്ള നീണ്ട പാത" +msgstr "നീണ്ട പാതവഴി വീട്ടിലേക്ക്" #: data/levels/bonus1/bonus-level4.stl:3 msgid "Bonus Island Castle" @@ -53,7 +53,7 @@ msgstr "ബോണസ് ദ്വീപ് കൊട്ടാരം" #: data/levels/bonus1/bonus-level5.stl:3 msgid "Area 42" -msgstr "മേഖല 42" +msgstr "ഏരിയ 42" #: data/levels/bonus1/extro.txt:3 msgid "" @@ -84,11 +84,11 @@ msgstr "-അഭിനന്ദനങ്ങൾ!\n\n#ബോണസ് ദ്വീ #: data/levels/bonus1/matr1x-level1.stl:3 msgid "Pipe Down Over There" -msgstr "അവിടെ പൈപ് താഴേക്ക്" +msgstr "താഴേക്കങ്ങോട്ട് പൈപ്പ് ആണ് " #: data/levels/bonus1/matr1x-level2.stl:3 msgid "Something Fishy" -msgstr "" +msgstr "ഈ കളി മീൻകളി " #: data/levels/bonus1/matr1x-level3.stl:3 msgid "Fire In The Sky" @@ -186,7 +186,7 @@ msgstr "തോംപ്സണിന്റെ ഡൊമെയ്ൻ വിടു #: data/levels/bonus1/worldmap.stwm:193 msgid "Back to Matr1x' Sector" -msgstr "മാട്ര്1x സെക്ടറിലേക്ക് മടങ്ങുക" +msgstr "മാട്ര്1x സെക്ടറിലേക്ക് മടങ്ങുക" #: data/levels/bonus1/worldmap.stwm:200 msgid "Warp home" diff --git a/data/levels/bonus1/ms_MY.po b/data/levels/bonus1/ms_MY.po index 174c5275a92..70f53da0eaf 100644 --- a/data/levels/bonus1/ms_MY.po +++ b/data/levels/bonus1/ms_MY.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# abuyop , 2020-2021 +# abuyop , 2020-2022 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Malay (Malaysia) (http://www.transifex.com/arctic-games/supertux/language/ms_MY/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: abuyop , 2020-2022\n" +"Language-Team: Malay (Malaysia) (http://app.transifex.com/arctic-games/supertux/language/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -105,7 +105,7 @@ msgstr "Penjahat Berbau Busuk!" msgid "" "#These levels were made Swimming-Ready by Serano and revamped by " "AllyTheOcelot" -msgstr "" +msgstr "#Aras-aras ini Swimming-Ready oleh Serano dan di rombak semula oleh AllyTheOcelot" #: data/levels/bonus1/torfi-level1.stl:3 msgid "A good start" @@ -117,7 +117,7 @@ msgstr "Terlalu mudah" #: data/levels/bonus1/torfi-level2.stl:56 msgid "#All these levels were upgraded for milestone 2 by Hume." -msgstr "" +msgstr "#Semua aras ini telah ditatar untuk milestone 2 oleh Hume." #: data/levels/bonus1/torfi-level3.stl:3 msgid "Still too easy" diff --git a/data/levels/bonus1/nb.po b/data/levels/bonus1/nb.po index 4b0d8dd22a2..3f8d459d871 100644 --- a/data/levels/bonus1/nb.po +++ b/data/levels/bonus1/nb.po @@ -4,15 +4,16 @@ # # Translators: # Allan Nordhøy , 2016 +# IAN RODRÍGUEZ Lorenzo, 2022 # Karl Ove Hufthammer , 2007,2015-2016 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Norwegian Bokmål (http://www.transifex.com/arctic-games/supertux/language/nb/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" +"Language-Team: Norwegian Bokmål (http://app.transifex.com/arctic-games/supertux/language/nb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -106,7 +107,7 @@ msgstr "Slemmestad" msgid "" "#These levels were made Swimming-Ready by Serano and revamped by " "AllyTheOcelot" -msgstr "" +msgstr "#Disse nivåene ble gjort Swimming-Ready av Serano og gjenopprettet av AllyTheOcelot" #: data/levels/bonus1/torfi-level1.stl:3 msgid "A good start" @@ -118,7 +119,7 @@ msgstr "For lett" #: data/levels/bonus1/torfi-level2.stl:56 msgid "#All these levels were upgraded for milestone 2 by Hume." -msgstr "" +msgstr "#Alle disse brettene vart oppdatert til milestein 2-designen av Hume2." #: data/levels/bonus1/torfi-level3.stl:3 msgid "Still too easy" diff --git a/data/levels/bonus1/nds.po b/data/levels/bonus1/nds.po index bdb5c8434d7..fcd9a83d72a 100644 --- a/data/levels/bonus1/nds.po +++ b/data/levels/bonus1/nds.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Low German (http://www.transifex.com/arctic-games/supertux/language/nds/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: Benedikt Straub , 2018\n" +"Language-Team: Low German (http://app.transifex.com/arctic-games/supertux/language/nds/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus1/nl.po b/data/levels/bonus1/nl.po index 3d106a5fb85..2eb58fbb779 100644 --- a/data/levels/bonus1/nl.po +++ b/data/levels/bonus1/nl.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 13:40+0000\n" -"Last-Translator: Heimen Stoffels \n" -"Language-Team: Dutch (http://www.transifex.com/arctic-games/supertux/language/nl/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: Heimen Stoffels , 2021\n" +"Language-Team: Dutch (http://app.transifex.com/arctic-games/supertux/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus1/nn.po b/data/levels/bonus1/nn.po index 5cf672bbd66..4282ac67389 100644 --- a/data/levels/bonus1/nn.po +++ b/data/levels/bonus1/nn.po @@ -3,16 +3,17 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: +# IAN RODRÍGUEZ Lorenzo, 2022 # Karl Ove Hufthammer , 2006-2007,2015-2016,2019-2020 # Karl Ove Hufthammer , 2015 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Norwegian Nynorsk (http://www.transifex.com/arctic-games/supertux/language/nn/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" +"Language-Team: Norwegian Nynorsk (http://app.transifex.com/arctic-games/supertux/language/nn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -106,7 +107,7 @@ msgstr "Slemmestad" msgid "" "#These levels were made Swimming-Ready by Serano and revamped by " "AllyTheOcelot" -msgstr "" +msgstr "#Desse nivåene vart lagt svømme-klar av Serano og gjenoppretta av AllyTheOcelot" #: data/levels/bonus1/torfi-level1.stl:3 msgid "A good start" @@ -118,7 +119,7 @@ msgstr "For lett" #: data/levels/bonus1/torfi-level2.stl:56 msgid "#All these levels were upgraded for milestone 2 by Hume." -msgstr "" +msgstr "#Alle desse bretta vart oppdaterte til milestein 2-designen av Hume2." #: data/levels/bonus1/torfi-level3.stl:3 msgid "Still too easy" diff --git a/data/levels/bonus1/pl.po b/data/levels/bonus1/pl.po index 5346df1a150..79a98576f98 100644 --- a/data/levels/bonus1/pl.po +++ b/data/levels/bonus1/pl.po @@ -7,15 +7,15 @@ # Krzysztof Szeląg, 2015 # Krzysztof Szeląg, 2015-2016 # Paweł Talar , 2013 -# Rob PlayZ, 2021 +# Alina Gobarov, 2021 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-19 16:33+0000\n" -"Last-Translator: Rob PlayZ\n" -"Language-Team: Polish (http://www.transifex.com/arctic-games/supertux/language/pl/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: Alina Gobarov, 2021\n" +"Language-Team: Polish (http://app.transifex.com/arctic-games/supertux/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus1/pt.po b/data/levels/bonus1/pt.po index ee2c53f743a..04b20ac4645 100644 --- a/data/levels/bonus1/pt.po +++ b/data/levels/bonus1/pt.po @@ -5,6 +5,7 @@ # Translators: # Dani , 2013 # Hugo Carvalho , 2021 +# lecalam, 2024 # Rui , 2016 # Sérgio Marques , 2018 # Rui , 2016 @@ -13,15 +14,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-14 13:09+0000\n" -"Last-Translator: Hugo Carvalho \n" -"Language-Team: Portuguese (http://www.transifex.com/arctic-games/supertux/language/pt/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: lecalam, 2024\n" +"Language-Team: Portuguese (http://app.transifex.com/arctic-games/supertux/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/bonus1/abednego-level1.stl:3 msgid "Flight Test" @@ -110,7 +111,7 @@ msgstr "Os Mauzões Cheiram Mal!" msgid "" "#These levels were made Swimming-Ready by Serano and revamped by " "AllyTheOcelot" -msgstr "#Estes níveis foram feitos prontos para natação por Serano e renovados por AllyTheOcelot" +msgstr "#Estes níveis foram feitos prontos para nadar por Serano e renovados por AllyTheOcelot" #: data/levels/bonus1/torfi-level1.stl:3 msgid "A good start" @@ -122,7 +123,7 @@ msgstr "Demasiado fácil" #: data/levels/bonus1/torfi-level2.stl:56 msgid "#All these levels were upgraded for milestone 2 by Hume." -msgstr "#Todos estes níveis foram atualizados para milestone 2 por Hume." +msgstr "#Todos estes níveis foram atualizados para a \"milestone\" 2 por Hume." #: data/levels/bonus1/torfi-level3.stl:3 msgid "Still too easy" @@ -162,7 +163,7 @@ msgstr "Dica: usa os iglus para voltares a este lugar." #: data/levels/bonus1/worldmap.stwm:144 msgid "Warp to Matr1x' Sector" -msgstr "Tele-transportar para o Setor Matr1x" +msgstr "Tele-transportar para o setor Matr1x" #: data/levels/bonus1/worldmap.stwm:151 data/levels/bonus1/worldmap.stwm:228 msgid "Warp to Thompson's Domain" @@ -190,7 +191,7 @@ msgstr "Sair do Domínio do Thompson" #: data/levels/bonus1/worldmap.stwm:193 msgid "Back to Matr1x' Sector" -msgstr "Voltar para o Setor Matr1x" +msgstr "Voltar para o setor Matr1x" #: data/levels/bonus1/worldmap.stwm:200 msgid "Warp home" @@ -202,11 +203,11 @@ msgstr "Tele-transportar para a Ilha da Equipa do SuperTux" #: data/levels/bonus1/worldmap.stwm:241 msgid "Leave Matr1x' Sector" -msgstr "Sair do Setor Matr1x" +msgstr "Sair do setor Matr1x" #: data/levels/bonus1/worldmap.stwm:248 msgid "Continue Matr1x' Sector" -msgstr "Continuar no Setor Matr1x" +msgstr "Continuar no setor Matr1x" #: data/levels/bonus1/worldmap.stwm:255 msgid "Warp to Torfi's Territory" diff --git a/data/levels/bonus1/pt_BR.po b/data/levels/bonus1/pt_BR.po index db2665f5f0e..a6785e8a46b 100644 --- a/data/levels/bonus1/pt_BR.po +++ b/data/levels/bonus1/pt_BR.po @@ -12,15 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 02:58+0000\n" -"Last-Translator: Jesusaves \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/arctic-games/supertux/language/pt_BR/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: Jesusaves , 2021\n" +"Language-Team: Portuguese (Brazil) (http://app.transifex.com/arctic-games/supertux/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/bonus1/abednego-level1.stl:3 msgid "Flight Test" diff --git a/data/levels/bonus1/ro.po b/data/levels/bonus1/ro.po index a7a90793c4d..2edaa520519 100644 --- a/data/levels/bonus1/ro.po +++ b/data/levels/bonus1/ro.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:04+0000\n" "Last-Translator: Nicolae Crefelean, 2015-2016,2023\n" "Language-Team: Romanian (http://app.transifex.com/arctic-games/supertux/language/ro/)\n" diff --git a/data/levels/bonus1/ru.po b/data/levels/bonus1/ru.po index 72865fa5420..bec54c8dca1 100644 --- a/data/levels/bonus1/ru.po +++ b/data/levels/bonus1/ru.po @@ -3,20 +3,20 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Andrei Stepanov , 2018-2019,2021 +# Andrei Stepanov, 2018-2019,2021 # Artem Krosheninnikov , 2013 # Dmitry Anikonov , 2016 # Dmitry , 2013 -# Translator TRA, 2021 +# 85e8e9a0e917e081842b0894245d15cc_1e402b3, 2021 # Dmitry Anikonov , 2015 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 23:01+0000\n" -"Last-Translator: Andrei Stepanov \n" -"Language-Team: Russian (http://www.transifex.com/arctic-games/supertux/language/ru/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: Andrei Stepanov, 2018-2019,2021\n" +"Language-Team: Russian (http://app.transifex.com/arctic-games/supertux/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus1/sk.po b/data/levels/bonus1/sk.po index 376de125f83..5380e36b742 100644 --- a/data/levels/bonus1/sk.po +++ b/data/levels/bonus1/sk.po @@ -3,16 +3,17 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: +# IAN RODRÍGUEZ Lorenzo, 2022 # c79a840bffc1621596a73d9f7d995b66_5f97bea <821296eb068acbf38f8fe02d322f4248_155187>, 2014 # MiroslavR , 2015-2016 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Slovak (http://www.transifex.com/arctic-games/supertux/language/sk/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" +"Language-Team: Slovak (http://app.transifex.com/arctic-games/supertux/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -106,7 +107,7 @@ msgstr "Nepriatelia sú hnusný!" msgid "" "#These levels were made Swimming-Ready by Serano and revamped by " "AllyTheOcelot" -msgstr "" +msgstr "#Tieto úrovne pripravil Serano na plávanie a prepracovala AllyTheOcelot" #: data/levels/bonus1/torfi-level1.stl:3 msgid "A good start" @@ -118,7 +119,7 @@ msgstr "Moc ľahké" #: data/levels/bonus1/torfi-level2.stl:56 msgid "#All these levels were upgraded for milestone 2 by Hume." -msgstr "" +msgstr "#Všetky tieto úrovne vylepšil Hume pre míľnik 2." #: data/levels/bonus1/torfi-level3.stl:3 msgid "Still too easy" diff --git a/data/levels/bonus1/sl.po b/data/levels/bonus1/sl.po index b5bcf962e2b..8e194271d66 100644 --- a/data/levels/bonus1/sl.po +++ b/data/levels/bonus1/sl.po @@ -5,16 +5,16 @@ # Translators: # , 2006 # Gorzy Gorup , 2016 -# Gorzy Gorup , 2019 +# Gorzy Gorup , 2019,2022 # Marko Burjek , 2006-2007 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Slovenian (http://www.transifex.com/arctic-games/supertux/language/sl/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: Gorzy Gorup , 2019,2022\n" +"Language-Team: Slovenian (http://app.transifex.com/arctic-games/supertux/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -23,11 +23,11 @@ msgstr "" #: data/levels/bonus1/abednego-level1.stl:3 msgid "Flight Test" -msgstr "Test letenja " +msgstr "Letalni preizkus" #: data/levels/bonus1/abednego-level2.stl:3 msgid "Dungeons but no Dragons" -msgstr "Temnice, a brez zmajev" +msgstr "Temnice brez zmajev" #: data/levels/bonus1/abednego-level3.stl:3 msgid "Lies!" @@ -51,7 +51,7 @@ msgstr "Dolga pot domov" #: data/levels/bonus1/bonus-level4.stl:3 msgid "Bonus Island Castle" -msgstr "Bonus Otoški grad" +msgstr "Bonus otoški grad" #: data/levels/bonus1/bonus-level5.stl:3 msgid "Area 42" @@ -82,15 +82,15 @@ msgid "" "#A big \"Thank you\" goes out to\n" "#everyone who contributed to this\n" "#release. We hope you enjoyed it!" -msgstr "-Čestitke!\n\n#Uspešno si dokončal/a\n#Bonus Otok I\n\n\tpredstavljene stopnje so prispevali\n\tJason W. Thompson\n\tTorfi Gunnarsson\n\tAbednego\n\tMatr1x\n\n\n#Če še nisi šel/a čez vse stopnje,\n#pojdi domov in uberi drugo pot.\n#Čaka te še več izzivov!\n\n#Najdeš lahko tudi skrivno stopnjo...\n\n#Res smo hvaležni vsem, ki so\n#prispevali k tej izdaji. Upamo, da\n#si užival/a v njej!" +msgstr "-Čestitke!\n\n#Uspešno si dokončal/a\n#Bonus otok I\n\n\tStopnje so prispevali\n\tJason W. Thompson\n\tTorfi Gunnarsson\n\tAbednego\n\tMatr1x\n\n\n#Če še nisi šel/a čez vse stopnje,\n#pojdi domov in uberi drugo pot.\n#Čaka te še več izzivov!\n\n#Najdeš lahko tudi skrivno stopnjo ...\n\n#Res smo hvaležni vsem, ki so\n#prispevali k tej izdaji. Upamo, da\n#si užival/a v igranju!" #: data/levels/bonus1/matr1x-level1.stl:3 msgid "Pipe Down Over There" -msgstr "Cev tam doli" +msgstr "Cev kraval" #: data/levels/bonus1/matr1x-level2.stl:3 msgid "Something Fishy" -msgstr "Nekaj smrdi... po ribi" +msgstr "Tu nekaj smrdi ... po ribi" #: data/levels/bonus1/matr1x-level3.stl:3 msgid "Fire In The Sky" @@ -98,17 +98,17 @@ msgstr "Ogenj na nebu" #: data/levels/bonus1/thompson-level1.stl:3 msgid "Have I been here before?" -msgstr "Tole mi je pa znano..." +msgstr "Tole mi je pa znano ..." #: data/levels/bonus1/thompson-level2.stl:3 msgid "Bad Guys Stink!" -msgstr "Pridaniči smrdijo!" +msgstr "Barabe so bedne!" #: data/levels/bonus1/thompson-level2.stl:96 msgid "" "#These levels were made Swimming-Ready by Serano and revamped by " "AllyTheOcelot" -msgstr "" +msgstr "#Te stopnje je za plavanje priredil/a Serano in prenovil/a AllyTheOcelot" #: data/levels/bonus1/torfi-level1.stl:3 msgid "A good start" @@ -120,7 +120,7 @@ msgstr "Prelahko" #: data/levels/bonus1/torfi-level2.stl:56 msgid "#All these levels were upgraded for milestone 2 by Hume." -msgstr "" +msgstr "#Vse te stopnje je za drugi mejnik nadgradil/a Hume." #: data/levels/bonus1/torfi-level3.stl:3 msgid "Still too easy" @@ -148,11 +148,11 @@ msgstr "Vrh ledene gore" #: data/levels/bonus1/worldmap.stwm:3 msgid "Bonus Island I" -msgstr "Bonus Otok I" +msgstr "Bonus otok I" #: data/levels/bonus1/worldmap.stwm:127 msgid "You found a secret place!" -msgstr "Odkril/a si skriven prostor!" +msgstr "Odkril/a si skrivno sobo!" #: data/levels/bonus1/worldmap.stwm:135 msgid "Hint: Use igloos to get back here." @@ -160,7 +160,7 @@ msgstr "Namig: S pomočjo iglujev se lahko vrneš sem." #: data/levels/bonus1/worldmap.stwm:144 msgid "Warp to Matr1x' Sector" -msgstr "Teleportiraj se do Matr1x-ovega sektorja" +msgstr "Teleportiraj se do Matr1xovega sektorja" #: data/levels/bonus1/worldmap.stwm:151 data/levels/bonus1/worldmap.stwm:228 msgid "Warp to Thompson's Domain" @@ -188,7 +188,7 @@ msgstr "Zapusti Thompsonovo domeno" #: data/levels/bonus1/worldmap.stwm:193 msgid "Back to Matr1x' Sector" -msgstr "Nazaj do Matr1x-ovega sektorja" +msgstr "Nazaj do Matr1xovega sektorja" #: data/levels/bonus1/worldmap.stwm:200 msgid "Warp home" @@ -200,11 +200,11 @@ msgstr "Teleportiraj se do otoka ekipe SuperTux" #: data/levels/bonus1/worldmap.stwm:241 msgid "Leave Matr1x' Sector" -msgstr "Zapusti Matr1x-ov sektor" +msgstr "Zapusti Matr1xov sektor" #: data/levels/bonus1/worldmap.stwm:248 msgid "Continue Matr1x' Sector" -msgstr "Nadaljuj v Matr1x-ov sektor" +msgstr "Nadaljuj v Matr1xov sektor" #: data/levels/bonus1/worldmap.stwm:255 msgid "Warp to Torfi's Territory" diff --git a/data/levels/bonus1/sq.po b/data/levels/bonus1/sq.po index 6624c259536..9dc718b52c5 100644 --- a/data/levels/bonus1/sq.po +++ b/data/levels/bonus1/sq.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:04+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Albanian (http://app.transifex.com/arctic-games/supertux/language/sq/)\n" diff --git a/data/levels/bonus1/sr.po b/data/levels/bonus1/sr.po index abb188eb0ed..18b506fe152 100644 --- a/data/levels/bonus1/sr.po +++ b/data/levels/bonus1/sr.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Serbian (http://www.transifex.com/arctic-games/supertux/language/sr/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: Slobodan Simić , 2016\n" +"Language-Team: Serbian (http://app.transifex.com/arctic-games/supertux/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus1/sv.po b/data/levels/bonus1/sv.po index b9ee3956ee0..59c094dbab9 100644 --- a/data/levels/bonus1/sv.po +++ b/data/levels/bonus1/sv.po @@ -5,16 +5,16 @@ # Translators: # Arvid Norlander , 2006-2008,2010 # Kristoffer Grundström , 2014 -# Sebastian Rasmussen , 2020 +# Sebastian Rasmussen , 2020-2021 # Sebastian Rasmussen , 2015-2016 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Swedish (http://www.transifex.com/arctic-games/supertux/language/sv/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: Sebastian Rasmussen , 2020-2021\n" +"Language-Team: Swedish (http://app.transifex.com/arctic-games/supertux/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -108,7 +108,7 @@ msgstr "Dåliga killar stinker!" msgid "" "#These levels were made Swimming-Ready by Serano and revamped by " "AllyTheOcelot" -msgstr "" +msgstr "#Dessa nivåer gjordes simklara av Serano och förbättrades av AllyTheOcelot" #: data/levels/bonus1/torfi-level1.stl:3 msgid "A good start" @@ -120,7 +120,7 @@ msgstr "För enkelt" #: data/levels/bonus1/torfi-level2.stl:56 msgid "#All these levels were upgraded for milestone 2 by Hume." -msgstr "" +msgstr "#Alla dessa nivåer uppgraderades inför milstolpe 2 av Hume." #: data/levels/bonus1/torfi-level3.stl:3 msgid "Still too easy" diff --git a/data/levels/bonus1/te.po b/data/levels/bonus1/te.po index c4f2995e7c2..6a465018b6f 100644 --- a/data/levels/bonus1/te.po +++ b/data/levels/bonus1/te.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Jagadeeshvarma, 2021 +# Nanowarrior, 2021-2022 +# జయంత్ వర్మ బెల్లపుకొండ , 2022 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-17 03:54+0000\n" -"Last-Translator: Jagadeeshvarma\n" -"Language-Team: Telugu (http://www.transifex.com/arctic-games/supertux/language/te/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: జయంత్ వర్మ బెల్లపుకొండ , 2022\n" +"Language-Team: Telugu (http://app.transifex.com/arctic-games/supertux/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -79,7 +80,7 @@ msgid "" "#A big \"Thank you\" goes out to\n" "#everyone who contributed to this\n" "#release. We hope you enjoyed it!" -msgstr "" +msgstr "-సుభాకాంక్షలు!\n\n#మీరు విజయవంతంగా పూర్తి చేశారు\n#లాభాంశమైన దీవిI\n\n\tలెవల్ల సృష్టికర్తలు\n\tJason W. Thompson\n\tTorfi Gunnarsson\n\tAbednego\n\tMatr1x\n\n\n#మీరు ఇంకా అన్ని లెవల్లను పూర్తి చేయకపోతే,\n#తిరిగి వెనక్కి వెళ్ళి వేరే మార్గం గుండా వెళ్ళండి.\n# మీ కోసం మరింత సవాలు ఎదురు చూస్తుంది!\n\n#మరియు మీరు వెతక వలిసిన ఒక\n#రహస్యమైన లెవలు కూడా ఉంది...\n\n#ఈ విడుదలకు తోడ్పడ అందరికి మనసారా ధన్యవాదాలు\n#మీకు ఇది నచ్చిందని ఆశిస్తుము!" #: data/levels/bonus1/matr1x-level1.stl:3 msgid "Pipe Down Over There" @@ -161,7 +162,7 @@ msgstr "Matr1x' సెక్టార్‌కు వార్ప్ అవం #: data/levels/bonus1/worldmap.stwm:151 data/levels/bonus1/worldmap.stwm:228 msgid "Warp to Thompson's Domain" -msgstr "" +msgstr "థాంప్సన్స్ భూభాగానికి వార్ప్ చేయి" #: data/levels/bonus1/worldmap.stwm:158 data/levels/bonus1/worldmap.stwm:221 msgid "Leave the SuperTux Team Island" @@ -169,7 +170,7 @@ msgstr "సూపర్ టక్స్ జట్టు ద్వీపాన్ #: data/levels/bonus1/worldmap.stwm:165 msgid "Warp to Abednego's Area" -msgstr "" +msgstr "అబెద్నెగో ప్రాంతానికి వార్ప్ చేయి" #: data/levels/bonus1/worldmap.stwm:172 data/levels/bonus1/worldmap.stwm:262 msgid "Leave Torfi's Territory" @@ -189,11 +190,11 @@ msgstr "తిరిగి Matr1x' ప్రాతాన్నికి" #: data/levels/bonus1/worldmap.stwm:200 msgid "Warp home" -msgstr "" +msgstr "ఇంటిని వార్ప్ చేయి" #: data/levels/bonus1/worldmap.stwm:214 msgid "Warp to the SuperTux Team Island" -msgstr "" +msgstr "సూపర్ టక్స్ జట్టు ద్వీపంకి వార్ప్ చేయి" #: data/levels/bonus1/worldmap.stwm:241 msgid "Leave Matr1x' Sector" @@ -205,4 +206,4 @@ msgstr "Matr1x' ప్రాతాన్ని కొనసాగించండ #: data/levels/bonus1/worldmap.stwm:255 msgid "Warp to Torfi's Territory" -msgstr "" +msgstr "టోర్ఫీ భూభాగానికి వార్ప్ చేయి" diff --git a/data/levels/bonus1/tr.po b/data/levels/bonus1/tr.po index 52b3ecdf59d..15713eb6715 100644 --- a/data/levels/bonus1/tr.po +++ b/data/levels/bonus1/tr.po @@ -5,17 +5,18 @@ # Translators: # Alkım Kaçmaz , 2013 # mahmut özcan , 2015 -# Big Brother , 2020 +# Tan Siret Akıncı , 2020 +# IAN RODRÍGUEZ Lorenzo, 2022 # mahmut özcan , 2020 # Yusuf Özsoy , 2013 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Turkish (http://www.transifex.com/arctic-games/supertux/language/tr/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" +"Language-Team: Turkish (http://app.transifex.com/arctic-games/supertux/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -109,7 +110,7 @@ msgstr "Kötüler Berbat!" msgid "" "#These levels were made Swimming-Ready by Serano and revamped by " "AllyTheOcelot" -msgstr "" +msgstr "#Bu seviyeler Serano tarafından Yüzmeye Hazır hale getirildi ve AllyTheOcelot tarafından yenilendi" #: data/levels/bonus1/torfi-level1.stl:3 msgid "A good start" @@ -121,7 +122,7 @@ msgstr "Çok kolay" #: data/levels/bonus1/torfi-level2.stl:56 msgid "#All these levels were upgraded for milestone 2 by Hume." -msgstr "" +msgstr "#Bütün bu seviyeler, Hume tarafından dönüm noktası 2 için yükseltildi." #: data/levels/bonus1/torfi-level3.stl:3 msgid "Still too easy" diff --git a/data/levels/bonus1/tt.po b/data/levels/bonus1/tt.po index 7f18344c2d5..3b3fa937264 100644 --- a/data/levels/bonus1/tt.po +++ b/data/levels/bonus1/tt.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: +# IAN RODRÍGUEZ Lorenzo, 2022 # Булат Ибраһим , 2016 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Tatar (http://www.transifex.com/arctic-games/supertux/language/tt/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" +"Language-Team: Tatar (http://app.transifex.com/arctic-games/supertux/language/tt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -105,7 +106,7 @@ msgstr "Яман егетләр" msgid "" "#These levels were made Swimming-Ready by Serano and revamped by " "AllyTheOcelot" -msgstr "" +msgstr "#Бу дәрәҗәләр Серано йөзәргә әзер һәм AllyTheOcelot тарафыннан яңартылды" #: data/levels/bonus1/torfi-level1.stl:3 msgid "A good start" @@ -117,7 +118,7 @@ msgstr "Бик җиңел" #: data/levels/bonus1/torfi-level2.stl:56 msgid "#All these levels were upgraded for milestone 2 by Hume." -msgstr "" +msgstr "#Бу дәрәҗәләрнең барысы 2-нче этап өчен яңартылды." #: data/levels/bonus1/torfi-level3.stl:3 msgid "Still too easy" diff --git a/data/levels/bonus1/uk.po b/data/levels/bonus1/uk.po index 37577b3c51d..df7ed42c818 100644 --- a/data/levels/bonus1/uk.po +++ b/data/levels/bonus1/uk.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:04+0000\n" "Last-Translator: Asemif official, 2023\n" "Language-Team: Ukrainian (http://app.transifex.com/arctic-games/supertux/language/uk/)\n" diff --git a/data/levels/bonus1/uz.po b/data/levels/bonus1/uz.po index 7c35a069960..be027da7ed8 100644 --- a/data/levels/bonus1/uz.po +++ b/data/levels/bonus1/uz.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:04+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Uzbek (http://app.transifex.com/arctic-games/supertux/language/uz/)\n" diff --git a/data/levels/bonus1/zh_CN.po b/data/levels/bonus1/zh_CN.po index 22852e08806..141047f6cfc 100644 --- a/data/levels/bonus1/zh_CN.po +++ b/data/levels/bonus1/zh_CN.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: +# CodingJellyfish , 2018 # Liu Sizhuang , 2008 # CodingJellyfish , 2018 # 玉堂白鹤 , 2018 @@ -10,10 +11,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Chinese (China) (http://www.transifex.com/arctic-games/supertux/language/zh_CN/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: 玉堂白鹤 , 2018\n" +"Language-Team: Chinese (China) (http://app.transifex.com/arctic-games/supertux/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -30,7 +31,7 @@ msgstr "无龙地牢" #: data/levels/bonus1/abednego-level3.stl:3 msgid "Lies!" -msgstr "撒谎!" +msgstr "撒谎!" #: data/levels/bonus1/abednego-level4.stl:3 msgid "Train Leaves in One Minute" @@ -38,7 +39,7 @@ msgstr "一分钟后开车" #: data/levels/bonus1/bonus-level1.stl:3 msgid "Bonus Dias!" -msgstr "发现额外岛" +msgstr "发现额外岛!" #: data/levels/bonus1/bonus-level2.stl:3 msgid "Castle Gate" @@ -54,7 +55,7 @@ msgstr "额外岛城堡" #: data/levels/bonus1/bonus-level5.stl:3 msgid "Area 42" -msgstr "42号地区" +msgstr "42 号地区" #: data/levels/bonus1/extro.txt:3 msgid "" @@ -81,7 +82,7 @@ msgid "" "#A big \"Thank you\" goes out to\n" "#everyone who contributed to this\n" "#release. We hope you enjoyed it!" -msgstr "-祝贺你!\n\n#你已经成功完成了额外I岛\n\n\t关卡贡献者:\n\tJason W. Thompson\n\tTorfi Gunnarsson\n\tAbednego\n\tMatr1x\n\n\n#如果你还没有完成所有关卡,\n#请回到起点并选择其他路径.\n#还有等多的挑战等着你!\n\n#另外还有一个秘密关卡等着你去发现...\n\n#非常感谢所有为此版本的发布做出了贡献的人们.\n#我们希望你能喜欢!" +msgstr "-祝贺你!\n\n#你已经成功地完成了\n#额外 I 岛\n\n\t关卡贡献者:\n\tJason W. Thompson\n\tTorfi Gunnarsson\n\tAbednego\n\tMatr1x\n\n\n#如果你还没有完成所有关卡,\n#请回到起点并选择其他路径。\n#还有更多的挑战等着你!\n\n#另外还有一个秘密关卡\n#等着你去发现……\n\n#非常感谢所有为此版本的发布\n#做出了贡献的人们。\n#我们希望你能喜欢!" #: data/levels/bonus1/matr1x-level1.stl:3 msgid "Pipe Down Over There" @@ -89,7 +90,7 @@ msgstr "顺管而下" #: data/levels/bonus1/matr1x-level2.stl:3 msgid "Something Fishy" -msgstr "腥臭" +msgstr "有点鱼腥味" #: data/levels/bonus1/matr1x-level3.stl:3 msgid "Fire In The Sky" @@ -97,17 +98,17 @@ msgstr "空中火焰" #: data/levels/bonus1/thompson-level1.stl:3 msgid "Have I been here before?" -msgstr "我以前来过吗?" +msgstr "我以前来过这里吗?" #: data/levels/bonus1/thompson-level2.stl:3 msgid "Bad Guys Stink!" -msgstr "坏家伙!" +msgstr "恶臭的坏家伙!" #: data/levels/bonus1/thompson-level2.stl:96 msgid "" "#These levels were made Swimming-Ready by Serano and revamped by " "AllyTheOcelot" -msgstr "" +msgstr "#这些关卡由 Serano 制作成可以游泳的,并由 AllyTheOcelot 进行了修改" #: data/levels/bonus1/torfi-level1.stl:3 msgid "A good start" @@ -115,11 +116,11 @@ msgstr "好的开始" #: data/levels/bonus1/torfi-level2.stl:3 msgid "Too easy" -msgstr "太简单了" +msgstr "太简单" #: data/levels/bonus1/torfi-level2.stl:56 msgid "#All these levels were upgraded for milestone 2 by Hume." -msgstr "" +msgstr "#Hume 在 milestone 2 中将所有这些关卡进行了升级。" #: data/levels/bonus1/torfi-level3.stl:3 msgid "Still too easy" @@ -139,55 +140,55 @@ msgstr "天空迷宫" #: data/levels/bonus1/wansti-level4.stl:3 msgid "Collapse Imminent!" -msgstr "即将崩溃!" +msgstr "即将崩溃!" #: data/levels/bonus1/wansti-level5.stl:3 msgid "Tip Of The Iceberg" -msgstr "冰山的提示" +msgstr "冰山一角" #: data/levels/bonus1/worldmap.stwm:3 msgid "Bonus Island I" -msgstr "额外I岛" +msgstr "额外 I 岛" #: data/levels/bonus1/worldmap.stwm:127 msgid "You found a secret place!" -msgstr "你找到了一个秘密区域!" +msgstr "你找到了一个秘密区域!" #: data/levels/bonus1/worldmap.stwm:135 msgid "Hint: Use igloos to get back here." -msgstr "提示: 使用传送点回到这里" +msgstr "提示:使用传送点回到这里" #: data/levels/bonus1/worldmap.stwm:144 msgid "Warp to Matr1x' Sector" -msgstr "传送到Matr1x地区" +msgstr "传送到 Matr1x 的防区" #: data/levels/bonus1/worldmap.stwm:151 data/levels/bonus1/worldmap.stwm:228 msgid "Warp to Thompson's Domain" -msgstr "传送到Thompson的领地" +msgstr "传送到 Thompson 的领域" #: data/levels/bonus1/worldmap.stwm:158 data/levels/bonus1/worldmap.stwm:221 msgid "Leave the SuperTux Team Island" -msgstr "离开SuperTux队岛" +msgstr "离开 SuperTux 团队的岛" #: data/levels/bonus1/worldmap.stwm:165 msgid "Warp to Abednego's Area" -msgstr "传送到Abednego区域" +msgstr "传送到 Abednego 的区域" #: data/levels/bonus1/worldmap.stwm:172 data/levels/bonus1/worldmap.stwm:262 msgid "Leave Torfi's Territory" -msgstr "离开Torfi板块" +msgstr "离开 Torfi 的领土" #: data/levels/bonus1/worldmap.stwm:179 data/levels/bonus1/worldmap.stwm:207 msgid "Leave Abednego's Area" -msgstr "离开Abednego区域" +msgstr "离开 Abednego 的区域" #: data/levels/bonus1/worldmap.stwm:186 data/levels/bonus1/worldmap.stwm:234 msgid "Leave Thompson's Domain" -msgstr "离开Thompson的领地" +msgstr "离开 Thompson 的领域" #: data/levels/bonus1/worldmap.stwm:193 msgid "Back to Matr1x' Sector" -msgstr "回到Matr1x地区" +msgstr "回到 Matr1x 的防区" #: data/levels/bonus1/worldmap.stwm:200 msgid "Warp home" @@ -195,16 +196,16 @@ msgstr "回家" #: data/levels/bonus1/worldmap.stwm:214 msgid "Warp to the SuperTux Team Island" -msgstr "传送到SuperTux队岛" +msgstr "传送到 SuperTux 团队的岛" #: data/levels/bonus1/worldmap.stwm:241 msgid "Leave Matr1x' Sector" -msgstr "离开Matr1x地区" +msgstr "离开 Matr1x 的防区" #: data/levels/bonus1/worldmap.stwm:248 msgid "Continue Matr1x' Sector" -msgstr "继续Matr1x地区" +msgstr "继续 Matr1x 的防区" #: data/levels/bonus1/worldmap.stwm:255 msgid "Warp to Torfi's Territory" -msgstr "传送到Torfi板块" +msgstr "传送到 Torfi 的领土" diff --git a/data/levels/bonus1/zh_TW.po b/data/levels/bonus1/zh_TW.po index 27088995235..4569032984e 100644 --- a/data/levels/bonus1/zh_TW.po +++ b/data/levels/bonus1/zh_TW.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 20:16+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/arctic-games/supertux/language/zh_TW/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:04+0000\n" +"Last-Translator: 黃柏諺 , 2019\n" +"Language-Team: Chinese (Taiwan) (http://app.transifex.com/arctic-games/supertux/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus2/af_ZA.po b/data/levels/bonus2/af_ZA.po index f5a8bfb5ca3..4730c5aa770 100644 --- a/data/levels/bonus2/af_ZA.po +++ b/data/levels/bonus2/af_ZA.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2019-12-25 07:39+0000\n" -"Last-Translator: Martin van Zijl \n" -"Language-Team: Afrikaans (South Africa) (http://www.transifex.com/arctic-games/supertux/language/af_ZA/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Martin van Zijl , 2019\n" +"Language-Team: Afrikaans (South Africa) (http://app.transifex.com/arctic-games/supertux/language/af_ZA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus2/ar.po b/data/levels/bonus2/ar.po index 35851bb0273..07837069ad3 100644 --- a/data/levels/bonus2/ar.po +++ b/data/levels/bonus2/ar.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:07+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Arabic (http://app.transifex.com/arctic-games/supertux/language/ar/)\n" diff --git a/data/levels/bonus2/az.po b/data/levels/bonus2/az.po index 8f194bad936..a39c7943163 100644 --- a/data/levels/bonus2/az.po +++ b/data/levels/bonus2/az.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:07+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Azerbaijani (http://app.transifex.com/arctic-games/supertux/language/az/)\n" diff --git a/data/levels/bonus2/be.po b/data/levels/bonus2/be.po index 7bca49e2087..7fa68158acc 100644 --- a/data/levels/bonus2/be.po +++ b/data/levels/bonus2/be.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2018-11-05 23:45+0100\n" -"PO-Revision-Date: 2018-12-12 10:32+0000\n" -"Last-Translator: se luxxy <70luxxy@gmail.com>\n" -"Language-Team: Belarusian (http://www.transifex.com/arctic-games/supertux/language/be/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: se luxxy <70luxxy@gmail.com>, 2018\n" +"Language-Team: Belarusian (http://app.transifex.com/arctic-games/supertux/language/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -165,14 +165,14 @@ msgstr "Традыцыя" msgid "Bonus Island II" msgstr "Бонусная выспа II" -#: data/levels/bonus2/worldmap.stwm:12 data/levels/bonus2/worldmap.stwm:20 +#: data/levels/bonus2/worldmap.stwm:157 data/levels/bonus2/worldmap.stwm:165 msgid "You found a secret place!" msgstr "Вы адшукалі схованку!" -#: data/levels/bonus2/worldmap.stwm:29 +#: data/levels/bonus2/worldmap.stwm:174 msgid "I wonder where that path leads to..." msgstr "Цікава, куды вядзе гэты шлях..." -#: data/levels/bonus2/worldmap.stwm:36 +#: data/levels/bonus2/worldmap.stwm:181 msgid "Warp home..." msgstr "Перасунуцца дахаты..." diff --git a/data/levels/bonus2/bg.po b/data/levels/bonus2/bg.po index 8d993292ccd..24969f3e92f 100644 --- a/data/levels/bonus2/bg.po +++ b/data/levels/bonus2/bg.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-20 10:06+0000\n" -"Last-Translator: Любомир Василев\n" -"Language-Team: Bulgarian (http://www.transifex.com/arctic-games/supertux/language/bg/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Любомир Василев, 2015-2016\n" +"Language-Team: Bulgarian (http://app.transifex.com/arctic-games/supertux/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus2/br.po b/data/levels/bonus2/br.po index 07fc1d718ab..9b9bcd99692 100644 --- a/data/levels/bonus2/br.po +++ b/data/levels/bonus2/br.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Irriep Nala Novram , 2017-2018 +# Irriep Nala Novram , 2017-2018 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2018-08-07 23:16+0000\n" -"Last-Translator: Irriep Nala Novram \n" -"Language-Team: Breton (http://www.transifex.com/arctic-games/supertux/language/br/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Irriep Nala Novram , 2017-2018\n" +"Language-Team: Breton (http://app.transifex.com/arctic-games/supertux/language/br/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus2/ca.po b/data/levels/bonus2/ca.po index 8526ef35a0e..971d00ae166 100644 --- a/data/levels/bonus2/ca.po +++ b/data/levels/bonus2/ca.po @@ -11,10 +11,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-19 19:01+0000\n" -"Last-Translator: Ariadna Pascual \n" -"Language-Team: Catalan (http://www.transifex.com/arctic-games/supertux/language/ca/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Ariadna Pascual , 2016\n" +"Language-Team: Catalan (http://app.transifex.com/arctic-games/supertux/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus2/cmn.po b/data/levels/bonus2/cmn.po index e165d0c6b7b..055adc0ff56 100644 --- a/data/levels/bonus2/cmn.po +++ b/data/levels/bonus2/cmn.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-19 22:11+0000\n" -"Last-Translator: Benjamin Leduc \n" -"Language-Team: Chinese (Mandarin) (http://www.transifex.com/arctic-games/supertux/language/cmn/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: 趙惟倫 , 2013\n" +"Language-Team: Chinese (Mandarin) (http://app.transifex.com/arctic-games/supertux/language/cmn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus2/cs.po b/data/levels/bonus2/cs.po index b851a791fbd..79c83b4b373 100644 --- a/data/levels/bonus2/cs.po +++ b/data/levels/bonus2/cs.po @@ -4,7 +4,7 @@ # # Translators: # Hume2 , 2016 -# Jiří Paleček , 2021 +# Jiří Paleček , 2021-2022 # Jiří Paleček , 2015 # fri, 2013 # Hume2 , 2013,2015 @@ -12,10 +12,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-20 12:42+0000\n" -"Last-Translator: Jiří Paleček \n" -"Language-Team: Czech (http://www.transifex.com/arctic-games/supertux/language/cs/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Jiří Paleček , 2021-2022\n" +"Language-Team: Czech (http://app.transifex.com/arctic-games/supertux/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -83,7 +83,7 @@ msgstr "Zamrzlý tunel" #: data/levels/bonus2/level16.stl:3 msgid "Luft Airship" -msgstr "Vzdušná vzducholoď" +msgstr "Vzducholoď v luftu" #: data/levels/bonus2/level17.stl:3 msgid "...Where Everything Is Possible" @@ -115,7 +115,7 @@ msgstr "Cesty vody" #: data/levels/bonus2/level23.stl:3 msgid "All That Glistens Is Not Gold" -msgstr "Všechno co se blyští není zlato" +msgstr "Všechno, co se blyští, není zlato" #: data/levels/bonus2/level24.stl:3 msgid "A Cold Day" @@ -155,7 +155,7 @@ msgstr "Cesta zkrze oblaka" #: data/levels/bonus2/level7.stl:3 msgid "In Flanders Ice Field" -msgstr "Na ledových polích Vlámska" +msgstr "Na Vlámském ledovém poli" #: data/levels/bonus2/level8.stl:3 msgid "Castle in the Sky" diff --git a/data/levels/bonus2/da.po b/data/levels/bonus2/da.po index 65cff407e0a..c3b68328c7f 100644 --- a/data/levels/bonus2/da.po +++ b/data/levels/bonus2/da.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-19 19:01+0000\n" -"Last-Translator: Joe Hansen \n" -"Language-Team: Danish (http://www.transifex.com/arctic-games/supertux/language/da/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Joe Hansen , 2015-2016\n" +"Language-Team: Danish (http://app.transifex.com/arctic-games/supertux/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus2/de.po b/data/levels/bonus2/de.po index cffbc3c8415..80b0110f564 100644 --- a/data/levels/bonus2/de.po +++ b/data/levels/bonus2/de.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Wuzzy , 2015-2016 +# Wuzzy , 2015-2016 # Anonymouse , 2013 # Anonymouse , 2013 # Christoph Sommer , 2013 @@ -13,15 +13,15 @@ # Ondřej Hošek , 2013 # Ondřej Hošek , 2013 # Tobias Markus , 2015-2016 -# Tobias Markus , 2018 +# Tobias Markus , 2018,2021 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2018-11-05 23:45+0100\n" -"PO-Revision-Date: 2019-12-10 15:16+0000\n" -"Last-Translator: Wuzzy \n" -"Language-Team: German (http://www.transifex.com/arctic-games/supertux/language/de/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Tobias Markus , 2018,2021\n" +"Language-Team: German (http://app.transifex.com/arctic-games/supertux/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -175,14 +175,14 @@ msgstr "Tradition" msgid "Bonus Island II" msgstr "Bonus-Insel II" -#: data/levels/bonus2/worldmap.stwm:12 data/levels/bonus2/worldmap.stwm:20 +#: data/levels/bonus2/worldmap.stwm:157 data/levels/bonus2/worldmap.stwm:165 msgid "You found a secret place!" msgstr "Du hast ein Versteck gefunden!" -#: data/levels/bonus2/worldmap.stwm:29 +#: data/levels/bonus2/worldmap.stwm:174 msgid "I wonder where that path leads to..." msgstr "Ich frage mich, wo dieser Weg wohl hinführt …" -#: data/levels/bonus2/worldmap.stwm:36 +#: data/levels/bonus2/worldmap.stwm:181 msgid "Warp home..." -msgstr "Nach Hause teleportieren…" +msgstr "Nach Hause teleportieren …" diff --git a/data/levels/bonus2/el.po b/data/levels/bonus2/el.po index 6a77bde9217..e93aa68afec 100644 --- a/data/levels/bonus2/el.po +++ b/data/levels/bonus2/el.po @@ -4,15 +4,15 @@ # # Translators: # Vangelis Nomikos , 2013-2014 -# Vangelis Skarmoutsos , 2016 +# Vangelis Skarmoutsos (SkarmoutsosV) , 2016 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-19 19:41+0000\n" -"Last-Translator: Vangelis Skarmoutsos \n" -"Language-Team: Greek (http://www.transifex.com/arctic-games/supertux/language/el/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Vangelis Skarmoutsos (SkarmoutsosV) , 2016\n" +"Language-Team: Greek (http://app.transifex.com/arctic-games/supertux/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus2/eo.po b/data/levels/bonus2/eo.po index 06b1e0808f8..e8944ae6c2d 100644 --- a/data/levels/bonus2/eo.po +++ b/data/levels/bonus2/eo.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:07+0000\n" "Last-Translator: tellovishous , 2023\n" "Language-Team: Esperanto (http://app.transifex.com/arctic-games/supertux/language/eo/)\n" diff --git a/data/levels/bonus2/es.po b/data/levels/bonus2/es.po index 0bfa7837349..2e22b9702b2 100644 --- a/data/levels/bonus2/es.po +++ b/data/levels/bonus2/es.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 22:10+0000\n" -"Last-Translator: Swyter \n" -"Language-Team: Spanish (http://www.transifex.com/arctic-games/supertux/language/es/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Swyter , 2021\n" +"Language-Team: Spanish (http://app.transifex.com/arctic-games/supertux/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/bonus2/extro.txt:3 msgid "" diff --git a/data/levels/bonus2/es_AR.po b/data/levels/bonus2/es_AR.po index a1298d43bd7..ed5033dcaf9 100644 --- a/data/levels/bonus2/es_AR.po +++ b/data/levels/bonus2/es_AR.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2018-11-05 23:45+0100\n" -"PO-Revision-Date: 2020-08-28 18:34+0000\n" -"Last-Translator: Alejo Fernandez \n" -"Language-Team: Spanish (Argentina) (http://www.transifex.com/arctic-games/supertux/language/es_AR/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Alejo Fernandez , 2020\n" +"Language-Team: Spanish (Argentina) (http://app.transifex.com/arctic-games/supertux/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_AR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/bonus2/extro.txt:3 msgid "" @@ -165,14 +165,14 @@ msgstr "Tradición" msgid "Bonus Island II" msgstr "La isla del Bonus II" -#: data/levels/bonus2/worldmap.stwm:12 data/levels/bonus2/worldmap.stwm:20 +#: data/levels/bonus2/worldmap.stwm:157 data/levels/bonus2/worldmap.stwm:165 msgid "You found a secret place!" msgstr "¡Encontraste un lugar secreto!" -#: data/levels/bonus2/worldmap.stwm:29 +#: data/levels/bonus2/worldmap.stwm:174 msgid "I wonder where that path leads to..." msgstr "Me pregunto a dónde lleva ese camino..." -#: data/levels/bonus2/worldmap.stwm:36 +#: data/levels/bonus2/worldmap.stwm:181 msgid "Warp home..." msgstr "De regreso a casa..." diff --git a/data/levels/bonus2/et.po b/data/levels/bonus2/et.po index 9cbea80b3de..bb823a674ed 100644 --- a/data/levels/bonus2/et.po +++ b/data/levels/bonus2/et.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:07+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Estonian (http://app.transifex.com/arctic-games/supertux/language/et/)\n" diff --git a/data/levels/bonus2/eu.po b/data/levels/bonus2/eu.po index 07a582a431c..43155752164 100644 --- a/data/levels/bonus2/eu.po +++ b/data/levels/bonus2/eu.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Mielanjel Iraeta , 2018 +# Mielanjel Iraeta , 2018 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2018-11-05 23:45+0100\n" -"PO-Revision-Date: 2018-04-17 15:25+0000\n" -"Last-Translator: Mielanjel Iraeta \n" -"Language-Team: Basque (http://www.transifex.com/arctic-games/supertux/language/eu/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Mielanjel Iraeta , 2018\n" +"Language-Team: Basque (http://app.transifex.com/arctic-games/supertux/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -165,14 +165,14 @@ msgstr "Traizioa" msgid "Bonus Island II" msgstr "Saria Uhartea ll" -#: data/levels/bonus2/worldmap.stwm:12 data/levels/bonus2/worldmap.stwm:20 +#: data/levels/bonus2/worldmap.stwm:157 data/levels/bonus2/worldmap.stwm:165 msgid "You found a secret place!" msgstr "Ezkutuko gune bat aurkitu duzu!" -#: data/levels/bonus2/worldmap.stwm:29 +#: data/levels/bonus2/worldmap.stwm:174 msgid "I wonder where that path leads to..." msgstr "Nora ote darama bide honek..." -#: data/levels/bonus2/worldmap.stwm:36 +#: data/levels/bonus2/worldmap.stwm:181 msgid "Warp home..." msgstr "Etxerako garraioa" diff --git a/data/levels/bonus2/fi.po b/data/levels/bonus2/fi.po index 1cac58b8914..baf3e8e7219 100644 --- a/data/levels/bonus2/fi.po +++ b/data/levels/bonus2/fi.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Jaakoppi Horila , 2016,2018,2020 +# Jaakoppi Horila , 2016,2018,2020,2022-2023 # tingberg , 2013 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2018-11-05 23:45+0100\n" -"PO-Revision-Date: 2020-02-21 09:41+0000\n" -"Last-Translator: Jaakoppi Horila \n" -"Language-Team: Finnish (http://www.transifex.com/arctic-games/supertux/language/fi/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Jaakoppi Horila , 2016,2018,2020,2022-2023\n" +"Language-Team: Finnish (http://app.transifex.com/arctic-games/supertux/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -64,7 +64,7 @@ msgstr "Pitkä luola" #: data/levels/bonus2/level12.stl:3 msgid "Blind To The World" -msgstr "Maailman läpinäkyvyys" +msgstr "Maailma on läpinäkyvä" #: data/levels/bonus2/level13.stl:3 msgid "snarf" @@ -72,7 +72,7 @@ msgstr "snarf" #: data/levels/bonus2/level14.stl:3 msgid "On The Road Again" -msgstr "Tiellä taas" +msgstr "Tien päällä taas" #: data/levels/bonus2/level15.stl:3 msgid "Frozen Tunnel" @@ -104,7 +104,7 @@ msgstr "Propellilinnoitus" #: data/levels/bonus2/level21.stl:3 msgid "Nolok's Party Pit" -msgstr "Nolokin juhlarotko" +msgstr "Nolokin juhlakuoppa" #: data/levels/bonus2/level22.stl:3 msgid "Water Ways" @@ -152,7 +152,7 @@ msgstr "Polku pilvien halki" #: data/levels/bonus2/level7.stl:3 msgid "In Flanders Ice Field" -msgstr "Flanderin Jääkentällä" +msgstr "Flanderin jääkentällä" #: data/levels/bonus2/level8.stl:3 msgid "Castle in the Sky" @@ -166,14 +166,14 @@ msgstr "Perinne" msgid "Bonus Island II" msgstr "Lisäsaari II" -#: data/levels/bonus2/worldmap.stwm:12 data/levels/bonus2/worldmap.stwm:20 +#: data/levels/bonus2/worldmap.stwm:157 data/levels/bonus2/worldmap.stwm:165 msgid "You found a secret place!" msgstr "Löysit salaisen paikan!" -#: data/levels/bonus2/worldmap.stwm:29 +#: data/levels/bonus2/worldmap.stwm:174 msgid "I wonder where that path leads to..." msgstr "Minnehän tämä polku mahtaa johtaa..." -#: data/levels/bonus2/worldmap.stwm:36 +#: data/levels/bonus2/worldmap.stwm:181 msgid "Warp home..." msgstr "Siirry kotiin" diff --git a/data/levels/bonus2/fr.po b/data/levels/bonus2/fr.po index 3dbd3697c9e..c78dbbd48b3 100644 --- a/data/levels/bonus2/fr.po +++ b/data/levels/bonus2/fr.po @@ -12,15 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2018-11-05 23:45+0100\n" -"PO-Revision-Date: 2020-11-05 20:41+0000\n" -"Last-Translator: Antoine \n" -"Language-Team: French (http://www.transifex.com/arctic-games/supertux/language/fr/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Antoine , 2020\n" +"Language-Team: French (http://app.transifex.com/arctic-games/supertux/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/bonus2/extro.txt:3 msgid "" @@ -169,14 +169,14 @@ msgstr "Tradition" msgid "Bonus Island II" msgstr "Île bonus 2" -#: data/levels/bonus2/worldmap.stwm:12 data/levels/bonus2/worldmap.stwm:20 +#: data/levels/bonus2/worldmap.stwm:157 data/levels/bonus2/worldmap.stwm:165 msgid "You found a secret place!" msgstr "Vous avez trouvé une île cachée !" -#: data/levels/bonus2/worldmap.stwm:29 +#: data/levels/bonus2/worldmap.stwm:174 msgid "I wonder where that path leads to..." msgstr "Où mène donc ce chemin…" -#: data/levels/bonus2/worldmap.stwm:36 +#: data/levels/bonus2/worldmap.stwm:181 msgid "Warp home..." msgstr "Retourner au départ..." diff --git a/data/levels/bonus2/fr_CA.po b/data/levels/bonus2/fr_CA.po index 5a14e3b0292..7c2ab7846ec 100644 --- a/data/levels/bonus2/fr_CA.po +++ b/data/levels/bonus2/fr_CA.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:07+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: French (Canada) (http://app.transifex.com/arctic-games/supertux/language/fr_CA/)\n" diff --git a/data/levels/bonus2/gd.po b/data/levels/bonus2/gd.po index 8c51c61fbe3..3665d8fc7cd 100644 --- a/data/levels/bonus2/gd.po +++ b/data/levels/bonus2/gd.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2019-02-16 16:25+0000\n" -"Last-Translator: GunChleoc\n" -"Language-Team: Gaelic, Scottish (http://www.transifex.com/arctic-games/supertux/language/gd/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: GunChleoc, 2016,2019\n" +"Language-Team: Gaelic, Scottish (http://app.transifex.com/arctic-games/supertux/language/gd/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus2/gl.po b/data/levels/bonus2/gl.po index d91159c0495..086e1c1663e 100644 --- a/data/levels/bonus2/gl.po +++ b/data/levels/bonus2/gl.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# xanvieiro , 2019-2020 +# Xan Vieiro , 2019-2020 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2018-11-05 23:45+0100\n" -"PO-Revision-Date: 2020-03-26 19:07+0000\n" -"Last-Translator: xanvieiro \n" -"Language-Team: Galician (http://www.transifex.com/arctic-games/supertux/language/gl/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Xan Vieiro , 2019-2020\n" +"Language-Team: Galician (http://app.transifex.com/arctic-games/supertux/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -165,14 +165,14 @@ msgstr "Tradición" msgid "Bonus Island II" msgstr "Illa de Bono II" -#: data/levels/bonus2/worldmap.stwm:12 data/levels/bonus2/worldmap.stwm:20 +#: data/levels/bonus2/worldmap.stwm:157 data/levels/bonus2/worldmap.stwm:165 msgid "You found a secret place!" msgstr "Atopaches un lugar secreto!" -#: data/levels/bonus2/worldmap.stwm:29 +#: data/levels/bonus2/worldmap.stwm:174 msgid "I wonder where that path leads to..." msgstr "Pregúntome a onde conduce ese camiño..." -#: data/levels/bonus2/worldmap.stwm:36 +#: data/levels/bonus2/worldmap.stwm:181 msgid "Warp home..." msgstr "Salto a casa..." diff --git a/data/levels/bonus2/he.po b/data/levels/bonus2/he.po index 98e0eb4f74c..65aa28a1bc1 100644 --- a/data/levels/bonus2/he.po +++ b/data/levels/bonus2/he.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:07+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Hebrew (http://app.transifex.com/arctic-games/supertux/language/he/)\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: he\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" +"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n" #: data/levels/bonus2/extro.txt:3 msgid "" diff --git a/data/levels/bonus2/hr.po b/data/levels/bonus2/hr.po index fbce52b777e..adcaa17fd11 100644 --- a/data/levels/bonus2/hr.po +++ b/data/levels/bonus2/hr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:07+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Croatian (http://app.transifex.com/arctic-games/supertux/language/hr/)\n" diff --git a/data/levels/bonus2/hu.po b/data/levels/bonus2/hu.po index 54a66c65ccd..2adb8f86c64 100644 --- a/data/levels/bonus2/hu.po +++ b/data/levels/bonus2/hu.po @@ -13,10 +13,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2018-11-05 23:45+0100\n" -"PO-Revision-Date: 2020-05-14 19:31+0000\n" -"Last-Translator: Kristóf Kófiás \n" -"Language-Team: Hungarian (http://www.transifex.com/arctic-games/supertux/language/hu/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Kristóf Kófiás , 2020\n" +"Language-Team: Hungarian (http://app.transifex.com/arctic-games/supertux/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -170,14 +170,14 @@ msgstr "Hagyomány" msgid "Bonus Island II" msgstr "Bónusz-sziget II" -#: data/levels/bonus2/worldmap.stwm:12 data/levels/bonus2/worldmap.stwm:20 +#: data/levels/bonus2/worldmap.stwm:157 data/levels/bonus2/worldmap.stwm:165 msgid "You found a secret place!" msgstr "Találtál egy titkos helyet!" -#: data/levels/bonus2/worldmap.stwm:29 +#: data/levels/bonus2/worldmap.stwm:174 msgid "I wonder where that path leads to..." msgstr "Vajon hova vezet ez az út?" -#: data/levels/bonus2/worldmap.stwm:36 +#: data/levels/bonus2/worldmap.stwm:181 msgid "Warp home..." msgstr "Haza..." diff --git a/data/levels/bonus2/hy.po b/data/levels/bonus2/hy.po index 633e2756ed2..3902437e10b 100644 --- a/data/levels/bonus2/hy.po +++ b/data/levels/bonus2/hy.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:07+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Armenian (http://app.transifex.com/arctic-games/supertux/language/hy/)\n" diff --git a/data/levels/bonus2/id.po b/data/levels/bonus2/id.po index 7f2056eb31f..c52dfd2b938 100644 --- a/data/levels/bonus2/id.po +++ b/data/levels/bonus2/id.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# CRS.ECHO51 , 2017 -# CRS.ECHO51 , 2022 -# CRS.ECHO51 , 2017 +# Chris , 2017 +# Chris , 2022 +# Chris , 2017 # IAN RODRÍGUEZ Lorenzo, 2023 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:07+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Indonesian (http://app.transifex.com/arctic-games/supertux/language/id/)\n" diff --git a/data/levels/bonus2/is.po b/data/levels/bonus2/is.po index cd612a38305..4f50e901bf6 100644 --- a/data/levels/bonus2/is.po +++ b/data/levels/bonus2/is.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:07+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Icelandic (http://app.transifex.com/arctic-games/supertux/language/is/)\n" diff --git a/data/levels/bonus2/it.po b/data/levels/bonus2/it.po index 22ab0bd4ec1..2344fe27f3c 100644 --- a/data/levels/bonus2/it.po +++ b/data/levels/bonus2/it.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-19 19:01+0000\n" -"Last-Translator: Bananasoft \n" -"Language-Team: Italian (http://www.transifex.com/arctic-games/supertux/language/it/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Bananasoft , 2016\n" +"Language-Team: Italian (http://app.transifex.com/arctic-games/supertux/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/bonus2/extro.txt:3 msgid "" diff --git a/data/levels/bonus2/ja.po b/data/levels/bonus2/ja.po index c768faba764..993bdf8eb06 100644 --- a/data/levels/bonus2/ja.po +++ b/data/levels/bonus2/ja.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Ryo Nakano, 2017 +# 515ce455fbf38ec9585626e8d26b6324_7a9a6ef, 2017 # Ryo Nakano, 2019 # Sanshiro sumita, 2015-2016 # Sanshiro sumita, 2015 @@ -11,10 +11,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2018-11-05 23:45+0100\n" -"PO-Revision-Date: 2019-11-24 10:43+0000\n" -"Last-Translator: Ryo Nakano\n" -"Language-Team: Japanese (http://www.transifex.com/arctic-games/supertux/language/ja/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Ryo Nakano, 2019\n" +"Language-Team: Japanese (http://app.transifex.com/arctic-games/supertux/language/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -168,14 +168,14 @@ msgstr "たからもの" msgid "Bonus Island II" msgstr "ボーナスアイランド 2" -#: data/levels/bonus2/worldmap.stwm:12 data/levels/bonus2/worldmap.stwm:20 +#: data/levels/bonus2/worldmap.stwm:157 data/levels/bonus2/worldmap.stwm:165 msgid "You found a secret place!" msgstr "秘密の場所を見つけました!" -#: data/levels/bonus2/worldmap.stwm:29 +#: data/levels/bonus2/worldmap.stwm:174 msgid "I wonder where that path leads to..." msgstr "その道は、どこにつながるのでしょうか..." -#: data/levels/bonus2/worldmap.stwm:36 +#: data/levels/bonus2/worldmap.stwm:181 msgid "Warp home..." msgstr "最初にいた場所にワープします。" diff --git a/data/levels/bonus2/ko.po b/data/levels/bonus2/ko.po index ae6ddde2b42..d5f73c413cc 100644 --- a/data/levels/bonus2/ko.po +++ b/data/levels/bonus2/ko.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: +# Junghee Lee , 2022 # Myeongjin , 2016-2017 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-20 13:21+0000\n" -"Last-Translator: Myeongjin \n" -"Language-Team: Korean (http://www.transifex.com/arctic-games/supertux/language/ko/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Junghee Lee , 2022\n" +"Language-Team: Korean (http://app.transifex.com/arctic-games/supertux/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -63,7 +64,7 @@ msgstr "긴 동굴" #: data/levels/bonus2/level12.stl:3 msgid "Blind To The World" -msgstr "세계에 눈이 멀다" +msgstr "세계를 보지 못하다" #: data/levels/bonus2/level13.stl:3 msgid "snarf" @@ -167,7 +168,7 @@ msgstr "보너스 섬 II" #: data/levels/bonus2/worldmap.stwm:157 data/levels/bonus2/worldmap.stwm:165 msgid "You found a secret place!" -msgstr "숨겨진 장소를 찾았습니다!" +msgstr "비밀공간 장소를 찾았어요!" #: data/levels/bonus2/worldmap.stwm:174 msgid "I wonder where that path leads to..." diff --git a/data/levels/bonus2/la.po b/data/levels/bonus2/la.po index 94ed30c5be7..d75873cc146 100644 --- a/data/levels/bonus2/la.po +++ b/data/levels/bonus2/la.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2018-12-28 20:21+0000\n" -"Last-Translator: Alisa P \n" -"Language-Team: Latin (http://www.transifex.com/arctic-games/supertux/language/la/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Alisa P , 2016,2018\n" +"Language-Team: Latin (http://app.transifex.com/arctic-games/supertux/language/la/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus2/lt.po b/data/levels/bonus2/lt.po index d53652176aa..9540188d2bb 100644 --- a/data/levels/bonus2/lt.po +++ b/data/levels/bonus2/lt.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-11-05 23:07+0000\n" -"Last-Translator: Tom Urisk\n" -"Language-Team: Lithuanian (http://www.transifex.com/arctic-games/supertux/language/lt/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Tom Urisk, 2021\n" +"Language-Team: Lithuanian (http://app.transifex.com/arctic-games/supertux/language/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus2/messages.pot b/data/levels/bonus2/messages.pot index b9b0984eb8b..311e1931dfd 100644 --- a/data/levels/bonus2/messages.pot +++ b/data/levels/bonus2/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: SuperTux v0.6.2-963-gb4a1b149f\n" +"Project-Id-Version: SuperTux v0.6.3-1080-g2e08c1b7f\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/data/levels/bonus2/ms_MY.po b/data/levels/bonus2/ms_MY.po index 0baf8947fe3..6b210aa70fb 100644 --- a/data/levels/bonus2/ms_MY.po +++ b/data/levels/bonus2/ms_MY.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-06-15 03:22+0000\n" -"Last-Translator: abuyop \n" -"Language-Team: Malay (Malaysia) (http://www.transifex.com/arctic-games/supertux/language/ms_MY/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: abuyop , 2021\n" +"Language-Team: Malay (Malaysia) (http://app.transifex.com/arctic-games/supertux/language/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus2/nb.po b/data/levels/bonus2/nb.po index d4dcb1b9865..72a7e35134e 100644 --- a/data/levels/bonus2/nb.po +++ b/data/levels/bonus2/nb.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-19 19:01+0000\n" -"Last-Translator: Allan Nordhøy \n" -"Language-Team: Norwegian Bokmål (http://www.transifex.com/arctic-games/supertux/language/nb/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Allan Nordhøy , 2016\n" +"Language-Team: Norwegian Bokmål (http://app.transifex.com/arctic-games/supertux/language/nb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus2/nds.po b/data/levels/bonus2/nds.po index 46aea4feb4b..7958d7e9757 100644 --- a/data/levels/bonus2/nds.po +++ b/data/levels/bonus2/nds.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2018-11-05 23:45+0100\n" -"PO-Revision-Date: 2018-11-16 14:37+0000\n" -"Last-Translator: Benedikt Straub \n" -"Language-Team: Low German (http://www.transifex.com/arctic-games/supertux/language/nds/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Benedikt Straub , 2018\n" +"Language-Team: Low German (http://app.transifex.com/arctic-games/supertux/language/nds/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -165,14 +165,14 @@ msgstr "Dat was alltieden so" msgid "Bonus Island II" msgstr "Feine Insel II" -#: data/levels/bonus2/worldmap.stwm:12 data/levels/bonus2/worldmap.stwm:20 +#: data/levels/bonus2/worldmap.stwm:157 data/levels/bonus2/worldmap.stwm:165 msgid "You found a secret place!" msgstr "Du hest een Versteek funnen!" -#: data/levels/bonus2/worldmap.stwm:29 +#: data/levels/bonus2/worldmap.stwm:174 msgid "I wonder where that path leads to..." msgstr "Waar deeser Padd wull henföhrt…" -#: data/levels/bonus2/worldmap.stwm:36 +#: data/levels/bonus2/worldmap.stwm:181 msgid "Warp home..." msgstr "Na Huus gahn…" diff --git a/data/levels/bonus2/ne.po b/data/levels/bonus2/ne.po index 81dc92f9257..86f56bc6040 100644 --- a/data/levels/bonus2/ne.po +++ b/data/levels/bonus2/ne.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-23 19:08+0000\n" -"Last-Translator: Benjamin Leduc \n" -"Language-Team: Nepali (http://www.transifex.com/arctic-games/supertux/language/ne/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Bansaj Pradhan , 2013\n" +"Language-Team: Nepali (http://app.transifex.com/arctic-games/supertux/language/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus2/nl.po b/data/levels/bonus2/nl.po index 41185b8999c..4088d16a419 100644 --- a/data/levels/bonus2/nl.po +++ b/data/levels/bonus2/nl.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Heimen Stoffels , 2015-2016,2019 +# Heimen Stoffels , 2015-2016,2019 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2018-11-05 23:45+0100\n" -"PO-Revision-Date: 2019-11-28 20:12+0000\n" -"Last-Translator: Heimen Stoffels \n" -"Language-Team: Dutch (http://www.transifex.com/arctic-games/supertux/language/nl/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Heimen Stoffels , 2015-2016,2019\n" +"Language-Team: Dutch (http://app.transifex.com/arctic-games/supertux/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -165,14 +165,14 @@ msgstr "Traditie" msgid "Bonus Island II" msgstr "Bonuseiland II" -#: data/levels/bonus2/worldmap.stwm:12 data/levels/bonus2/worldmap.stwm:20 +#: data/levels/bonus2/worldmap.stwm:157 data/levels/bonus2/worldmap.stwm:165 msgid "You found a secret place!" msgstr "Je hebt een geheime plek gevonden!" -#: data/levels/bonus2/worldmap.stwm:29 +#: data/levels/bonus2/worldmap.stwm:174 msgid "I wonder where that path leads to..." msgstr "Ik ben benieuwd waar dit pad heen leidt..." -#: data/levels/bonus2/worldmap.stwm:36 +#: data/levels/bonus2/worldmap.stwm:181 msgid "Warp home..." msgstr "Teleporteer naar huis..." diff --git a/data/levels/bonus2/nn.po b/data/levels/bonus2/nn.po index fa5027bddc4..6f0982dad0e 100644 --- a/data/levels/bonus2/nn.po +++ b/data/levels/bonus2/nn.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2018-11-05 23:45+0100\n" -"PO-Revision-Date: 2020-04-19 10:12+0000\n" -"Last-Translator: Karl Ove Hufthammer \n" -"Language-Team: Norwegian Nynorsk (http://www.transifex.com/arctic-games/supertux/language/nn/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Karl Ove Hufthammer , 2007,2013,2015-2016,2018-2020\n" +"Language-Team: Norwegian Nynorsk (http://app.transifex.com/arctic-games/supertux/language/nn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -165,14 +165,14 @@ msgstr "Tradisjon" msgid "Bonus Island II" msgstr "Bonusøy II" -#: data/levels/bonus2/worldmap.stwm:12 data/levels/bonus2/worldmap.stwm:20 +#: data/levels/bonus2/worldmap.stwm:157 data/levels/bonus2/worldmap.stwm:165 msgid "You found a secret place!" msgstr "Du fann ein hemmeleg plass!" -#: data/levels/bonus2/worldmap.stwm:29 +#: data/levels/bonus2/worldmap.stwm:174 msgid "I wonder where that path leads to..." msgstr "Eg undrast kor denne stien fører …" -#: data/levels/bonus2/worldmap.stwm:36 +#: data/levels/bonus2/worldmap.stwm:181 msgid "Warp home..." msgstr "Teleporter heim …" diff --git a/data/levels/bonus2/pl.po b/data/levels/bonus2/pl.po index b5f4a90e579..4ffb6ec7b02 100644 --- a/data/levels/bonus2/pl.po +++ b/data/levels/bonus2/pl.po @@ -11,10 +11,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-19 19:01+0000\n" -"Last-Translator: Krzysztof Szeląg\n" -"Language-Team: Polish (http://www.transifex.com/arctic-games/supertux/language/pl/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Krzysztof Szeląg, 2015-2016\n" +"Language-Team: Polish (http://app.transifex.com/arctic-games/supertux/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus2/pt.po b/data/levels/bonus2/pt.po index e438a2f068b..9e7fddbc9ff 100644 --- a/data/levels/bonus2/pt.po +++ b/data/levels/bonus2/pt.po @@ -11,15 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-19 19:01+0000\n" -"Last-Translator: Rui \n" -"Language-Team: Portuguese (http://www.transifex.com/arctic-games/supertux/language/pt/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Rui , 2016\n" +"Language-Team: Portuguese (http://app.transifex.com/arctic-games/supertux/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/bonus2/extro.txt:3 msgid "" diff --git a/data/levels/bonus2/pt_BR.po b/data/levels/bonus2/pt_BR.po index 1047ce8de5d..6be5a38ca2d 100644 --- a/data/levels/bonus2/pt_BR.po +++ b/data/levels/bonus2/pt_BR.po @@ -14,15 +14,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-19 19:01+0000\n" -"Last-Translator: Rui \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/arctic-games/supertux/language/pt_BR/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Rui , 2016\n" +"Language-Team: Portuguese (Brazil) (http://app.transifex.com/arctic-games/supertux/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/bonus2/extro.txt:3 msgid "" diff --git a/data/levels/bonus2/ro.po b/data/levels/bonus2/ro.po index 06b140c7553..b83de69845d 100644 --- a/data/levels/bonus2/ro.po +++ b/data/levels/bonus2/ro.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-23 19:08+0000\n" -"Last-Translator: Nicolae Crefelean\n" -"Language-Team: Romanian (http://www.transifex.com/arctic-games/supertux/language/ro/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Nicolae Crefelean, 2015-2016\n" +"Language-Team: Romanian (http://app.transifex.com/arctic-games/supertux/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus2/ru.po b/data/levels/bonus2/ru.po index 3c100aaacc1..7697f5ce8fc 100644 --- a/data/levels/bonus2/ru.po +++ b/data/levels/bonus2/ru.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Andrei Stepanov , 2019,2021 +# Andrei Stepanov, 2019,2021 # Artem Krosheninnikov , 2013 # Dmitry Anikonov , 2016 # Dmitry , 2013 @@ -12,10 +12,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 23:03+0000\n" -"Last-Translator: Andrei Stepanov \n" -"Language-Team: Russian (http://www.transifex.com/arctic-games/supertux/language/ru/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Andrei Stepanov, 2019,2021\n" +"Language-Team: Russian (http://app.transifex.com/arctic-games/supertux/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus2/sk.po b/data/levels/bonus2/sk.po index c8bb8c4c5a9..8625ca8b0b7 100644 --- a/data/levels/bonus2/sk.po +++ b/data/levels/bonus2/sk.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: +# IAN RODRÍGUEZ Lorenzo, 2022 # c79a840bffc1621596a73d9f7d995b66_5f97bea <821296eb068acbf38f8fe02d322f4248_155187>, 2014 # MiroslavR , 2016 # Roman 'Kaktuxista' Benji , 2014 @@ -10,10 +11,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-20 00:37+0000\n" -"Last-Translator: Benjamin Leduc \n" -"Language-Team: Slovak (http://www.transifex.com/arctic-games/supertux/language/sk/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" +"Language-Team: Slovak (http://app.transifex.com/arctic-games/supertux/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -49,7 +50,7 @@ msgid "" "\n" "\n" " The end of the ice age is near..." -msgstr "" +msgstr "-Gratulujem!\n\n#Úspešne ste to prešli\n#Bonusový ostrov II\n\n\ns úrovňami prispeli\nKevin\nJason Kleinemas\nDenilson\nTobe Deprez\nVeľký C\nThomas Nilsen\nTorfi Gunnarsson\nDaniel Alston\nNilrok\nCorlin Heydman\n\n\n#Ešte raz by sme sa chceli poďakovať\n#všetci, ktorí k tomu prispeli\n#prepustenie. Dúfame, že sa vám páčilo\n#to, a že to spôsobilo čakanie\n#Míľnik 3 o niečo jednoduchšie. :-)\n\n\nKoniec doby ľadovej sa blíži..." #: data/levels/bonus2/level1.stl:3 msgid "Mario's Supposed to Deal With This..." diff --git a/data/levels/bonus2/sl.po b/data/levels/bonus2/sl.po index b7f2af76abf..6a57674fe39 100644 --- a/data/levels/bonus2/sl.po +++ b/data/levels/bonus2/sl.po @@ -4,16 +4,16 @@ # # Translators: # , 2006 -# Gorazd Gorup , 2016 -# Gorazd Gorup , 2019,2022 +# Gorzy Gorup , 2016 +# Gorzy Gorup , 2019,2022 # Marko Burjek , 2006-2007 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:07+0000\n" -"Last-Translator: Gorazd Gorup , 2019,2022\n" +"Last-Translator: Gorzy Gorup , 2019,2022\n" "Language-Team: Slovenian (http://app.transifex.com/arctic-games/supertux/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/data/levels/bonus2/sq.po b/data/levels/bonus2/sq.po index 882288d0083..f0ffa470a48 100644 --- a/data/levels/bonus2/sq.po +++ b/data/levels/bonus2/sq.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:07+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Albanian (http://app.transifex.com/arctic-games/supertux/language/sq/)\n" diff --git a/data/levels/bonus2/sr.po b/data/levels/bonus2/sr.po index 404d6bfa085..98b68e4e8f2 100644 --- a/data/levels/bonus2/sr.po +++ b/data/levels/bonus2/sr.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-23 20:37+0000\n" -"Last-Translator: Slobodan Simić \n" -"Language-Team: Serbian (http://www.transifex.com/arctic-games/supertux/language/sr/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Slobodan Simić , 2016\n" +"Language-Team: Serbian (http://app.transifex.com/arctic-games/supertux/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus2/sv.po b/data/levels/bonus2/sv.po index 770b4a638e6..1a8db001e47 100644 --- a/data/levels/bonus2/sv.po +++ b/data/levels/bonus2/sv.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-23 11:06+0000\n" -"Last-Translator: Anders Jonsson \n" -"Language-Team: Swedish (http://www.transifex.com/arctic-games/supertux/language/sv/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Anders Jonsson , 2017\n" +"Language-Team: Swedish (http://app.transifex.com/arctic-games/supertux/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus2/te.po b/data/levels/bonus2/te.po index c379b7fe2ed..0ecc54412cc 100644 --- a/data/levels/bonus2/te.po +++ b/data/levels/bonus2/te.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Jagadeeshvarma, 2021 +# Nanowarrior, 2021 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-16 11:09+0000\n" -"Last-Translator: Jagadeeshvarma\n" -"Language-Team: Telugu (http://www.transifex.com/arctic-games/supertux/language/te/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Nanowarrior, 2021\n" +"Language-Team: Telugu (http://app.transifex.com/arctic-games/supertux/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus2/tr.po b/data/levels/bonus2/tr.po index 8a8937df455..f37347ea56e 100644 --- a/data/levels/bonus2/tr.po +++ b/data/levels/bonus2/tr.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-19 19:01+0000\n" -"Last-Translator: Emre ÖZKARTAL \n" -"Language-Team: Turkish (http://www.transifex.com/arctic-games/supertux/language/tr/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Emre ÖZKARTAL , 2016\n" +"Language-Team: Turkish (http://app.transifex.com/arctic-games/supertux/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus2/tt.po b/data/levels/bonus2/tt.po index 1a3ad232bb4..90f3b59f09e 100644 --- a/data/levels/bonus2/tt.po +++ b/data/levels/bonus2/tt.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-22 19:02+0000\n" -"Last-Translator: Булат Ибраһим \n" -"Language-Team: Tatar (http://www.transifex.com/arctic-games/supertux/language/tt/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Булат Ибраһим , 2016\n" +"Language-Team: Tatar (http://app.transifex.com/arctic-games/supertux/language/tt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus2/uk.po b/data/levels/bonus2/uk.po index 4c21e857dec..542ee25daeb 100644 --- a/data/levels/bonus2/uk.po +++ b/data/levels/bonus2/uk.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:07+0000\n" "Last-Translator: Asemif official, 2023\n" "Language-Team: Ukrainian (http://app.transifex.com/arctic-games/supertux/language/uk/)\n" diff --git a/data/levels/bonus2/uz.po b/data/levels/bonus2/uz.po index dc54f434130..cef82b2f99c 100644 --- a/data/levels/bonus2/uz.po +++ b/data/levels/bonus2/uz.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:07+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Uzbek (http://app.transifex.com/arctic-games/supertux/language/uz/)\n" diff --git a/data/levels/bonus2/zh_CN.po b/data/levels/bonus2/zh_CN.po index 0b9db3ee39b..484ebfd03b0 100644 --- a/data/levels/bonus2/zh_CN.po +++ b/data/levels/bonus2/zh_CN.po @@ -3,17 +3,19 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: +# CodingJellyfish , 2018 # Liu Sizhuang , 2008 +# Wenbin Lv , 2024 # CodingJellyfish , 2018 # 玉堂白鹤 , 2018 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2018-12-25 14:01+0000\n" -"Last-Translator: CodingJellyfish \n" -"Language-Team: Chinese (China) (http://www.transifex.com/arctic-games/supertux/language/zh_CN/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: Wenbin Lv , 2024\n" +"Language-Team: Chinese (China) (http://app.transifex.com/arctic-games/supertux/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -49,51 +51,51 @@ msgid "" "\n" "\n" " The end of the ice age is near..." -msgstr "-祝贺你!\n\n#你已经成功地通过了额外II岛!\n\n\n\t关卡贡献者:\n\tKevin\n\tJason Kleinemas\n\tDenilson\n\tTobe Deprez\n\tBig C\n\tThomas Nilsen\n\tTorfi Gunnarsson\n\tDaniel Alston\n\tNilrok\n\tCorlin Heydman\n\n\n#再一次,我们要感谢每一个贡献者,\n#是你们使milestone 3的等待不再乏味:-)\n#我们希望你玩得愉快.\n\n 冰川世纪就要结束了..." +msgstr "-祝贺你!\n\n#你已经成功地通过了\n#额外 II 岛\n\n\n\t关卡贡献者:\n\tKevin\n\tJason Kleinemas\n\tDenilson\n\tTobe Deprez\n\tBig C\n\tThomas Nilsen\n\tTorfi Gunnarsson\n\tDaniel Alston\n\tNilrok\n\tCorlin Heydman\n\n\n#再一次,我们要感谢所有为此\n#版本的发布做出了贡献的人们。\n#我们希望你能喜欢!但愿这些\n#关卡让你等待 Milestone 3 的\n#过程稍微轻松了那么一点 :-)\n\n 冰河时代就要结束了……" #: data/levels/bonus2/level1.stl:3 msgid "Mario's Supposed to Deal With This..." -msgstr "Mario应该可以通过..." +msgstr "马力欧应该要处理这个的……" #: data/levels/bonus2/level10.stl:3 msgid "fjerd" -msgstr "倒数第四关" +msgstr "峡湾" #: data/levels/bonus2/level11.stl:3 msgid "The long cave" -msgstr "长长的山洞" +msgstr "长长的洞穴" #: data/levels/bonus2/level12.stl:3 msgid "Blind To The World" -msgstr "世界盲" +msgstr "一叶障目" #: data/levels/bonus2/level13.stl:3 msgid "snarf" -msgstr "偷窃" +msgstr "狼吞虎咽" #: data/levels/bonus2/level14.stl:3 msgid "On The Road Again" -msgstr "又上路了" +msgstr "再次上路" #: data/levels/bonus2/level15.stl:3 msgid "Frozen Tunnel" -msgstr "冰冻的隧道" +msgstr "冰封隧道" #: data/levels/bonus2/level16.stl:3 msgid "Luft Airship" -msgstr "Luft飞船" +msgstr "Luft 飞艇" #: data/levels/bonus2/level17.stl:3 msgid "...Where Everything Is Possible" -msgstr "...一切皆有可能" +msgstr "……一切皆有可能" #: data/levels/bonus2/level18.stl:3 msgid "Insert Original Title Here" -msgstr "在这里输入标题" +msgstr "在此输入原标题" #: data/levels/bonus2/level19.stl:3 msgid "End Of The Ice Age" -msgstr "冰川世纪结束了" +msgstr "冰河时代的终结" #: data/levels/bonus2/level2.stl:3 msgid "Think Fast, or Die" @@ -101,11 +103,11 @@ msgstr "死亡倒计时" #: data/levels/bonus2/level20.stl:3 msgid "Fan Fortress" -msgstr "城堡卫兵" +msgstr "风扇堡垒" #: data/levels/bonus2/level21.stl:3 msgid "Nolok's Party Pit" -msgstr "Nolok的派对之洞" +msgstr "Nolok 的派对之洞" #: data/levels/bonus2/level22.stl:3 msgid "Water Ways" @@ -113,7 +115,7 @@ msgstr "水路" #: data/levels/bonus2/level23.stl:3 msgid "All That Glistens Is Not Gold" -msgstr "闪光的不都是金子" +msgstr "闪闪发光的不一定都是金子" #: data/levels/bonus2/level24.stl:3 msgid "A Cold Day" @@ -125,7 +127,7 @@ msgstr "强大的重力" #: data/levels/bonus2/level26.stl:3 msgid "Firestorm" -msgstr "大爆发" +msgstr "烈焰风暴" #: data/levels/bonus2/level27.stl:3 msgid "A Long Journey" @@ -133,7 +135,7 @@ msgstr "漫长的旅途" #: data/levels/bonus2/level28.stl:3 msgid "Life Support" -msgstr "维持生命" +msgstr "生命维持装置" #: data/levels/bonus2/level3.stl:3 msgid "Cliff Jumping" @@ -145,7 +147,7 @@ msgstr "进入洞穴" #: data/levels/bonus2/level5.stl:3 msgid "You have 1 minute" -msgstr "只有1分钟" +msgstr "只有 1 分钟" #: data/levels/bonus2/level6.stl:3 msgid "A Path Trough The Clouds" @@ -153,7 +155,7 @@ msgstr "云中之路" #: data/levels/bonus2/level7.stl:3 msgid "In Flanders Ice Field" -msgstr "在Flanders冰原上" +msgstr "在 Flanders 冰原上" #: data/levels/bonus2/level8.stl:3 msgid "Castle in the Sky" @@ -165,16 +167,16 @@ msgstr "传统" #: data/levels/bonus2/worldmap.stwm:3 msgid "Bonus Island II" -msgstr "额外II岛" +msgstr "额外 II 岛" #: data/levels/bonus2/worldmap.stwm:157 data/levels/bonus2/worldmap.stwm:165 msgid "You found a secret place!" -msgstr "你找到了一个秘密区域!" +msgstr "你找到了一个秘密区域!" #: data/levels/bonus2/worldmap.stwm:174 msgid "I wonder where that path leads to..." -msgstr "这条路通向哪里呢..." +msgstr "这条路通向哪里呢……" #: data/levels/bonus2/worldmap.stwm:181 msgid "Warp home..." -msgstr "回家..." +msgstr "回家……" diff --git a/data/levels/bonus2/zh_TW.po b/data/levels/bonus2/zh_TW.po index b59249b86be..2b0fadea705 100644 --- a/data/levels/bonus2/zh_TW.po +++ b/data/levels/bonus2/zh_TW.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2018-11-05 23:45+0100\n" -"PO-Revision-Date: 2019-11-27 06:13+0000\n" -"Last-Translator: 黃柏諺 \n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/arctic-games/supertux/language/zh_TW/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:07+0000\n" +"Last-Translator: 黃柏諺 , 2019\n" +"Language-Team: Chinese (Taiwan) (http://app.transifex.com/arctic-games/supertux/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -165,14 +165,14 @@ msgstr "傳統" msgid "Bonus Island II" msgstr "紅利島 II" -#: data/levels/bonus2/worldmap.stwm:12 data/levels/bonus2/worldmap.stwm:20 +#: data/levels/bonus2/worldmap.stwm:157 data/levels/bonus2/worldmap.stwm:165 msgid "You found a secret place!" msgstr "您找到一個秘密地方!" -#: data/levels/bonus2/worldmap.stwm:29 +#: data/levels/bonus2/worldmap.stwm:174 msgid "I wonder where that path leads to..." msgstr "我想知道那條路通到哪..." -#: data/levels/bonus2/worldmap.stwm:36 +#: data/levels/bonus2/worldmap.stwm:181 msgid "Warp home..." msgstr "回家..." diff --git a/data/levels/bonus3/af_ZA.po b/data/levels/bonus3/af_ZA.po index 4270c64e435..6a6f0ca1ad7 100644 --- a/data/levels/bonus3/af_ZA.po +++ b/data/levels/bonus3/af_ZA.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Afrikaans (South Africa) (http://www.transifex.com/arctic-games/supertux/language/af_ZA/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: Martin van Zijl , 2019-2020\n" +"Language-Team: Afrikaans (South Africa) (http://app.transifex.com/arctic-games/supertux/language/af_ZA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -26,7 +26,7 @@ msgstr "" msgid "Global Warming" msgstr "Wêreldwye Opwarming" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Een Nag in die Lug" @@ -78,7 +78,7 @@ msgstr "#Goed gedoen! Jy het die rooi lantern behou! Dit was eintlik nie nodig n msgid "Coconut Fortress" msgstr "Kokosneut Fort" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Kristal Sonsondergang" @@ -139,7 +139,7 @@ msgstr "Blombonus" msgid "After the Glaciers" msgstr "Na die Gletsers" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Hang Van die Dak Af" @@ -215,7 +215,7 @@ msgstr "" msgid "Three Frosty Icebergs" msgstr "Drie Koue Ysberge" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Onder die Ys" diff --git a/data/levels/bonus3/ar.po b/data/levels/bonus3/ar.po index 9d82f88040c..5be232781c9 100644 --- a/data/levels/bonus3/ar.po +++ b/data/levels/bonus3/ar.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:08+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Arabic (http://app.transifex.com/arctic-games/supertux/language/ar/)\n" @@ -27,7 +27,7 @@ msgstr "المستوى المعروف رسميًا باسم \"-89.2 درجة\"" msgid "Global Warming" msgstr "الاحتباس الحراري" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "ليلة واحدة في السماء" @@ -79,7 +79,7 @@ msgstr "#أحسنت! لقد احتفظت بالفانوس الأحمر! لم ت msgid "Coconut Fortress" msgstr "قلعة جوز الهند" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "كريستال صن سيت" @@ -140,7 +140,7 @@ msgstr "مكافأة الزهور" msgid "After the Glaciers" msgstr "بعد الأنهار الجليدية" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "يتدلى من السطح" @@ -216,7 +216,7 @@ msgstr "تلة ثلجية" msgid "Three Frosty Icebergs" msgstr "ثلاثة جبال جليدية فاترة" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "تحت الثلج" diff --git a/data/levels/bonus3/az.po b/data/levels/bonus3/az.po index 28dc902b4de..3b02bd8527f 100644 --- a/data/levels/bonus3/az.po +++ b/data/levels/bonus3/az.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:08+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Azerbaijani (http://app.transifex.com/arctic-games/supertux/language/az/)\n" @@ -26,7 +26,7 @@ msgstr "Əvvəllər \"-89,2 dərəcə\" kimi tanınan səviyyə" msgid "Global Warming" msgstr "Qlobal istiləşmə" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Göydə Bir Gecə" @@ -78,7 +78,7 @@ msgstr "#Yaxşı iş! Qırmızı fənəri saxladın! Ehtiyacınız yox idi, anca msgid "Coconut Fortress" msgstr "Hindistancevizi qalası" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Kristal Gün batımı" @@ -139,7 +139,7 @@ msgstr "Çiçək Bonusu" msgid "After the Glaciers" msgstr "Buzlaqlardan sonra" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Damdan Asılır" @@ -215,7 +215,7 @@ msgstr "Qarlı bir təpə" msgid "Three Frosty Icebergs" msgstr "Üç Şaxtalı Aysberq" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Buz altında" diff --git a/data/levels/bonus3/be.po b/data/levels/bonus3/be.po index 0448088221e..61683f1dc73 100644 --- a/data/levels/bonus3/be.po +++ b/data/levels/bonus3/be.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Belarusian (http://www.transifex.com/arctic-games/supertux/language/be/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: se luxxy <70luxxy@gmail.com>, 2018\n" +"Language-Team: Belarusian (http://app.transifex.com/arctic-games/supertux/language/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -26,7 +26,7 @@ msgstr "" msgid "Global Warming" msgstr "Глабальнае пацяпленне" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Адна ноч у небе" @@ -78,7 +78,7 @@ msgstr "Добрая праца! Ты ўтрымаў чырвоны ліхтар msgid "Coconut Fortress" msgstr "Какосавая крэпасць" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Крыштальны заход" @@ -139,7 +139,7 @@ msgstr "Кветкавы бонус" msgid "After the Glaciers" msgstr "Апасля леднікоў" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Звісанні з даху" @@ -215,7 +215,7 @@ msgstr "Снежны пагорак" msgid "Three Frosty Icebergs" msgstr "" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Пад ільдом" diff --git a/data/levels/bonus3/bg.po b/data/levels/bonus3/bg.po index 4a47e7a32dd..acca2d87de6 100644 --- a/data/levels/bonus3/bg.po +++ b/data/levels/bonus3/bg.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 07:19+0000\n" -"Last-Translator: Любомир Василев\n" -"Language-Team: Bulgarian (http://www.transifex.com/arctic-games/supertux/language/bg/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: Любомир Василев, 2021\n" +"Language-Team: Bulgarian (http://app.transifex.com/arctic-games/supertux/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -28,7 +28,7 @@ msgstr "Нивото, познато преди като „-89,2 градуса msgid "Global Warming" msgstr "Глобално затопляне" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Една нощ в небето" @@ -80,7 +80,7 @@ msgstr "#Добра работа! Ти задържа червения фене msgid "Coconut Fortress" msgstr "Кокосовата крепост" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Кристален залез" @@ -141,7 +141,7 @@ msgstr "Цветно допълнение" msgid "After the Glaciers" msgstr "След ледниците" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Висене от покрива" @@ -217,7 +217,7 @@ msgstr "Снежен хълм" msgid "Three Frosty Icebergs" msgstr "Три смразяващи айсберга" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Под леда" diff --git a/data/levels/bonus3/br.po b/data/levels/bonus3/br.po index ee965a86c5a..69339ed2b14 100644 --- a/data/levels/bonus3/br.po +++ b/data/levels/bonus3/br.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Irriep Nala Novram , 2017-2018,2020 +# Irriep Nala Novram , 2017-2018,2020 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Breton (http://www.transifex.com/arctic-games/supertux/language/br/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: Irriep Nala Novram , 2017-2018,2020\n" +"Language-Team: Breton (http://app.transifex.com/arctic-games/supertux/language/br/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -26,7 +26,7 @@ msgstr "" msgid "Global Warming" msgstr "Tommadur an Hin Hollek" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Un nozvezh en oabl" @@ -78,7 +78,7 @@ msgstr "#Labour vat! Tapet ho peus al lutig ruz! N'ho poa ket ezhomm anezhañ, m msgid "Coconut Fortress" msgstr "Kreñvlec'h ar c'hraoñ-koko" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Ar c'huzh-heol kristalin" @@ -139,7 +139,7 @@ msgstr "Bleuniennoù bonus" msgid "After the Glaciers" msgstr "Goude ar skornegoù" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Staget d'ar plafoñs" @@ -215,7 +215,7 @@ msgstr "Un duchenn leun a erc'h" msgid "Three Frosty Icebergs" msgstr "Tri skorngrec'h skornet" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Dindan ar skorn" diff --git a/data/levels/bonus3/ca.po b/data/levels/bonus3/ca.po index 619710a9a8a..b4252c2332e 100644 --- a/data/levels/bonus3/ca.po +++ b/data/levels/bonus3/ca.po @@ -5,16 +5,17 @@ # Translators: # Ariadna Pascual , 2016 # Catalanoic , 2016 +# IAN RODRÍGUEZ Lorenzo, 2022 # 76352799d6904fac47e3a0fa3ed5fd59_334826e , 2015 # Yael Codesal, 2016 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Catalan (http://www.transifex.com/arctic-games/supertux/language/ca/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" +"Language-Team: Catalan (http://app.transifex.com/arctic-games/supertux/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -23,13 +24,13 @@ msgstr "" #: data/levels/bonus3/-89-2_degrees.stl:3 msgid "The Level Formely Known As \"-89,2 Degrees\"" -msgstr "" +msgstr "El nivell abans conegut com \"-89,2 graus\"" #: data/levels/bonus3/Global_Warming.stl:3 msgid "Global Warming" msgstr "Escalfament global" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Una nit en el cel" @@ -43,7 +44,7 @@ msgstr "Un altre dia fred" #: data/levels/bonus3/antarctic_rain.stl:3 msgid "Forest Rain (aka \"Antarctic Rain\")" -msgstr "" +msgstr "Pluja forestal (també conegut com \"pluja antàrtica\")" #: data/levels/bonus3/but_no_one_can_stop_it.stl:3 msgid "...but no one can stop it..." @@ -81,7 +82,7 @@ msgstr "#Ben fet! Has mantingut la llanterna vermella! No era necessari però, c msgid "Coconut Fortress" msgstr "La fortalesa del coco" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Posta de sol brillant" @@ -132,7 +133,7 @@ msgstr "Entrant al castell" #: data/levels/bonus3/entering_castle.stl:60 msgid "#Sorry, nothing to see here! Use the rope to get out!" -msgstr "" +msgstr "#Ho sento, no hi ha res a veure! Fes servir la corda per sortir!" #: data/levels/bonus3/flowers.stl:3 msgid "Flower Bonus" @@ -142,7 +143,7 @@ msgstr "Bonificació de la flor" msgid "After the Glaciers" msgstr "Després de les glaceres" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Penjant del sostre" @@ -218,7 +219,7 @@ msgstr "Un turó de neu" msgid "Three Frosty Icebergs" msgstr "Els tres icebergs" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Sota el gel" diff --git a/data/levels/bonus3/cs.po b/data/levels/bonus3/cs.po index 0ad98437cdb..8ae2f3e267f 100644 --- a/data/levels/bonus3/cs.po +++ b/data/levels/bonus3/cs.po @@ -4,7 +4,7 @@ # # Translators: # Hume2 , 2016 -# Jiří Paleček , 2021 +# Jiří Paleček , 2021-2022 # Jiří Paleček , 2013-2015 # Jiří Paleček , 2018,2020 # fri, 2013-2014 @@ -13,10 +13,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-22 21:11+0000\n" -"Last-Translator: Jiří Paleček \n" -"Language-Team: Czech (http://www.transifex.com/arctic-games/supertux/language/cs/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: Jiří Paleček , 2021-2022\n" +"Language-Team: Czech (http://app.transifex.com/arctic-games/supertux/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -31,7 +31,7 @@ msgstr "Úroveň dříve známá jako \"-89,2 stupňů\"" msgid "Global Warming" msgstr "Globální oteplování" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Jedna noc v oblacích" @@ -83,7 +83,7 @@ msgstr "#Dobrá práce! Nechal sis červenou lucernu! Nemusel jsi, ale protože msgid "Coconut Fortress" msgstr "Kokosová pevnost" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Krystalový západ slunce" @@ -106,7 +106,7 @@ msgstr "Venku na krystalových polích" #: data/levels/bonus3/dark_castle-v2.stl:3 #: data/levels/bonus3/dark_castle.stl:3 msgid "The dark castle" -msgstr "Tmavý hrad" +msgstr "Temný hrad" #: data/levels/bonus3/deep_deeper.stl:3 msgid "Deep, deeper..." @@ -144,7 +144,7 @@ msgstr "Květinový bonus" msgid "After the Glaciers" msgstr "Po ledovcích" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Visící ze stropu" @@ -220,7 +220,7 @@ msgstr "Sněžný kopec" msgid "Three Frosty Icebergs" msgstr "Tři mrazivé ledovce" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Pod ledem" diff --git a/data/levels/bonus3/da.po b/data/levels/bonus3/da.po index 406895ed0c4..cc0bf07ea1b 100644 --- a/data/levels/bonus3/da.po +++ b/data/levels/bonus3/da.po @@ -4,14 +4,15 @@ # # Translators: # Joe Hansen , 2015-2016,2018-2019 +# Lars Lyngby , 2022 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Danish (http://www.transifex.com/arctic-games/supertux/language/da/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: Lars Lyngby , 2022\n" +"Language-Team: Danish (http://app.transifex.com/arctic-games/supertux/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,13 +21,13 @@ msgstr "" #: data/levels/bonus3/-89-2_degrees.stl:3 msgid "The Level Formely Known As \"-89,2 Degrees\"" -msgstr "" +msgstr "Banen tidligere kendt som \"-89.2 grader\"" #: data/levels/bonus3/Global_Warming.stl:3 msgid "Global Warming" msgstr "Global opvarmning" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "En nat på himlen" @@ -40,7 +41,7 @@ msgstr "Endnu en kold dag" #: data/levels/bonus3/antarctic_rain.stl:3 msgid "Forest Rain (aka \"Antarctic Rain\")" -msgstr "" +msgstr "Skovregn (også kaldet \"Antarktisk regn\")" #: data/levels/bonus3/but_no_one_can_stop_it.stl:3 msgid "...but no one can stop it..." @@ -78,7 +79,7 @@ msgstr "#Godt gjort! Du beholdte den røde lanterne! Det var ikke nødvendigt, m msgid "Coconut Fortress" msgstr "Kokosfæstning" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Krystalsolnedgang" @@ -129,7 +130,7 @@ msgstr "Indgang gennem borgen" #: data/levels/bonus3/entering_castle.stl:60 msgid "#Sorry, nothing to see here! Use the rope to get out!" -msgstr "" +msgstr "#Desværre. Intet at se her! Brug rebet for at komme ud!" #: data/levels/bonus3/flowers.stl:3 msgid "Flower Bonus" @@ -139,7 +140,7 @@ msgstr "Blomsterbonus" msgid "After the Glaciers" msgstr "Efter gletsjerne" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Hængende fra loftet" @@ -215,7 +216,7 @@ msgstr "En snedækket bakke" msgid "Three Frosty Icebergs" msgstr "Tre frosne isbjerge" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Under isen" diff --git a/data/levels/bonus3/de.po b/data/levels/bonus3/de.po index bd84bab0722..fc79db1c423 100644 --- a/data/levels/bonus3/de.po +++ b/data/levels/bonus3/de.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Wuzzy , 2015-2016 +# Wuzzy , 2015-2016 # Ettore Atalan , 2015 # Marcel Haring , 2014 # Marcel Haring , 2014 @@ -18,10 +18,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 00:12+0000\n" -"Last-Translator: Tobias Markus \n" -"Language-Team: German (http://www.transifex.com/arctic-games/supertux/language/de/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: Tobias Markus , 2018-2019,2021\n" +"Language-Team: German (http://app.transifex.com/arctic-games/supertux/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,7 +36,7 @@ msgstr "Das Level, das vorher unter dem Namen \"-89,2 Grad\" bekannt war." msgid "Global Warming" msgstr "Klimawandel" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Eine Nacht im Himmel" @@ -88,7 +88,7 @@ msgstr "#Gut gemacht! Du hast die rote Laterne mitgenommen! Das wäre nicht nöt msgid "Coconut Fortress" msgstr "Kokosnussfestung" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Kristallsonnenuntergang" @@ -149,7 +149,7 @@ msgstr "Blumenbonus" msgid "After the Glaciers" msgstr "Hinter den Gletschern" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Vom Dach hängend" @@ -225,7 +225,7 @@ msgstr "Ein beschneiter Hügel" msgid "Three Frosty Icebergs" msgstr "Drei frostige Eisberge" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Unter dem Eis" diff --git a/data/levels/bonus3/el.po b/data/levels/bonus3/el.po index a32878e7076..4835c63ecf6 100644 --- a/data/levels/bonus3/el.po +++ b/data/levels/bonus3/el.po @@ -3,17 +3,18 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: +# IAN RODRÍGUEZ Lorenzo, 2022 # I will not tell you that , 2015 # Vangelis Nomikos , 2013-2014 -# Vangelis Skarmoutsos , 2016,2019 +# Vangelis Skarmoutsos (SkarmoutsosV) , 2016,2019 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Greek (http://www.transifex.com/arctic-games/supertux/language/el/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" +"Language-Team: Greek (http://app.transifex.com/arctic-games/supertux/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,13 +23,13 @@ msgstr "" #: data/levels/bonus3/-89-2_degrees.stl:3 msgid "The Level Formely Known As \"-89,2 Degrees\"" -msgstr "" +msgstr "Το επίπεδο που είναι γνωστό ως \"-89,2 μοίρες\"" #: data/levels/bonus3/Global_Warming.stl:3 msgid "Global Warming" msgstr "Υπερθέρμανση του Πλανήτη" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Μια Νύχτα στον Ουρανό" @@ -42,7 +43,7 @@ msgstr "ΜΙα άλλη κρύα μέρα" #: data/levels/bonus3/antarctic_rain.stl:3 msgid "Forest Rain (aka \"Antarctic Rain\")" -msgstr "" +msgstr "Δασική βροχή (γνωστή και ως \"Ανταρκτική Βροχή\")" #: data/levels/bonus3/but_no_one_can_stop_it.stl:3 msgid "...but no one can stop it..." @@ -80,7 +81,7 @@ msgstr "#Καλή δουλειά! Κρατήσατε το κόκκινο φαν msgid "Coconut Fortress" msgstr "Φρούριο Καρυδών" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Κρυστάλλινο Ηλιοβασίλεμα" @@ -131,7 +132,7 @@ msgstr "Μπαίνοντας στο κάστρο" #: data/levels/bonus3/entering_castle.stl:60 msgid "#Sorry, nothing to see here! Use the rope to get out!" -msgstr "" +msgstr "#Συγγνώμη, τίποτα να δείτε εδώ! Χρησιμοποιήστε το σχοινί για να βγείτε έξω!" #: data/levels/bonus3/flowers.stl:3 msgid "Flower Bonus" @@ -141,7 +142,7 @@ msgstr "Λουλούδι Μπόνους" msgid "After the Glaciers" msgstr "Μετά τους Παγετώνες" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Κρεμάμενος από την οροφή" @@ -217,7 +218,7 @@ msgstr "Ένας χιονισμένος λόφος" msgid "Three Frosty Icebergs" msgstr "Τρία Ψυχρά Παγόβουνα" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Κάτω από τον πάγο" diff --git a/data/levels/bonus3/eo.po b/data/levels/bonus3/eo.po index 9567c544962..3402da99e6b 100644 --- a/data/levels/bonus3/eo.po +++ b/data/levels/bonus3/eo.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:08+0000\n" "Last-Translator: Jorge Maldonado Ventura , 2023\n" "Language-Team: Esperanto (http://app.transifex.com/arctic-games/supertux/language/eo/)\n" @@ -28,7 +28,7 @@ msgstr "Nivelo antaŭe konita kiel \"-89,2 gradoj\"" msgid "Global Warming" msgstr "Tutmonda varmiĝo" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Unu nokto en la ĉielo" @@ -80,7 +80,7 @@ msgstr "#Bona laboro! Vi konservis la ruĝan lanternon! Tamen vi ne devis, sed n msgid "Coconut Fortress" msgstr "Kokosa Fortikaĵo" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Kristala sunsubiro" @@ -141,7 +141,7 @@ msgstr "Flora kromaĵo" msgid "After the Glaciers" msgstr "Sekvante la glaciojn" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Pendante de la tegmento" @@ -217,7 +217,7 @@ msgstr "Neĝa monteto" msgid "Three Frosty Icebergs" msgstr "Tri frostaj glacimontoj" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Sub la glacio" diff --git a/data/levels/bonus3/es.po b/data/levels/bonus3/es.po index 8876db18a84..705893e4fd5 100644 --- a/data/levels/bonus3/es.po +++ b/data/levels/bonus3/es.po @@ -12,15 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 23:48+0000\n" -"Last-Translator: Swyter \n" -"Language-Team: Spanish (http://www.transifex.com/arctic-games/supertux/language/es/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: Swyter , 2018,2021\n" +"Language-Team: Spanish (http://app.transifex.com/arctic-games/supertux/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/bonus3/-89-2_degrees.stl:3 msgid "The Level Formely Known As \"-89,2 Degrees\"" @@ -30,7 +30,7 @@ msgstr "El nivel anteriormente conocido como «-89,2 grados»" msgid "Global Warming" msgstr "Calentamiento global" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Una noche celeste" @@ -82,7 +82,7 @@ msgstr "#¡Buen trabajo! ¡Mantuviste la linterna roja! ¡No lo necesitaste sin msgid "Coconut Fortress" msgstr "Fortaleza cocotil" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Puesta de sol cristalina" @@ -143,7 +143,7 @@ msgstr "Flor de bonificación" msgid "After the Glaciers" msgstr "Tras los glaciares" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Colgando del techo" @@ -219,7 +219,7 @@ msgstr "Una colina muy nevada" msgid "Three Frosty Icebergs" msgstr "Tres ricos icebergs escarchados" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Bajo el hielo" diff --git a/data/levels/bonus3/es_AR.po b/data/levels/bonus3/es_AR.po index 26f09c5cb1f..e21fdb2bbc6 100644 --- a/data/levels/bonus3/es_AR.po +++ b/data/levels/bonus3/es_AR.po @@ -4,29 +4,30 @@ # # Translators: # Alejo Fernandez , 2020 +# Salomón Duarte , 2021 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Spanish (Argentina) (http://www.transifex.com/arctic-games/supertux/language/es_AR/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: Salomón Duarte , 2021\n" +"Language-Team: Spanish (Argentina) (http://app.transifex.com/arctic-games/supertux/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_AR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/bonus3/-89-2_degrees.stl:3 msgid "The Level Formely Known As \"-89,2 Degrees\"" -msgstr "" +msgstr "-89,2 Grados" #: data/levels/bonus3/Global_Warming.stl:3 msgid "Global Warming" msgstr "Calentamiento global" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Una noche en el cielo" @@ -40,7 +41,7 @@ msgstr "Otro día fresco" #: data/levels/bonus3/antarctic_rain.stl:3 msgid "Forest Rain (aka \"Antarctic Rain\")" -msgstr "" +msgstr "Lluvia Forestal (Más conocido como lluvia antártica)" #: data/levels/bonus3/but_no_one_can_stop_it.stl:3 msgid "...but no one can stop it..." @@ -78,7 +79,7 @@ msgstr "#¡Buen trabajo! ¡Te quedaste con la linterna roja! Sin embargo, no era msgid "Coconut Fortress" msgstr "Fortaleza de Coco" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "La puesta de sol del cristal" @@ -129,7 +130,7 @@ msgstr "Entrando al castillo" #: data/levels/bonus3/entering_castle.stl:60 msgid "#Sorry, nothing to see here! Use the rope to get out!" -msgstr "" +msgstr "#Perdón, no hay nada acá! Usa la cuerda para salir!" #: data/levels/bonus3/flowers.stl:3 msgid "Flower Bonus" @@ -139,7 +140,7 @@ msgstr "El bonus de la flor" msgid "After the Glaciers" msgstr "Después de los glaciares" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Colgando del techo" @@ -215,7 +216,7 @@ msgstr "Una colina muy nevada" msgid "Three Frosty Icebergs" msgstr "Los tres Icebergs escarchados" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Debajo del hielo" diff --git a/data/levels/bonus3/et.po b/data/levels/bonus3/et.po index 0ac43012912..13b8f4403e8 100644 --- a/data/levels/bonus3/et.po +++ b/data/levels/bonus3/et.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:08+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Estonian (http://app.transifex.com/arctic-games/supertux/language/et/)\n" @@ -26,7 +26,7 @@ msgstr "Tase, mida varem tunti kui \"-89,2 kraadi\"" msgid "Global Warming" msgstr "Globaalne soojenemine" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Üks öö taevas" @@ -78,7 +78,7 @@ msgstr "#Tubli töö! Sa hoidsid punast laternat! Sa ei pidanud seda tegema, aga msgid "Coconut Fortress" msgstr "Kookose kindlus" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Kristalliline päikeseloojang" @@ -139,7 +139,7 @@ msgstr "Lillede boonus" msgid "After the Glaciers" msgstr "Pärast liustikke" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Rippuvad katusel" @@ -215,7 +215,7 @@ msgstr "Lumine mägi" msgid "Three Frosty Icebergs" msgstr "Kolm härmast jäämäge" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Jää all" diff --git a/data/levels/bonus3/eu.po b/data/levels/bonus3/eu.po index acea3132ffb..e489a0a2e34 100644 --- a/data/levels/bonus3/eu.po +++ b/data/levels/bonus3/eu.po @@ -4,12 +4,12 @@ # # Translators: # IAN RODRÍGUEZ Lorenzo, 2023 -# Mielanjel Iraeta , 2018-2019 +# Mielanjel Iraeta , 2018-2019 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:08+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Basque (http://app.transifex.com/arctic-games/supertux/language/eu/)\n" @@ -27,7 +27,7 @@ msgstr "Lehenago \"-89,2 gradu\" bezala ezagutzen den maila" msgid "Global Warming" msgstr "Beroketa globala" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Gau bat zeruan" @@ -79,7 +79,7 @@ msgstr "#Lan bikaina!Linterna gorriari eutsi diozu! Ez zenuen egin beharrik, bai msgid "Coconut Fortress" msgstr "Kokoen gotorlekua" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Kristalezko arratsaldea" @@ -140,7 +140,7 @@ msgstr "Sariaren lorea" msgid "After the Glaciers" msgstr "Glaziarren ondoren" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Sabaitik zintzilik" @@ -216,7 +216,7 @@ msgstr "Elurrez betetako mendixka" msgid "Three Frosty Icebergs" msgstr "Hiru horma zintzarri" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Izotz azpian" diff --git a/data/levels/bonus3/fi.po b/data/levels/bonus3/fi.po index 615f6a59b48..2951076e1ce 100644 --- a/data/levels/bonus3/fi.po +++ b/data/levels/bonus3/fi.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Jaakoppi Horila , 2016,2018,2020-2021 +# Jaakoppi Horila , 2016,2018,2020-2023 # Lauri Ojansivu , 2015 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 16:26+0000\n" -"Last-Translator: Jaakoppi Horila \n" -"Language-Team: Finnish (http://www.transifex.com/arctic-games/supertux/language/fi/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: Jaakoppi Horila , 2016,2018,2020-2023\n" +"Language-Team: Finnish (http://app.transifex.com/arctic-games/supertux/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -27,7 +27,7 @@ msgstr "Kenttä, jonka nimi oli ennen \"-89,2 astetta\"" msgid "Global Warming" msgstr "Ilmastonmuutos" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Ilta taivaalla" @@ -77,9 +77,9 @@ msgstr "#Hyvää työtä! Pidit punaisen lyhdyn! Sinun ei kyllä tarvinnut, mutt #: data/levels/bonus3/coconut_fortress.stl:3 msgid "Coconut Fortress" -msgstr "Kookospähkinälinnoitus" +msgstr "Kookoslinnoitus" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Kristallinen auringonlasku" @@ -93,7 +93,7 @@ msgstr "Kristallinen kauneus" #: data/levels/bonus3/crystal_cataclysm.stl:3 msgid "Crystal Cataclysm" -msgstr "Kristallinen luonnonmullistus" +msgstr "Kristallikaaos" #: data/levels/bonus3/crystalfields.stl:3 msgid "Out on the Crystal Fields" @@ -122,7 +122,7 @@ msgstr "Muista hypätä kyytiin" #: data/levels/bonus3/dungeon_island/going_down.stl:3 msgid "Going down" -msgstr "Alas" +msgstr "Alaspäin" #: data/levels/bonus3/entering_castle.stl:3 msgid "Entering the castle" @@ -140,7 +140,7 @@ msgstr "Kukkabonus" msgid "After the Glaciers" msgstr "Jäätikköjen jälkeen" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Kuilun partaalla" @@ -194,7 +194,7 @@ msgstr "Pinkki jää" #: data/levels/bonus3/red_alert_forest.stl:3 msgid "Red alert! The forest is burning!" -msgstr "Punainen hälytys! Metsä palaa!" +msgstr "Punainen hälytys! Metsäpalo!" #: data/levels/bonus3/sever_escape.stl:3 msgid "Sewer escape" @@ -216,7 +216,7 @@ msgstr "Luminen mäki" msgid "Three Frosty Icebergs" msgstr "Kolme huurteista jäävuorta" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Jään alla" diff --git a/data/levels/bonus3/fr.po b/data/levels/bonus3/fr.po index b03c64c997b..e5d1147f1f4 100644 --- a/data/levels/bonus3/fr.po +++ b/data/levels/bonus3/fr.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# a a, 2021 +# Semphris , 2021 # Antoine , 2020 # Benjamin Leduc , 2013-2016 # Céline Marmin, 2016 @@ -15,15 +15,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 00:46+0000\n" -"Last-Translator: a a\n" -"Language-Team: French (http://www.transifex.com/arctic-games/supertux/language/fr/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: Semphris , 2021\n" +"Language-Team: French (http://app.transifex.com/arctic-games/supertux/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/bonus3/-89-2_degrees.stl:3 msgid "The Level Formely Known As \"-89,2 Degrees\"" @@ -33,7 +33,7 @@ msgstr "Le niveau connu précédemment en tant que \"-89,2 degrés\"" msgid "Global Warming" msgstr "Réchauffement climatique " -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Une nuit dans le ciel" @@ -85,7 +85,7 @@ msgstr "#Bon Travail ! Tu as gardé la lanterne rouge ! Tu n'en avais pas beso msgid "Coconut Fortress" msgstr "La Forteresse des noix de coco" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Coucher de soleil cristallin" @@ -146,7 +146,7 @@ msgstr "Bonus fleuri" msgid "After the Glaciers" msgstr "Après les glaciers" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Accroché au plafond" @@ -222,7 +222,7 @@ msgstr "Une colline enneigée" msgid "Three Frosty Icebergs" msgstr "Trois icebergs givrés" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Sous la glace" diff --git a/data/levels/bonus3/fr_CA.po b/data/levels/bonus3/fr_CA.po index 0ef9dbd5baa..79976dd7d39 100644 --- a/data/levels/bonus3/fr_CA.po +++ b/data/levels/bonus3/fr_CA.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:08+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022-2023\n" "Language-Team: French (Canada) (http://app.transifex.com/arctic-games/supertux/language/fr_CA/)\n" @@ -26,7 +26,7 @@ msgstr "Le niveau anciennement connu sous le nom de \"-89,2 degrés\"" msgid "Global Warming" msgstr "Réchauffement climatique" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Une nuit dans le ciel" @@ -78,7 +78,7 @@ msgstr "#Bon travail! Vous avez gardé la lanterne rouge ! Vous n'en aviez pas b msgid "Coconut Fortress" msgstr "Forteresse de noix de coco" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Coucher de soleil de cristal" @@ -139,7 +139,7 @@ msgstr "Bonus Fleur" msgid "After the Glaciers" msgstr "Après les glaciers" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Suspendu au toit" @@ -215,7 +215,7 @@ msgstr "Une colline enneigée" msgid "Three Frosty Icebergs" msgstr "3 icebergs givrés" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Sous la glace" diff --git a/data/levels/bonus3/gd.po b/data/levels/bonus3/gd.po index 93aeda297c1..3cf40134e53 100644 --- a/data/levels/bonus3/gd.po +++ b/data/levels/bonus3/gd.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-17 20:54+0000\n" -"Last-Translator: GunChleoc\n" -"Language-Team: Gaelic, Scottish (http://www.transifex.com/arctic-games/supertux/language/gd/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: GunChleoc, 2016,2019\n" +"Language-Team: Gaelic, Scottish (http://app.transifex.com/arctic-games/supertux/language/gd/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -27,7 +27,7 @@ msgstr "An leibheil air an robh “-89.2 ceum” roimhe" msgid "Global Warming" msgstr "Blàthachadh na cruinne" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Oidhche san speur" @@ -79,7 +79,7 @@ msgstr "#Sin thu fhèin! Chum thu greim air an lanntair dearg! Gidheadh cha do l msgid "Coconut Fortress" msgstr "Dùn cnòtha-còco" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Laighe na grèine criostail" @@ -140,7 +140,7 @@ msgstr "Duais dhìtheanan" msgid "After the Glaciers" msgstr "Às dèidh nan eigh-shruthan" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "A' crochadh on mhullach" @@ -216,7 +216,7 @@ msgstr "Cnoc sneachdach" msgid "Three Frosty Icebergs" msgstr "Trì eigh-bheanntan reòite" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Fon deigh" diff --git a/data/levels/bonus3/gl.po b/data/levels/bonus3/gl.po index 49748ad9c92..8be889ecd03 100644 --- a/data/levels/bonus3/gl.po +++ b/data/levels/bonus3/gl.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# xanvieiro , 2019-2020 +# Xan Vieiro , 2019-2021 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Galician (http://www.transifex.com/arctic-games/supertux/language/gl/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: Xan Vieiro , 2019-2021\n" +"Language-Team: Galician (http://app.transifex.com/arctic-games/supertux/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,13 +20,13 @@ msgstr "" #: data/levels/bonus3/-89-2_degrees.stl:3 msgid "The Level Formely Known As \"-89,2 Degrees\"" -msgstr "" +msgstr "O Nivel Coñecido Antigamente Como \"-89,2 Graos\"" #: data/levels/bonus3/Global_Warming.stl:3 msgid "Global Warming" msgstr "Quecemento Global" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Unha Noite no Ceo" @@ -40,7 +40,7 @@ msgstr "Outro día frío" #: data/levels/bonus3/antarctic_rain.stl:3 msgid "Forest Rain (aka \"Antarctic Rain\")" -msgstr "" +msgstr "Chuvia Forestal (previamente \"Chuvia Antártica\")" #: data/levels/bonus3/but_no_one_can_stop_it.stl:3 msgid "...but no one can stop it..." @@ -78,7 +78,7 @@ msgstr "#Bo traballo! Conservaches a lanterna vermella! Non necesitabas pensar, msgid "Coconut Fortress" msgstr "A Fortaleza do Coco" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Solpor de Cristal" @@ -129,7 +129,7 @@ msgstr "Entrando no castelo" #: data/levels/bonus3/entering_castle.stl:60 msgid "#Sorry, nothing to see here! Use the rope to get out!" -msgstr "" +msgstr "# Desculpa, aquí non hai nada que ver! Utiliza a corda para saír!" #: data/levels/bonus3/flowers.stl:3 msgid "Flower Bonus" @@ -139,7 +139,7 @@ msgstr "Bono de Flor" msgid "After the Glaciers" msgstr "Despois dos Glaciares" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Colgando do Tellado" @@ -215,7 +215,7 @@ msgstr "Un outeiro nevado" msgid "Three Frosty Icebergs" msgstr "Tres Icebergs Conxelados" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Baixo o Xeo" diff --git a/data/levels/bonus3/he.po b/data/levels/bonus3/he.po index 8905c28d221..73ec1a1a1eb 100644 --- a/data/levels/bonus3/he.po +++ b/data/levels/bonus3/he.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:08+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Hebrew (http://app.transifex.com/arctic-games/supertux/language/he/)\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: he\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" +"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n" #: data/levels/bonus3/-89-2_degrees.stl:3 msgid "The Level Formely Known As \"-89,2 Degrees\"" @@ -28,7 +28,7 @@ msgstr "הרמה שנודעה בעבר בשם \"-89,2 מעלות\"" msgid "Global Warming" msgstr "ההתחממות הגלובלית" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "לילה אחד בשמיים" @@ -80,7 +80,7 @@ msgstr "#עבודה טובה! שמרת על הפנס האדום! אמנם לא msgid "Coconut Fortress" msgstr "מבצר קוקוס" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "שקיעה של קריסטלים" @@ -141,7 +141,7 @@ msgstr "בונוס פרחים" msgid "After the Glaciers" msgstr "אחרי הקרחונים" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "תלוי מהגג" @@ -217,7 +217,7 @@ msgstr "גבעה מושלגת" msgid "Three Frosty Icebergs" msgstr "שלושה קרחונים קפואים" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "מתחת לקרח" diff --git a/data/levels/bonus3/hr.po b/data/levels/bonus3/hr.po index 9755d76e190..8bc5f7f868d 100644 --- a/data/levels/bonus3/hr.po +++ b/data/levels/bonus3/hr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:08+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Croatian (http://app.transifex.com/arctic-games/supertux/language/hr/)\n" @@ -26,7 +26,7 @@ msgstr "Razina ranije poznata kao \"-89,2 stupnja\"" msgid "Global Warming" msgstr "Globalno zatopljenje" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Jedna noć na nebu" @@ -78,7 +78,7 @@ msgstr "#Dobar posao! Zadržao si crvenu lampu! Ipak nisi trebao, ali samo zato msgid "Coconut Fortress" msgstr "Kokosova tvrđava" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Kristalni zalazak sunca" @@ -139,7 +139,7 @@ msgstr "Cvjetni bonus" msgid "After the Glaciers" msgstr "Nakon Ledenjaka" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Viseći s krova" @@ -215,7 +215,7 @@ msgstr "Snježno brdo" msgid "Three Frosty Icebergs" msgstr "Tri ledene sante leda" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Ispod leda" diff --git a/data/levels/bonus3/hu.po b/data/levels/bonus3/hu.po index 5ce71e9ec6f..1aeba8dfe8a 100644 --- a/data/levels/bonus3/hu.po +++ b/data/levels/bonus3/hu.po @@ -5,6 +5,7 @@ # Translators: # Balázs Úr, 2018 # Norbert Molnár , 2013 +# Guih48, 2022 # gyeben , 2013 # Haba Tamás , 2016 # Kristóf Kófiás , 2014,2019-2020 @@ -13,10 +14,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Hungarian (http://www.transifex.com/arctic-games/supertux/language/hu/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: Guih48, 2022\n" +"Language-Team: Hungarian (http://app.transifex.com/arctic-games/supertux/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -25,13 +26,13 @@ msgstr "" #: data/levels/bonus3/-89-2_degrees.stl:3 msgid "The Level Formely Known As \"-89,2 Degrees\"" -msgstr "" +msgstr "A pálya hivatalosan csak \"-89,2°C\"-ként ismert." #: data/levels/bonus3/Global_Warming.stl:3 msgid "Global Warming" msgstr "Globális Felmelegedés" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Egy Éjszaka az Égben" @@ -45,7 +46,7 @@ msgstr "Még egy hűvös nap" #: data/levels/bonus3/antarctic_rain.stl:3 msgid "Forest Rain (aka \"Antarctic Rain\")" -msgstr "" +msgstr "Erdei eső (ismert \"Antarktiszi eső\" néven is)" #: data/levels/bonus3/but_no_one_can_stop_it.stl:3 msgid "...but no one can stop it..." @@ -83,7 +84,7 @@ msgstr "#Szép munka! Megtartottad a piros lámpást! Nem volt rá szükséged, msgid "Coconut Fortress" msgstr "Kókuszdió Erőd" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Kristályos Napnyugta" @@ -134,7 +135,7 @@ msgstr "Belépés a várba" #: data/levels/bonus3/entering_castle.stl:60 msgid "#Sorry, nothing to see here! Use the rope to get out!" -msgstr "" +msgstr "#Sajnálom, nincs itt semmi látnivaló! Használd a kötelet a kijutáshoz!" #: data/levels/bonus3/flowers.stl:3 msgid "Flower Bonus" @@ -144,7 +145,7 @@ msgstr "Virág Bónusz" msgid "After the Glaciers" msgstr "A Gleccserek Után" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Lógás a Tetőről" @@ -220,7 +221,7 @@ msgstr "Egy havas hegy" msgid "Three Frosty Icebergs" msgstr "Három fagyos jéghegy" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "A jég alatt" diff --git a/data/levels/bonus3/hy.po b/data/levels/bonus3/hy.po index 583fe4bdcab..ada538a29b8 100644 --- a/data/levels/bonus3/hy.po +++ b/data/levels/bonus3/hy.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:08+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Armenian (http://app.transifex.com/arctic-games/supertux/language/hy/)\n" @@ -26,7 +26,7 @@ msgstr "Մակարդակը, որը նախկինում հայտնի է որպես msgid "Global Warming" msgstr "Գլոբալ տաքացում" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Մեկ գիշեր երկնքում" @@ -78,7 +78,7 @@ msgstr "#Լավ աշխատանք! Դու պահեցիր կարմիր լապտե msgid "Coconut Fortress" msgstr "Կոկոսի ամրոց" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Բյուրեղյա մայրամուտ" @@ -139,7 +139,7 @@ msgstr "Ծաղկի բոնուս" msgid "After the Glaciers" msgstr "Սառցադաշտերից հետո" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Կախված տանիքից" @@ -215,7 +215,7 @@ msgstr "Ձյունածածկ բլուր" msgid "Three Frosty Icebergs" msgstr "Երեք սառցակալած այսբերգ" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Սառույցի տակ" diff --git a/data/levels/bonus3/id.po b/data/levels/bonus3/id.po index 7ae4db82739..10349160563 100644 --- a/data/levels/bonus3/id.po +++ b/data/levels/bonus3/id.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# CRS.ECHO51 , 2017 +# Chris , 2017 # IAN RODRÍGUEZ Lorenzo, 2023 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:08+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Indonesian (http://app.transifex.com/arctic-games/supertux/language/id/)\n" @@ -27,7 +27,7 @@ msgstr "Level yang Sebelumnya Dikenal Sebagai \"-89,2 Derajat\"" msgid "Global Warming" msgstr "Pemanasan Global" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Satu Malam di Langit" @@ -79,7 +79,7 @@ msgstr "#Kerja bagus! Kamu mendapatkan lentera merah! Sebetulnya tidak perlu, ta msgid "Coconut Fortress" msgstr "Benteng Kelapa" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Matahari Terbenam Kristal" @@ -140,7 +140,7 @@ msgstr "Bonus Bunga" msgid "After the Glaciers" msgstr "Setelah Gletser" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Menggantung Dari Atap" @@ -216,7 +216,7 @@ msgstr "Bukit salju" msgid "Three Frosty Icebergs" msgstr "Tiga Gunung Es Beku" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Di Bawah Es" diff --git a/data/levels/bonus3/is.po b/data/levels/bonus3/is.po index bb1a278b3ed..4302db0c9a3 100644 --- a/data/levels/bonus3/is.po +++ b/data/levels/bonus3/is.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:08+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Icelandic (http://app.transifex.com/arctic-games/supertux/language/is/)\n" @@ -26,7 +26,7 @@ msgstr "Stigið sem áður var þekkt sem „-89,2 gráður“" msgid "Global Warming" msgstr "Hnatthlýnun" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Næturhiminn" @@ -78,7 +78,7 @@ msgstr "#Gott starf! Þú geymdir rauðu luktina! Þú þurftir það samt ekki, msgid "Coconut Fortress" msgstr "Kókoshnetuvirki" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Kristall sólsetur" @@ -139,7 +139,7 @@ msgstr "Blóma bónus" msgid "After the Glaciers" msgstr "Eftir Jökla" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Hangur af þakinu" @@ -215,7 +215,7 @@ msgstr "Snjóþung hæð" msgid "Three Frosty Icebergs" msgstr "Þrír frostkaldir ísjakar" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Undir ísnum" diff --git a/data/levels/bonus3/it.po b/data/levels/bonus3/it.po index d3353df1857..534cc26dd2f 100644 --- a/data/levels/bonus3/it.po +++ b/data/levels/bonus3/it.po @@ -4,6 +4,7 @@ # # Translators: # Angela , 2014 +# A-TNT DC, 2021 # Enrico B. , 2015 # Gianfranco Del Borrello , 2016 # Ioma Taani, 2019 @@ -15,25 +16,25 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Italian (http://www.transifex.com/arctic-games/supertux/language/it/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: A-TNT DC, 2021\n" +"Language-Team: Italian (http://app.transifex.com/arctic-games/supertux/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/bonus3/-89-2_degrees.stl:3 msgid "The Level Formely Known As \"-89,2 Degrees\"" -msgstr "" +msgstr "Il livello conosciuto come \"-89,2 gradi\"" #: data/levels/bonus3/Global_Warming.stl:3 msgid "Global Warming" msgstr "Riscaldamento globale" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Una Notte in Cielo" @@ -47,7 +48,7 @@ msgstr "Un altro freddo giorno" #: data/levels/bonus3/antarctic_rain.stl:3 msgid "Forest Rain (aka \"Antarctic Rain\")" -msgstr "" +msgstr "Pioggia di foresta (aka \"Pioggia Antartica\")" #: data/levels/bonus3/but_no_one_can_stop_it.stl:3 msgid "...but no one can stop it..." @@ -85,7 +86,7 @@ msgstr "#Ottimo lavoro! Hai tenuto la lanterna rossa! Non era necessario, ma vis msgid "Coconut Fortress" msgstr "Fortezza Noce di Cocco" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Tramonto di Cristallo" @@ -136,7 +137,7 @@ msgstr "Entrando nel castello" #: data/levels/bonus3/entering_castle.stl:60 msgid "#Sorry, nothing to see here! Use the rope to get out!" -msgstr "" +msgstr "Scusa, niente da vedere qui! Usa la fune per uscire!
" #: data/levels/bonus3/flowers.stl:3 msgid "Flower Bonus" @@ -146,7 +147,7 @@ msgstr "Bonus Floreale" msgid "After the Glaciers" msgstr "Dopo i Ghiacciai" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Penzolando dal Tetto" @@ -222,7 +223,7 @@ msgstr "Una collina nevosa" msgid "Three Frosty Icebergs" msgstr "Tre gelidi iceberg" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Sotto il ghiaccio" diff --git a/data/levels/bonus3/ja.po b/data/levels/bonus3/ja.po index 67f85e61fc5..a3d7c7cd697 100644 --- a/data/levels/bonus3/ja.po +++ b/data/levels/bonus3/ja.po @@ -4,7 +4,7 @@ # # Translators: # IAN RODRÍGUEZ Lorenzo, 2023 -# Ryo Nakano, 2019,2021 +# Ryo Nakano, 2019,2021,2024 # b1e11c107ebf1f339ff7adfc86b9dbe0_2e3e89d, 2016 # Sanshiro sumita, 2015 # Sanshiro sumita, 2015 @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:08+0000\n" -"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" +"Last-Translator: Ryo Nakano, 2019,2021,2024\n" "Language-Team: Japanese (http://app.transifex.com/arctic-games/supertux/language/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,7 +30,7 @@ msgstr "以前は「-89.2 度」として知られていたレベル" msgid "Global Warming" msgstr "地球温暖化" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "ある日の夜空" @@ -76,13 +76,13 @@ msgstr "冷たいどうくつ" msgid "" "#Good job! You kept the red lantern! You didn't need to though, but just " "because you did, have 100 coins!" -msgstr "#よくできました!あなたは赤いランタンを持ち続けました。あなたは100枚以上のコインを持っています。しかし、あなたがする理由はなく、する必要はありませんでした!" +msgstr "#よくできました!あなたは赤いランタンを持ち続けました。クリアには必要なかったですが、これを達成したので、100枚のコインを差し上げます!" #: data/levels/bonus3/coconut_fortress.stl:3 msgid "Coconut Fortress" msgstr "ココナッツのようさい" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "結晶の夕焼け" @@ -143,7 +143,7 @@ msgstr "フラワーボーナス" msgid "After the Glaciers" msgstr "氷河のあと" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "屋根にぶら下がって" @@ -189,7 +189,7 @@ msgstr "-出口ですか?\n#飛んでみましょう!" #: data/levels/bonus3/over_the_ocean.stl:3 msgid "My Penny is over the ocean" -msgstr "私のペニーは海の向こう側" +msgstr "愛しのペニーは海の向こう" #: data/levels/bonus3/pinksnow.stl:3 msgid "Pink Snow" @@ -219,7 +219,7 @@ msgstr "雪におおわれた丘" msgid "Three Frosty Icebergs" msgstr "3つの寒い氷山" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "氷の下" diff --git a/data/levels/bonus3/ko.po b/data/levels/bonus3/ko.po index c344511b839..2f53080b784 100644 --- a/data/levels/bonus3/ko.po +++ b/data/levels/bonus3/ko.po @@ -3,15 +3,18 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: +# Junghee Lee , 2022 +# Junghee Lee , 2022 # Myeongjin , 2016-2017,2019,2021 +# Youngjun, Choi, 2022 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Korean (http://www.transifex.com/arctic-games/supertux/language/ko/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: Junghee Lee , 2022\n" +"Language-Team: Korean (http://app.transifex.com/arctic-games/supertux/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,13 +23,13 @@ msgstr "" #: data/levels/bonus3/-89-2_degrees.stl:3 msgid "The Level Formely Known As \"-89,2 Degrees\"" -msgstr "" +msgstr "\"영하89,2도\"로 알려진 레벨" #: data/levels/bonus3/Global_Warming.stl:3 msgid "Global Warming" msgstr "지구 온난화" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "하늘에서의 첫날 밤" @@ -40,7 +43,7 @@ msgstr "또 다른 추운 날" #: data/levels/bonus3/antarctic_rain.stl:3 msgid "Forest Rain (aka \"Antarctic Rain\")" -msgstr "" +msgstr "포레스트 비(일명 \"남극 비\")" #: data/levels/bonus3/but_no_one_can_stop_it.stl:3 msgid "...but no one can stop it..." @@ -72,15 +75,15 @@ msgstr "차가운 동굴" msgid "" "#Good job! You kept the red lantern! You didn't need to though, but just " "because you did, have 100 coins!" -msgstr "#잘했어요! 빨간 랜턴을 유지했습니다! 그럴 필요까지는 없었지만, 그렇게 했기 때문에, 100코인을 가집니다!" +msgstr "#잘했어요! 빨간 랜턴을 가지고 계셨군요! 여러분은 그럴 필요가 없었지만, 100개의 동전을 가지고 있었기 때문이요!" #: data/levels/bonus3/coconut_fortress.stl:3 msgid "Coconut Fortress" msgstr "코코넛 요새" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" -msgstr "크리스탈 일몰" +msgstr "크리스탈 석양" #: data/levels/bonus3/crystal.stl:3 msgid "Crystal Skies" @@ -88,7 +91,7 @@ msgstr "크리스탈 하늘" #: data/levels/bonus3/crystal_beauty.stl:3 msgid "Crystal Beauty" -msgstr "크리스탈 아름다움" +msgstr "크리스탈의 아름다움" #: data/levels/bonus3/crystal_cataclysm.stl:3 msgid "Crystal Cataclysm" @@ -129,7 +132,7 @@ msgstr "성에 들어가는 중" #: data/levels/bonus3/entering_castle.stl:60 msgid "#Sorry, nothing to see here! Use the rope to get out!" -msgstr "" +msgstr "#죄송합니다, 여기에 볼 것이 없습니다! 로프를 사용하여 탈출하세요!" #: data/levels/bonus3/flowers.stl:3 msgid "Flower Bonus" @@ -139,7 +142,7 @@ msgstr "꽃 보너스" msgid "After the Glaciers" msgstr "빙하 이후" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "지붕에 매달리기" @@ -169,7 +172,7 @@ msgstr "구멍, 얼음의 날" #: data/levels/bonus3/niv-3.stl:3 msgid "The Toilette zone" -msgstr "화장실 구역" +msgstr "화장실 영역" #: data/levels/bonus3/niv-3.stl:58 msgid "" @@ -215,7 +218,7 @@ msgstr "눈 덮힌 언덕" msgid "Three Frosty Icebergs" msgstr "서리가 내린 빙산 셋" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "얼음 밑으로" diff --git a/data/levels/bonus3/la.po b/data/levels/bonus3/la.po index 2ad6810f8b6..38c23cfe302 100644 --- a/data/levels/bonus3/la.po +++ b/data/levels/bonus3/la.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Latin (http://www.transifex.com/arctic-games/supertux/language/la/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: Alisa P , 2016,2018\n" +"Language-Team: Latin (http://app.transifex.com/arctic-games/supertux/language/la/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -26,7 +26,7 @@ msgstr "" msgid "Global Warming" msgstr "Calor in mundo crescit" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Una nox in caelo" @@ -78,7 +78,7 @@ msgstr "#Bene fecisti! Lucem rubem tenebas! Factum tuum neccesarium non est, sed msgid "Coconut Fortress" msgstr "Coconut munitio" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Sol crystallum crescit" @@ -139,7 +139,7 @@ msgstr "Additio floris" msgid "After the Glaciers" msgstr "Post glaciem" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Ab villa ire" @@ -215,7 +215,7 @@ msgstr "Mons nevadus" msgid "Three Frosty Icebergs" msgstr "Tres montes de glacie frigi" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Sub glacie" diff --git a/data/levels/bonus3/lt.po b/data/levels/bonus3/lt.po index a2b75c993bf..5c9681fbc6d 100644 --- a/data/levels/bonus3/lt.po +++ b/data/levels/bonus3/lt.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Lithuanian (http://www.transifex.com/arctic-games/supertux/language/lt/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: Tom Urisk, 2021\n" +"Language-Team: Lithuanian (http://app.transifex.com/arctic-games/supertux/language/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -26,7 +26,7 @@ msgstr "" msgid "Global Warming" msgstr "Globalinis atšilimas" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Viena naktis danguje" @@ -78,7 +78,7 @@ msgstr "#Šaunuolis! Pasilikai savo raudoną žibintą! Nors tai buvo nebūtina, msgid "Coconut Fortress" msgstr "Kokosų tvirtovė" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Kristalų saulėlydis" @@ -139,7 +139,7 @@ msgstr "Papildoma gėlė" msgid "After the Glaciers" msgstr "Po ledynų" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Kabant nuo stogo" @@ -215,7 +215,7 @@ msgstr "Snieginga kalva" msgid "Three Frosty Icebergs" msgstr "Trys apšalę ledynai" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Po ledu" diff --git a/data/levels/bonus3/messages.pot b/data/levels/bonus3/messages.pot index 9c6ac2635e2..57348f53438 100644 --- a/data/levels/bonus3/messages.pot +++ b/data/levels/bonus3/messages.pot @@ -6,15 +6,15 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: SuperTux v0.6.2-963-gb4a1b149f\n" +"Project-Id-Version: SuperTux v0.6.3-1080-g2e08c1b7f\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: data/levels/bonus3/-89-2_degrees.stl:3 @@ -25,7 +25,7 @@ msgstr "" msgid "Global Warming" msgstr "" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "" @@ -77,7 +77,7 @@ msgstr "" msgid "Coconut Fortress" msgstr "" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "" @@ -137,7 +137,7 @@ msgstr "" msgid "After the Glaciers" msgstr "" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "" @@ -213,7 +213,7 @@ msgstr "" msgid "Three Frosty Icebergs" msgstr "" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "" diff --git a/data/levels/bonus3/ml.po b/data/levels/bonus3/ml.po index f93a0623ab9..b1e429af33a 100644 --- a/data/levels/bonus3/ml.po +++ b/data/levels/bonus3/ml.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Adharsh 01 , 2019 +# Adharsh P S , 2019 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Malayalam (http://www.transifex.com/arctic-games/supertux/language/ml/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: Adharsh P S , 2019\n" +"Language-Team: Malayalam (http://app.transifex.com/arctic-games/supertux/language/ml/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -26,7 +26,7 @@ msgstr "" msgid "Global Warming" msgstr "ആഗോള താപം" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "ആകാശത്തിലെ ഒരു രാത്രി" @@ -78,7 +78,7 @@ msgstr "#വളരെ നല്ലത്! നിങ്ങൾ ചുവന്ന msgid "Coconut Fortress" msgstr "നാളികേര കോട്ട" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "പരൽ സൂര്യാസ്തമയം" @@ -139,7 +139,7 @@ msgstr "പൂവ് ബോണസ്" msgid "After the Glaciers" msgstr "ഹിമാനികൾക്ക് ശേഷം" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "മേൽക്കൂരയിൽ നിന്ന് തൂങ്ങിക്കിടക്കുന്നു" @@ -215,7 +215,7 @@ msgstr "മഞ്ഞുവീഴ്ചയുള്ള മല" msgid "Three Frosty Icebergs" msgstr "മൂന്ന് മരവിച്ച മഞ്ഞുമലകൾ" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "ഐസിന്റെ താഴെ" diff --git a/data/levels/bonus3/ms_MY.po b/data/levels/bonus3/ms_MY.po index 1a87ad86ab6..624d1c7e344 100644 --- a/data/levels/bonus3/ms_MY.po +++ b/data/levels/bonus3/ms_MY.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# abuyop , 2018,2020-2021 +# abuyop , 2018,2020-2022 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Malay (Malaysia) (http://www.transifex.com/arctic-games/supertux/language/ms_MY/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: abuyop , 2018,2020-2022\n" +"Language-Team: Malay (Malaysia) (http://app.transifex.com/arctic-games/supertux/language/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,13 +20,13 @@ msgstr "" #: data/levels/bonus3/-89-2_degrees.stl:3 msgid "The Level Formely Known As \"-89,2 Degrees\"" -msgstr "" +msgstr "Dahulu Aras Dikenali Sebagai \"-89,2 Darjah\"" #: data/levels/bonus3/Global_Warming.stl:3 msgid "Global Warming" msgstr "Pemanasan Sejagat" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Semalaman di Kayangan" @@ -40,7 +40,7 @@ msgstr "Suatu hari yang sejuk" #: data/levels/bonus3/antarctic_rain.stl:3 msgid "Forest Rain (aka \"Antarctic Rain\")" -msgstr "" +msgstr "Hujan Hutan (iaitu \"Hujan Antartika\")" #: data/levels/bonus3/but_no_one_can_stop_it.stl:3 msgid "...but no one can stop it..." @@ -78,7 +78,7 @@ msgstr "#Bagus! Anda masih ada tanglung merah! Sebenarnya anda tidak memerlukann msgid "Coconut Fortress" msgstr "Kubu Kelapa" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Senja Hablur" @@ -129,7 +129,7 @@ msgstr "Memasuki istana" #: data/levels/bonus3/entering_castle.stl:60 msgid "#Sorry, nothing to see here! Use the rope to get out!" -msgstr "" +msgstr "#Maaf, tiada apa-apa yang menarik untuk lihat di sini! Guna tali untuk keluar!" #: data/levels/bonus3/flowers.stl:3 msgid "Flower Bonus" @@ -139,7 +139,7 @@ msgstr "Bonus Bunga" msgid "After the Glaciers" msgstr "Selepas Glasier" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Tergantung di Bawah Bumbung" @@ -215,7 +215,7 @@ msgstr "Sebuah bukit bersalji" msgid "Three Frosty Icebergs" msgstr "Tiga Aisberg Beribun" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Di bawah Ais" diff --git a/data/levels/bonus3/nb.po b/data/levels/bonus3/nb.po index 5025f94f244..ed8f099dbaa 100644 --- a/data/levels/bonus3/nb.po +++ b/data/levels/bonus3/nb.po @@ -4,15 +4,16 @@ # # Translators: # Allan Nordhøy , 2016,2018 +# IAN RODRÍGUEZ Lorenzo, 2022 # Karl Ove Hufthammer , 2015-2016 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Norwegian Bokmål (http://www.transifex.com/arctic-games/supertux/language/nb/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" +"Language-Team: Norwegian Bokmål (http://app.transifex.com/arctic-games/supertux/language/nb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -21,13 +22,13 @@ msgstr "" #: data/levels/bonus3/-89-2_degrees.stl:3 msgid "The Level Formely Known As \"-89,2 Degrees\"" -msgstr "" +msgstr "Nivået tidligere kjent som \"-89,2 grader\"" #: data/levels/bonus3/Global_Warming.stl:3 msgid "Global Warming" msgstr "Global oppvarming" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "En natt i stjernehimmelen" @@ -41,7 +42,7 @@ msgstr "Nok en kald dag" #: data/levels/bonus3/antarctic_rain.stl:3 msgid "Forest Rain (aka \"Antarctic Rain\")" -msgstr "" +msgstr "Skogregn" #: data/levels/bonus3/but_no_one_can_stop_it.stl:3 msgid "...but no one can stop it..." @@ -79,7 +80,7 @@ msgstr "#Godt jobbet! Du tok vare på den røde lykten! Du trengte ikke gjøre d msgid "Coconut Fortress" msgstr "Kokosnøttfestningen" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Krystallsolnedgang" @@ -130,7 +131,7 @@ msgstr "Inn i slottet" #: data/levels/bonus3/entering_castle.stl:60 msgid "#Sorry, nothing to see here! Use the rope to get out!" -msgstr "" +msgstr "#Beklager, ingenting å se her! Bruk tauet for å komme deg ut!" #: data/levels/bonus3/flowers.stl:3 msgid "Flower Bonus" @@ -140,7 +141,7 @@ msgstr "Blomstbonus" msgid "After the Glaciers" msgstr "Etter istidene" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Heng fra taket" @@ -216,7 +217,7 @@ msgstr "Det snør på toppene" msgid "Three Frosty Icebergs" msgstr "Tre frosne isfjell" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Under isen" diff --git a/data/levels/bonus3/nds.po b/data/levels/bonus3/nds.po index 2efdb8293ba..a2b38bc44d5 100644 --- a/data/levels/bonus3/nds.po +++ b/data/levels/bonus3/nds.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Low German (http://www.transifex.com/arctic-games/supertux/language/nds/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: Benedikt Straub , 2019\n" +"Language-Team: Low German (http://app.transifex.com/arctic-games/supertux/language/nds/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -26,7 +26,7 @@ msgstr "" msgid "Global Warming" msgstr "Dat Klima word warmer" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Eene Nacht an'n Häven" @@ -78,7 +78,7 @@ msgstr "#Hunnert! Du hest de rode Lanteern behollen! Dat weer nich nödig, aver msgid "Coconut Fortress" msgstr "Palmnööten-Schanz" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Isekluten-Sünnunnergahn" @@ -139,7 +139,7 @@ msgstr "Gode Blomen" msgid "After the Glaciers" msgstr "Achter de Iesfelden" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Vum Dack hangen" @@ -215,7 +215,7 @@ msgstr "Sneeihöcht" msgid "Three Frosty Icebergs" msgstr "Dree kolle Iesbargen" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Unner de Ies" diff --git a/data/levels/bonus3/nl.po b/data/levels/bonus3/nl.po index bc6e7ce1f64..b950e8be6ea 100644 --- a/data/levels/bonus3/nl.po +++ b/data/levels/bonus3/nl.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 13:40+0000\n" -"Last-Translator: Heimen Stoffels \n" -"Language-Team: Dutch (http://www.transifex.com/arctic-games/supertux/language/nl/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: Heimen Stoffels , 2021\n" +"Language-Team: Dutch (http://app.transifex.com/arctic-games/supertux/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -27,7 +27,7 @@ msgstr "Het level dat voorheen bekend stond als ‘-89,2 graden’" msgid "Global Warming" msgstr "Opwarming van de aarde" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Eén nacht in de lucht" @@ -79,7 +79,7 @@ msgstr "#Goed zo, je hebt de rode lantaarn behouden! Eigenlijk had je hem niet n msgid "Coconut Fortress" msgstr "Fort Kokosnoot" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Kristallen zonsondergang" @@ -140,7 +140,7 @@ msgstr "Bloemenbonus" msgid "After the Glaciers" msgstr "Na de gletsjers" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Hangend aan het plafond" @@ -216,7 +216,7 @@ msgstr "Een besneeuwde heuvel" msgid "Three Frosty Icebergs" msgstr "Drie bevroren ijsbergen" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Onder het ijs" diff --git a/data/levels/bonus3/nn.po b/data/levels/bonus3/nn.po index 5a72b1f788e..6410d76e9de 100644 --- a/data/levels/bonus3/nn.po +++ b/data/levels/bonus3/nn.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: +# IAN RODRÍGUEZ Lorenzo, 2022 # Karl Ove Hufthammer , 2015-2016,2018-2020 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Norwegian Nynorsk (http://www.transifex.com/arctic-games/supertux/language/nn/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" +"Language-Team: Norwegian Nynorsk (http://app.transifex.com/arctic-games/supertux/language/nn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,13 +21,13 @@ msgstr "" #: data/levels/bonus3/-89-2_degrees.stl:3 msgid "The Level Formely Known As \"-89,2 Degrees\"" -msgstr "" +msgstr "Nivået kjent som \"-89,2 grader\"" #: data/levels/bonus3/Global_Warming.stl:3 msgid "Global Warming" msgstr "Global oppvarming" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Ei natt i stjernehimmelen" @@ -40,7 +41,7 @@ msgstr "Nok ein kald dag" #: data/levels/bonus3/antarctic_rain.stl:3 msgid "Forest Rain (aka \"Antarctic Rain\")" -msgstr "" +msgstr "Skogreg (også kjent som \"Antartisk regn\")" #: data/levels/bonus3/but_no_one_can_stop_it.stl:3 msgid "...but no one can stop it..." @@ -78,7 +79,7 @@ msgstr "#Godt jobba! Du tok vare på den raude lykta! Du trengde ikkje gjera det msgid "Coconut Fortress" msgstr "Kokosnøttfestningen" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Krystallsoleglad" @@ -129,7 +130,7 @@ msgstr "Inn i borga" #: data/levels/bonus3/entering_castle.stl:60 msgid "#Sorry, nothing to see here! Use the rope to get out!" -msgstr "" +msgstr "#Vi beklager, ingenting å se her! Bruk tauet for å komme deg ut!" #: data/levels/bonus3/flowers.stl:3 msgid "Flower Bonus" @@ -139,7 +140,7 @@ msgstr "Blomebonus" msgid "After the Glaciers" msgstr "Etter istidene" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Heng frå taket" @@ -215,7 +216,7 @@ msgstr "Det snør på toppane" msgid "Three Frosty Icebergs" msgstr "Tre frosne isfjell" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Under isen" diff --git a/data/levels/bonus3/pl.po b/data/levels/bonus3/pl.po index a40033da302..adf429ad318 100644 --- a/data/levels/bonus3/pl.po +++ b/data/levels/bonus3/pl.po @@ -7,15 +7,15 @@ # Krzysztof Szeląg, 2015-2016,2018 # Krzysztof Szeląg, 2019 # Paweł Talar , 2013 -# Rob PlayZ, 2021 +# Alina Gobarov, 2021 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 19:30+0000\n" -"Last-Translator: Rob PlayZ\n" -"Language-Team: Polish (http://www.transifex.com/arctic-games/supertux/language/pl/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: Alina Gobarov, 2021\n" +"Language-Team: Polish (http://app.transifex.com/arctic-games/supertux/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -30,7 +30,7 @@ msgstr "Poziom przedtem znany jako \"-89,2 Stopnie\"" msgid "Global Warming" msgstr "Globalne ocieplenie" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Jedna noc na niebie" @@ -82,7 +82,7 @@ msgstr "#Dobra robota! Zachowałeś czerwoną latarnię! Ponieważ to zrobiłeś msgid "Coconut Fortress" msgstr "Kokosowa forteca" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Kryształ Zachodu" @@ -143,7 +143,7 @@ msgstr "Kwiecisty bonus" msgid "After the Glaciers" msgstr "Za lodowcami" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Zwisając z dachu" @@ -219,7 +219,7 @@ msgstr "Śnieżna góra" msgid "Three Frosty Icebergs" msgstr "Trzy mroźne góry lodowe" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Pod lodem" diff --git a/data/levels/bonus3/pt.po b/data/levels/bonus3/pt.po index 9208eaa115e..b18b4b05449 100644 --- a/data/levels/bonus3/pt.po +++ b/data/levels/bonus3/pt.po @@ -4,6 +4,7 @@ # # Translators: # Hugo Carvalho , 2021 +# lecalam, 2024 # Rui , 2016,2018 # BlaCoiso, 2016 # Rui , 2016 @@ -12,15 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-14 13:12+0000\n" -"Last-Translator: Hugo Carvalho \n" -"Language-Team: Portuguese (http://www.transifex.com/arctic-games/supertux/language/pt/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: lecalam, 2024\n" +"Language-Team: Portuguese (http://app.transifex.com/arctic-games/supertux/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/bonus3/-89-2_degrees.stl:3 msgid "The Level Formely Known As \"-89,2 Degrees\"" @@ -30,7 +31,7 @@ msgstr "O nível anteriormente conhecido como \"-89,2 Graus\"" msgid "Global Warming" msgstr "Aquecimento Global" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Uma Noite no Céu" @@ -48,7 +49,7 @@ msgstr "Chuva Florestal (ou \"Chuva Antártica\")" #: data/levels/bonus3/but_no_one_can_stop_it.stl:3 msgid "...but no one can stop it..." -msgstr "... mas ninguém o pode parar ..." +msgstr "...mas ninguém o pode parar..." #: data/levels/bonus3/but_no_one_can_stop_it.stl:428 msgid "" @@ -58,7 +59,7 @@ msgstr "-Desculpa, esta plataforma voadora está preguiçosa.\n-Volta mais tarde #: data/levels/bonus3/cant_climb_higher_clouds.stl:3 msgid "You can't climb higher than the clouds..." -msgstr "Não podes subir mais alto do que nuvens..." +msgstr "Não podes subir mais alto do que as nuvens..." #: data/levels/bonus3/castle_light+darkness-v3.stl:3 msgid "Castle of Light and Darkness" @@ -82,7 +83,7 @@ msgstr "#Bom trabalho! Mantiveste a lanterna vermelha! Não precisavas de ultrap msgid "Coconut Fortress" msgstr "Fortaleza de Coco" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Pôr do Sol Cristal" @@ -133,7 +134,7 @@ msgstr "A entrar no castelo" #: data/levels/bonus3/entering_castle.stl:60 msgid "#Sorry, nothing to see here! Use the rope to get out!" -msgstr "#Desculpa, nada para ver aqui! Use a corda para sair!" +msgstr "#Desculpa, não há nada para ver aqui! Usa a corda para sair!" #: data/levels/bonus3/flowers.stl:3 msgid "Flower Bonus" @@ -143,7 +144,7 @@ msgstr "Flor Bónus" msgid "After the Glaciers" msgstr "Após os Glaciares" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Suspenso ao Telhado" @@ -179,7 +180,7 @@ msgstr "Zona de limpeza" msgid "" "- Flush: \n" "#Press the up key to flush! " -msgstr "- Puxar o Autoclismo: \n#Carrega na tecla seta para cima para puxar o autoclismo!" +msgstr "- Puxar o autoclismo: \n#Carrega na tecla seta para cima para puxar o autoclismo!" #: data/levels/bonus3/niv-3.stl:380 msgid "" @@ -219,7 +220,7 @@ msgstr "Uma colina de neve" msgid "Three Frosty Icebergs" msgstr "Três Icebergues Gelados" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Sob o Gelo" diff --git a/data/levels/bonus3/pt_BR.po b/data/levels/bonus3/pt_BR.po index 843d9749a38..c36f2cb4f05 100644 --- a/data/levels/bonus3/pt_BR.po +++ b/data/levels/bonus3/pt_BR.po @@ -16,15 +16,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 02:57+0000\n" -"Last-Translator: Jesusaves \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/arctic-games/supertux/language/pt_BR/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: Jesusaves , 2021\n" +"Language-Team: Portuguese (Brazil) (http://app.transifex.com/arctic-games/supertux/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/bonus3/-89-2_degrees.stl:3 msgid "The Level Formely Known As \"-89,2 Degrees\"" @@ -34,7 +34,7 @@ msgstr "O Nível Anteriormente Conhecido Como \"-89,2 Graus\"" msgid "Global Warming" msgstr "Aquecimento Global" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Uma Noite no Céu" @@ -86,7 +86,7 @@ msgstr "#Parabéns! Você ficou com a lanterna vermelha! Você não precisava, m msgid "Coconut Fortress" msgstr "Fortaleza dos Cocos" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Pôr do sol de cristal" @@ -147,7 +147,7 @@ msgstr "Flor Bônus" msgid "After the Glaciers" msgstr "Atrás dos Glaciares" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Pendurado No Telhado" @@ -223,7 +223,7 @@ msgstr "A Colina de Neve" msgid "Three Frosty Icebergs" msgstr "Três Icebergues Congelados" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Embaixo do Gelo" diff --git a/data/levels/bonus3/ro.po b/data/levels/bonus3/ro.po index b4760bf24c2..fcd4d25812f 100644 --- a/data/levels/bonus3/ro.po +++ b/data/levels/bonus3/ro.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:08+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Romanian (http://app.transifex.com/arctic-games/supertux/language/ro/)\n" @@ -28,7 +28,7 @@ msgstr "Nivelul cunoscut ca „-89,2 grade”" msgid "Global Warming" msgstr "Încălzire globală" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "O noapte în cer" @@ -80,7 +80,7 @@ msgstr "#Bună treabă! Ai păstrat felinarul roșu! Nu era nevoie dar pentru c msgid "Coconut Fortress" msgstr "Fortăreața nucii de cocos" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Apusul de cristal" @@ -141,7 +141,7 @@ msgstr "Bonusul floare" msgid "After the Glaciers" msgstr "După ghețari" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Atârnând de acoperiș" @@ -217,7 +217,7 @@ msgstr "Un deal nins" msgid "Three Frosty Icebergs" msgstr "Trei ghețari geroși" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Sub gheață" diff --git a/data/levels/bonus3/ru.po b/data/levels/bonus3/ru.po index 66427768047..6cab27ee0ae 100644 --- a/data/levels/bonus3/ru.po +++ b/data/levels/bonus3/ru.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:08+0000\n" "Last-Translator: Темак, 2022-2023\n" "Language-Team: Russian (http://app.transifex.com/arctic-games/supertux/language/ru/)\n" @@ -32,7 +32,7 @@ msgstr "Уровень ранее был известен как «-89,2 гра msgid "Global Warming" msgstr "Глобальное Потепление" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Одна Ночь в Небе" @@ -84,7 +84,7 @@ msgstr "#Хорошая работа! Ты сохранил красный св msgid "Coconut Fortress" msgstr "Кокосовая Крепость" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Хрустальный Закат" @@ -145,7 +145,7 @@ msgstr "Цветочный бонус" msgid "After the Glaciers" msgstr "После Ледников" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Свисая с Крыши" @@ -221,7 +221,7 @@ msgstr "Снежный холм" msgid "Three Frosty Icebergs" msgstr "Три Ледяных Айсберга" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Подо Льдом" diff --git a/data/levels/bonus3/sk.po b/data/levels/bonus3/sk.po index e72b10bf694..3dea149cef5 100644 --- a/data/levels/bonus3/sk.po +++ b/data/levels/bonus3/sk.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: +# IAN RODRÍGUEZ Lorenzo, 2022 # Jose Riha , 2021 # Roman 'Kaktuxista' Benji , 2014 # Roman 'Kaktuxista' Benji , 2014 @@ -10,10 +11,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Slovak (http://www.transifex.com/arctic-games/supertux/language/sk/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" +"Language-Team: Slovak (http://app.transifex.com/arctic-games/supertux/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,13 +23,13 @@ msgstr "" #: data/levels/bonus3/-89-2_degrees.stl:3 msgid "The Level Formely Known As \"-89,2 Degrees\"" -msgstr "" +msgstr "Úroveň predtým známa ako \"-89,2 stupňa\"" #: data/levels/bonus3/Global_Warming.stl:3 msgid "Global Warming" msgstr "Globálne otepľovanie" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Jedna noc na oblohe" @@ -42,7 +43,7 @@ msgstr "Ďalší chladný deň" #: data/levels/bonus3/antarctic_rain.stl:3 msgid "Forest Rain (aka \"Antarctic Rain\")" -msgstr "" +msgstr "Lesný dážď (známy aj ako „antarktický dážď“)" #: data/levels/bonus3/but_no_one_can_stop_it.stl:3 msgid "...but no one can stop it..." @@ -52,7 +53,7 @@ msgstr "...ale nikto to nemôže zastaviť..." msgid "" "-Sorry, this flying platform is lazy.\n" "-Come back another time." -msgstr "" +msgstr "-Prepáčte, táto lietajúca plošina je lenivá.\n-Vráť sa inokedy." #: data/levels/bonus3/cant_climb_higher_clouds.stl:3 msgid "You can't climb higher than the clouds..." @@ -80,7 +81,7 @@ msgstr "#Dobrá práca! Ešte stále máš červený lampáš! Sice to nebolo tr msgid "Coconut Fortress" msgstr "Kokosová pevnosť" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Kryštálový súmrak" @@ -131,7 +132,7 @@ msgstr "Vstup do hradu" #: data/levels/bonus3/entering_castle.stl:60 msgid "#Sorry, nothing to see here! Use the rope to get out!" -msgstr "" +msgstr "#Prepáčte, nie je tu nič k videniu! Použite lano, aby ste sa dostali von!" #: data/levels/bonus3/flowers.stl:3 msgid "Flower Bonus" @@ -141,7 +142,7 @@ msgstr "Kvetinový bonus" msgid "After the Glaciers" msgstr "Po ľadovcoch" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Visiaci zo strechy" @@ -177,13 +178,13 @@ msgstr "Toaletná zóna" msgid "" "- Flush: \n" "#Press the up key to flush! " -msgstr "" +msgstr "- Spláchnuť:\n#Pre spláchnutie stlačte tlačidlo hore!" #: data/levels/bonus3/niv-3.stl:380 msgid "" "- A Way out?\n" "#Let's Jump! " -msgstr "" +msgstr "- Cesta von?\n#Poďme skákať!" #: data/levels/bonus3/over_the_ocean.stl:3 msgid "My Penny is over the ocean" @@ -217,7 +218,7 @@ msgstr "Snežný kopec" msgid "Three Frosty Icebergs" msgstr "Tri mrazivé ľadovce" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Pod ľadom" diff --git a/data/levels/bonus3/sl.po b/data/levels/bonus3/sl.po index 8e2e2a1cf4e..d14306901c1 100644 --- a/data/levels/bonus3/sl.po +++ b/data/levels/bonus3/sl.po @@ -4,15 +4,15 @@ # # Translators: # Gorzy Gorup , 2016 -# Gorzy Gorup , 2018-2019 +# Gorzy Gorup , 2018-2019,2022 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Slovenian (http://www.transifex.com/arctic-games/supertux/language/sl/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: Gorzy Gorup , 2018-2019,2022\n" +"Language-Team: Slovenian (http://app.transifex.com/arctic-games/supertux/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -21,19 +21,19 @@ msgstr "" #: data/levels/bonus3/-89-2_degrees.stl:3 msgid "The Level Formely Known As \"-89,2 Degrees\"" -msgstr "" +msgstr "Stopnja, nekdaj imenovana \"-89,2 stopinj\"" #: data/levels/bonus3/Global_Warming.stl:3 msgid "Global Warming" msgstr "Globalno segrevanje" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Ena noč na nebu" #: data/levels/bonus3/abandoned_castle.stl:3 msgid "The abandoned castle" -msgstr "Opuščeni grad" +msgstr "Zapuščeni grad" #: data/levels/bonus3/another_cold_day.stl:3 msgid "Another cold day" @@ -41,29 +41,29 @@ msgstr "Še en hladen dan" #: data/levels/bonus3/antarctic_rain.stl:3 msgid "Forest Rain (aka \"Antarctic Rain\")" -msgstr "" +msgstr "Gozdni dež (alias \"Antarktični dež\")" #: data/levels/bonus3/but_no_one_can_stop_it.stl:3 msgid "...but no one can stop it..." -msgstr "...a nihče ga ne more ustaviti..." +msgstr "... a nihče ga ne more ustaviti ..." #: data/levels/bonus3/but_no_one_can_stop_it.stl:428 msgid "" "-Sorry, this flying platform is lazy.\n" "-Come back another time." -msgstr "-Oprosti, ampak ta leteča ploščad je odbita.\n-Vrni se kdaj drugič." +msgstr "-Oprosti, ta leteča ploščad noče nikamor.\n-Vrni se kdaj drugič." #: data/levels/bonus3/cant_climb_higher_clouds.stl:3 msgid "You can't climb higher than the clouds..." -msgstr "Ne moreš se povzpeti višje od oblakov..." +msgstr "Ne moreš višje od oblakov ..." #: data/levels/bonus3/castle_light+darkness-v3.stl:3 msgid "Castle of Light and Darkness" -msgstr "Grad luči in teme" +msgstr "Grad svetlobe in teme" #: data/levels/bonus3/cave_run.stl:3 msgid "Cave Run" -msgstr "Tek po jami" +msgstr "Jamski tek" #: data/levels/bonus3/cavern_v2.stl:3 msgid "Cold Cavern" @@ -73,13 +73,13 @@ msgstr "Hladna votlina" msgid "" "#Good job! You kept the red lantern! You didn't need to though, but just " "because you did, have 100 coins!" -msgstr "#Dobro opravljeno! Prinesel/a si rdečo svetilko! Ni ti bilo treba, ampak že zaradi truda dobiš 100 kovancev!" +msgstr "#Čestitke! Prinesel/a si rdečo svetilko! Ni ti bilo treba, ampak že zaradi truda dobiš 100 kovancev!" #: data/levels/bonus3/coconut_fortress.stl:3 msgid "Coconut Fortress" msgstr "Kokosova utrdba" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Kristalni sončni zahod" @@ -97,7 +97,7 @@ msgstr "Kristalna kataklizma" #: data/levels/bonus3/crystalfields.stl:3 msgid "Out on the Crystal Fields" -msgstr "Na kristalnih ravninah" +msgstr "Na kristalnih ravnicah" #: data/levels/bonus3/dark_castle-v2.stl:3 #: data/levels/bonus3/dark_castle.stl:3 @@ -106,11 +106,11 @@ msgstr "Temačni gradič" #: data/levels/bonus3/deep_deeper.stl:3 msgid "Deep, deeper..." -msgstr "Globoko, še globlje..." +msgstr "Globoko, še globlje ..." #: data/levels/bonus3/deepest.stl:3 msgid "...deepest!" -msgstr "...najgloblje!" +msgstr "... najgloblje!" #: data/levels/bonus3/dungeon_island/dungeon1.stl:3 msgid "Circles" @@ -130,17 +130,17 @@ msgstr "Grajski vhod" #: data/levels/bonus3/entering_castle.stl:60 msgid "#Sorry, nothing to see here! Use the rope to get out!" -msgstr "" +msgstr "#Oprosti, tukaj ni nič zanimivega! Po vrvi splezaj ven!" #: data/levels/bonus3/flowers.stl:3 msgid "Flower Bonus" -msgstr "Cvetni Bonus" +msgstr "Rožni bonus" #: data/levels/bonus3/glaciers.stl:3 msgid "After the Glaciers" msgstr "Za ledeniki" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Visenje s strehe" @@ -162,7 +162,7 @@ msgstr "Malce luči v temi ne bi škodilo, hvala!" #: data/levels/bonus3/niv-1.1.stl:3 msgid "Snowfall alert" -msgstr "Svarilo za sneženje" +msgstr "Pozor, sneži!" #: data/levels/bonus3/niv-2.1.stl:3 msgid "Holes, a Day on Ice" @@ -170,13 +170,13 @@ msgstr "Luknje, en dan na ledu" #: data/levels/bonus3/niv-3.stl:3 msgid "The Toilette zone" -msgstr "Toaletno območje" +msgstr "Straniščno območje" #: data/levels/bonus3/niv-3.stl:58 msgid "" "- Flush: \n" "#Press the up key to flush! " -msgstr "-Odplakni:\n#Pritisni tipko Gor, da odplakneš!" +msgstr "-Odplakni:\n#Pritisni tipko za \"gor\", da odplakneš!" #: data/levels/bonus3/niv-3.stl:380 msgid "" @@ -186,15 +186,15 @@ msgstr "-Pot ven?\n#Skočimo!" #: data/levels/bonus3/over_the_ocean.stl:3 msgid "My Penny is over the ocean" -msgstr "Moja Penny je onkraj oceana" +msgstr "Moja Pika je na drugi strani oceana" #: data/levels/bonus3/pinksnow.stl:3 msgid "Pink Snow" -msgstr "Rozasti sneg" +msgstr "Rožnati sneg" #: data/levels/bonus3/red_alert_forest.stl:3 msgid "Red alert! The forest is burning!" -msgstr "Rdeči alarm! Gozd gori!" +msgstr "Huda nevarnost! Gozd gori!" #: data/levels/bonus3/sever_escape.stl:3 msgid "Sewer escape" @@ -202,11 +202,11 @@ msgstr "Pobeg iz kanalizacije" #: data/levels/bonus3/shakespeare-rain.stl:3 msgid "To rain or not to rain - That's the question" -msgstr "Deževati ali ne deževati - To je zdaj vprašanje" +msgstr "Deževati ali ne deževati - to je zdaj vprašanje" #: data/levels/bonus3/shakespeare-rain_antarctic.stl:3 msgid "To rain or not to rain - That's the question (Antarctic)" -msgstr "Deževati ali ne deževati - To je zdaj vprašanje (Antarktika)" +msgstr "Deževati ali ne deževati - to je zdaj vprašanje (Antarktika)" #: data/levels/bonus3/snowy_hill.stl:3 msgid "A snowy hill" @@ -216,13 +216,13 @@ msgstr "Snežni grič" msgid "Three Frosty Icebergs" msgstr "Tri ledene gore" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Pod ledom" #: data/levels/bonus3/worldmap.stwm:3 msgid "Bonus Island III" -msgstr "Bonus Otok III" +msgstr "Bonus otok III" #: data/levels/bonus3/worldmap.stwm:273 msgid "Go Home" diff --git a/data/levels/bonus3/sq.po b/data/levels/bonus3/sq.po index 2e8a96c635a..90ac37d0a54 100644 --- a/data/levels/bonus3/sq.po +++ b/data/levels/bonus3/sq.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:08+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Albanian (http://app.transifex.com/arctic-games/supertux/language/sq/)\n" @@ -27,7 +27,7 @@ msgstr "Niveli i njohur më parë si \"-89,2 gradë\"" msgid "Global Warming" msgstr "Ngrohja globale" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Një Natë në Qiell" @@ -79,7 +79,7 @@ msgstr "#Punë e mirë! E ke mbajtur fenerin e kuq! Megjithatë, nuk kishit nevo msgid "Coconut Fortress" msgstr "Kalaja e kokosit" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Perëndimi i kristaltë" @@ -140,7 +140,7 @@ msgstr "Bonusi i luleve" msgid "After the Glaciers" msgstr "Pas Akullnajave" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Varur nga çatia" @@ -216,7 +216,7 @@ msgstr "Një kodër prej bore" msgid "Three Frosty Icebergs" msgstr "Tre ajsbergë të ftohtë" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Nën akull" diff --git a/data/levels/bonus3/sr.po b/data/levels/bonus3/sr.po index ae797247ed7..7bdcc7bfa06 100644 --- a/data/levels/bonus3/sr.po +++ b/data/levels/bonus3/sr.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Serbian (http://www.transifex.com/arctic-games/supertux/language/sr/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: Slobodan Simić , 2016,2018,2020\n" +"Language-Team: Serbian (http://app.transifex.com/arctic-games/supertux/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -28,7 +28,7 @@ msgstr "" msgid "Global Warming" msgstr "Глобално загревање" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Једна ноћ на небу" @@ -80,7 +80,7 @@ msgstr "#Одлично! Сачувао си црвени фењер! Ниси msgid "Coconut Fortress" msgstr "Кокос тврђава" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Кристални залазак" @@ -141,7 +141,7 @@ msgstr "Цветни бонус" msgid "After the Glaciers" msgstr "Након глечера" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Висећи са крова" @@ -217,7 +217,7 @@ msgstr "Завејано брдо" msgid "Three Frosty Icebergs" msgstr "Ледени брегови" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Под ледом" diff --git a/data/levels/bonus3/sv.po b/data/levels/bonus3/sv.po index caad93183fb..d61165b7661 100644 --- a/data/levels/bonus3/sv.po +++ b/data/levels/bonus3/sv.po @@ -5,16 +5,16 @@ # Translators: # Anders Jonsson , 2017-2018 # Kristoffer Grundström , 2014 -# Sebastian Rasmussen , 2019 +# Sebastian Rasmussen , 2019,2021 # Sebastian Rasmussen , 2015-2016 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Swedish (http://www.transifex.com/arctic-games/supertux/language/sv/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: Sebastian Rasmussen , 2019,2021\n" +"Language-Team: Swedish (http://app.transifex.com/arctic-games/supertux/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -23,13 +23,13 @@ msgstr "" #: data/levels/bonus3/-89-2_degrees.stl:3 msgid "The Level Formely Known As \"-89,2 Degrees\"" -msgstr "" +msgstr "Nivån tidigare känd som ”-89.2 grader”" #: data/levels/bonus3/Global_Warming.stl:3 msgid "Global Warming" msgstr "Global uppvärmning" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "En natt i himlen" @@ -43,7 +43,7 @@ msgstr "Ytterligare en kall dag" #: data/levels/bonus3/antarctic_rain.stl:3 msgid "Forest Rain (aka \"Antarctic Rain\")" -msgstr "" +msgstr "Skogsregn (också känd som ”Antarktiskt regn”)" #: data/levels/bonus3/but_no_one_can_stop_it.stl:3 msgid "...but no one can stop it..." @@ -81,7 +81,7 @@ msgstr "#Bra jobbat! Du behöll den röda lyktan! Du behövde inte göra det ege msgid "Coconut Fortress" msgstr "Kokosnötsfästningen" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Kristallsolnedgången" @@ -132,7 +132,7 @@ msgstr "Går in i slottet" #: data/levels/bonus3/entering_castle.stl:60 msgid "#Sorry, nothing to see here! Use the rope to get out!" -msgstr "" +msgstr "#Det finns dessvärre inget att se här! Använd repet för att komma ut!" #: data/levels/bonus3/flowers.stl:3 msgid "Flower Bonus" @@ -142,7 +142,7 @@ msgstr "Blombonus" msgid "After the Glaciers" msgstr "Efter glaciärerna" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Hängande från taket" @@ -218,7 +218,7 @@ msgstr "En snöig kulle" msgid "Three Frosty Icebergs" msgstr "Tre frostiga isberg" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Under isen" diff --git a/data/levels/bonus3/te.po b/data/levels/bonus3/te.po index 3f58393b139..d0d57b7e590 100644 --- a/data/levels/bonus3/te.po +++ b/data/levels/bonus3/te.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:08+0000\n" "Last-Translator: Nanowarrior, 2021-2022\n" "Language-Team: Telugu (http://app.transifex.com/arctic-games/supertux/language/te/)\n" @@ -26,7 +26,7 @@ msgstr "స్థాయిని గతంలో \"-89,2 డిగ్రీల msgid "Global Warming" msgstr "ప్రపంచం వేడెక్కడం" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "ఆకాశంలో ఒక రాత్రి" @@ -78,7 +78,7 @@ msgstr "#మంచి పని! మీరు ఎరుపు లాంతరు msgid "Coconut Fortress" msgstr "కొబ్బరి కోట" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "స్పటిక సూర్యాస్తమయం" @@ -139,7 +139,7 @@ msgstr "పుష్పం బోనస్" msgid "After the Glaciers" msgstr "హిమానీనదాల తరువాత" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "పైకప్పు నుండి వేలాడుతోంది" @@ -215,7 +215,7 @@ msgstr "ఒక మంచు కొండ" msgid "Three Frosty Icebergs" msgstr "మూడు అతిశీతలమైన మంచుకొండలు" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "మంచు కింద" diff --git a/data/levels/bonus3/tr.po b/data/levels/bonus3/tr.po index 1d0cfebaa0d..b43ec2b2ded 100644 --- a/data/levels/bonus3/tr.po +++ b/data/levels/bonus3/tr.po @@ -6,17 +6,18 @@ # Alkım Kaçmaz , 2013 # Erdoğan Şahin, 2016 # mahmut özcan , 2015-2016 +# IAN RODRÍGUEZ Lorenzo, 2022 # mahmut özcan , 2020 -# yakup , 2014 +# 9d4282795e87ad099e39d98812f1a822_ade2f01 , 2014 # Yusuf Özsoy , 2013 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Turkish (http://www.transifex.com/arctic-games/supertux/language/tr/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" +"Language-Team: Turkish (http://app.transifex.com/arctic-games/supertux/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -25,13 +26,13 @@ msgstr "" #: data/levels/bonus3/-89-2_degrees.stl:3 msgid "The Level Formely Known As \"-89,2 Degrees\"" -msgstr "" +msgstr "Eski Adıyla “-89,2 Derece” Olarak Bilinen Seviye" #: data/levels/bonus3/Global_Warming.stl:3 msgid "Global Warming" msgstr "Küresel Isınma" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Gökyüzünde Bir Gece" @@ -45,7 +46,7 @@ msgstr "Başka bir soğuk gün" #: data/levels/bonus3/antarctic_rain.stl:3 msgid "Forest Rain (aka \"Antarctic Rain\")" -msgstr "" +msgstr "Orman Yağmuru (\"Antarktika Yağmuru\" olarak da bilinir)" #: data/levels/bonus3/but_no_one_can_stop_it.stl:3 msgid "...but no one can stop it..." @@ -83,7 +84,7 @@ msgstr "#İyi iş! Kırmızı feneri kaptın! Gerek yok, ama sadece, 100 altına msgid "Coconut Fortress" msgstr "Hindistan cevizi Kalesi" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Kristal Günbatımı" @@ -134,7 +135,7 @@ msgstr "Kaleye giriliyor" #: data/levels/bonus3/entering_castle.stl:60 msgid "#Sorry, nothing to see here! Use the rope to get out!" -msgstr "" +msgstr "#Üzgünüm, burada görülecek bir şey yok! Dışarı çıkmak için ipi kullanın!" #: data/levels/bonus3/flowers.stl:3 msgid "Flower Bonus" @@ -144,7 +145,7 @@ msgstr "Çiçek Bonusu" msgid "After the Glaciers" msgstr "Buzullardan Sonra" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Çatıdan Sarkmak" @@ -220,7 +221,7 @@ msgstr "Karlı Bir Tepe" msgid "Three Frosty Icebergs" msgstr "Üç Donmuş Buzdağı" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Buzun Altında" diff --git a/data/levels/bonus3/tt.po b/data/levels/bonus3/tt.po index 7a666bea005..9614fbc94e7 100644 --- a/data/levels/bonus3/tt.po +++ b/data/levels/bonus3/tt.po @@ -3,16 +3,17 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: +# IAN RODRÍGUEZ Lorenzo, 2022 # Timur Seber , 2021 # Булат Ибраһим , 2016 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Tatar (http://www.transifex.com/arctic-games/supertux/language/tt/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" +"Language-Team: Tatar (http://app.transifex.com/arctic-games/supertux/language/tt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -21,13 +22,13 @@ msgstr "" #: data/levels/bonus3/-89-2_degrees.stl:3 msgid "The Level Formely Known As \"-89,2 Degrees\"" -msgstr "" +msgstr "\"-89,2 градус\" дип аталган дәрәҗә." #: data/levels/bonus3/Global_Warming.stl:3 msgid "Global Warming" msgstr "Глобаль җылыну" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Күктә бер төн" @@ -41,7 +42,7 @@ msgstr "Тагын бер салкын көн" #: data/levels/bonus3/antarctic_rain.stl:3 msgid "Forest Rain (aka \"Antarctic Rain\")" -msgstr "" +msgstr "Урман яңгыры (\"Антарктида яңгыры\")" #: data/levels/bonus3/but_no_one_can_stop_it.stl:3 msgid "...but no one can stop it..." @@ -79,7 +80,7 @@ msgstr "#Яхшы эш! Син кызыл яктырткычны саклады msgid "Coconut Fortress" msgstr "Кокос Кальгасы" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Бәллүр Шәфәкъ" @@ -130,7 +131,7 @@ msgstr "Сарайга керү" #: data/levels/bonus3/entering_castle.stl:60 msgid "#Sorry, nothing to see here! Use the rope to get out!" -msgstr "" +msgstr "#Гафу итегез, монда күрергә бернәрсә дә юк! Арканны кулланыгыз!" #: data/levels/bonus3/flowers.stl:3 msgid "Flower Bonus" @@ -140,7 +141,7 @@ msgstr "Чәчәкле ташлама" msgid "After the Glaciers" msgstr "Бозлыклардан соң" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Түбәдән Асылынып" @@ -216,7 +217,7 @@ msgstr "Карлы калкулык" msgid "Three Frosty Icebergs" msgstr "Өч Каткан Айсберг" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Боз астында" diff --git a/data/levels/bonus3/uk.po b/data/levels/bonus3/uk.po index a1d0f42142b..7650393fa88 100644 --- a/data/levels/bonus3/uk.po +++ b/data/levels/bonus3/uk.po @@ -3,16 +3,17 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: +# IAN RODRÍGUEZ Lorenzo, 2022 # Max Lyashuk , 2015 # Olexandr Nesterenko , 2019 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Ukrainian (http://www.transifex.com/arctic-games/supertux/language/uk/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" +"Language-Team: Ukrainian (http://app.transifex.com/arctic-games/supertux/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -21,13 +22,13 @@ msgstr "" #: data/levels/bonus3/-89-2_degrees.stl:3 msgid "The Level Formely Known As \"-89,2 Degrees\"" -msgstr "" +msgstr "Рівень, раніше відомий як \"-89,2 градуса\"" #: data/levels/bonus3/Global_Warming.stl:3 msgid "Global Warming" msgstr "Глобальне потепління" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Одна ніч в небі" @@ -41,7 +42,7 @@ msgstr "Ще один холодний день" #: data/levels/bonus3/antarctic_rain.stl:3 msgid "Forest Rain (aka \"Antarctic Rain\")" -msgstr "" +msgstr "Лісовий дощ (він же \"Антарктичний дощ\")" #: data/levels/bonus3/but_no_one_can_stop_it.stl:3 msgid "...but no one can stop it..." @@ -79,7 +80,7 @@ msgstr "#Гарна робота! Ви втримали цей червоний msgid "Coconut Fortress" msgstr "Кокосова фортеця" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Криштальний захід сонця" @@ -130,7 +131,7 @@ msgstr "Вхід до замку" #: data/levels/bonus3/entering_castle.stl:60 msgid "#Sorry, nothing to see here! Use the rope to get out!" -msgstr "" +msgstr "#Вибачте, тут нічого не видно! Використовуйте мотузку, щоб вибратися!" #: data/levels/bonus3/flowers.stl:3 msgid "Flower Bonus" @@ -140,7 +141,7 @@ msgstr "Квітка-бонус" msgid "After the Glaciers" msgstr "Після льодовиків" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Висячи на даху" @@ -166,7 +167,7 @@ msgstr "Сповіщення про снігопад" #: data/levels/bonus3/niv-2.1.stl:3 msgid "Holes, a Day on Ice" -msgstr "" +msgstr "Дірки, день на льоду" #: data/levels/bonus3/niv-3.stl:3 msgid "The Toilette zone" @@ -176,7 +177,7 @@ msgstr "Вбиральня" msgid "" "- Flush: \n" "#Press the up key to flush! " -msgstr "" +msgstr "- Змив:\n#Натисніть клавішу вгору, щоб змити!" #: data/levels/bonus3/niv-3.stl:380 msgid "" @@ -216,7 +217,7 @@ msgstr "Снігова гірка" msgid "Three Frosty Icebergs" msgstr "Три холодні айсберги" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Під льодом" diff --git a/data/levels/bonus3/uz.po b/data/levels/bonus3/uz.po index d734e7591d8..fbde3d92449 100644 --- a/data/levels/bonus3/uz.po +++ b/data/levels/bonus3/uz.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:08+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Uzbek (http://app.transifex.com/arctic-games/supertux/language/uz/)\n" @@ -26,7 +26,7 @@ msgstr "Ilgari \"-89,2 daraja\" deb nomlanuvchi daraja" msgid "Global Warming" msgstr "Global isish" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "Osmonda bir kecha" @@ -78,7 +78,7 @@ msgstr "#Juda yaxshi! Siz qizil chiroqni saqladingiz! Sizga kerak emas edi, leki msgid "Coconut Fortress" msgstr "Hindiston yong'og'i qal'asi" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "Kristal quyosh botishi" @@ -139,7 +139,7 @@ msgstr "Gul bonusi" msgid "After the Glaciers" msgstr "Muzliklardan keyin" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "Tomdan osilgan" @@ -215,7 +215,7 @@ msgstr "Qorli tepalik" msgid "Three Frosty Icebergs" msgstr "Uchta Ayozli Aysberg" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "Muz ostida" diff --git a/data/levels/bonus3/zh_CN.po b/data/levels/bonus3/zh_CN.po index db4e41a7e70..78f82ac8c0c 100644 --- a/data/levels/bonus3/zh_CN.po +++ b/data/levels/bonus3/zh_CN.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Chinese (China) (http://www.transifex.com/arctic-games/supertux/language/zh_CN/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: 玉堂白鹤 , 2018\n" +"Language-Team: Chinese (China) (http://app.transifex.com/arctic-games/supertux/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -21,19 +21,19 @@ msgstr "" #: data/levels/bonus3/-89-2_degrees.stl:3 msgid "The Level Formely Known As \"-89,2 Degrees\"" -msgstr "" +msgstr "以前叫做“-89.2 度”的关卡" #: data/levels/bonus3/Global_Warming.stl:3 msgid "Global Warming" msgstr "全球变暖" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" -msgstr "空中夜晚" +msgstr "天空中的一夜" #: data/levels/bonus3/abandoned_castle.stl:3 msgid "The abandoned castle" -msgstr "被遗弃的城堡" +msgstr "废弃城堡" #: data/levels/bonus3/another_cold_day.stl:3 msgid "Another cold day" @@ -41,11 +41,11 @@ msgstr "又一个寒冷的日子" #: data/levels/bonus3/antarctic_rain.stl:3 msgid "Forest Rain (aka \"Antarctic Rain\")" -msgstr "" +msgstr "森林之雨(又名“南极之雨”)" #: data/levels/bonus3/but_no_one_can_stop_it.stl:3 msgid "...but no one can stop it..." -msgstr "...但没有人能阻止它..." +msgstr "……但没有人能阻止它……" #: data/levels/bonus3/but_no_one_can_stop_it.stl:428 msgid "" @@ -55,7 +55,7 @@ msgstr "-对不起,这个飞行平台太懒了。\n-换个时间再来吧。" #: data/levels/bonus3/cant_climb_higher_clouds.stl:3 msgid "You can't climb higher than the clouds..." -msgstr "你不能爬上比云高的地方..." +msgstr "你无法爬得比云更高……" #: data/levels/bonus3/castle_light+darkness-v3.stl:3 msgid "Castle of Light and Darkness" @@ -63,7 +63,7 @@ msgstr "光明与黑暗之城" #: data/levels/bonus3/cave_run.stl:3 msgid "Cave Run" -msgstr "洞中快跑" +msgstr "洞穴逃亡" #: data/levels/bonus3/cavern_v2.stl:3 msgid "Cold Cavern" @@ -73,13 +73,13 @@ msgstr "寒冷洞窟" msgid "" "#Good job! You kept the red lantern! You didn't need to though, but just " "because you did, have 100 coins!" -msgstr "#好样的!你保住了红灯笼!你虽然不必这么做,但因为你做到了,拿下这100颗金币!" +msgstr "#好样的!你保住了红灯笼!你虽然不必这么做,但正因为你做到了,请收下这 100 个金币!" #: data/levels/bonus3/coconut_fortress.stl:3 msgid "Coconut Fortress" msgstr "椰子要塞" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "水晶日落" @@ -97,7 +97,7 @@ msgstr "水晶灾难" #: data/levels/bonus3/crystalfields.stl:3 msgid "Out on the Crystal Fields" -msgstr "在水晶田野外" +msgstr "在水晶田野上" #: data/levels/bonus3/dark_castle-v2.stl:3 #: data/levels/bonus3/dark_castle.stl:3 @@ -106,11 +106,11 @@ msgstr "黑暗城堡" #: data/levels/bonus3/deep_deeper.stl:3 msgid "Deep, deeper..." -msgstr "深,更深......" +msgstr "深,更深……" #: data/levels/bonus3/deepest.stl:3 msgid "...deepest!" -msgstr "...最深处!" +msgstr "……最深!" #: data/levels/bonus3/dungeon_island/dungeon1.stl:3 msgid "Circles" @@ -122,7 +122,7 @@ msgstr "不可错过的旅程" #: data/levels/bonus3/dungeon_island/going_down.stl:3 msgid "Going down" -msgstr "下去" +msgstr "一路向下" #: data/levels/bonus3/entering_castle.stl:3 msgid "Entering the castle" @@ -130,19 +130,19 @@ msgstr "进入城堡" #: data/levels/bonus3/entering_castle.stl:60 msgid "#Sorry, nothing to see here! Use the rope to get out!" -msgstr "" +msgstr "#对不起,没什么可看的了!使用绳子出去吧!" #: data/levels/bonus3/flowers.stl:3 msgid "Flower Bonus" -msgstr "鲜花额外关" +msgstr "鲜花奖励关" #: data/levels/bonus3/glaciers.stl:3 msgid "After the Glaciers" msgstr "冰川之后" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" -msgstr "屋檐上的等待" +msgstr "悬挂在屋顶上" #: data/levels/bonus3/hilly_landscape.stl:3 msgid "A hilly landscape" @@ -150,7 +150,7 @@ msgstr "多山之景" #: data/levels/bonus3/in_the_spring.stl:3 msgid "In the Spring" -msgstr "春天" +msgstr "春天里" #: data/levels/bonus3/its_getting_unfinishable.stl:3 msgid "It's getting unfinishable" @@ -158,11 +158,11 @@ msgstr "根本停不下来" #: data/levels/bonus3/light_in_the_darkness.stl:3 msgid "Some light in the darkness would be fine, thanks!" -msgstr "黑暗中的一些光会很好,谢谢!" +msgstr "黑暗中有点光就好了,谢谢!" #: data/levels/bonus3/niv-1.1.stl:3 msgid "Snowfall alert" -msgstr "降雪警告" +msgstr "暴雪预警" #: data/levels/bonus3/niv-2.1.stl:3 msgid "Holes, a Day on Ice" @@ -176,13 +176,13 @@ msgstr "厕所地带" msgid "" "- Flush: \n" "#Press the up key to flush! " -msgstr "-冲:\n#按“上”去冲!" +msgstr "-冲水:\n#按“上”键冲水!" #: data/levels/bonus3/niv-3.stl:380 msgid "" "- A Way out?\n" "#Let's Jump! " -msgstr "-出路?\n#让我们跳吧! " +msgstr "-在寻找出路?\n#让我们跳吧!" #: data/levels/bonus3/over_the_ocean.stl:3 msgid "My Penny is over the ocean" @@ -194,7 +194,7 @@ msgstr "粉红色的雪" #: data/levels/bonus3/red_alert_forest.stl:3 msgid "Red alert! The forest is burning!" -msgstr "红色警报! 森林在燃烧!" +msgstr "红色警报!森林在燃烧!" #: data/levels/bonus3/sever_escape.stl:3 msgid "Sewer escape" @@ -216,13 +216,13 @@ msgstr "多雪的小山" msgid "Three Frosty Icebergs" msgstr "三座冰冷的冰山" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" -msgstr "冰面下方" +msgstr "寒冰之下" #: data/levels/bonus3/worldmap.stwm:3 msgid "Bonus Island III" -msgstr "Bonus Island III" +msgstr "额外 III 岛" #: data/levels/bonus3/worldmap.stwm:273 msgid "Go Home" diff --git a/data/levels/bonus3/zh_TW.po b/data/levels/bonus3/zh_TW.po index b315cc987b7..33c32ead83d 100644 --- a/data/levels/bonus3/zh_TW.po +++ b/data/levels/bonus3/zh_TW.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 19:20+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/arctic-games/supertux/language/zh_TW/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:08+0000\n" +"Last-Translator: 黃柏諺 , 2019\n" +"Language-Team: Chinese (Taiwan) (http://app.transifex.com/arctic-games/supertux/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Global Warming" msgstr "全球暖化" -#: data/levels/bonus3/One Night in the Sky.stl:3 +#: ⁨data/levels/bonus3/One Night in the Sky.stl⁩:3 msgid "One Night in the Sky" msgstr "某晚的夜空" @@ -79,7 +79,7 @@ msgstr "#做得好!您保留了紅燈籠!您雖然不需要,所以就有 msgid "Coconut Fortress" msgstr "椰子要塞" -#: data/levels/bonus3/crystal sunset.stl:3 +#: ⁨data/levels/bonus3/crystal sunset.stl⁩:3 msgid "Crystal Sunset" msgstr "水晶日落" @@ -140,7 +140,7 @@ msgstr "花兒紅利" msgid "After the Glaciers" msgstr "冰川之後" -#: data/levels/bonus3/hanging roof.stl:3 +#: ⁨data/levels/bonus3/hanging roof.stl⁩:3 msgid "Hanging From the Roof" msgstr "吊在天花板" @@ -216,7 +216,7 @@ msgstr "一座雪山" msgid "Three Frosty Icebergs" msgstr "三個結凍的冰堡" -#: data/levels/bonus3/under ice.stl:3 +#: ⁨data/levels/bonus3/under ice.stl⁩:3 msgid "Under the Ice" msgstr "冰之下" diff --git a/data/levels/bonus4/af_ZA.po b/data/levels/bonus4/af_ZA.po index 6936c67b753..a87e8c52fbd 100644 --- a/data/levels/bonus4/af_ZA.po +++ b/data/levels/bonus4/af_ZA.po @@ -14,7 +14,7 @@ msgstr "" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" "Last-Translator: Martin van Zijl , 2019\n" -"Language-Team: Afrikaans (South Africa) (https://www.transifex.com/arctic-games/teams/95/af_ZA/)\n" +"Language-Team: Afrikaans (South Africa) (https://app.transifex.com/arctic-games/teams/95/af_ZA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus4/bg.po b/data/levels/bonus4/bg.po index de4e6d11a1b..ee2275e984c 100644 --- a/data/levels/bonus4/bg.po +++ b/data/levels/bonus4/bg.po @@ -14,7 +14,7 @@ msgstr "" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" "Last-Translator: Любомир Василев, 2019\n" -"Language-Team: Bulgarian (https://www.transifex.com/arctic-games/teams/95/bg/)\n" +"Language-Team: Bulgarian (https://app.transifex.com/arctic-games/teams/95/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus4/cs.po b/data/levels/bonus4/cs.po index d585ba16556..a61d4852f9d 100644 --- a/data/levels/bonus4/cs.po +++ b/data/levels/bonus4/cs.po @@ -15,7 +15,7 @@ msgstr "" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" "Last-Translator: Jiří Paleček , 2021\n" -"Language-Team: Czech (https://www.transifex.com/arctic-games/teams/95/cs/)\n" +"Language-Team: Czech (https://app.transifex.com/arctic-games/teams/95/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus4/da.po b/data/levels/bonus4/da.po index 1333f0d8165..58ca544f656 100644 --- a/data/levels/bonus4/da.po +++ b/data/levels/bonus4/da.po @@ -15,7 +15,7 @@ msgstr "" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" "Last-Translator: Joe Hansen , 2019\n" -"Language-Team: Danish (https://www.transifex.com/arctic-games/teams/95/da/)\n" +"Language-Team: Danish (https://app.transifex.com/arctic-games/teams/95/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus4/de.po b/data/levels/bonus4/de.po index 5b57761dea3..be6a7927e73 100644 --- a/data/levels/bonus4/de.po +++ b/data/levels/bonus4/de.po @@ -5,9 +5,9 @@ # # Translators: # Ettore Atalan , 2019 -# Nils Welzk, 2019 +# 9b2cdc846e52fab1172fd1fff9d4eef3_46ef530, 2019 # Tobias Markus , 2019 -# Wuzzy , 2019 +# Wuzzy , 2019 # #, fuzzy msgid "" @@ -16,8 +16,8 @@ msgstr "" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" -"Last-Translator: Wuzzy , 2019\n" -"Language-Team: German (https://www.transifex.com/arctic-games/teams/95/de/)\n" +"Last-Translator: Wuzzy , 2019\n" +"Language-Team: German (https://app.transifex.com/arctic-games/teams/95/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus4/el.po b/data/levels/bonus4/el.po index f03ccd5eeee..3ce69f6e117 100644 --- a/data/levels/bonus4/el.po +++ b/data/levels/bonus4/el.po @@ -6,7 +6,7 @@ # Translators: # Vangelis Nomikos , 2019 # I will not tell you that , 2019 -# Vangelis Skarmoutsos , 2019 +# Vangelis Skarmoutsos (SkarmoutsosV) , 2019 # IAN RODRÍGUEZ Lorenzo, 2022 # #, fuzzy diff --git a/data/levels/bonus4/es.po b/data/levels/bonus4/es.po index 101b1984130..c6314957982 100644 --- a/data/levels/bonus4/es.po +++ b/data/levels/bonus4/es.po @@ -15,12 +15,12 @@ msgstr "" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" "Last-Translator: Tam Ezquerra , 2019\n" -"Language-Team: Spanish (https://www.transifex.com/arctic-games/teams/95/es/)\n" +"Language-Team: Spanish (https://app.transifex.com/arctic-games/teams/95/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/bonus4/A_Narrow_Path.stl:3 msgid "A Narrow Path" diff --git a/data/levels/bonus4/es_AR.po b/data/levels/bonus4/es_AR.po index 44c365c3afa..91264e9d987 100644 --- a/data/levels/bonus4/es_AR.po +++ b/data/levels/bonus4/es_AR.po @@ -14,12 +14,12 @@ msgstr "" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" "Last-Translator: Alejo Fernandez , 2020\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/arctic-games/teams/95/es_AR/)\n" +"Language-Team: Spanish (Argentina) (https://app.transifex.com/arctic-games/teams/95/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_AR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/bonus4/A_Narrow_Path.stl:3 msgid "A Narrow Path" diff --git a/data/levels/bonus4/eu.po b/data/levels/bonus4/eu.po index 28a9b976e84..ca57657296a 100644 --- a/data/levels/bonus4/eu.po +++ b/data/levels/bonus4/eu.po @@ -5,7 +5,7 @@ # # Translators: # Urtzi Odriozola , 2019 -# Mielanjel Iraeta , 2019 +# Mielanjel Iraeta , 2019 # #, fuzzy msgid "" @@ -14,8 +14,8 @@ msgstr "" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" -"Last-Translator: Mielanjel Iraeta , 2019\n" -"Language-Team: Basque (https://www.transifex.com/arctic-games/teams/95/eu/)\n" +"Last-Translator: Mielanjel Iraeta , 2019\n" +"Language-Team: Basque (https://app.transifex.com/arctic-games/teams/95/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus4/fi.po b/data/levels/bonus4/fi.po index 6ef1e3eb4a0..9e2ea4c3519 100644 --- a/data/levels/bonus4/fi.po +++ b/data/levels/bonus4/fi.po @@ -5,7 +5,7 @@ # # Translators: # Lauri Ojansivu , 2019 -# Jaakoppi Horila , 2020 +# Jaakoppi Horila , 2022 # #, fuzzy msgid "" @@ -14,8 +14,8 @@ msgstr "" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" -"Last-Translator: Jaakoppi Horila , 2020\n" -"Language-Team: Finnish (https://www.transifex.com/arctic-games/teams/95/fi/)\n" +"Last-Translator: Jaakoppi Horila , 2022\n" +"Language-Team: Finnish (https://app.transifex.com/arctic-games/teams/95/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -69,7 +69,7 @@ msgstr "#Voit kulkea tästä ovesta kokeillaksesi toista reittiä..." #: data/levels/bonus4/Generic_Snow_Level.stl:3 msgid "Generic Snow Level" -msgstr "Tavallinen lumikenttä" +msgstr "Tyypillinen lumikenttä" #: data/levels/bonus4/Glacier_Danger.stl:3 msgid "Glacier Danger" @@ -142,7 +142,7 @@ msgstr "Myrskyinen yö" #: data/levels/bonus4/Sunshine_Valley.stl:3 msgid "Sunshine Valley" -msgstr "Auringonpaisteen laakso" +msgstr "Aurinkoinen laakso" #: data/levels/bonus4/The_Way_Of_The_Snow.stl:3 msgid "The Way Of The Snow" diff --git a/data/levels/bonus4/fr.po b/data/levels/bonus4/fr.po index b1cad9f89cc..387f088a432 100644 --- a/data/levels/bonus4/fr.po +++ b/data/levels/bonus4/fr.po @@ -16,12 +16,12 @@ msgstr "" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" "Last-Translator: zecas , 2019\n" -"Language-Team: French (https://www.transifex.com/arctic-games/teams/95/fr/)\n" +"Language-Team: French (https://app.transifex.com/arctic-games/teams/95/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/bonus4/A_Narrow_Path.stl:3 msgid "A Narrow Path" diff --git a/data/levels/bonus4/gd.po b/data/levels/bonus4/gd.po index 9718e36eba8..9d6c52a92fb 100644 --- a/data/levels/bonus4/gd.po +++ b/data/levels/bonus4/gd.po @@ -14,7 +14,7 @@ msgstr "" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" "Last-Translator: GunChleoc, 2019\n" -"Language-Team: Gaelic, Scottish (https://www.transifex.com/arctic-games/teams/95/gd/)\n" +"Language-Team: Gaelic, Scottish (https://app.transifex.com/arctic-games/teams/95/gd/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus4/gl.po b/data/levels/bonus4/gl.po index 133fb458afd..5aeb6bb3550 100644 --- a/data/levels/bonus4/gl.po +++ b/data/levels/bonus4/gl.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # # Translators: -# xanvieiro , 2020 +# Xan Vieiro , 2020 # #, fuzzy msgid "" @@ -13,8 +13,8 @@ msgstr "" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" -"Last-Translator: xanvieiro , 2020\n" -"Language-Team: Galician (https://www.transifex.com/arctic-games/teams/95/gl/)\n" +"Last-Translator: Xan Vieiro , 2020\n" +"Language-Team: Galician (https://app.transifex.com/arctic-games/teams/95/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus4/he.po b/data/levels/bonus4/he.po index 5cab5b0f065..97a5cc96b61 100644 --- a/data/levels/bonus4/he.po +++ b/data/levels/bonus4/he.po @@ -20,7 +20,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: he\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" +"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n" #: data/levels/bonus4/A_Narrow_Path.stl:3 msgid "A Narrow Path" diff --git a/data/levels/bonus4/hu.po b/data/levels/bonus4/hu.po index fee55d2b821..51f59c77cbe 100644 --- a/data/levels/bonus4/hu.po +++ b/data/levels/bonus4/hu.po @@ -15,7 +15,7 @@ msgstr "" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" "Last-Translator: Kristóf Kófiás , 2020\n" -"Language-Team: Hungarian (https://www.transifex.com/arctic-games/teams/95/hu/)\n" +"Language-Team: Hungarian (https://app.transifex.com/arctic-games/teams/95/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus4/id.po b/data/levels/bonus4/id.po index f51996cc469..dbb6140df62 100644 --- a/data/levels/bonus4/id.po +++ b/data/levels/bonus4/id.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # # Translators: -# CRS.ECHO51 , 2019 +# Chris , 2019 # IAN RODRÍGUEZ Lorenzo, 2023 # #, fuzzy diff --git a/data/levels/bonus4/it.po b/data/levels/bonus4/it.po index 36233f44487..9ecd55f414a 100644 --- a/data/levels/bonus4/it.po +++ b/data/levels/bonus4/it.po @@ -16,12 +16,12 @@ msgstr "" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" "Last-Translator: Ioma Taani, 2019\n" -"Language-Team: Italian (https://www.transifex.com/arctic-games/teams/95/it/)\n" +"Language-Team: Italian (https://app.transifex.com/arctic-games/teams/95/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/bonus4/A_Narrow_Path.stl:3 msgid "A Narrow Path" diff --git a/data/levels/bonus4/ja.po b/data/levels/bonus4/ja.po index 2145dc3c11a..5b8a6d43ed0 100644 --- a/data/levels/bonus4/ja.po +++ b/data/levels/bonus4/ja.po @@ -15,7 +15,7 @@ msgstr "" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" "Last-Translator: Ryo Nakano, 2020\n" -"Language-Team: Japanese (https://www.transifex.com/arctic-games/teams/95/ja/)\n" +"Language-Team: Japanese (https://app.transifex.com/arctic-games/teams/95/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus4/ko.po b/data/levels/bonus4/ko.po index 2f1c7f79415..1ca30ca283e 100644 --- a/data/levels/bonus4/ko.po +++ b/data/levels/bonus4/ko.po @@ -2,20 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the SuperTux package. # FIRST AUTHOR , YEAR. -# +# +# Translators: +# Myeongjin , 2019 +# Junghee Lee , 2022 +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: SuperTux v0.6.0-1010-gefc33a183\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" "POT-Creation-Date: 2019-11-24 01:44+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"PO-Revision-Date: 2019-11-24 00:58+0000\n" +"Last-Translator: Junghee Lee , 2022\n" +"Language-Team: Korean (https://app.transifex.com/arctic-games/teams/95/ko/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: data/levels/bonus4/A_Narrow_Path.stl:3 msgid "A Narrow Path" @@ -39,44 +44,44 @@ msgstr "크리스탈 매니아" #: data/levels/bonus4/Deeper_Into_The_Mountains.stl:3 msgid "Deeper Into The Mountains" -msgstr "산의 더 깊은 곳으로" +msgstr "더 깊은 산 속으로" #: data/levels/bonus4/Feeling_The_Nature.stl:3 msgid "Feeling The Nature" -msgstr "자연을 느끼다" +msgstr "자연을 느껴요" #: data/levels/bonus4/Fog_And_Mist.stl:3 msgid "Fog And Mist" -msgstr "안개와 흐림" +msgstr "안개와 엷은 안개" #: data/levels/bonus4/Forest_Mountains.stl:3 msgid "Forest Mountains" -msgstr "숲과 산" +msgstr "숲속 산" #: data/levels/bonus4/Forest_Mountains.stl:140 msgid "#One Path contains enemies, the other treasure..." -msgstr "#하나의 길엔 적이 있고, 다른 하나엔 보물이..." +msgstr "#한쪽 길에는 적들이 있고, 다른쪽 길에는 보물이 있어요..." #: data/levels/bonus4/Forest_Mountains.stl:145 #: data/levels/bonus4/Forest_Mountains.stl:150 msgid "#You can use this door to try the other way..." -msgstr "#이 문을 사용하여 다른 방법을 시도할 수 있습니다..." +msgstr "#이 문을 이용해서 다른 방법을 시도할 수 있어요..." #: data/levels/bonus4/Generic_Snow_Level.stl:3 msgid "Generic Snow Level" -msgstr "눈의 단계" +msgstr "일반적인 눈 수준" #: data/levels/bonus4/Glacier_Danger.stl:3 msgid "Glacier Danger" -msgstr "위험한 빙하" +msgstr "빙하의 위험" #: data/levels/bonus4/Halloween_Fields.stl:3 msgid "Halloween Fields" -msgstr "할로윈 길" +msgstr "할로윈 들판" #: data/levels/bonus4/Its_Halloween_Time.stl:3 msgid "It's Halloween Time!" -msgstr "할로윈이야!" +msgstr "할로윈 시간이에요!" #: data/levels/bonus4/Lets_Climb_That_Mountain.stl:3 msgid "Let's Climb That Mountain!" @@ -84,7 +89,7 @@ msgstr "저 산을 오르자!" #: data/levels/bonus4/Night_Terrors.stl:3 msgid "Night Terrors" -msgstr "밤의 공포" +msgstr "밤 공포의 대상" #: data/levels/bonus4/Penguin_In_The_Bushes.stl:3 msgid "A Penguin In The Bushes" @@ -104,40 +109,40 @@ msgstr "눈사람의 땅" #: data/levels/bonus4/SnowMansLand.stl:86 msgid "#It sure is breezy today, huh?" -msgstr "#오늘은 정말 상쾌하네요, 그렇죠?" +msgstr "#오늘은 정말 바람이 부네요, 그렇죠?" #: data/levels/bonus4/Snowy_Sunset.stl:3 msgid "Snowy Sunset" -msgstr "눈 덮인 일몰" +msgstr "눈에 덮인 저녁노을" #: data/levels/bonus4/Some_Icy_Path.stl:3 msgid "Some Icy Path" -msgstr "약간의 얼음 길" +msgstr "약간 빙판길" #: data/levels/bonus4/Some_Icy_Path.stl:115 msgid "" "#You won't be able to pass, if you don't bring him something he wants..." -msgstr "#그가 원하는 것을 그에게 가져오지 않으면, 지나갈 수 없습니다..." +msgstr "#당신은 통과할 수 없을 거예요, 그가 원하는 걸 가져다주지 않으면..." #: data/levels/bonus4/Some_Icy_Path.stl:120 msgid "#Maybe this crystal is the right thing for this snowman...?" -msgstr "#이 크리스탈이 이 눈사람에게 딱 맞을지도...?" +msgstr "#어쩌면 이 크리스탈이 이 눈사람에게 딱일지도...?" #: data/levels/bonus4/Some_Icy_Path.stl:125 msgid "#Great, now he's gone... I'll keep the crystal for myself." -msgstr "#좋아, 이제 그는 떠났어...크리스탈은 나만 가져갈게." +msgstr "#잘됐네요, 이제 그는 사라졌어요... 크리스탈은 제가 보관할게요." #: data/levels/bonus4/Spooky_Mansion.stl:3 msgid "Spooky Mansion" -msgstr "유령 저택" +msgstr "으스스한 맨션" #: data/levels/bonus4/Stormy_Night.stl:3 msgid "Stormy Night" -msgstr "폭풍우 치는 밤" +msgstr "폭풍의 밤" #: data/levels/bonus4/Sunshine_Valley.stl:3 msgid "Sunshine Valley" -msgstr "해가 비치는 계곡" +msgstr "맑은 날씨의 계곡" #: data/levels/bonus4/The_Way_Of_The_Snow.stl:3 msgid "The Way Of The Snow" @@ -149,34 +154,34 @@ msgstr "너무 많은 물" #: data/levels/bonus4/Two_Tiny_Towers.stl:3 msgid "Two Tiny Towers" -msgstr "두 개의 작은 탑" +msgstr "두 작은 탑" #: data/levels/bonus4/worldmap.stwm:3 msgid "Bonus Island IV" -msgstr "보너스 아일랜드 IV" +msgstr "보너스 섬 IV" #: data/levels/bonus4/worldmap.stwm:210 msgid "Enter Forest Sector" -msgstr "숲 진입" +msgstr "숲 섹터 들어가기" #: data/levels/bonus4/worldmap.stwm:217 msgid "Enter Halloween Sector" -msgstr "할로윈 진입" +msgstr "할로윈 섹터 들어가기" #: data/levels/bonus4/worldmap.stwm:224 msgid "Enter Arctic Sector" -msgstr "북극에 진입" +msgstr "북극 섹터 들어가기" #: data/levels/bonus4/worldmap.stwm:231 data/levels/bonus4/worldmap.stwm:238 #: data/levels/bonus4/worldmap.stwm:245 data/levels/bonus4/worldmap.stwm:252 #: data/levels/bonus4/worldmap.stwm:259 data/levels/bonus4/worldmap.stwm:266 msgid "Go Home" -msgstr "집에 가라" +msgstr "집으로 가기" #: data/levels/bonus4/worldmap.stwm:273 msgid "Go Back" -msgstr "돌아가" +msgstr "뒤로 가기" #: data/levels/bonus4/worldmap.stwm:280 msgid "The next challenge awaits..." -msgstr "다음 도전이 기다리고 있습니다..." +msgstr "다음 도전이 기다리고 있어요..." diff --git a/data/levels/bonus4/lt.po b/data/levels/bonus4/lt.po index dafe83184f6..85b66a3e104 100644 --- a/data/levels/bonus4/lt.po +++ b/data/levels/bonus4/lt.po @@ -14,7 +14,7 @@ msgstr "" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" "Last-Translator: Tom Urisk, 2021\n" -"Language-Team: Lithuanian (https://www.transifex.com/arctic-games/teams/95/lt/)\n" +"Language-Team: Lithuanian (https://app.transifex.com/arctic-games/teams/95/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus4/messages.pot b/data/levels/bonus4/messages.pot index ebda8895b55..9a00c0f53fc 100644 --- a/data/levels/bonus4/messages.pot +++ b/data/levels/bonus4/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: SuperTux v0.6.2-963-gb4a1b149f\n" +"Project-Id-Version: SuperTux v0.6.3-1080-g2e08c1b7f\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -102,7 +102,7 @@ msgstr "" msgid "SnowMan's Land" msgstr "" -#: data/levels/bonus4/SnowMansLand.stl:113 +#: data/levels/bonus4/SnowMansLand.stl:137 msgid "#It sure is breezy today, huh?" msgstr "" diff --git a/data/levels/bonus4/ms_MY.po b/data/levels/bonus4/ms_MY.po index 10c400e5501..93697f4a671 100644 --- a/data/levels/bonus4/ms_MY.po +++ b/data/levels/bonus4/ms_MY.po @@ -14,7 +14,7 @@ msgstr "" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" "Last-Translator: abuyop , 2021\n" -"Language-Team: Malay (Malaysia) (https://www.transifex.com/arctic-games/teams/95/ms_MY/)\n" +"Language-Team: Malay (Malaysia) (https://app.transifex.com/arctic-games/teams/95/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus4/nl.po b/data/levels/bonus4/nl.po index 3ba0b66c927..77d37b0db92 100644 --- a/data/levels/bonus4/nl.po +++ b/data/levels/bonus4/nl.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # # Translators: -# Heimen Stoffels , 2019 +# Heimen Stoffels , 2019 # #, fuzzy msgid "" @@ -13,8 +13,8 @@ msgstr "" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" -"Last-Translator: Heimen Stoffels , 2019\n" -"Language-Team: Dutch (https://www.transifex.com/arctic-games/teams/95/nl/)\n" +"Last-Translator: Heimen Stoffels , 2019\n" +"Language-Team: Dutch (https://app.transifex.com/arctic-games/teams/95/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus4/nn.po b/data/levels/bonus4/nn.po index be9368b4cf6..3e0e48d5e9a 100644 --- a/data/levels/bonus4/nn.po +++ b/data/levels/bonus4/nn.po @@ -14,7 +14,7 @@ msgstr "" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" "Last-Translator: Karl Ove Hufthammer , 2020\n" -"Language-Team: Norwegian Nynorsk (https://www.transifex.com/arctic-games/teams/95/nn/)\n" +"Language-Team: Norwegian Nynorsk (https://app.transifex.com/arctic-games/teams/95/nn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus4/pl.po b/data/levels/bonus4/pl.po index da37e048138..9ab66390973 100644 --- a/data/levels/bonus4/pl.po +++ b/data/levels/bonus4/pl.po @@ -16,7 +16,7 @@ msgstr "" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" "Last-Translator: Seba D. , 2020\n" -"Language-Team: Polish (https://www.transifex.com/arctic-games/teams/95/pl/)\n" +"Language-Team: Polish (https://app.transifex.com/arctic-games/teams/95/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus4/pt.po b/data/levels/bonus4/pt.po index df6a77512d5..94b22159deb 100644 --- a/data/levels/bonus4/pt.po +++ b/data/levels/bonus4/pt.po @@ -7,6 +7,7 @@ # Benjamin Leduc , 2019 # zecas , 2019 # André Pinheiro , 2021 +# lecalam, 2024 # #, fuzzy msgid "" @@ -15,13 +16,13 @@ msgstr "" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" -"Last-Translator: André Pinheiro , 2021\n" -"Language-Team: Portuguese (https://www.transifex.com/arctic-games/teams/95/pt/)\n" +"Last-Translator: lecalam, 2024\n" +"Language-Team: Portuguese (https://app.transifex.com/arctic-games/teams/95/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/bonus4/A_Narrow_Path.stl:3 msgid "A Narrow Path" @@ -29,11 +30,11 @@ msgstr "Um Caminho Estreito" #: data/levels/bonus4/Beginning_The_Journey.stl:3 msgid "Beginning The Journey" -msgstr "Começo Da Jornada" +msgstr "Começo da Jornada" #: data/levels/bonus4/Cave_of_Dreams.stl:3 msgid "Cave Of Dreams" -msgstr "Caverna Dos Sonhos" +msgstr "Caverna dos Sonhos" #: data/levels/bonus4/Cold_Forest.stl:3 msgid "Cold Forest" @@ -45,7 +46,7 @@ msgstr "Mania de Cristal" #: data/levels/bonus4/Deeper_Into_The_Mountains.stl:3 msgid "Deeper Into The Mountains" -msgstr "Mais Fundo Nas Montanhas " +msgstr "Mais Fundo nas Montanhas " #: data/levels/bonus4/Feeling_The_Nature.stl:3 msgid "Feeling The Nature" @@ -57,16 +58,16 @@ msgstr "Nevoeiro e Névoa" #: data/levels/bonus4/Forest_Mountains.stl:3 msgid "Forest Mountains" -msgstr "Montanhas Da Floresta" +msgstr "Montanhas da Floresta" #: data/levels/bonus4/Forest_Mountains.stl:140 msgid "#One Path contains enemies, the other treasure..." -msgstr "#Um caminho contêm inimigos, outro um tesouro..." +msgstr "#Um caminho contém inimigos, o outro tesouros..." #: data/levels/bonus4/Forest_Mountains.stl:145 #: data/levels/bonus4/Forest_Mountains.stl:150 msgid "#You can use this door to try the other way..." -msgstr "#Tu podes usar esta porta para tentar outro caminho... " +msgstr "#Podes usar esta porta para tentar o outro caminho... " #: data/levels/bonus4/Generic_Snow_Level.stl:3 msgid "Generic Snow Level" @@ -74,7 +75,7 @@ msgstr "Nível Genérico de Neve" #: data/levels/bonus4/Glacier_Danger.stl:3 msgid "Glacier Danger" -msgstr "Perigo de Geleira" +msgstr "Perigo do Glaciar" #: data/levels/bonus4/Halloween_Fields.stl:3 msgid "Halloween Fields" @@ -82,7 +83,7 @@ msgstr "Campos de Halloween" #: data/levels/bonus4/Its_Halloween_Time.stl:3 msgid "It's Halloween Time!" -msgstr "É Hora Do Halloween!" +msgstr "É Hora do Halloween!" #: data/levels/bonus4/Lets_Climb_That_Mountain.stl:3 msgid "Let's Climb That Mountain!" @@ -94,7 +95,7 @@ msgstr "Pesadelos" #: data/levels/bonus4/Penguin_In_The_Bushes.stl:3 msgid "A Penguin In The Bushes" -msgstr "Um Pinguim Nos Arbustos" +msgstr "Um Pinguim nos Arbustos" #: data/levels/bonus4/Rainy_Swamps.stl:3 msgid "Rainy Swamps" @@ -110,7 +111,7 @@ msgstr "Terra do Boneco de Neve" #: data/levels/bonus4/SnowMansLand.stl:86 msgid "#It sure is breezy today, huh?" -msgstr "#Está mesmo fresco hoje, hã? " +msgstr "#Está mesmo fresco hoje, não? " #: data/levels/bonus4/Snowy_Sunset.stl:3 msgid "Snowy Sunset" @@ -123,8 +124,7 @@ msgstr "Algum Caminho Gelado" #: data/levels/bonus4/Some_Icy_Path.stl:115 msgid "" "#You won't be able to pass, if you don't bring him something he wants..." -msgstr "" -"#Você não está habilitado a passar, se você não trouxer algo que ele quer..." +msgstr "#Não conseguirás passar, se não lhe trouxeres algo que ele queira..." #: data/levels/bonus4/Some_Icy_Path.stl:120 msgid "#Maybe this crystal is the right thing for this snowman...?" @@ -153,7 +153,7 @@ msgstr "O Caminho da Neve" #: data/levels/bonus4/Too_Much_Water.stl:3 msgid "Too Much Water" -msgstr "Muita Água" +msgstr "Demasiada Água" #: data/levels/bonus4/Two_Tiny_Towers.stl:3 msgid "Two Tiny Towers" @@ -165,15 +165,15 @@ msgstr "Ilha Extra IV" #: data/levels/bonus4/worldmap.stwm:210 msgid "Enter Forest Sector" -msgstr "Entrar no Sector Florestal" +msgstr "Entrar no setor Florestal" #: data/levels/bonus4/worldmap.stwm:217 msgid "Enter Halloween Sector" -msgstr "Entrar no Sector de Halloween" +msgstr "Entrar no setor de Halloween" #: data/levels/bonus4/worldmap.stwm:224 msgid "Enter Arctic Sector" -msgstr "Entrar no Sector Ártico" +msgstr "Entrar no setor Ártico" #: data/levels/bonus4/worldmap.stwm:231 data/levels/bonus4/worldmap.stwm:238 #: data/levels/bonus4/worldmap.stwm:245 data/levels/bonus4/worldmap.stwm:252 @@ -187,4 +187,4 @@ msgstr "Regressar" #: data/levels/bonus4/worldmap.stwm:280 msgid "The next challenge awaits..." -msgstr "O próximo desafio aguarda... " +msgstr "O próximo desafio está à espera... " diff --git a/data/levels/bonus4/pt_BR.po b/data/levels/bonus4/pt_BR.po index c70a6e7fab7..390ca26d40f 100644 --- a/data/levels/bonus4/pt_BR.po +++ b/data/levels/bonus4/pt_BR.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # # Translators: -# Jesusalva Jesusalva , 2019 +# Jesusaves , 2019 # Fúlvio Alves , 2020 # #, fuzzy @@ -15,12 +15,12 @@ msgstr "" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" "Last-Translator: Fúlvio Alves , 2020\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/arctic-games/teams/95/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://app.transifex.com/arctic-games/teams/95/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/bonus4/A_Narrow_Path.stl:3 msgid "A Narrow Path" diff --git a/data/levels/bonus4/ro.po b/data/levels/bonus4/ro.po index c3e4b050656..0d9bf20ec30 100644 --- a/data/levels/bonus4/ro.po +++ b/data/levels/bonus4/ro.po @@ -15,7 +15,7 @@ msgstr "" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" "Last-Translator: Anca Moșescu , 2020\n" -"Language-Team: Romanian (https://www.transifex.com/arctic-games/teams/95/ro/)\n" +"Language-Team: Romanian (https://app.transifex.com/arctic-games/teams/95/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus4/ru.po b/data/levels/bonus4/ru.po index f69ebe51f42..e9d3674c286 100644 --- a/data/levels/bonus4/ru.po +++ b/data/levels/bonus4/ru.po @@ -6,7 +6,7 @@ # Translators: # Dmitry , 2019 # Dmitry Anikonov , 2019 -# Andrei Stepanov , 2021 +# Andrei Stepanov, 2021 # #, fuzzy msgid "" @@ -15,8 +15,8 @@ msgstr "" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" -"Last-Translator: Andrei Stepanov , 2021\n" -"Language-Team: Russian (https://www.transifex.com/arctic-games/teams/95/ru/)\n" +"Last-Translator: Andrei Stepanov, 2021\n" +"Language-Team: Russian (https://app.transifex.com/arctic-games/teams/95/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus4/sl.po b/data/levels/bonus4/sl.po index 07e689d5ec5..f4ad32d3a01 100644 --- a/data/levels/bonus4/sl.po +++ b/data/levels/bonus4/sl.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # # Translators: -# Gorazd Gorup , 2022 +# Gorzy Gorup , 2022 # #, fuzzy msgid "" @@ -13,7 +13,7 @@ msgstr "" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" -"Last-Translator: Gorazd Gorup , 2022\n" +"Last-Translator: Gorzy Gorup , 2022\n" "Language-Team: Slovenian (https://app.transifex.com/arctic-games/teams/95/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/data/levels/bonus4/sv.po b/data/levels/bonus4/sv.po index 2d6b91f4bd5..3072bbfbcf2 100644 --- a/data/levels/bonus4/sv.po +++ b/data/levels/bonus4/sv.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # # Translators: -# Kristoffer Grundström , 2019 +# Kristoffer Grundström , 2019 # Sebastian Rasmussen , 2019 # #, fuzzy @@ -15,7 +15,7 @@ msgstr "" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" "Last-Translator: Sebastian Rasmussen , 2019\n" -"Language-Team: Swedish (https://www.transifex.com/arctic-games/teams/95/sv/)\n" +"Language-Team: Swedish (https://app.transifex.com/arctic-games/teams/95/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus4/tr.po b/data/levels/bonus4/tr.po index 847f37f390b..51ae812769b 100644 --- a/data/levels/bonus4/tr.po +++ b/data/levels/bonus4/tr.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # # Translators: -# yakup , 2019 +# 9d4282795e87ad099e39d98812f1a822_ade2f01 , 2019 # mahmut özcan , 2020 # #, fuzzy @@ -15,7 +15,7 @@ msgstr "" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" "Last-Translator: mahmut özcan , 2020\n" -"Language-Team: Turkish (https://www.transifex.com/arctic-games/teams/95/tr/)\n" +"Language-Team: Turkish (https://app.transifex.com/arctic-games/teams/95/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/bonus4/zh_CN.po b/data/levels/bonus4/zh_CN.po new file mode 100644 index 00000000000..bde949484da --- /dev/null +++ b/data/levels/bonus4/zh_CN.po @@ -0,0 +1,188 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the SuperTux package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# 玉堂白鹤 , 2019 +# CodingJellyfish , 2021 +# Wenbin Lv , 2024 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: SuperTux v0.6.0-1010-gefc33a183\n" +"Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" +"POT-Creation-Date: 2019-11-24 01:44+0100\n" +"PO-Revision-Date: 2019-11-24 00:58+0000\n" +"Last-Translator: Wenbin Lv , 2024\n" +"Language-Team: Chinese (China) (https://app.transifex.com/arctic-games/teams/95/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: data/levels/bonus4/A_Narrow_Path.stl:3 +msgid "A Narrow Path" +msgstr "冤家路窄" + +#: data/levels/bonus4/Beginning_The_Journey.stl:3 +msgid "Beginning The Journey" +msgstr "启程" + +#: data/levels/bonus4/Cave_of_Dreams.stl:3 +msgid "Cave Of Dreams" +msgstr "梦境之洞" + +#: data/levels/bonus4/Cold_Forest.stl:3 +msgid "Cold Forest" +msgstr "寒冷森林" + +#: data/levels/bonus4/Crystal_Mania.stl:3 +msgid "Crystal Mania" +msgstr "水晶狂热" + +#: data/levels/bonus4/Deeper_Into_The_Mountains.stl:3 +msgid "Deeper Into The Mountains" +msgstr "深入山岭" + +#: data/levels/bonus4/Feeling_The_Nature.stl:3 +msgid "Feeling The Nature" +msgstr "感受自然" + +#: data/levels/bonus4/Fog_And_Mist.stl:3 +msgid "Fog And Mist" +msgstr "迷雾" + +#: data/levels/bonus4/Forest_Mountains.stl:3 +msgid "Forest Mountains" +msgstr "森林山脉" + +#: data/levels/bonus4/Forest_Mountains.stl:140 +msgid "#One Path contains enemies, the other treasure..." +msgstr "#一条路径有敌人,另一条路径有宝藏……" + +#: data/levels/bonus4/Forest_Mountains.stl:145 +#: data/levels/bonus4/Forest_Mountains.stl:150 +msgid "#You can use this door to try the other way..." +msgstr "#你可以通过这扇门尝试另一条路……" + +#: data/levels/bonus4/Generic_Snow_Level.stl:3 +msgid "Generic Snow Level" +msgstr "通用雪地关卡" + +#: data/levels/bonus4/Glacier_Danger.stl:3 +msgid "Glacier Danger" +msgstr "冰川危机" + +#: data/levels/bonus4/Halloween_Fields.stl:3 +msgid "Halloween Fields" +msgstr "万圣节领域" + +#: data/levels/bonus4/Its_Halloween_Time.stl:3 +msgid "It's Halloween Time!" +msgstr "万圣节时间到!" + +#: data/levels/bonus4/Lets_Climb_That_Mountain.stl:3 +msgid "Let's Climb That Mountain!" +msgstr "我们去爬那座山吧!" + +#: data/levels/bonus4/Night_Terrors.stl:3 +msgid "Night Terrors" +msgstr "战栗之夜" + +#: data/levels/bonus4/Penguin_In_The_Bushes.stl:3 +msgid "A Penguin In The Bushes" +msgstr "灌木丛中的企鹅" + +#: data/levels/bonus4/Rainy_Swamps.stl:3 +msgid "Rainy Swamps" +msgstr "多雨沼泽" + +#: data/levels/bonus4/Sky_High.stl:3 +msgid "Sky High" +msgstr "比天更高" + +#: data/levels/bonus4/SnowMansLand.stl:3 +msgid "SnowMan's Land" +msgstr "雪人领地" + +#: data/levels/bonus4/SnowMansLand.stl:86 +msgid "#It sure is breezy today, huh?" +msgstr "#今天风挺大的,是吧?" + +#: data/levels/bonus4/Snowy_Sunset.stl:3 +msgid "Snowy Sunset" +msgstr "白雪日落" + +#: data/levels/bonus4/Some_Icy_Path.stl:3 +msgid "Some Icy Path" +msgstr "冰冷道路" + +#: data/levels/bonus4/Some_Icy_Path.stl:115 +msgid "" +"#You won't be able to pass, if you don't bring him something he wants..." +msgstr "#如果你不把他想要的东西带过来,你就无法通过……" + +#: data/levels/bonus4/Some_Icy_Path.stl:120 +msgid "#Maybe this crystal is the right thing for this snowman...?" +msgstr "#也许这个水晶就是这个雪人想要的东西……?" + +#: data/levels/bonus4/Some_Icy_Path.stl:125 +msgid "#Great, now he's gone... I'll keep the crystal for myself." +msgstr "#太好了,现在他走了……水晶我就自己留着吧。" + +#: data/levels/bonus4/Spooky_Mansion.stl:3 +msgid "Spooky Mansion" +msgstr "幽灵宅邸" + +#: data/levels/bonus4/Stormy_Night.stl:3 +msgid "Stormy Night" +msgstr "风雨交加的夜晚" + +#: data/levels/bonus4/Sunshine_Valley.stl:3 +msgid "Sunshine Valley" +msgstr "阳光峡谷" + +#: data/levels/bonus4/The_Way_Of_The_Snow.stl:3 +msgid "The Way Of The Snow" +msgstr "雪之道路" + +#: data/levels/bonus4/Too_Much_Water.stl:3 +msgid "Too Much Water" +msgstr "水太多了" + +#: data/levels/bonus4/Two_Tiny_Towers.stl:3 +msgid "Two Tiny Towers" +msgstr "迷你双塔" + +#: data/levels/bonus4/worldmap.stwm:3 +msgid "Bonus Island IV" +msgstr "额外 IV 岛" + +#: data/levels/bonus4/worldmap.stwm:210 +msgid "Enter Forest Sector" +msgstr "进入森林区块" + +#: data/levels/bonus4/worldmap.stwm:217 +msgid "Enter Halloween Sector" +msgstr "进入万圣节区块" + +#: data/levels/bonus4/worldmap.stwm:224 +msgid "Enter Arctic Sector" +msgstr "进入极地区块" + +#: data/levels/bonus4/worldmap.stwm:231 data/levels/bonus4/worldmap.stwm:238 +#: data/levels/bonus4/worldmap.stwm:245 data/levels/bonus4/worldmap.stwm:252 +#: data/levels/bonus4/worldmap.stwm:259 data/levels/bonus4/worldmap.stwm:266 +msgid "Go Home" +msgstr "回家" + +#: data/levels/bonus4/worldmap.stwm:273 +msgid "Go Back" +msgstr "返回" + +#: data/levels/bonus4/worldmap.stwm:280 +msgid "The next challenge awaits..." +msgstr "下一个挑战正在等待着你……" diff --git a/data/levels/bonus4/zh_TW.po b/data/levels/bonus4/zh_TW.po index 259728d09c1..6e2aebeedcd 100644 --- a/data/levels/bonus4/zh_TW.po +++ b/data/levels/bonus4/zh_TW.po @@ -15,7 +15,7 @@ msgstr "" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:58+0000\n" "Last-Translator: 黃柏諺 , 2019\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/arctic-games/teams/95/zh_TW/)\n" +"Language-Team: Chinese (Taiwan) (https://app.transifex.com/arctic-games/teams/95/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/christmas2016/messages.pot b/data/levels/christmas2016/messages.pot index 639d0c1687b..984e5021de5 100644 --- a/data/levels/christmas2016/messages.pot +++ b/data/levels/christmas2016/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: SuperTux v0.6.2-963-gb4a1b149f\n" +"Project-Id-Version: SuperTux v0.6.3-1080-g2e08c1b7f\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/data/levels/community2016/bs.po b/data/levels/community2016/bs.po new file mode 100644 index 00000000000..c86fe7d7ebb --- /dev/null +++ b/data/levels/community2016/bs.po @@ -0,0 +1,86 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the SuperTux package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: SuperTux v0.6.0-1010-gefc33a183\n" +"Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" +"POT-Creation-Date: 2019-11-24 01:44+0100\n" +"PO-Revision-Date: 2019-11-24 00:59+0000\n" +"Language-Team: Bosnian (https://app.transifex.com/arctic-games/teams/95/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: data/levels/community2016/Ancient_Ruins (RustyBox).stl:3 +msgid "The Ancient Ruins Of The Forest" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:3 +msgid "Double Problems" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:82 +msgid "-Concentrate! Tux! It's not Mario!" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:142 +msgid "You found a secret area!" +msgstr "" + +#: data/levels/community2016/Entrance_To_Cave (gelada).stl:3 +msgid "The Entrance To The Cave" +msgstr "" + +#: data/levels/community2016/Entrance_To_Lava_Castle (herobrine).stl:3 +msgid "The Entrance To The Lava Castle" +msgstr "" + +#: data/levels/community2016/HMS_Snowballs_Ahoy (Vellidragon).stl:3 +msgid "HMS Snowball Ahoy!" +msgstr "" + +#: data/levels/community2016/Into_The_Palace (ThomyW).stl:3 +msgid "Into The Palace" +msgstr "" + +#: data/levels/community2016/Is_The_Biggest_Fish (cookie monster).stl:3 +msgid "Is The Biggest Fish" +msgstr "" + +#: data/levels/community2016/Problem_With_Green (herobrine).stl:3 +msgid "The Problem With GREEN" +msgstr "" + +#: data/levels/community2016/Sunny_Hills (Serano).stl:3 +msgid "Sunny Hills" +msgstr "" + +#: data/levels/community2016/The_Mountains (gelada).stl:3 +msgid "The Mountains" +msgstr "" + +#: data/levels/community2016/The_Strange_Thing (herobrine).stl:3 +msgid "The Strange Thing" +msgstr "" + +#: data/levels/community2016/Uncontrolled_Lift (gelada).stl:3 +msgid "Uncontrolled Lift" +msgstr "" + +#: data/levels/community2016/Up_Or_Down (Serano).stl:3 +msgid "Up, Or Down?" +msgstr "" + +#: data/levels/community2016/Welcome_To_Icy_Island (gelada).stl:3 +msgid "Welcome To The Icy Island" +msgstr "" + +#: data/levels/community2016/worldmap.stwm:3 +msgid "Community Island 2016" +msgstr "" diff --git a/data/levels/community2016/ckb.po b/data/levels/community2016/ckb.po new file mode 100644 index 00000000000..2a13dce0a39 --- /dev/null +++ b/data/levels/community2016/ckb.po @@ -0,0 +1,86 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the SuperTux package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: SuperTux v0.6.0-1010-gefc33a183\n" +"Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" +"POT-Creation-Date: 2019-11-24 01:44+0100\n" +"PO-Revision-Date: 2019-11-24 00:59+0000\n" +"Language-Team: Central Kurdish (https://app.transifex.com/arctic-games/teams/95/ckb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ckb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/levels/community2016/Ancient_Ruins (RustyBox).stl:3 +msgid "The Ancient Ruins Of The Forest" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:3 +msgid "Double Problems" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:82 +msgid "-Concentrate! Tux! It's not Mario!" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:142 +msgid "You found a secret area!" +msgstr "" + +#: data/levels/community2016/Entrance_To_Cave (gelada).stl:3 +msgid "The Entrance To The Cave" +msgstr "" + +#: data/levels/community2016/Entrance_To_Lava_Castle (herobrine).stl:3 +msgid "The Entrance To The Lava Castle" +msgstr "" + +#: data/levels/community2016/HMS_Snowballs_Ahoy (Vellidragon).stl:3 +msgid "HMS Snowball Ahoy!" +msgstr "" + +#: data/levels/community2016/Into_The_Palace (ThomyW).stl:3 +msgid "Into The Palace" +msgstr "" + +#: data/levels/community2016/Is_The_Biggest_Fish (cookie monster).stl:3 +msgid "Is The Biggest Fish" +msgstr "" + +#: data/levels/community2016/Problem_With_Green (herobrine).stl:3 +msgid "The Problem With GREEN" +msgstr "" + +#: data/levels/community2016/Sunny_Hills (Serano).stl:3 +msgid "Sunny Hills" +msgstr "" + +#: data/levels/community2016/The_Mountains (gelada).stl:3 +msgid "The Mountains" +msgstr "" + +#: data/levels/community2016/The_Strange_Thing (herobrine).stl:3 +msgid "The Strange Thing" +msgstr "" + +#: data/levels/community2016/Uncontrolled_Lift (gelada).stl:3 +msgid "Uncontrolled Lift" +msgstr "" + +#: data/levels/community2016/Up_Or_Down (Serano).stl:3 +msgid "Up, Or Down?" +msgstr "" + +#: data/levels/community2016/Welcome_To_Icy_Island (gelada).stl:3 +msgid "Welcome To The Icy Island" +msgstr "" + +#: data/levels/community2016/worldmap.stwm:3 +msgid "Community Island 2016" +msgstr "" diff --git a/data/levels/community2016/cy.po b/data/levels/community2016/cy.po new file mode 100644 index 00000000000..b8ddb74d841 --- /dev/null +++ b/data/levels/community2016/cy.po @@ -0,0 +1,86 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the SuperTux package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: SuperTux v0.6.0-1010-gefc33a183\n" +"Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" +"POT-Creation-Date: 2019-11-24 01:44+0100\n" +"PO-Revision-Date: 2019-11-24 00:59+0000\n" +"Language-Team: Welsh (https://app.transifex.com/arctic-games/teams/95/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: data/levels/community2016/Ancient_Ruins (RustyBox).stl:3 +msgid "The Ancient Ruins Of The Forest" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:3 +msgid "Double Problems" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:82 +msgid "-Concentrate! Tux! It's not Mario!" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:142 +msgid "You found a secret area!" +msgstr "" + +#: data/levels/community2016/Entrance_To_Cave (gelada).stl:3 +msgid "The Entrance To The Cave" +msgstr "" + +#: data/levels/community2016/Entrance_To_Lava_Castle (herobrine).stl:3 +msgid "The Entrance To The Lava Castle" +msgstr "" + +#: data/levels/community2016/HMS_Snowballs_Ahoy (Vellidragon).stl:3 +msgid "HMS Snowball Ahoy!" +msgstr "" + +#: data/levels/community2016/Into_The_Palace (ThomyW).stl:3 +msgid "Into The Palace" +msgstr "" + +#: data/levels/community2016/Is_The_Biggest_Fish (cookie monster).stl:3 +msgid "Is The Biggest Fish" +msgstr "" + +#: data/levels/community2016/Problem_With_Green (herobrine).stl:3 +msgid "The Problem With GREEN" +msgstr "" + +#: data/levels/community2016/Sunny_Hills (Serano).stl:3 +msgid "Sunny Hills" +msgstr "" + +#: data/levels/community2016/The_Mountains (gelada).stl:3 +msgid "The Mountains" +msgstr "" + +#: data/levels/community2016/The_Strange_Thing (herobrine).stl:3 +msgid "The Strange Thing" +msgstr "" + +#: data/levels/community2016/Uncontrolled_Lift (gelada).stl:3 +msgid "Uncontrolled Lift" +msgstr "" + +#: data/levels/community2016/Up_Or_Down (Serano).stl:3 +msgid "Up, Or Down?" +msgstr "" + +#: data/levels/community2016/Welcome_To_Icy_Island (gelada).stl:3 +msgid "Welcome To The Icy Island" +msgstr "" + +#: data/levels/community2016/worldmap.stwm:3 +msgid "Community Island 2016" +msgstr "" diff --git a/data/levels/community2016/es.po b/data/levels/community2016/es.po index 1778c1472c5..07fe28b7277 100644 --- a/data/levels/community2016/es.po +++ b/data/levels/community2016/es.po @@ -4,8 +4,8 @@ # FIRST AUTHOR , YEAR. # # Translators: -# Germana , 2019 -# Tam Ezquerra , 2019 +# Diego Enmanuel Rosales Santander, 2024 +# Unknown, 2024 # #, fuzzy msgid "" @@ -14,7 +14,7 @@ msgstr "" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:59+0000\n" -"Last-Translator: Tam Ezquerra , 2019\n" +"Last-Translator: Unknown, 2024\n" "Language-Team: Spanish (https://app.transifex.com/arctic-games/teams/95/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,64 +28,64 @@ msgstr "Las Ruinas Antiguas del Bosque" #: data/levels/community2016/Double_Problems (herobrine).stl:3 msgid "Double Problems" -msgstr "Problemas dobles" +msgstr "Problemas Dobles" #: data/levels/community2016/Double_Problems (herobrine).stl:82 msgid "-Concentrate! Tux! It's not Mario!" -msgstr "¡Concéntrate, Tux! - ¡No es Mario!" +msgstr "-¡Concentráte! Tux! ¡No es Mario!" #: data/levels/community2016/Double_Problems (herobrine).stl:142 msgid "You found a secret area!" -msgstr "¡Hallaste un área secreta!" +msgstr "¡Has encontrado un área secreta!" #: data/levels/community2016/Entrance_To_Cave (gelada).stl:3 msgid "The Entrance To The Cave" -msgstr "La entrada a la Cueva" +msgstr "La Entrada A La Cueva" #: data/levels/community2016/Entrance_To_Lava_Castle (herobrine).stl:3 msgid "The Entrance To The Lava Castle" -msgstr "La Entrada al Castillo de Lava" +msgstr "La Entrada Al Castillo De Lava" #: data/levels/community2016/HMS_Snowballs_Ahoy (Vellidragon).stl:3 msgid "HMS Snowball Ahoy!" -msgstr "¡Bola de nieve HMS a la vista!" +msgstr "¡Bola de Nieve HMS a la Vista!" #: data/levels/community2016/Into_The_Palace (ThomyW).stl:3 msgid "Into The Palace" -msgstr "Dentro del Palacio" +msgstr "En el palacio" #: data/levels/community2016/Is_The_Biggest_Fish (cookie monster).stl:3 msgid "Is The Biggest Fish" -msgstr "Es el Pez más Grande" +msgstr "" #: data/levels/community2016/Problem_With_Green (herobrine).stl:3 msgid "The Problem With GREEN" -msgstr "El Problema con el VERDE" +msgstr "" #: data/levels/community2016/Sunny_Hills (Serano).stl:3 msgid "Sunny Hills" -msgstr "Colinas Soleadas" +msgstr "" #: data/levels/community2016/The_Mountains (gelada).stl:3 msgid "The Mountains" -msgstr "Las Montañas" +msgstr "" #: data/levels/community2016/The_Strange_Thing (herobrine).stl:3 msgid "The Strange Thing" -msgstr "La Cosa Extraña" +msgstr "" #: data/levels/community2016/Uncontrolled_Lift (gelada).stl:3 msgid "Uncontrolled Lift" -msgstr "Ascenso Incontrolable" +msgstr "" #: data/levels/community2016/Up_Or_Down (Serano).stl:3 msgid "Up, Or Down?" -msgstr "¿Arriba o Abajo?" +msgstr "" #: data/levels/community2016/Welcome_To_Icy_Island (gelada).stl:3 msgid "Welcome To The Icy Island" -msgstr "Bienvenido a la Isla Helada" +msgstr "" #: data/levels/community2016/worldmap.stwm:3 msgid "Community Island 2016" -msgstr "Isla de la Comunidad 2016" +msgstr "Isla de comunidad 2016" diff --git a/data/levels/community2016/eu.po b/data/levels/community2016/eu.po index 9050be47747..444c85b4255 100644 --- a/data/levels/community2016/eu.po +++ b/data/levels/community2016/eu.po @@ -5,7 +5,7 @@ # # Translators: # Bingen Galartza Iparragirre , 2019 -# Mielanjel Iraeta , 2019 +# Mielanjel Iraeta , 2019 # #, fuzzy msgid "" @@ -14,7 +14,7 @@ msgstr "" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:59+0000\n" -"Last-Translator: Mielanjel Iraeta , 2019\n" +"Last-Translator: Mielanjel Iraeta , 2019\n" "Language-Team: Basque (https://app.transifex.com/arctic-games/teams/95/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/data/levels/community2016/fo.po b/data/levels/community2016/fo.po new file mode 100644 index 00000000000..8c773f1dae3 --- /dev/null +++ b/data/levels/community2016/fo.po @@ -0,0 +1,86 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the SuperTux package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: SuperTux v0.6.0-1010-gefc33a183\n" +"Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" +"POT-Creation-Date: 2019-11-24 01:44+0100\n" +"PO-Revision-Date: 2019-11-24 00:59+0000\n" +"Language-Team: Faroese (https://app.transifex.com/arctic-games/teams/95/fo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/levels/community2016/Ancient_Ruins (RustyBox).stl:3 +msgid "The Ancient Ruins Of The Forest" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:3 +msgid "Double Problems" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:82 +msgid "-Concentrate! Tux! It's not Mario!" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:142 +msgid "You found a secret area!" +msgstr "" + +#: data/levels/community2016/Entrance_To_Cave (gelada).stl:3 +msgid "The Entrance To The Cave" +msgstr "" + +#: data/levels/community2016/Entrance_To_Lava_Castle (herobrine).stl:3 +msgid "The Entrance To The Lava Castle" +msgstr "" + +#: data/levels/community2016/HMS_Snowballs_Ahoy (Vellidragon).stl:3 +msgid "HMS Snowball Ahoy!" +msgstr "" + +#: data/levels/community2016/Into_The_Palace (ThomyW).stl:3 +msgid "Into The Palace" +msgstr "" + +#: data/levels/community2016/Is_The_Biggest_Fish (cookie monster).stl:3 +msgid "Is The Biggest Fish" +msgstr "" + +#: data/levels/community2016/Problem_With_Green (herobrine).stl:3 +msgid "The Problem With GREEN" +msgstr "" + +#: data/levels/community2016/Sunny_Hills (Serano).stl:3 +msgid "Sunny Hills" +msgstr "" + +#: data/levels/community2016/The_Mountains (gelada).stl:3 +msgid "The Mountains" +msgstr "" + +#: data/levels/community2016/The_Strange_Thing (herobrine).stl:3 +msgid "The Strange Thing" +msgstr "" + +#: data/levels/community2016/Uncontrolled_Lift (gelada).stl:3 +msgid "Uncontrolled Lift" +msgstr "" + +#: data/levels/community2016/Up_Or_Down (Serano).stl:3 +msgid "Up, Or Down?" +msgstr "" + +#: data/levels/community2016/Welcome_To_Icy_Island (gelada).stl:3 +msgid "Welcome To The Icy Island" +msgstr "" + +#: data/levels/community2016/worldmap.stwm:3 +msgid "Community Island 2016" +msgstr "" diff --git a/data/levels/community2016/ga.po b/data/levels/community2016/ga.po new file mode 100644 index 00000000000..87a5519d2f2 --- /dev/null +++ b/data/levels/community2016/ga.po @@ -0,0 +1,86 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the SuperTux package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: SuperTux v0.6.0-1010-gefc33a183\n" +"Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" +"POT-Creation-Date: 2019-11-24 01:44+0100\n" +"PO-Revision-Date: 2019-11-24 00:59+0000\n" +"Language-Team: Irish (https://app.transifex.com/arctic-games/teams/95/ga/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ga\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" + +#: data/levels/community2016/Ancient_Ruins (RustyBox).stl:3 +msgid "The Ancient Ruins Of The Forest" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:3 +msgid "Double Problems" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:82 +msgid "-Concentrate! Tux! It's not Mario!" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:142 +msgid "You found a secret area!" +msgstr "" + +#: data/levels/community2016/Entrance_To_Cave (gelada).stl:3 +msgid "The Entrance To The Cave" +msgstr "" + +#: data/levels/community2016/Entrance_To_Lava_Castle (herobrine).stl:3 +msgid "The Entrance To The Lava Castle" +msgstr "" + +#: data/levels/community2016/HMS_Snowballs_Ahoy (Vellidragon).stl:3 +msgid "HMS Snowball Ahoy!" +msgstr "" + +#: data/levels/community2016/Into_The_Palace (ThomyW).stl:3 +msgid "Into The Palace" +msgstr "" + +#: data/levels/community2016/Is_The_Biggest_Fish (cookie monster).stl:3 +msgid "Is The Biggest Fish" +msgstr "" + +#: data/levels/community2016/Problem_With_Green (herobrine).stl:3 +msgid "The Problem With GREEN" +msgstr "" + +#: data/levels/community2016/Sunny_Hills (Serano).stl:3 +msgid "Sunny Hills" +msgstr "" + +#: data/levels/community2016/The_Mountains (gelada).stl:3 +msgid "The Mountains" +msgstr "" + +#: data/levels/community2016/The_Strange_Thing (herobrine).stl:3 +msgid "The Strange Thing" +msgstr "" + +#: data/levels/community2016/Uncontrolled_Lift (gelada).stl:3 +msgid "Uncontrolled Lift" +msgstr "" + +#: data/levels/community2016/Up_Or_Down (Serano).stl:3 +msgid "Up, Or Down?" +msgstr "" + +#: data/levels/community2016/Welcome_To_Icy_Island (gelada).stl:3 +msgid "Welcome To The Icy Island" +msgstr "" + +#: data/levels/community2016/worldmap.stwm:3 +msgid "Community Island 2016" +msgstr "" diff --git a/data/levels/community2016/he.po b/data/levels/community2016/he.po index 9c095c50163..a7c94554c09 100644 --- a/data/levels/community2016/he.po +++ b/data/levels/community2016/he.po @@ -21,7 +21,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: he\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" +"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n" #: data/levels/community2016/Ancient_Ruins (RustyBox).stl:3 msgid "The Ancient Ruins Of The Forest" diff --git a/data/levels/community2016/hi.po b/data/levels/community2016/hi.po new file mode 100644 index 00000000000..702e8baac7c --- /dev/null +++ b/data/levels/community2016/hi.po @@ -0,0 +1,86 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the SuperTux package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: SuperTux v0.6.0-1010-gefc33a183\n" +"Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" +"POT-Creation-Date: 2019-11-24 01:44+0100\n" +"PO-Revision-Date: 2019-11-24 00:59+0000\n" +"Language-Team: Hindi (https://app.transifex.com/arctic-games/teams/95/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/levels/community2016/Ancient_Ruins (RustyBox).stl:3 +msgid "The Ancient Ruins Of The Forest" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:3 +msgid "Double Problems" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:82 +msgid "-Concentrate! Tux! It's not Mario!" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:142 +msgid "You found a secret area!" +msgstr "" + +#: data/levels/community2016/Entrance_To_Cave (gelada).stl:3 +msgid "The Entrance To The Cave" +msgstr "" + +#: data/levels/community2016/Entrance_To_Lava_Castle (herobrine).stl:3 +msgid "The Entrance To The Lava Castle" +msgstr "" + +#: data/levels/community2016/HMS_Snowballs_Ahoy (Vellidragon).stl:3 +msgid "HMS Snowball Ahoy!" +msgstr "" + +#: data/levels/community2016/Into_The_Palace (ThomyW).stl:3 +msgid "Into The Palace" +msgstr "" + +#: data/levels/community2016/Is_The_Biggest_Fish (cookie monster).stl:3 +msgid "Is The Biggest Fish" +msgstr "" + +#: data/levels/community2016/Problem_With_Green (herobrine).stl:3 +msgid "The Problem With GREEN" +msgstr "" + +#: data/levels/community2016/Sunny_Hills (Serano).stl:3 +msgid "Sunny Hills" +msgstr "" + +#: data/levels/community2016/The_Mountains (gelada).stl:3 +msgid "The Mountains" +msgstr "" + +#: data/levels/community2016/The_Strange_Thing (herobrine).stl:3 +msgid "The Strange Thing" +msgstr "" + +#: data/levels/community2016/Uncontrolled_Lift (gelada).stl:3 +msgid "Uncontrolled Lift" +msgstr "" + +#: data/levels/community2016/Up_Or_Down (Serano).stl:3 +msgid "Up, Or Down?" +msgstr "" + +#: data/levels/community2016/Welcome_To_Icy_Island (gelada).stl:3 +msgid "Welcome To The Icy Island" +msgstr "" + +#: data/levels/community2016/worldmap.stwm:3 +msgid "Community Island 2016" +msgstr "" diff --git a/data/levels/community2016/id.po b/data/levels/community2016/id.po index 00b6fb54100..a16cabed6f0 100644 --- a/data/levels/community2016/id.po +++ b/data/levels/community2016/id.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # # Translators: -# CRS.ECHO51 , 2019 +# Chris , 2019 # IAN RODRÍGUEZ Lorenzo, 2023 # #, fuzzy diff --git a/data/levels/community2016/it.po b/data/levels/community2016/it.po index 8efca2727af..bcbcdea1ce2 100644 --- a/data/levels/community2016/it.po +++ b/data/levels/community2016/it.po @@ -6,6 +6,7 @@ # Translators: # Benjamin Leduc , 2019 # Ioma Taani, 2019 +# PoketMarty, 2024 # #, fuzzy msgid "" @@ -14,7 +15,7 @@ msgstr "" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:59+0000\n" -"Last-Translator: Ioma Taani, 2019\n" +"Last-Translator: PoketMarty, 2024\n" "Language-Team: Italian (https://app.transifex.com/arctic-games/teams/95/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,7 +49,7 @@ msgstr "L'entrata del castello di lava" #: data/levels/community2016/HMS_Snowballs_Ahoy (Vellidragon).stl:3 msgid "HMS Snowball Ahoy!" -msgstr "HMS Ehi Palla di neve!" +msgstr " Ehilà HMS Palla di Neve!" #: data/levels/community2016/Into_The_Palace (ThomyW).stl:3 msgid "Into The Palace" diff --git a/data/levels/community2016/ko.po b/data/levels/community2016/ko.po index a0ad681481c..4f91adc0a0f 100644 --- a/data/levels/community2016/ko.po +++ b/data/levels/community2016/ko.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # # Translators: -# JungHee Lee , 2022 +# Junghee Lee , 2022 # #, fuzzy msgid "" @@ -13,7 +13,7 @@ msgstr "" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:59+0000\n" -"Last-Translator: JungHee Lee , 2022\n" +"Last-Translator: Junghee Lee , 2022\n" "Language-Team: Korean (https://app.transifex.com/arctic-games/teams/95/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/data/levels/community2016/ku.po b/data/levels/community2016/ku.po new file mode 100644 index 00000000000..ba41fa84130 --- /dev/null +++ b/data/levels/community2016/ku.po @@ -0,0 +1,86 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the SuperTux package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: SuperTux v0.6.0-1010-gefc33a183\n" +"Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" +"POT-Creation-Date: 2019-11-24 01:44+0100\n" +"PO-Revision-Date: 2019-11-24 00:59+0000\n" +"Language-Team: Kurdish (https://app.transifex.com/arctic-games/teams/95/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/levels/community2016/Ancient_Ruins (RustyBox).stl:3 +msgid "The Ancient Ruins Of The Forest" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:3 +msgid "Double Problems" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:82 +msgid "-Concentrate! Tux! It's not Mario!" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:142 +msgid "You found a secret area!" +msgstr "" + +#: data/levels/community2016/Entrance_To_Cave (gelada).stl:3 +msgid "The Entrance To The Cave" +msgstr "" + +#: data/levels/community2016/Entrance_To_Lava_Castle (herobrine).stl:3 +msgid "The Entrance To The Lava Castle" +msgstr "" + +#: data/levels/community2016/HMS_Snowballs_Ahoy (Vellidragon).stl:3 +msgid "HMS Snowball Ahoy!" +msgstr "" + +#: data/levels/community2016/Into_The_Palace (ThomyW).stl:3 +msgid "Into The Palace" +msgstr "" + +#: data/levels/community2016/Is_The_Biggest_Fish (cookie monster).stl:3 +msgid "Is The Biggest Fish" +msgstr "" + +#: data/levels/community2016/Problem_With_Green (herobrine).stl:3 +msgid "The Problem With GREEN" +msgstr "" + +#: data/levels/community2016/Sunny_Hills (Serano).stl:3 +msgid "Sunny Hills" +msgstr "" + +#: data/levels/community2016/The_Mountains (gelada).stl:3 +msgid "The Mountains" +msgstr "" + +#: data/levels/community2016/The_Strange_Thing (herobrine).stl:3 +msgid "The Strange Thing" +msgstr "" + +#: data/levels/community2016/Uncontrolled_Lift (gelada).stl:3 +msgid "Uncontrolled Lift" +msgstr "" + +#: data/levels/community2016/Up_Or_Down (Serano).stl:3 +msgid "Up, Or Down?" +msgstr "" + +#: data/levels/community2016/Welcome_To_Icy_Island (gelada).stl:3 +msgid "Welcome To The Icy Island" +msgstr "" + +#: data/levels/community2016/worldmap.stwm:3 +msgid "Community Island 2016" +msgstr "" diff --git a/data/levels/community2016/lv.po b/data/levels/community2016/lv.po new file mode 100644 index 00000000000..dbc32fe9e18 --- /dev/null +++ b/data/levels/community2016/lv.po @@ -0,0 +1,86 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the SuperTux package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: SuperTux v0.6.0-1010-gefc33a183\n" +"Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" +"POT-Creation-Date: 2019-11-24 01:44+0100\n" +"PO-Revision-Date: 2019-11-24 00:59+0000\n" +"Language-Team: Latvian (https://app.transifex.com/arctic-games/teams/95/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#: data/levels/community2016/Ancient_Ruins (RustyBox).stl:3 +msgid "The Ancient Ruins Of The Forest" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:3 +msgid "Double Problems" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:82 +msgid "-Concentrate! Tux! It's not Mario!" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:142 +msgid "You found a secret area!" +msgstr "" + +#: data/levels/community2016/Entrance_To_Cave (gelada).stl:3 +msgid "The Entrance To The Cave" +msgstr "" + +#: data/levels/community2016/Entrance_To_Lava_Castle (herobrine).stl:3 +msgid "The Entrance To The Lava Castle" +msgstr "" + +#: data/levels/community2016/HMS_Snowballs_Ahoy (Vellidragon).stl:3 +msgid "HMS Snowball Ahoy!" +msgstr "" + +#: data/levels/community2016/Into_The_Palace (ThomyW).stl:3 +msgid "Into The Palace" +msgstr "" + +#: data/levels/community2016/Is_The_Biggest_Fish (cookie monster).stl:3 +msgid "Is The Biggest Fish" +msgstr "" + +#: data/levels/community2016/Problem_With_Green (herobrine).stl:3 +msgid "The Problem With GREEN" +msgstr "" + +#: data/levels/community2016/Sunny_Hills (Serano).stl:3 +msgid "Sunny Hills" +msgstr "" + +#: data/levels/community2016/The_Mountains (gelada).stl:3 +msgid "The Mountains" +msgstr "" + +#: data/levels/community2016/The_Strange_Thing (herobrine).stl:3 +msgid "The Strange Thing" +msgstr "" + +#: data/levels/community2016/Uncontrolled_Lift (gelada).stl:3 +msgid "Uncontrolled Lift" +msgstr "" + +#: data/levels/community2016/Up_Or_Down (Serano).stl:3 +msgid "Up, Or Down?" +msgstr "" + +#: data/levels/community2016/Welcome_To_Icy_Island (gelada).stl:3 +msgid "Welcome To The Icy Island" +msgstr "" + +#: data/levels/community2016/worldmap.stwm:3 +msgid "Community Island 2016" +msgstr "" diff --git a/data/levels/community2016/mk.po b/data/levels/community2016/mk.po new file mode 100644 index 00000000000..572c5d341b4 --- /dev/null +++ b/data/levels/community2016/mk.po @@ -0,0 +1,86 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the SuperTux package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: SuperTux v0.6.0-1010-gefc33a183\n" +"Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" +"POT-Creation-Date: 2019-11-24 01:44+0100\n" +"PO-Revision-Date: 2019-11-24 00:59+0000\n" +"Language-Team: Macedonian (https://app.transifex.com/arctic-games/teams/95/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#: data/levels/community2016/Ancient_Ruins (RustyBox).stl:3 +msgid "The Ancient Ruins Of The Forest" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:3 +msgid "Double Problems" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:82 +msgid "-Concentrate! Tux! It's not Mario!" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:142 +msgid "You found a secret area!" +msgstr "" + +#: data/levels/community2016/Entrance_To_Cave (gelada).stl:3 +msgid "The Entrance To The Cave" +msgstr "" + +#: data/levels/community2016/Entrance_To_Lava_Castle (herobrine).stl:3 +msgid "The Entrance To The Lava Castle" +msgstr "" + +#: data/levels/community2016/HMS_Snowballs_Ahoy (Vellidragon).stl:3 +msgid "HMS Snowball Ahoy!" +msgstr "" + +#: data/levels/community2016/Into_The_Palace (ThomyW).stl:3 +msgid "Into The Palace" +msgstr "" + +#: data/levels/community2016/Is_The_Biggest_Fish (cookie monster).stl:3 +msgid "Is The Biggest Fish" +msgstr "" + +#: data/levels/community2016/Problem_With_Green (herobrine).stl:3 +msgid "The Problem With GREEN" +msgstr "" + +#: data/levels/community2016/Sunny_Hills (Serano).stl:3 +msgid "Sunny Hills" +msgstr "" + +#: data/levels/community2016/The_Mountains (gelada).stl:3 +msgid "The Mountains" +msgstr "" + +#: data/levels/community2016/The_Strange_Thing (herobrine).stl:3 +msgid "The Strange Thing" +msgstr "" + +#: data/levels/community2016/Uncontrolled_Lift (gelada).stl:3 +msgid "Uncontrolled Lift" +msgstr "" + +#: data/levels/community2016/Up_Or_Down (Serano).stl:3 +msgid "Up, Or Down?" +msgstr "" + +#: data/levels/community2016/Welcome_To_Icy_Island (gelada).stl:3 +msgid "Welcome To The Icy Island" +msgstr "" + +#: data/levels/community2016/worldmap.stwm:3 +msgid "Community Island 2016" +msgstr "" diff --git a/data/levels/community2016/pl.po b/data/levels/community2016/pl.po index 2a1f20310b0..1e9f247c8b7 100644 --- a/data/levels/community2016/pl.po +++ b/data/levels/community2016/pl.po @@ -6,7 +6,7 @@ # Translators: # mkkot , 2019 # Krzysztof Szeląg, 2019 -# Rob PlayZ, 2021 +# Alina Gobarov, 2021 # #, fuzzy msgid "" @@ -15,7 +15,7 @@ msgstr "" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:59+0000\n" -"Last-Translator: Rob PlayZ, 2021\n" +"Last-Translator: Alina Gobarov, 2021\n" "Language-Team: Polish (https://app.transifex.com/arctic-games/teams/95/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/data/levels/community2016/pt.po b/data/levels/community2016/pt.po index d7c121201ef..926144b9fb4 100644 --- a/data/levels/community2016/pt.po +++ b/data/levels/community2016/pt.po @@ -4,8 +4,8 @@ # FIRST AUTHOR , YEAR. # # Translators: -# Sérgio Marques , 2019 # zecas , 2019 +# lecalam, 2024 # #, fuzzy msgid "" @@ -14,7 +14,7 @@ msgstr "" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:59+0000\n" -"Last-Translator: zecas , 2019\n" +"Last-Translator: lecalam, 2024\n" "Language-Team: Portuguese (https://app.transifex.com/arctic-games/teams/95/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,11 +24,11 @@ msgstr "" #: data/levels/community2016/Ancient_Ruins (RustyBox).stl:3 msgid "The Ancient Ruins Of The Forest" -msgstr "As Antigas Ruínas Da Floresta" +msgstr "As Antigas Ruínas da Floresta" #: data/levels/community2016/Double_Problems (herobrine).stl:3 msgid "Double Problems" -msgstr "Problemas Em Dobro" +msgstr "Problemas a Dobrar" #: data/levels/community2016/Double_Problems (herobrine).stl:82 msgid "-Concentrate! Tux! It's not Mario!" @@ -36,11 +36,11 @@ msgstr "-Concentra-te! Tux! Não é o Mário!" #: data/levels/community2016/Double_Problems (herobrine).stl:142 msgid "You found a secret area!" -msgstr "Descobriu uma área secreta!" +msgstr "Descobriste uma área secreta!" #: data/levels/community2016/Entrance_To_Cave (gelada).stl:3 msgid "The Entrance To The Cave" -msgstr "A Entrada Da Caverna" +msgstr "A Entrada da Caverna" #: data/levels/community2016/Entrance_To_Lava_Castle (herobrine).stl:3 msgid "The Entrance To The Lava Castle" @@ -56,7 +56,7 @@ msgstr "No Palácio" #: data/levels/community2016/Is_The_Biggest_Fish (cookie monster).stl:3 msgid "Is The Biggest Fish" -msgstr "É o Peixe Maior" +msgstr "É o Maior Peixe" #: data/levels/community2016/Problem_With_Green (herobrine).stl:3 msgid "The Problem With GREEN" @@ -80,11 +80,11 @@ msgstr "Elevador Descontrolado" #: data/levels/community2016/Up_Or_Down (Serano).stl:3 msgid "Up, Or Down?" -msgstr "Subir, Ou Descer?" +msgstr "Subir, ou Descer?" #: data/levels/community2016/Welcome_To_Icy_Island (gelada).stl:3 msgid "Welcome To The Icy Island" -msgstr "Bem-vindo Na Ilha Gelada" +msgstr "Bem-vindo à Ilha Gelada" #: data/levels/community2016/worldmap.stwm:3 msgid "Community Island 2016" diff --git a/data/levels/community2016/rue.po b/data/levels/community2016/rue.po new file mode 100644 index 00000000000..80c38d47964 --- /dev/null +++ b/data/levels/community2016/rue.po @@ -0,0 +1,86 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the SuperTux package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: SuperTux v0.6.0-1010-gefc33a183\n" +"Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" +"POT-Creation-Date: 2019-11-24 01:44+0100\n" +"PO-Revision-Date: 2019-11-24 00:59+0000\n" +"Language-Team: Rusyn (https://app.transifex.com/arctic-games/teams/95/rue/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: rue\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/levels/community2016/Ancient_Ruins (RustyBox).stl:3 +msgid "The Ancient Ruins Of The Forest" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:3 +msgid "Double Problems" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:82 +msgid "-Concentrate! Tux! It's not Mario!" +msgstr "" + +#: data/levels/community2016/Double_Problems (herobrine).stl:142 +msgid "You found a secret area!" +msgstr "" + +#: data/levels/community2016/Entrance_To_Cave (gelada).stl:3 +msgid "The Entrance To The Cave" +msgstr "" + +#: data/levels/community2016/Entrance_To_Lava_Castle (herobrine).stl:3 +msgid "The Entrance To The Lava Castle" +msgstr "" + +#: data/levels/community2016/HMS_Snowballs_Ahoy (Vellidragon).stl:3 +msgid "HMS Snowball Ahoy!" +msgstr "" + +#: data/levels/community2016/Into_The_Palace (ThomyW).stl:3 +msgid "Into The Palace" +msgstr "" + +#: data/levels/community2016/Is_The_Biggest_Fish (cookie monster).stl:3 +msgid "Is The Biggest Fish" +msgstr "" + +#: data/levels/community2016/Problem_With_Green (herobrine).stl:3 +msgid "The Problem With GREEN" +msgstr "" + +#: data/levels/community2016/Sunny_Hills (Serano).stl:3 +msgid "Sunny Hills" +msgstr "" + +#: data/levels/community2016/The_Mountains (gelada).stl:3 +msgid "The Mountains" +msgstr "" + +#: data/levels/community2016/The_Strange_Thing (herobrine).stl:3 +msgid "The Strange Thing" +msgstr "" + +#: data/levels/community2016/Uncontrolled_Lift (gelada).stl:3 +msgid "Uncontrolled Lift" +msgstr "" + +#: data/levels/community2016/Up_Or_Down (Serano).stl:3 +msgid "Up, Or Down?" +msgstr "" + +#: data/levels/community2016/Welcome_To_Icy_Island (gelada).stl:3 +msgid "Welcome To The Icy Island" +msgstr "" + +#: data/levels/community2016/worldmap.stwm:3 +msgid "Community Island 2016" +msgstr "" diff --git a/data/levels/community2016/sl.po b/data/levels/community2016/sl.po index 933d49613e9..96e97e3608b 100644 --- a/data/levels/community2016/sl.po +++ b/data/levels/community2016/sl.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # # Translators: -# Gorazd Gorup , 2022 +# Gorzy Gorup , 2022 # #, fuzzy msgid "" @@ -13,7 +13,7 @@ msgstr "" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:59+0000\n" -"Last-Translator: Gorazd Gorup , 2022\n" +"Last-Translator: Gorzy Gorup , 2022\n" "Language-Team: Slovenian (https://app.transifex.com/arctic-games/teams/95/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/data/levels/community2016/tr.po b/data/levels/community2016/tr.po index 1c38a01c015..88fe62bb0a1 100644 --- a/data/levels/community2016/tr.po +++ b/data/levels/community2016/tr.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # # Translators: -# yakup , 2019 +# 9d4282795e87ad099e39d98812f1a822_ade2f01 , 2019 # mahmut özcan , 2020 # #, fuzzy diff --git a/data/levels/community2016/vi.po b/data/levels/community2016/vi.po index a212f67bd09..ef999c868fe 100644 --- a/data/levels/community2016/vi.po +++ b/data/levels/community2016/vi.po @@ -5,7 +5,7 @@ # # Translators: # Anh Phan , 2019 -# Huy Quang Bui, 2022 +# Huy Quang Bui (Bùi Huy Quang), 2024 # #, fuzzy msgid "" @@ -14,7 +14,7 @@ msgstr "" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:59+0000\n" -"Last-Translator: Huy Quang Bui, 2022\n" +"Last-Translator: Huy Quang Bui (Bùi Huy Quang), 2024\n" "Language-Team: Vietnamese (https://app.transifex.com/arctic-games/teams/95/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -60,7 +60,7 @@ msgstr "Màn Này Quan Trọng Nhất" #: data/levels/community2016/Problem_With_Green (herobrine).stl:3 msgid "The Problem With GREEN" -msgstr "" +msgstr "Bài Toán Màu Xanh Lục" #: data/levels/community2016/Sunny_Hills (Serano).stl:3 msgid "Sunny Hills" @@ -72,7 +72,7 @@ msgstr "Những Ngọn Núi" #: data/levels/community2016/The_Strange_Thing (herobrine).stl:3 msgid "The Strange Thing" -msgstr "" +msgstr "Sự Vật Kỳ Lạ" #: data/levels/community2016/Uncontrolled_Lift (gelada).stl:3 msgid "Uncontrolled Lift" diff --git a/data/levels/community2016/zh_CN.po b/data/levels/community2016/zh_CN.po index 0f43bf20ff1..4b4a9935a2f 100644 --- a/data/levels/community2016/zh_CN.po +++ b/data/levels/community2016/zh_CN.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # # Translators: -# Benjamin Leduc , 2019 +# Wenbin Lv , 2024 # #, fuzzy msgid "" @@ -13,7 +13,7 @@ msgstr "" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" "POT-Creation-Date: 2019-11-24 01:44+0100\n" "PO-Revision-Date: 2019-11-24 00:59+0000\n" -"Last-Translator: Benjamin Leduc , 2019\n" +"Last-Translator: Wenbin Lv , 2024\n" "Language-Team: Chinese (China) (https://app.transifex.com/arctic-games/teams/95/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,68 +23,68 @@ msgstr "" #: data/levels/community2016/Ancient_Ruins (RustyBox).stl:3 msgid "The Ancient Ruins Of The Forest" -msgstr "" +msgstr "森林的远古遗迹" #: data/levels/community2016/Double_Problems (herobrine).stl:3 msgid "Double Problems" -msgstr "" +msgstr "坏事成双" #: data/levels/community2016/Double_Problems (herobrine).stl:82 msgid "-Concentrate! Tux! It's not Mario!" -msgstr "" +msgstr "-专心点,Tux!这可不是超级马力欧!" #: data/levels/community2016/Double_Problems (herobrine).stl:142 msgid "You found a secret area!" -msgstr "你找到了一个秘密区域!" +msgstr "你找到了一个秘密区域!" #: data/levels/community2016/Entrance_To_Cave (gelada).stl:3 msgid "The Entrance To The Cave" -msgstr "" +msgstr "洞穴入口" #: data/levels/community2016/Entrance_To_Lava_Castle (herobrine).stl:3 msgid "The Entrance To The Lava Castle" -msgstr "" +msgstr "熔岩城堡入口" #: data/levels/community2016/HMS_Snowballs_Ahoy (Vellidragon).stl:3 msgid "HMS Snowball Ahoy!" -msgstr "" +msgstr "英国皇家海军雪球号,啊嘿!" #: data/levels/community2016/Into_The_Palace (ThomyW).stl:3 msgid "Into The Palace" -msgstr "" +msgstr "进入宫殿" #: data/levels/community2016/Is_The_Biggest_Fish (cookie monster).stl:3 msgid "Is The Biggest Fish" -msgstr "" +msgstr "是最大的鱼" #: data/levels/community2016/Problem_With_Green (herobrine).stl:3 msgid "The Problem With GREEN" -msgstr "" +msgstr "绿色引发的问题" #: data/levels/community2016/Sunny_Hills (Serano).stl:3 msgid "Sunny Hills" -msgstr "" +msgstr "阳光山丘" #: data/levels/community2016/The_Mountains (gelada).stl:3 msgid "The Mountains" -msgstr "" +msgstr "崇山峻岭" #: data/levels/community2016/The_Strange_Thing (herobrine).stl:3 msgid "The Strange Thing" -msgstr "" +msgstr "怪事一桩" #: data/levels/community2016/Uncontrolled_Lift (gelada).stl:3 msgid "Uncontrolled Lift" -msgstr "" +msgstr "失控的电梯" #: data/levels/community2016/Up_Or_Down (Serano).stl:3 msgid "Up, Or Down?" -msgstr "" +msgstr "上,还是下?" #: data/levels/community2016/Welcome_To_Icy_Island (gelada).stl:3 msgid "Welcome To The Icy Island" -msgstr "" +msgstr "欢迎来到寒冰岛" #: data/levels/community2016/worldmap.stwm:3 msgid "Community Island 2016" -msgstr "" +msgstr "社区岛 2016" diff --git a/data/levels/halloween2014/ar.po b/data/levels/halloween2014/ar.po index c53bbd86a12..c8b15055ecc 100644 --- a/data/levels/halloween2014/ar.po +++ b/data/levels/halloween2014/ar.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2015-10-19 18:02+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Arabic (http://app.transifex.com/arctic-games/supertux/language/ar/)\n" diff --git a/data/levels/halloween2014/az.po b/data/levels/halloween2014/az.po index 071036d321f..9ba5919de1a 100644 --- a/data/levels/halloween2014/az.po +++ b/data/levels/halloween2014/az.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2015-10-19 18:02+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Azerbaijani (http://app.transifex.com/arctic-games/supertux/language/az/)\n" diff --git a/data/levels/halloween2014/bg.po b/data/levels/halloween2014/bg.po index 6e88176c86e..feae54e4ceb 100644 --- a/data/levels/halloween2014/bg.po +++ b/data/levels/halloween2014/bg.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-22 16:39+0000\n" -"Last-Translator: Любомир Василев\n" -"Language-Team: Bulgarian (http://www.transifex.com/arctic-games/supertux/language/bg/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Любомир Василев, 2015\n" +"Language-Team: Bulgarian (http://app.transifex.com/arctic-games/supertux/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/br.po b/data/levels/halloween2014/br.po index e86d6acfa93..13ad8973973 100644 --- a/data/levels/halloween2014/br.po +++ b/data/levels/halloween2014/br.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Irriep Nala Novram , 2017-2018 +# Irriep Nala Novram , 2017-2018 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2018-08-06 16:38+0000\n" -"Last-Translator: Irriep Nala Novram \n" -"Language-Team: Breton (http://www.transifex.com/arctic-games/supertux/language/br/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Irriep Nala Novram , 2017-2018\n" +"Language-Team: Breton (http://app.transifex.com/arctic-games/supertux/language/br/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/ca.po b/data/levels/halloween2014/ca.po index 4e5a782f7e6..496f6878e88 100644 --- a/data/levels/halloween2014/ca.po +++ b/data/levels/halloween2014/ca.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-22 16:39+0000\n" -"Last-Translator: Ariadna Pascual \n" -"Language-Team: Catalan (http://www.transifex.com/arctic-games/supertux/language/ca/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Ariadna Pascual , 2016\n" +"Language-Team: Catalan (http://app.transifex.com/arctic-games/supertux/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/cs.po b/data/levels/halloween2014/cs.po index ad6bed0fd9d..ebbda6f89d1 100644 --- a/data/levels/halloween2014/cs.po +++ b/data/levels/halloween2014/cs.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-20 13:05+0000\n" -"Last-Translator: Jiří Paleček \n" -"Language-Team: Czech (http://www.transifex.com/arctic-games/supertux/language/cs/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Jiří Paleček , 2021\n" +"Language-Team: Czech (http://app.transifex.com/arctic-games/supertux/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/da.po b/data/levels/halloween2014/da.po index 81a63f6172a..8b4f5cfe0c9 100644 --- a/data/levels/halloween2014/da.po +++ b/data/levels/halloween2014/da.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-22 16:39+0000\n" -"Last-Translator: Joe Hansen \n" -"Language-Team: Danish (http://www.transifex.com/arctic-games/supertux/language/da/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Joe Hansen , 2015\n" +"Language-Team: Danish (http://app.transifex.com/arctic-games/supertux/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/de.po b/data/levels/halloween2014/de.po index 912c6a75398..948817e72fc 100644 --- a/data/levels/halloween2014/de.po +++ b/data/levels/halloween2014/de.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2018-02-11 19:04+0000\n" -"Last-Translator: mteufel\n" -"Language-Team: German (http://www.transifex.com/arctic-games/supertux/language/de/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Ettore Atalan , 2015\n" +"Language-Team: German (http://app.transifex.com/arctic-games/supertux/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/el.po b/data/levels/halloween2014/el.po index 361f3826fe3..2e23cc9fb67 100644 --- a/data/levels/halloween2014/el.po +++ b/data/levels/halloween2014/el.po @@ -4,15 +4,15 @@ # # Translators: # I will not tell you that , 2015 -# Vangelis Skarmoutsos , 2016 +# Vangelis Skarmoutsos (SkarmoutsosV) , 2016 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-22 16:39+0000\n" -"Last-Translator: Vangelis Skarmoutsos \n" -"Language-Team: Greek (http://www.transifex.com/arctic-games/supertux/language/el/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Vangelis Skarmoutsos (SkarmoutsosV) , 2016\n" +"Language-Team: Greek (http://app.transifex.com/arctic-games/supertux/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/eo.po b/data/levels/halloween2014/eo.po index 90417ee03ab..3497f75e8f1 100644 --- a/data/levels/halloween2014/eo.po +++ b/data/levels/halloween2014/eo.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2015-10-19 18:02+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Esperanto (http://app.transifex.com/arctic-games/supertux/language/eo/)\n" diff --git a/data/levels/halloween2014/es.po b/data/levels/halloween2014/es.po index 807c58ddd8e..23345e3afc5 100644 --- a/data/levels/halloween2014/es.po +++ b/data/levels/halloween2014/es.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 22:14+0000\n" -"Last-Translator: Swyter \n" -"Language-Team: Spanish (http://www.transifex.com/arctic-games/supertux/language/es/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Swyter , 2021\n" +"Language-Team: Spanish (http://app.transifex.com/arctic-games/supertux/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/halloween2014/halloween1.stl:3 msgid "Darkness Prevails" diff --git a/data/levels/halloween2014/es_AR.po b/data/levels/halloween2014/es_AR.po index cfda6fd6ef9..0042b08ef95 100644 --- a/data/levels/halloween2014/es_AR.po +++ b/data/levels/halloween2014/es_AR.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2019-11-24 01:44+0100\n" -"PO-Revision-Date: 2020-08-29 12:37+0000\n" -"Last-Translator: Alejo Fernandez \n" -"Language-Team: Spanish (Argentina) (http://www.transifex.com/arctic-games/supertux/language/es_AR/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Alejo Fernandez , 2020\n" +"Language-Team: Spanish (Argentina) (http://app.transifex.com/arctic-games/supertux/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_AR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/halloween2014/halloween1.stl:3 msgid "Darkness Prevails" diff --git a/data/levels/halloween2014/et.po b/data/levels/halloween2014/et.po index 6d5145c3281..5ac278d2cbb 100644 --- a/data/levels/halloween2014/et.po +++ b/data/levels/halloween2014/et.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2015-10-19 18:02+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Estonian (http://app.transifex.com/arctic-games/supertux/language/et/)\n" diff --git a/data/levels/halloween2014/eu.po b/data/levels/halloween2014/eu.po index a8455a45a36..c81f1b84fff 100644 --- a/data/levels/halloween2014/eu.po +++ b/data/levels/halloween2014/eu.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Mielanjel Iraeta , 2018 +# Mielanjel Iraeta , 2018 # Urtzi Odriozola , 2017 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2018-11-05 23:45+0100\n" -"PO-Revision-Date: 2018-04-18 09:57+0000\n" -"Last-Translator: Mielanjel Iraeta \n" -"Language-Team: Basque (http://www.transifex.com/arctic-games/supertux/language/eu/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Mielanjel Iraeta , 2018\n" +"Language-Team: Basque (http://app.transifex.com/arctic-games/supertux/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/fi.po b/data/levels/halloween2014/fi.po index 6b995a7a606..f9ac661df01 100644 --- a/data/levels/halloween2014/fi.po +++ b/data/levels/halloween2014/fi.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Jaakoppi Horila , 2016 +# Jaakoppi Horila , 2016,2022 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-22 16:39+0000\n" -"Last-Translator: Jaakoppi Horila \n" -"Language-Team: Finnish (http://www.transifex.com/arctic-games/supertux/language/fi/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Jaakoppi Horila , 2016,2022\n" +"Language-Team: Finnish (http://app.transifex.com/arctic-games/supertux/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,7 +36,7 @@ msgstr "Hylätty talo" #: data/levels/halloween2014/mound.stl:3 msgid "Mound of the Dead" -msgstr "Kuolleiden vuori" +msgstr "Kuolleiden kumpu" #: data/levels/halloween2014/outro.stl:3 msgid "Halloween Party?" diff --git a/data/levels/halloween2014/fr.po b/data/levels/halloween2014/fr.po index 5d40bd7da83..3c639495ab5 100644 --- a/data/levels/halloween2014/fr.po +++ b/data/levels/halloween2014/fr.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-22 16:39+0000\n" -"Last-Translator: Sébastien Aperghis-Tramoni\n" -"Language-Team: French (http://www.transifex.com/arctic-games/supertux/language/fr/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Sébastien Aperghis-Tramoni, 2015\n" +"Language-Team: French (http://app.transifex.com/arctic-games/supertux/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/halloween2014/halloween1.stl:3 msgid "Darkness Prevails" diff --git a/data/levels/halloween2014/fr_CA.po b/data/levels/halloween2014/fr_CA.po index b24dd82c595..d57f3b0e9c3 100644 --- a/data/levels/halloween2014/fr_CA.po +++ b/data/levels/halloween2014/fr_CA.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2015-10-19 18:02+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: French (Canada) (http://app.transifex.com/arctic-games/supertux/language/fr_CA/)\n" diff --git a/data/levels/halloween2014/gd.po b/data/levels/halloween2014/gd.po index a014cd715e1..d7f2545d042 100644 --- a/data/levels/halloween2014/gd.po +++ b/data/levels/halloween2014/gd.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2019-02-16 16:25+0000\n" -"Last-Translator: GunChleoc\n" -"Language-Team: Gaelic, Scottish (http://www.transifex.com/arctic-games/supertux/language/gd/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: GunChleoc, 2019\n" +"Language-Team: Gaelic, Scottish (http://app.transifex.com/arctic-games/supertux/language/gd/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/gl.po b/data/levels/halloween2014/gl.po index 14321c272b5..5825ef2ab16 100644 --- a/data/levels/halloween2014/gl.po +++ b/data/levels/halloween2014/gl.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2019-11-24 01:44+0100\n" -"PO-Revision-Date: 2019-11-24 17:00+0000\n" -"Last-Translator: Pablo Rodriguez \n" -"Language-Team: Galician (http://www.transifex.com/arctic-games/supertux/language/gl/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Pablo Rodriguez , 2019\n" +"Language-Team: Galician (http://app.transifex.com/arctic-games/supertux/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/he.po b/data/levels/halloween2014/he.po index 6c78ff23890..dcabe020b0e 100644 --- a/data/levels/halloween2014/he.po +++ b/data/levels/halloween2014/he.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2015-10-19 18:02+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Hebrew (http://app.transifex.com/arctic-games/supertux/language/he/)\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: he\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" +"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n" #: data/levels/halloween2014/halloween1.stl:3 msgid "Darkness Prevails" diff --git a/data/levels/halloween2014/hr.po b/data/levels/halloween2014/hr.po index b13d7544327..bda1ec9a930 100644 --- a/data/levels/halloween2014/hr.po +++ b/data/levels/halloween2014/hr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2015-10-19 18:02+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Croatian (http://app.transifex.com/arctic-games/supertux/language/hr/)\n" diff --git a/data/levels/halloween2014/hu.po b/data/levels/halloween2014/hu.po index c8d53c7082a..490311efefe 100644 --- a/data/levels/halloween2014/hu.po +++ b/data/levels/halloween2014/hu.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2019-11-24 01:44+0100\n" -"PO-Revision-Date: 2020-05-14 19:54+0000\n" -"Last-Translator: Kristóf Kófiás \n" -"Language-Team: Hungarian (http://www.transifex.com/arctic-games/supertux/language/hu/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Kristóf Kófiás , 2020\n" +"Language-Team: Hungarian (http://app.transifex.com/arctic-games/supertux/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/hy.po b/data/levels/halloween2014/hy.po index b5b574c44bc..d77063fded9 100644 --- a/data/levels/halloween2014/hy.po +++ b/data/levels/halloween2014/hy.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2015-10-19 18:02+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Armenian (http://app.transifex.com/arctic-games/supertux/language/hy/)\n" diff --git a/data/levels/halloween2014/id.po b/data/levels/halloween2014/id.po index 3e98ba0a3f8..afe5772d990 100644 --- a/data/levels/halloween2014/id.po +++ b/data/levels/halloween2014/id.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# CRS.ECHO51 , 2017 +# Chris , 2017 # IAN RODRÍGUEZ Lorenzo, 2023 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2015-10-19 18:02+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Indonesian (http://app.transifex.com/arctic-games/supertux/language/id/)\n" diff --git a/data/levels/halloween2014/is.po b/data/levels/halloween2014/is.po index dd12c7f7cf2..198942650ad 100644 --- a/data/levels/halloween2014/is.po +++ b/data/levels/halloween2014/is.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2015-10-19 18:02+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Icelandic (http://app.transifex.com/arctic-games/supertux/language/is/)\n" diff --git a/data/levels/halloween2014/it.po b/data/levels/halloween2014/it.po index f954733187f..08064c9edbe 100644 --- a/data/levels/halloween2014/it.po +++ b/data/levels/halloween2014/it.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-22 16:39+0000\n" -"Last-Translator: Gianfranco Del Borrello \n" -"Language-Team: Italian (http://www.transifex.com/arctic-games/supertux/language/it/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Gianfranco Del Borrello , 2016\n" +"Language-Team: Italian (http://app.transifex.com/arctic-games/supertux/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/halloween2014/halloween1.stl:3 msgid "Darkness Prevails" diff --git a/data/levels/halloween2014/ja.po b/data/levels/halloween2014/ja.po index 831de870779..7e4621a181d 100644 --- a/data/levels/halloween2014/ja.po +++ b/data/levels/halloween2014/ja.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2019-01-01 10:22+0000\n" -"Last-Translator: Ryo Nakano\n" -"Language-Team: Japanese (http://www.transifex.com/arctic-games/supertux/language/ja/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Ryo Nakano, 2019\n" +"Language-Team: Japanese (http://app.transifex.com/arctic-games/supertux/language/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/ko.po b/data/levels/halloween2014/ko.po index 7c5dc00a6ee..efd6d8dacac 100644 --- a/data/levels/halloween2014/ko.po +++ b/data/levels/halloween2014/ko.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-22 16:39+0000\n" -"Last-Translator: Myeongjin \n" -"Language-Team: Korean (http://www.transifex.com/arctic-games/supertux/language/ko/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Myeongjin , 2016\n" +"Language-Team: Korean (http://app.transifex.com/arctic-games/supertux/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/la.po b/data/levels/halloween2014/la.po index ff722addbfb..d9619fcee5c 100644 --- a/data/levels/halloween2014/la.po +++ b/data/levels/halloween2014/la.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-22 18:59+0000\n" -"Last-Translator: Alisa P \n" -"Language-Team: Latin (http://www.transifex.com/arctic-games/supertux/language/la/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Latin (http://app.transifex.com/arctic-games/supertux/language/la/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/lt.po b/data/levels/halloween2014/lt.po index a02819f97a5..a79759177e1 100644 --- a/data/levels/halloween2014/lt.po +++ b/data/levels/halloween2014/lt.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-11-06 13:55+0000\n" -"Last-Translator: Tom Urisk\n" -"Language-Team: Lithuanian (http://www.transifex.com/arctic-games/supertux/language/lt/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Tom Urisk, 2021\n" +"Language-Team: Lithuanian (http://app.transifex.com/arctic-games/supertux/language/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/messages.pot b/data/levels/halloween2014/messages.pot index bdc75f709d5..b4051459284 100644 --- a/data/levels/halloween2014/messages.pot +++ b/data/levels/halloween2014/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: SuperTux v0.6.2-963-gb4a1b149f\n" +"Project-Id-Version: SuperTux v0.6.3-1080-g2e08c1b7f\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/data/levels/halloween2014/ml.po b/data/levels/halloween2014/ml.po index 4eae4f6d160..f2c048b313a 100644 --- a/data/levels/halloween2014/ml.po +++ b/data/levels/halloween2014/ml.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Adharsh 01 , 2019 +# Adharsh P S , 2019 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2019-12-23 11:27+0000\n" -"Last-Translator: Adharsh 01 \n" -"Language-Team: Malayalam (http://www.transifex.com/arctic-games/supertux/language/ml/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Adharsh P S , 2019\n" +"Language-Team: Malayalam (http://app.transifex.com/arctic-games/supertux/language/ml/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/ms_MY.po b/data/levels/halloween2014/ms_MY.po index 48eb2065cb7..6fcd01c3e1e 100644 --- a/data/levels/halloween2014/ms_MY.po +++ b/data/levels/halloween2014/ms_MY.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-06-15 04:36+0000\n" -"Last-Translator: abuyop \n" -"Language-Team: Malay (Malaysia) (http://www.transifex.com/arctic-games/supertux/language/ms_MY/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: abuyop , 2018,2021\n" +"Language-Team: Malay (Malaysia) (http://app.transifex.com/arctic-games/supertux/language/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/nb.po b/data/levels/halloween2014/nb.po index c4faacad72e..16e69fb3ad4 100644 --- a/data/levels/halloween2014/nb.po +++ b/data/levels/halloween2014/nb.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-22 16:39+0000\n" -"Last-Translator: Karl Ove Hufthammer \n" -"Language-Team: Norwegian Bokmål (http://www.transifex.com/arctic-games/supertux/language/nb/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Karl Ove Hufthammer , 2015\n" +"Language-Team: Norwegian Bokmål (http://app.transifex.com/arctic-games/supertux/language/nb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/nds.po b/data/levels/halloween2014/nds.po index aa113036c77..be39f8e56f7 100644 --- a/data/levels/halloween2014/nds.po +++ b/data/levels/halloween2014/nds.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2018-11-05 23:45+0100\n" -"PO-Revision-Date: 2018-10-27 18:59+0000\n" -"Last-Translator: Benedikt Straub \n" -"Language-Team: Low German (http://www.transifex.com/arctic-games/supertux/language/nds/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Benedikt Straub , 2018\n" +"Language-Team: Low German (http://app.transifex.com/arctic-games/supertux/language/nds/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/nl.po b/data/levels/halloween2014/nl.po index c4e39f4d3b1..2a75111a171 100644 --- a/data/levels/halloween2014/nl.po +++ b/data/levels/halloween2014/nl.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Heimen Stoffels , 2015,2019 +# Heimen Stoffels , 2015,2019 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2019-11-24 01:44+0100\n" -"PO-Revision-Date: 2019-11-28 21:20+0000\n" -"Last-Translator: Heimen Stoffels \n" -"Language-Team: Dutch (http://www.transifex.com/arctic-games/supertux/language/nl/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Heimen Stoffels , 2015,2019\n" +"Language-Team: Dutch (http://app.transifex.com/arctic-games/supertux/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/nn.po b/data/levels/halloween2014/nn.po index 3d1f49a772a..e46c3eafc8e 100644 --- a/data/levels/halloween2014/nn.po +++ b/data/levels/halloween2014/nn.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2019-03-16 15:39+0000\n" -"Last-Translator: Karl Ove Hufthammer \n" -"Language-Team: Norwegian Nynorsk (http://www.transifex.com/arctic-games/supertux/language/nn/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Karl Ove Hufthammer , 2015\n" +"Language-Team: Norwegian Nynorsk (http://app.transifex.com/arctic-games/supertux/language/nn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/pl.po b/data/levels/halloween2014/pl.po index f8d14157377..f1efddaab90 100644 --- a/data/levels/halloween2014/pl.po +++ b/data/levels/halloween2014/pl.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-22 16:39+0000\n" -"Last-Translator: Krzysztof Szeląg\n" -"Language-Team: Polish (http://www.transifex.com/arctic-games/supertux/language/pl/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Krzysztof Szeląg, 2015\n" +"Language-Team: Polish (http://app.transifex.com/arctic-games/supertux/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/pt.po b/data/levels/halloween2014/pt.po index 554163a1a4c..41af271fff7 100644 --- a/data/levels/halloween2014/pt.po +++ b/data/levels/halloween2014/pt.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-22 16:39+0000\n" -"Last-Translator: Rui \n" -"Language-Team: Portuguese (http://www.transifex.com/arctic-games/supertux/language/pt/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Rui , 2016\n" +"Language-Team: Portuguese (http://app.transifex.com/arctic-games/supertux/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/halloween2014/halloween1.stl:3 msgid "Darkness Prevails" diff --git a/data/levels/halloween2014/pt_BR.po b/data/levels/halloween2014/pt_BR.po index 501f2214ed7..4179e4dc84b 100644 --- a/data/levels/halloween2014/pt_BR.po +++ b/data/levels/halloween2014/pt_BR.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-22 16:39+0000\n" -"Last-Translator: Rui \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/arctic-games/supertux/language/pt_BR/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Rui , 2016\n" +"Language-Team: Portuguese (Brazil) (http://app.transifex.com/arctic-games/supertux/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/halloween2014/halloween1.stl:3 msgid "Darkness Prevails" diff --git a/data/levels/halloween2014/ro.po b/data/levels/halloween2014/ro.po index e6bd91c39f4..c8d5b416472 100644 --- a/data/levels/halloween2014/ro.po +++ b/data/levels/halloween2014/ro.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2015-10-19 18:02+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Romanian (http://app.transifex.com/arctic-games/supertux/language/ro/)\n" diff --git a/data/levels/halloween2014/ru.po b/data/levels/halloween2014/ru.po index 5c51b2cf763..823ba0b6281 100644 --- a/data/levels/halloween2014/ru.po +++ b/data/levels/halloween2014/ru.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-22 16:39+0000\n" -"Last-Translator: Dmitry Anikonov \n" -"Language-Team: Russian (http://www.transifex.com/arctic-games/supertux/language/ru/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Dmitry Anikonov , 2015\n" +"Language-Team: Russian (http://app.transifex.com/arctic-games/supertux/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/sk.po b/data/levels/halloween2014/sk.po index 56d0b8072d1..ff8b7e23fe7 100644 --- a/data/levels/halloween2014/sk.po +++ b/data/levels/halloween2014/sk.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-22 16:39+0000\n" -"Last-Translator: MiroslavR \n" -"Language-Team: Slovak (http://www.transifex.com/arctic-games/supertux/language/sk/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: MiroslavR , 2015\n" +"Language-Team: Slovak (http://app.transifex.com/arctic-games/supertux/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/sl.po b/data/levels/halloween2014/sl.po index 13182824f19..15f7670e106 100644 --- a/data/levels/halloween2014/sl.po +++ b/data/levels/halloween2014/sl.po @@ -4,14 +4,15 @@ # # Translators: # Gorzy Gorup , 2016 +# Gorzy Gorup , 2022 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-22 16:39+0000\n" -"Last-Translator: Gorzy Gorup \n" -"Language-Team: Slovenian (http://www.transifex.com/arctic-games/supertux/language/sl/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Gorzy Gorup , 2022\n" +"Language-Team: Slovenian (http://app.transifex.com/arctic-games/supertux/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,7 +37,7 @@ msgstr "Opuščena hiša" #: data/levels/halloween2014/mound.stl:3 msgid "Mound of the Dead" -msgstr "Mrtvaški grič" +msgstr "Mrtvaška gomila" #: data/levels/halloween2014/outro.stl:3 msgid "Halloween Party?" diff --git a/data/levels/halloween2014/sq.po b/data/levels/halloween2014/sq.po index 51f7f71507c..da57e192cd6 100644 --- a/data/levels/halloween2014/sq.po +++ b/data/levels/halloween2014/sq.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2015-10-19 18:02+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Albanian (http://app.transifex.com/arctic-games/supertux/language/sq/)\n" diff --git a/data/levels/halloween2014/sv.po b/data/levels/halloween2014/sv.po index 99f7ca01e28..4cca9a5b252 100644 --- a/data/levels/halloween2014/sv.po +++ b/data/levels/halloween2014/sv.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-22 16:39+0000\n" -"Last-Translator: Sebastian Rasmussen \n" -"Language-Team: Swedish (http://www.transifex.com/arctic-games/supertux/language/sv/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Sebastian Rasmussen , 2015\n" +"Language-Team: Swedish (http://app.transifex.com/arctic-games/supertux/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/te.po b/data/levels/halloween2014/te.po index bbf2a84c3fd..13ab9eb9022 100644 --- a/data/levels/halloween2014/te.po +++ b/data/levels/halloween2014/te.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Jagadeeshvarma, 2021 +# Nanowarrior, 2021 +# Nanowarrior, 2022 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-05-12 09:20+0000\n" -"Last-Translator: Jagadeeshvarma\n" -"Language-Team: Telugu (http://www.transifex.com/arctic-games/supertux/language/te/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Nanowarrior, 2022\n" +"Language-Team: Telugu (http://app.transifex.com/arctic-games/supertux/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -32,7 +33,7 @@ msgstr "స్మశాన మార్పు" #: data/levels/halloween2014/intro.stl:3 msgid "The Abandoned House" -msgstr "వదిలివేసిన ఇల్లు" +msgstr "పాడుబడిన ఇల్లు" #: data/levels/halloween2014/mound.stl:3 msgid "Mound of the Dead" diff --git a/data/levels/halloween2014/tr.po b/data/levels/halloween2014/tr.po index a88cf56a56e..c366e26b832 100644 --- a/data/levels/halloween2014/tr.po +++ b/data/levels/halloween2014/tr.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-22 16:39+0000\n" -"Last-Translator: mahmut özcan \n" -"Language-Team: Turkish (http://www.transifex.com/arctic-games/supertux/language/tr/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: mahmut özcan , 2015\n" +"Language-Team: Turkish (http://app.transifex.com/arctic-games/supertux/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/tt.po b/data/levels/halloween2014/tt.po index d9dca438145..d2ecb6c3073 100644 --- a/data/levels/halloween2014/tt.po +++ b/data/levels/halloween2014/tt.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-22 19:02+0000\n" -"Last-Translator: Булат Ибраһим \n" -"Language-Team: Tatar (http://www.transifex.com/arctic-games/supertux/language/tt/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Булат Ибраһим , 2016\n" +"Language-Team: Tatar (http://app.transifex.com/arctic-games/supertux/language/tt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/uk.po b/data/levels/halloween2014/uk.po index e114d9c9194..36d258054fb 100644 --- a/data/levels/halloween2014/uk.po +++ b/data/levels/halloween2014/uk.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2017-09-22 16:39+0000\n" -"Last-Translator: Max Lyashuk \n" -"Language-Team: Ukrainian (http://www.transifex.com/arctic-games/supertux/language/uk/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: Max Lyashuk , 2015\n" +"Language-Team: Ukrainian (http://app.transifex.com/arctic-games/supertux/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/data/levels/halloween2014/uz.po b/data/levels/halloween2014/uz.po index 2bc779a969f..94c6ad494b2 100644 --- a/data/levels/halloween2014/uz.po +++ b/data/levels/halloween2014/uz.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2015-10-19 18:02+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Uzbek (http://app.transifex.com/arctic-games/supertux/language/uz/)\n" diff --git a/data/levels/halloween2014/zh_CN.po b/data/levels/halloween2014/zh_CN.po index df028de1b72..b2cdb54198d 100644 --- a/data/levels/halloween2014/zh_CN.po +++ b/data/levels/halloween2014/zh_CN.po @@ -4,14 +4,15 @@ # # Translators: # CodingJellyfish , 2018 +# CodingJellyfish , 2018 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2018-12-27 16:07+0000\n" -"Last-Translator: CodingJellyfish \n" -"Language-Team: Chinese (China) (http://www.transifex.com/arctic-games/supertux/language/zh_CN/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2015-10-19 18:02+0000\n" +"Last-Translator: CodingJellyfish , 2018\n" +"Language-Team: Chinese (China) (http://app.transifex.com/arctic-games/supertux/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -28,7 +29,7 @@ msgstr "雾气散去" #: data/levels/halloween2014/halloween3.stl:3 msgid "Graveyard Shift" -msgstr "赶夜" +msgstr "墓地夜班" #: data/levels/halloween2014/intro.stl:3 msgid "The Abandoned House" @@ -36,11 +37,11 @@ msgstr "被遗弃的小屋" #: data/levels/halloween2014/mound.stl:3 msgid "Mound of the Dead" -msgstr "死亡之丘" +msgstr "亡者坟堆" #: data/levels/halloween2014/outro.stl:3 msgid "Halloween Party?" -msgstr "万圣派对时间?" +msgstr "万圣节派对?" #: data/levels/halloween2014/pools.stl:3 msgid "Putrid Pools" @@ -48,4 +49,4 @@ msgstr "腐臭池塘" #: data/levels/halloween2014/worldmap.stwm:3 msgid "Halloween 2014" -msgstr "2014年的万圣节" +msgstr "万圣节 2014" diff --git a/data/levels/misc/credits.stl b/data/levels/misc/credits.stl index be80419faec..5ad14475942 100644 --- a/data/levels/misc/credits.stl +++ b/data/levels/misc/credits.stl @@ -60,7 +60,7 @@ stop_music(0);") ) (camera (name "Camera") - (mode "normal") + (mode "manual") ) (decal (name "PENNY") @@ -188,7 +188,7 @@ stop_music(0);") 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2622 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 106 107 108 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 109 110 111 24 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 109 110 111 5203 5204 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 @@ -226,12 +226,12 @@ stop_music(0);") 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 2129 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 4780 4780 2469 2129 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 4780 2469 4780 4780 4780 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 4780 2469 2469 2469 4780 2469 2129 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 4780 4780 4780 2469 4780 2469 2469 4780 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5547 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5549 5549 5543 5547 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5549 5543 5549 5549 5549 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5549 5543 5543 5543 5549 5543 5547 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5549 5549 5549 5543 5549 5543 5543 5549 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ) ) (tilemap @@ -255,16 +255,16 @@ stop_music(0);") 2918 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2920 2915 2916 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 11 1835 1836 1831 2917 2918 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 2135 11 11 11 1835 2919 2920 14 14 14 2915 2916 4753 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 2135 11 11 11 11 11 2134 11 11 2134 11 1835 4755 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 2135 2134 115 116 2134 11 2134 2134 2135 11 2134 11 3432 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 11 2135 117 118 11 2135 2134 2135 11 11 11 11 2941 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 11 11 11 11 11 2134 2135 26 2134 2134 11 30 2942 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 11 11 2134 11 2134 2134 2135 11 11 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 11 0 0 2134 11 2134 11 2135 2135 11 2135 3432 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 11 0 0 11 11 2134 11 11 2134 11 11 2941 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 11 11 2135 2135 11 2134 2134 2135 11 11 30 2942 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 11 11 11 2134 11 2135 2135 11 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5369 11 11 11 1835 2919 2920 14 14 14 2915 2916 5385 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5369 11 11 11 11 11 5368 11 11 5368 11 1835 5389 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5369 5368 115 116 5368 11 5368 5368 5369 11 5368 11 5375 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 11 5369 117 118 11 5369 5368 5369 11 11 11 11 2941 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 11 11 11 11 11 5368 5369 1539 5368 5368 11 30 2942 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 11 11 5368 11 5368 5368 5369 11 11 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 11 0 0 5368 11 5368 11 5369 5369 11 5369 5375 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 11 0 0 11 11 5368 11 11 5368 11 11 2941 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 11 11 5369 5369 11 5368 5368 5369 11 11 30 2942 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 11 11 11 5368 11 5369 5369 11 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ) ) (tilemap diff --git a/data/levels/misc/menu.stl.in b/data/levels/misc/menu.stl similarity index 79% rename from data/levels/misc/menu.stl.in rename to data/levels/misc/menu.stl index d86e4d6f233..6a54569573f 100644 --- a/data/levels/misc/menu.stl.in +++ b/data/levels/misc/menu.stl @@ -9,37 +9,28 @@ (sector (name "main") (init-script " -logo <- FloatingImage(\"images/objects/logo/@LOGO_FILE@\"); -if(is_christmas()) { - christmas_hat <- FloatingImage(\"images/objects/logo/logo_santahat.sprite\"); - christmas_hat.set_anchor_point(ANCHOR_MIDDLE); - christmas_hat.set_pos(35, -255); - christmas_hat.set_visible(true); + if (is_christmas()) + { + // enable snow particles + snow_particles.set_enabled(true); - // enable snow particles - snow_particles.set_enabled(true); + // change ambient light + settings.fade_to_ambient_light(0.8, 0.82, 1, 0); - // change ambient light - settings.fade_to_ambient_light(0.8, 0.82, 1, 0); + // change background + background.set_color1(0, 0, 0); + background.set_color2(0, 0, 0.4); + parallax1.set_color(0.32, 0.42, 0.5, 1); + parallax2.set_color(0.125, 0.18, 0.35, 1); + skybox.set_image(\"images/background/misc/skybox_night.png\"); - // change background - background.set_color1(0, 0, 0); - background.set_color2(0, 0, 0.4); - parallax1.set_color(0.32, 0.42, 0.5, 1); - parallax2.set_color(0.125, 0.18, 0.35, 1); - skybox.set_image(\"images/background/misc/skybox_night.png\"); + // change music + settings.set_music(\"music/misc/christmas_theme.music\"); - - // change music - settings.set_music(\"music/misc/christmas_theme.music\"); - - // change tilemaps - sector.christmas.set_alpha(1); -} -logo.set_anchor_point(ANCHOR_MIDDLE); -logo.set_pos(0, -200); -logo.set_visible(true); -") + // change tilemaps + christmas.set_alpha(1); + } + ") (ambient-light (color 1 1 1) ) @@ -117,10 +108,10 @@ logo.set_visible(true); 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 122 123 0 0 0 122 123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 124 125 0 0 0 124 125 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1321 1322 1323 1324 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 124 125 0 0 0 124 125 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1325 1326 1327 1328 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 122 123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1321 1322 1323 1324 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1345 1344 0 112 0 1345 1344 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1329 1330 1331 1332 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 122 123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1321 1322 1323 1324 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1345 1344 0 24 0 1345 1344 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1329 1330 1331 1332 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 122 123 0 0 0 0 124 125 0 0 0 0 122 123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1325 1326 1327 1328 0 0 0 0 0 0 0 0 0 0 0 106 107 108 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2621 0 1333 1334 1335 1336 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 124 125 0 0 0 0 124 125 0 0 0 0 124 125 0 0 0 0 0 0 0 0 0 0 0 0 0 106 107 108 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1329 1330 1331 1332 0 0 0 0 0 0 0 0 0 0 0 109 110 111 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 106 107 108 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 112 0 0 1345 1344 0 0 0 0 1345 1344 0 0 0 0 1345 1344 0 0 0 0 0 0 2622 0 0 0 0 0 0 109 110 111 0 0 2623 2624 0 0 0 0 24 25 0 0 2621 0 0 0 2622 0 0 1333 1334 1335 1336 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2623 2624 0 0 0 0 2622 0 0 0 0 0 24 25 0 0 0 0 0 109 110 111 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 24 0 0 1345 1344 0 0 0 0 1345 1344 0 0 0 0 1345 1344 0 0 0 0 0 0 2622 0 0 0 0 0 0 109 110 111 0 0 2623 2624 0 0 0 0 5203 5204 0 0 2621 0 0 0 2622 0 0 1333 1334 1335 1336 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2623 2624 0 0 0 0 2622 0 0 0 0 0 5203 5204 0 0 0 0 0 109 110 111 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 @@ -133,14 +124,14 @@ logo.set_visible(true); 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2621 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1321 1322 1323 1324 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2621 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 122 123 0 0 0 0 0 0 1325 1326 1327 1328 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1321 1322 1323 1324 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1321 1322 1323 1324 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1321 1322 1323 1324 0 0 0 0 0 0 0 0 122 123 0 0 124 125 0 0 0 0 0 0 1329 1330 1331 1332 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1325 1326 1327 1328 0 0 0 0 0 0 0 0 0 24 25 2621 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2625 2626 0 2622 112 0 0 0 0 0 0 0 1325 1326 1327 1328 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 122 123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 106 107 108 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 106 107 108 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1325 1326 1327 1328 0 0 0 0 0 0 0 0 124 125 0 0 124 125 0 0 0 0 112 0 1333 1334 1335 1336 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1329 1330 1331 1332 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2622 0 112 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1329 1330 1331 1332 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 122 123 0 0 0 124 125 0 0 0 122 123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1321 1322 1323 1324 0 0 0 0 0 0 0 0 122 123 0 0 124 125 0 0 0 0 0 0 1329 1330 1331 1332 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1325 1326 1327 1328 0 0 0 0 0 0 0 0 0 5203 5204 2621 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2625 2626 0 2622 24 0 0 0 0 0 0 0 1325 1326 1327 1328 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 122 123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 106 107 108 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 106 107 108 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1325 1326 1327 1328 0 0 0 0 0 0 0 0 124 125 0 0 124 125 0 0 0 0 24 0 1333 1334 1335 1336 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1329 1330 1331 1332 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2622 0 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1329 1330 1331 1332 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 122 123 0 0 0 124 125 0 0 0 122 123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 109 110 111 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2621 109 110 111 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1329 1330 1331 1332 0 0 0 0 0 0 0 0 1345 1344 2621 0 1345 1344 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2622 0 1333 1334 1335 1336 0 0 2623 2624 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 106 107 108 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1333 1334 1335 1336 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 124 125 0 0 0 124 125 0 0 0 124 125 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1321 1322 1323 1324 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24 25 0 0 2622 0 0 2625 2626 0 0 0 0 0 0 0 0 4145 4146 4147 4148 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2622 1333 1334 1335 1336 0 24 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 109 110 111 0 0 0 0 0 0 0 0 0 0 0 2621 0 0 0 0 0 0 0 4145 4146 4147 4148 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1345 1344 0 2622 0 1345 1344 0 0 0 1345 1344 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1325 1326 1327 1328 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 122 123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 112 0 4149 4150 4151 4152 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4149 4150 4151 4152 0 24 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1329 1330 1331 1332 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1321 1322 1323 1324 0 0 0 0 0 0 0 0 0 0 0 122 123 0 0 0 0 124 125 0 0 0 0 122 123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 112 0 2623 2624 0 0 1333 1334 1335 1336 0 0 0 0 0 0 0 106 107 108 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1325 1326 1327 1328 0 0 0 0 0 0 0 0 0 0 0 124 125 0 0 0 0 124 125 0 0 0 0 124 125 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24 25 0 109 110 111 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1329 1330 1331 1332 0 0 0 0 0 0 0 2625 2626 0 0 1345 1344 0 0 0 0 1345 1344 0 0 24 25 1345 1344 0 0 2622 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 112 0 0 0 0 0 0 0 0 0 0 2625 2626 0 0 0 2621 0 0 1333 1334 1335 1336 0 112 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5203 5204 0 0 2622 0 0 2625 2626 0 0 0 0 0 0 0 0 4145 4146 4147 4148 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5203 5204 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2622 1333 1334 1335 1336 0 5203 5204 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 109 110 111 0 0 0 0 0 0 0 0 0 0 0 2621 0 0 0 0 0 0 0 4145 4146 4147 4148 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1345 1344 0 2622 0 1345 1344 0 0 0 1345 1344 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1325 1326 1327 1328 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 122 123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24 0 4149 4150 4151 4152 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4149 4150 4151 4152 0 5203 5204 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1329 1330 1331 1332 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1321 1322 1323 1324 0 0 0 0 0 0 0 0 0 0 0 122 123 0 0 0 0 124 125 0 0 0 0 122 123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24 0 2623 2624 0 0 1333 1334 1335 1336 0 0 0 0 0 0 0 106 107 108 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1325 1326 1327 1328 0 0 0 0 0 0 0 0 0 0 0 124 125 0 0 0 0 124 125 0 0 0 0 124 125 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5203 5204 0 109 110 111 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1329 1330 1331 1332 0 0 0 0 0 0 0 2625 2626 0 0 1345 1344 0 0 0 0 1345 1344 0 0 5203 5204 1345 1344 0 0 2622 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24 0 0 0 0 0 0 0 0 0 0 2625 2626 0 0 0 2621 0 0 1333 1334 1335 1336 0 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 @@ -157,51 +148,51 @@ logo.set_visible(true); (width 580) (height 45) (tiles - 0 0 0 0 0 2928 2925 2926 11 11 2135 2134 2134 11 2134 11 2134 11 11 11 2929 2930 2931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1845 1849 11 11 2134 11 2135 2134 2135 11 2134 11 2134 11 2135 11 11 11 2135 2134 11 2135 11 11 2135 2135 2134 11 11 2135 11 11 11 11 2135 11 2134 2134 2135 2135 2134 2134 2134 26 19 2134 2135 11 11 11 2135 2135 11 11 11 11 2134 11 11 11 11 11 1835 3143 3144 1838 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 2928 17 2925 2926 11 11 2135 11 11 11 2929 2930 17 2931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1837 1847 11 11 11 11 2134 11 2134 11 11 2135 11 11 2134 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 2135 11 11 11 11 2134 11 11 11 11 11 11 11 11 11 11 11 11 2135 11 2135 2134 2135 11 2134 11 2134 11 11 11 2135 11 2134 11 11 3147 1840 1844 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 2928 17 17 3991 17 3991 17 2931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1837 1839 1849 11 11 11 2135 2135 11 11 2135 2134 2135 11 2135 2135 11 11 11 2134 2135 11 11 2135 11 2134 2135 2135 11 11 11 2135 11 11 11 2135 11 2134 2135 2135 11 2135 2135 2135 2135 2134 2135 2135 11 2134 11 2135 2134 2135 11 2135 2135 11 2135 2135 11 11 11 2135 11 11 11 1842 1846 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1843 1839 1841 11 11 11 11 11 2134 2134 2134 11 2134 11 2134 11 2135 11 2134 2134 11 11 11 11 2134 2134 11 11 11 11 11 11 2135 11 11 2135 11 2135 11 11 11 11 11 11 11 11 11 11 2134 2135 11 11 2135 2135 11 11 11 11 2135 11 2134 11 11 2134 11 2135 2134 11 11 1848 1844 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1845 1841 11 11 11 11 2134 2135 11 11 2135 11 11 11 2135 11 2135 2135 11 11 11 11 11 2135 11 11 11 11 11 11 11 11 2134 2135 2134 11 11 11 2134 2135 11 11 11 11 2135 2135 11 11 11 2134 11 2135 2135 2135 11 2135 2134 2135 11 11 2134 11 11 11 11 2134 2134 11 11 1850 1846 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4760 11 11 11 2135 2134 11 11 2134 11 2135 2134 2135 11 2135 11 11 11 11 11 11 2135 2135 11 2134 11 2134 2134 11 11 11 2135 11 11 11 11 2134 11 11 11 11 11 11 11 11 11 2134 2135 11 2134 11 2135 2135 11 26 11 11 2134 11 11 2135 2134 2135 2134 2135 2134 2135 2135 11 11 1848 1844 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 44 44 44 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4762 11 11 19 2135 11 11 2135 2135 11 11 11 11 11 2134 2134 2135 11 2134 11 11 11 11 2135 2135 11 2134 2134 11 11 11 2134 2135 11 2135 11 11 11 2134 2135 2135 11 11 11 11 11 11 2134 2135 11 11 11 11 11 2135 2135 2135 11 11 11 11 11 19 11 2135 2135 11 11 11 11 1850 1846 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1843 22 11 2134 2134 2134 11 11 2135 2134 2134 2135 11 2135 2135 11 11 11 2134 11 2135 2134 2135 2134 11 11 11 2134 11 2135 2135 2134 11 11 11 11 11 11 2135 11 11 11 11 11 11 2134 2135 11 11 2135 11 11 11 11 2134 11 11 2134 11 11 2134 11 2134 11 11 11 11 2135 11 11 11 11 4761 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 78 78 78 78 78 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1845 23 2135 2134 11 11 11 11 2134 11 2135 2135 11 2134 11 2134 11 11 11 11 11 11 11 2135 11 11 11 11 11 11 11 11 2134 2135 2135 2134 11 2135 11 11 2134 2134 2135 2135 11 11 11 2134 11 2134 11 11 11 2134 11 2135 11 11 11 11 11 2135 11 11 11 11 2134 2134 11 11 11 11 4763 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47 83 27 28 29 83 47 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4760 11 2135 11 2134 11 11 11 11 11 2135 2134 2134 11 2134 2134 11 2135 11 2134 2134 11 11 2135 11 2135 11 11 2134 2135 2135 2134 11 11 11 11 2134 11 11 2134 2135 11 11 11 19 2135 11 11 2135 11 11 11 11 2135 2134 2134 2135 11 11 2134 11 26 11 11 2134 2135 11 2134 11 2134 2134 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 8 8 8 2921 2922 2911 2912 14 14 14 14 14 14 14 14 2915 2916 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4762 11 11 2134 2135 11 2134 11 11 11 2134 11 11 11 2134 2134 2135 11 11 2135 2135 11 11 2134 2135 11 2134 19 11 11 11 2135 11 11 11 11 2135 11 2134 11 11 11 2134 2135 11 11 2134 11 2134 11 11 11 2135 11 11 11 2134 11 26 11 11 11 11 11 11 11 11 2134 2134 11 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 3140 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 14 14 14 2923 2924 1834 11 11 11 2134 11 11 2134 2135 11 11 1835 1836 1831 2917 2918 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 2135 2134 2134 2134 2134 11 11 11 11 11 11 11 11 11 11 11 2134 2134 11 2135 11 11 11 11 2135 11 2135 11 26 11 11 11 2134 11 11 11 11 2135 11 11 2134 11 11 11 2135 11 2135 2134 11 11 2134 11 2135 2135 11 2134 11 2135 11 2134 11 11 2134 2134 11 11 2135 11 11 2134 11 3432 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 3144 1838 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3431 11 11 11 11 11 11 11 2134 11 2134 11 11 11 11 2135 11 11 11 1835 2919 2920 14 14 14 14 2915 2916 2917 2918 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 2134 11 11 11 11 11 2134 11 11 2134 11 2135 11 2134 11 2135 2134 2135 2134 2135 11 2135 2134 11 11 11 19 2134 11 11 11 2134 2134 11 11 2134 11 11 2134 11 11 2134 11 11 11 2134 11 11 11 2135 11 11 11 2135 2134 2134 11 11 11 11 11 11 11 11 11 11 2135 11 2135 11 2941 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 3147 1840 3149 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 83 0 0 0 83 0 0 0 83 0 0 0 0 0 0 0 0 78 83 83 78 78 83 83 78 78 83 83 78 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47 83 27 28 29 83 47 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2938 11 11 11 11 11 2135 11 2135 11 11 2134 2135 2134 11 11 11 11 11 11 11 11 11 11 11 11 11 1835 2919 2920 14 14 14 2915 2916 2917 2918 8 8 8 8 8 8 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 2135 11 2134 11 2135 2134 2135 11 11 11 11 2134 11 11 2134 11 2134 11 11 11 11 2135 11 11 11 11 11 2134 2134 11 11 11 2134 19 11 11 2134 11 11 2135 11 2134 11 11 11 2134 11 11 11 2134 11 2135 2135 11 2135 2134 11 2134 2135 11 11 2134 2134 11 11 2135 2135 2134 11 11 2935 2942 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 11 1842 3151 3152 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1826 1829 2911 2912 14 3990 14 3990 14 14 14 2915 2916 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2939 2925 2926 11 2134 11 11 11 2134 11 11 11 2135 11 2134 11 11 2134 2135 2135 2135 2134 11 2135 11 2135 11 11 11 11 11 11 11 11 1835 2919 2920 14 14 14 14 14 14 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3431 11 11 2134 11 11 11 11 11 11 2135 2135 11 11 11 2134 11 11 2135 11 11 11 11 11 11 11 11 11 11 2134 11 2135 11 11 11 11 11 2134 11 2134 11 11 2135 11 2135 2134 11 11 11 11 2135 11 11 2134 11 2135 2135 11 11 2134 11 26 11 11 11 11 11 2134 11 2929 2930 2936 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 11 11 3155 3156 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 8 8 8 8 8 8 2921 2922 1830 1833 1834 11 11 11 2134 11 2135 2135 11 11 1835 1836 1831 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1826 1829 2911 2912 14 3990 14 14 14 14 14 2915 2916 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 2925 2926 11 11 2135 2135 11 11 11 2134 2135 2134 11 11 2134 11 11 2135 11 2134 11 11 11 2134 2135 11 11 2135 11 2135 11 11 11 11 11 2135 11 2134 11 2135 3432 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2938 11 11 11 11 2135 11 2135 2135 2135 11 11 11 11 11 11 2135 2135 11 11 2134 2134 11 11 11 11 11 2135 11 11 11 2134 11 11 11 11 2135 11 11 2134 11 2134 11 2134 11 11 11 11 11 11 11 2135 2135 11 2135 2135 11 2135 11 11 11 2135 2135 11 2929 2930 17 3991 17 2931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 - 2135 11 11 1835 1836 1831 2917 2918 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 2921 2922 2911 2912 14 14 14 14 14 14 14 14 3990 14 2923 2924 1834 11 11 11 11 2135 2135 11 2134 2134 2135 11 11 11 1835 1836 1831 2917 2918 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 2921 2922 1830 1833 1834 11 11 11 2134 11 2134 11 11 11 1835 1836 1831 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 2925 2926 11 11 2134 11 2135 2135 2134 11 11 11 11 2135 11 11 2134 2134 2135 2134 2134 2134 2134 2134 2134 2135 11 2134 11 11 11 11 2134 11 2134 11 2134 11 2941 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2939 2933 11 2134 2134 2134 11 11 11 11 11 11 2135 11 2135 2135 11 11 11 11 2134 19 11 11 2134 11 2135 2134 2135 2135 2134 11 2134 2135 2135 2135 2134 11 11 2134 11 2135 2929 2930 17 3991 3991 17 17 3991 2925 2926 11 11 2135 11 11 2929 2930 3991 17 17 3991 17 2931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1826 1829 2911 2912 - 2135 2134 11 11 11 1835 2919 2920 14 14 14 14 14 14 14 14 14 14 3990 3990 14 14 14 14 14 14 14 14 14 14 14 14 14 3990 14 14 14 14 14 14 14 14 14 14 3990 14 14 14 3990 14 14 14 14 3990 14 14 3988 14 14 14 14 14 14 3990 14 14 14 3989 14 14 2923 2924 1834 11 11 2135 11 11 2134 2135 11 11 2134 11 11 11 11 11 11 11 11 11 2135 11 11 11 11 2135 2135 11 11 11 1835 2919 2920 3990 3990 14 3989 14 14 14 3989 14 14 14 3990 14 14 3990 14 14 14 3989 14 14 14 14 14 14 14 3990 14 2923 2924 1834 11 11 11 2135 11 2134 2134 11 11 11 11 11 11 1835 1836 1831 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 2925 2926 11 2135 2135 2134 11 11 11 2135 11 2134 2134 2134 2134 11 11 2135 2134 11 11 2135 2134 2134 2134 11 11 11 2135 2135 11 2135 2135 11 11 2935 2942 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2934 2925 2926 11 11 11 2135 11 11 11 2134 11 2134 11 11 11 11 11 11 11 11 2134 2134 11 19 11 2929 2930 17 17 17 17 17 17 2925 2926 11 2929 2930 17 17 2931 0 0 0 0 0 0 0 0 2928 17 17 17 17 17 2931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1826 1829 1830 1833 1834 11 - 11 2135 2135 2135 11 11 11 11 11 11 11 2134 11 2135 11 2134 11 2134 11 2135 2134 11 11 11 2134 2135 2135 11 2135 11 11 11 2135 2134 11 2134 11 2134 11 2134 11 2134 11 11 11 11 2135 11 11 11 2135 11 2134 11 2134 2135 11 2134 11 11 2135 2135 2134 2135 2134 11 11 11 11 11 11 11 11 11 2135 11 11 11 11 11 11 11 11 11 11 2134 11 2134 11 11 11 2135 2134 2134 2135 2134 2134 11 2135 11 2135 11 11 11 2135 11 11 2134 11 2135 2134 2135 11 2135 11 2135 11 11 11 11 11 11 2135 2134 11 11 11 11 11 2134 11 2134 11 11 11 11 26 2135 11 11 2135 2134 2135 11 2134 11 2134 19 11 11 11 1835 1836 1831 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 2925 2926 11 2135 11 2135 11 2135 2135 2135 2135 11 11 2134 11 2134 11 26 11 2134 11 11 2135 11 11 2134 11 11 11 2135 11 2929 2930 2936 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 2925 2926 11 2135 11 2135 2135 11 2135 2135 11 11 11 11 2929 2930 17 17 17 17 3991 17 17 2931 0 0 0 0 0 0 0 0 2928 17 2931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1826 1829 1830 1833 1834 11 11 11 - 11 11 11 11 11 2134 2135 11 2134 2134 11 2134 2135 11 11 2135 2135 11 11 11 11 11 11 2134 11 11 11 11 11 2134 11 11 2134 2134 2134 2134 11 11 11 11 11 11 11 2135 11 11 2135 11 11 11 2135 11 2134 2134 11 2135 11 2134 2135 11 2134 11 2134 11 11 11 11 2134 11 11 2134 11 2134 2135 11 11 2135 2134 11 11 2135 2134 11 11 11 11 11 2135 11 11 11 11 11 2135 11 2134 11 2135 2134 2135 11 11 11 11 11 11 11 11 11 11 2135 11 11 11 2135 11 2134 2135 2135 2135 2135 2134 2134 11 11 11 11 2134 2135 11 11 2135 2135 11 2134 11 11 11 2135 11 2134 2134 11 11 2134 2134 11 11 11 11 11 11 11 1835 1836 1831 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 2925 2926 11 11 11 2929 2930 17 17 17 17 17 17 17 2925 2926 11 11 2134 11 2135 2134 2135 11 26 11 2929 2930 17 2931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 2925 2926 2135 11 11 2929 2930 3991 17 3991 17 17 2931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3141 3142 1830 1833 1834 11 11 11 2135 11 - 11 11 2134 11 2134 2134 2135 11 11 11 11 11 11 11 11 11 11 11 11 11 2135 11 2135 11 11 11 11 11 11 11 11 11 2134 11 11 2135 11 11 2135 11 2134 11 2135 2134 2134 2135 11 2135 2134 2135 11 11 11 2135 2134 11 2135 11 2135 11 2135 11 11 2134 2135 2135 11 11 11 11 2134 2135 11 2135 2134 11 11 2134 11 2134 11 2134 11 2135 2134 11 19 2135 11 2135 2134 2135 11 2135 11 11 11 11 11 11 2135 2135 11 2134 11 2134 2134 11 11 11 2135 11 11 11 11 11 2135 11 11 11 11 11 11 11 11 2134 2135 11 11 11 2135 2135 11 11 11 11 2134 11 11 2135 2134 2135 2134 2135 2134 2135 2135 11 11 2135 11 11 11 11 11 1835 1836 1831 4753 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 17 3991 17 2931 0 0 0 0 0 0 0 0 0 2928 17 2925 2926 11 11 11 2929 2930 17 17 2931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 17 17 17 2931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1837 3145 3146 1834 11 11 2134 2134 11 11 11 - 11 11 11 2134 11 2134 11 2135 2135 11 11 11 2135 2135 11 11 11 11 2134 2135 2135 11 11 11 2134 2135 2135 2134 11 11 2134 2135 2135 2134 11 11 11 2135 2134 11 11 11 2134 2135 11 11 11 11 11 11 11 2134 11 11 2135 2135 11 11 11 11 2134 2134 11 11 11 2135 2135 2135 11 2135 11 11 2135 11 11 11 2135 11 11 2134 11 11 2134 11 2134 11 11 11 2134 11 2135 2135 11 2134 2134 11 2134 2135 11 11 2135 11 11 2134 11 2134 11 11 11 11 2135 11 11 11 11 2134 11 11 2134 2135 11 11 11 11 11 2134 11 11 11 2135 2135 11 11 11 2135 11 2134 2134 2135 2134 2134 11 11 2135 2135 11 11 11 11 11 11 11 11 11 11 11 11 1835 4755 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 17 3991 17 2931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1837 1839 3148 11 11 2134 11 11 11 11 2134 11 - 11 2135 11 11 11 2134 11 11 2134 11 11 2134 2134 2135 2134 11 2135 11 11 2134 2135 2134 11 11 11 2134 2135 11 11 2134 11 2135 11 11 2135 11 11 11 2134 11 11 11 2134 11 11 2134 11 2134 2134 2135 11 11 2134 11 11 2135 2135 11 11 2135 2135 11 2134 2134 11 11 11 2134 11 11 11 2134 11 2134 11 11 11 11 11 11 11 2134 2135 11 11 11 2134 2134 2134 11 2134 11 2134 11 11 11 2135 11 11 11 2135 2135 11 11 11 11 11 2135 11 11 2134 11 11 11 11 2134 11 2134 11 11 11 2134 2135 11 11 2135 11 2135 2134 2134 2134 11 2134 11 2134 11 2135 11 11 11 2135 2134 2135 2134 11 2135 11 11 11 11 11 2135 11 11 11 2135 11 11 12 0 0 2067 2068 2068 2068 2069 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4756 1841 11 2135 2135 11 2134 11 115 116 2135 11 - 11 11 2135 2135 11 2134 2134 2135 11 11 11 11 11 2135 11 2134 2134 11 2134 11 2135 11 2135 11 2134 11 11 2134 11 11 11 11 2135 2134 11 11 2134 11 11 2135 2135 2135 11 11 2135 11 11 2134 11 11 11 2134 11 2134 11 11 11 11 2134 2135 11 2135 2134 11 11 11 2135 11 11 11 2134 11 11 11 11 11 11 11 2135 2135 2134 2134 2134 2134 2135 11 2135 11 11 2134 11 2135 11 11 11 11 2135 2135 11 11 2134 11 11 11 2134 11 2135 11 2134 2134 11 2135 11 11 11 2134 11 2135 11 2134 2135 11 2134 11 11 2135 2134 11 11 11 2134 11 11 11 11 11 11 11 11 11 11 11 2135 2135 11 2134 11 2134 2134 11 2134 2134 11 2134 2135 2135 2135 11 12 0 0 2072 2073 2073 2073 2074 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 44 44 44 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2067 2068 2068 2068 2068 2068 2069 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4758 11 2135 2135 11 2134 11 11 117 118 11 2134 - 11 11 11 2134 11 2135 2135 11 11 11 2135 2134 11 11 11 11 2134 2134 11 11 11 2134 2135 2134 11 2134 2134 2134 11 2135 11 2134 2135 11 11 11 11 2134 2135 11 11 11 2134 11 11 2135 11 11 11 11 11 11 2134 11 2134 11 2134 11 2134 11 2134 2134 11 11 11 2135 11 11 2135 11 2134 2135 2135 2134 11 11 2135 11 11 2134 11 11 11 2135 2135 11 2134 11 11 11 11 11 11 11 11 11 2134 11 2135 2134 11 11 11 11 11 11 11 2135 11 11 2135 11 2134 2135 2135 2134 11 2135 11 2135 11 2134 11 2134 11 11 2135 2134 2135 11 2134 11 11 2134 11 11 11 11 11 11 11 2135 2134 11 11 11 11 11 11 11 11 11 11 11 2135 11 19 2134 3432 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2067 2068 2068 2068 2069 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2072 2073 2073 2073 2073 2073 2074 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3429 11 2134 11 2134 11 11 11 2135 11 2134 11 - 2134 2134 2135 11 11 11 11 11 11 11 11 11 11 11 2135 11 2135 11 11 2134 2134 11 11 11 11 2135 11 2134 2135 2135 2134 11 11 2134 11 2135 11 11 2135 2134 11 11 2134 11 2134 11 11 2134 11 11 11 11 11 2134 11 2135 2134 11 2135 11 11 2135 11 11 2134 2135 2135 11 2135 11 11 11 2135 2134 11 2134 11 11 2135 11 2135 11 11 2135 2134 2134 11 11 11 11 11 2135 2135 11 2134 2134 11 2135 11 11 11 11 2134 2134 11 2134 2134 11 11 11 11 2135 11 11 11 11 11 2135 11 11 2134 11 2135 11 11 11 11 11 11 2135 2134 2134 2135 11 11 11 2135 2134 11 2134 2135 11 2134 11 2134 11 2135 2135 11 2135 2135 11 2135 11 11 2135 19 2134 2941 0 0 0 0 0 0 0 0 0 2067 2068 2068 2068 2069 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 44 44 44 44 0 0 0 0 2072 2073 2073 2073 2074 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 83 83 0 0 0 0 0 0 0 0 0 0 44 44 44 44 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2934 2925 2926 11 11 2134 2135 2134 11 11 11 2135 - 2134 2135 11 11 2135 11 2134 2134 2135 2134 2134 11 11 2134 2134 11 11 2134 11 2135 11 11 11 11 11 11 11 11 2134 11 11 11 2134 2134 2134 2134 2135 2135 11 11 2135 11 11 2135 11 11 2135 2135 11 11 11 2134 11 11 2135 2134 11 11 2134 2135 11 2134 2134 11 11 11 11 11 2134 2134 11 11 2134 11 11 2134 2135 11 11 11 2135 11 2134 11 11 11 11 11 11 2135 11 11 11 11 2135 2135 11 11 11 11 11 11 2134 2135 11 2134 2134 11 2134 2134 2134 11 2134 2135 11 11 2135 2134 11 11 2135 11 11 11 11 11 11 11 11 2134 2134 2135 11 11 11 11 11 11 2135 2135 11 11 2135 2135 11 11 11 2134 2134 11 2134 2134 26 11 11 2134 2135 30 2942 0 0 0 0 0 0 0 0 0 2072 2073 2073 2073 2074 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47 83 27 29 83 47 0 0 0 0 47 83 27 29 83 47 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2067 2068 2068 2068 2069 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 2925 2926 11 11 2135 11 2135 11 2135 - 2135 11 2135 2134 2135 11 11 11 2135 2135 11 11 11 11 11 11 11 11 11 11 11 2134 2135 2135 2134 11 11 26 11 11 11 2134 11 2135 11 2135 11 11 2134 11 11 11 2134 11 2135 2134 2135 11 11 11 11 11 2134 11 11 11 11 2134 2135 2134 11 2135 11 2135 2134 11 2135 2135 2135 2134 11 2134 2135 11 11 11 11 11 11 11 11 2134 11 11 11 2135 2135 11 2134 11 11 2134 11 11 11 2135 11 11 11 11 11 11 2134 2134 11 2134 2134 11 2134 2135 2134 11 2135 11 11 11 11 11 11 11 11 2135 2135 2135 2135 11 11 2135 2134 11 2134 11 2134 2134 11 2134 2134 11 11 11 11 11 11 11 11 2134 2135 11 2135 2135 2134 11 11 11 11 2134 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2072 2073 2073 2073 2074 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 78 78 78 78 78 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 2925 2926 11 11 2135 11 11 - 2135 11 11 11 2135 2134 2134 11 2135 11 2135 2135 11 2134 11 11 11 11 11 2135 11 11 2134 11 11 11 2134 11 2134 2135 11 11 11 11 11 11 11 11 2134 2135 11 2135 2134 2134 2135 11 11 11 11 11 11 2134 11 2134 11 2134 11 2135 2134 11 11 2134 2135 2135 2134 2135 11 2135 2134 11 11 2134 2134 2134 11 11 11 11 2135 2135 2134 2135 11 11 2135 11 11 11 2135 11 11 2134 11 11 2135 2134 2135 2134 2135 2134 2135 2135 11 11 11 11 11 11 11 2134 2134 11 11 11 2135 11 11 11 11 11 11 11 11 11 2134 11 26 11 11 11 2134 11 11 11 11 2135 11 2135 11 2134 2135 11 11 11 11 11 11 2134 11 2134 2135 2134 11 2134 2135 11 2135 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2067 2068 2068 2068 2069 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 2925 2926 11 11 11 - 2135 2135 2135 11 2135 2135 11 11 11 2134 11 2135 2135 11 11 2134 2134 11 2134 2134 11 11 11 11 2135 11 11 11 11 2135 11 2135 11 2135 11 2135 11 11 2134 2134 11 2134 11 11 11 11 2134 11 11 11 11 11 2134 2134 11 2135 11 11 2134 2135 11 2135 2135 11 2135 11 2135 11 2135 11 11 11 11 2135 11 11 2135 11 11 2135 2134 11 2134 2135 11 2134 11 11 2134 11 11 11 11 2135 11 11 11 11 11 11 11 11 2134 2134 11 2135 2135 2134 11 11 11 11 11 2134 11 11 11 2134 2135 11 11 11 2134 2135 11 11 2134 2134 2134 11 2134 2134 2134 11 11 11 2135 2135 11 11 2134 11 2135 2135 11 2134 11 2135 2135 2134 11 11 11 11 11 11 2134 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2072 2073 2073 2073 2074 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 78 83 78 0 0 78 83 78 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47 83 27 29 83 47 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 2933 11 2134 - 11 11 11 11 11 11 2135 2135 11 11 11 11 11 2135 11 11 11 11 11 11 11 11 19 2134 2134 11 11 11 2134 2135 2135 2135 2135 2135 2135 2135 2135 11 11 2134 11 2135 2134 2134 11 2134 2134 2135 11 11 11 11 11 2135 2135 11 11 11 11 11 11 11 11 2134 2134 2134 11 11 2134 2134 2134 11 2135 11 11 11 2135 11 2135 11 11 2135 2135 2135 11 2134 11 11 11 2135 2134 2135 11 11 2134 11 19 11 11 11 11 11 2135 11 2134 11 11 11 2134 11 11 11 2135 2134 11 19 2135 11 11 2135 11 11 2135 11 11 2135 2135 11 11 2135 2134 2135 11 11 11 2134 11 2135 2134 2135 11 2134 11 2135 2134 11 11 11 2134 2135 2135 11 2135 11 11 11 2135 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 78 83 83 78 78 83 83 78 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1826 1829 2911 2912 14 14 3988 14 2915 2916 2917 2918 8 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 83 83 0 0 0 0 0 0 0 0 0 1826 1829 2911 2912 14 14 3988 14 2915 2916 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2934 2933 11 - 11 11 11 2135 11 2134 11 2135 11 2134 11 11 2134 2135 11 2134 11 2134 2135 11 2135 2135 2135 11 2134 2135 2135 2134 11 11 2134 11 2134 11 11 11 2134 11 11 2135 11 11 2134 11 11 11 2135 2134 2135 11 11 2134 11 11 11 11 11 11 11 2135 2135 2134 11 11 11 2134 11 11 11 2135 11 11 11 2135 11 11 2134 11 11 2135 11 2135 2134 2134 2135 11 2134 11 2134 11 2135 2135 11 11 26 11 11 11 11 11 11 11 2135 11 2135 11 11 11 11 11 2135 2135 2134 11 11 2134 11 2134 11 2134 11 2134 11 2135 2135 2135 11 11 2135 2134 2135 11 2135 2135 11 11 11 2135 2135 11 11 11 11 2135 11 11 11 2134 2134 11 11 2134 11 11 2134 2135 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 83 78 83 78 83 0 0 0 0 83 78 83 78 83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 8 8 8 8 2921 2922 2911 2912 14 14 14 14 14 2915 2916 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 8 8 8 8 8 2921 2922 1830 1833 1834 11 11 2134 2135 11 11 1835 2919 2920 3989 14 14 14 14 2915 2916 2917 2918 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1826 1829 1830 1833 1834 11 11 11 2135 11 11 1835 1836 1831 2917 2918 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27 29 83 83 27 29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2934 2933 - 11 2134 2134 2134 11 11 11 2135 2135 11 11 11 11 2134 2134 11 11 11 11 2134 11 2135 11 11 11 2134 11 11 11 2134 2134 2134 19 11 11 11 2134 2135 11 11 11 2135 2135 11 2134 11 11 11 2134 2135 11 11 2135 2134 11 2135 11 11 2135 11 2135 11 11 11 2135 11 11 11 2135 11 2135 11 11 2134 2135 2135 11 11 11 2134 11 2134 11 11 11 11 2135 2134 2134 11 2134 2134 11 11 11 11 11 2135 11 2135 11 11 2134 2135 2135 11 2134 2134 11 2135 11 11 11 11 11 2134 11 11 2134 11 2135 2134 11 11 11 2134 11 2134 11 2134 2135 19 11 2135 11 2134 11 11 11 11 2134 11 2135 11 2134 2135 2135 11 2134 2134 11 2135 11 11 11 11 11 3432 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1826 1829 2911 2912 14 14 14 2915 2916 2917 2918 8 8 8 8 8 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 2921 2922 2911 2912 14 14 14 14 2915 2916 2917 2918 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 8 8 8 8 2921 2922 2911 2912 14 14 14 14 14 3988 3988 14 2923 2924 1834 11 11 2135 2135 2135 11 11 1835 1836 1831 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1826 1829 2911 2912 14 14 14 14 14 14 3989 14 14 2923 2924 1834 11 11 11 11 2135 2135 11 11 11 11 11 11 11 11 2135 11 11 1835 2919 2920 2915 2916 2917 2918 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 1826 1829 1830 1833 1834 11 11 11 11 11 11 11 11 11 11 1835 2919 2920 14 14 3990 14 2915 2916 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2934 - 11 11 11 2134 11 11 11 2135 11 2135 11 2135 11 2135 11 11 11 2134 11 2135 11 11 2134 11 11 11 11 11 2135 11 2135 11 2134 11 2134 11 2135 2134 11 11 2134 11 2134 11 11 2135 2134 2134 11 2135 2135 26 2134 11 11 2134 2135 11 2135 2134 11 11 11 2135 11 11 11 2135 11 2134 2135 11 11 11 11 11 11 11 11 11 11 2135 11 11 11 11 2134 11 11 2134 11 11 2134 11 2134 11 2134 11 2134 11 2135 2134 11 2134 11 11 11 11 11 11 11 2134 2135 2135 2135 2134 11 11 11 2135 2134 2134 2134 2135 11 11 11 11 11 11 11 2135 11 2135 2134 11 2135 11 2135 11 2135 11 2135 11 11 2135 11 11 2135 11 11 11 11 2134 11 11 11 2941 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4752 1830 1833 1834 2134 2134 2134 2134 2134 1835 2919 2920 14 14 3990 3990 14 14 14 3990 14 2915 2916 2917 2918 8 8 8 8 8 8 8 8 8 8 8 2921 2922 2911 2912 2923 2924 1834 11 11 11 11 11 11 1835 2919 2920 14 2915 2916 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1826 1829 2911 2912 14 3989 14 14 14 3990 14 14 2923 2924 1834 11 11 2135 11 2134 11 11 11 11 11 11 11 11 2134 11 2134 11 11 11 11 11 1835 1836 1831 4753 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4752 1830 1833 1834 11 11 2134 2134 11 11 11 11 11 11 11 11 11 11 11 11 2135 11 11 2134 11 11 2134 11 2135 11 2134 11 26 11 11 11 11 11 1835 2919 2920 14 14 3990 14 14 14 14 3989 14 14 14 14 3990 14 14 14 14 2915 2916 2917 2918 8 8 8 8 8 8 8 8 8 2921 2922 1830 1833 1834 11 11 11 2134 2135 2135 11 2135 11 11 2134 11 11 11 11 11 2135 2135 11 11 1835 1836 1831 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1826 1829 2911 2912 14 14 3990 14 14 14 14 14 14 14 3990 14 3988 14 14 14 2915 2916 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 78 83 78 0 0 0 0 0 0 0 0 78 83 78 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 11 11 2135 11 2134 11 2134 2135 2134 2134 11 11 2135 2135 2134 2135 2135 11 11 11 11 11 11 11 11 11 2135 11 11 11 11 11 11 11 11 11 11 2134 11 2134 11 11 11 11 2134 2134 11 2134 2134 11 2135 11 2135 11 2135 11 2135 11 11 2135 11 11 2134 11 11 2135 11 11 11 11 11 11 11 11 2135 2134 11 11 11 11 11 2135 11 2135 2134 2135 11 2134 2134 2135 11 11 2135 2134 2135 2134 2135 2134 2135 2134 11 11 2135 11 11 2135 11 11 11 11 2134 11 11 11 11 11 11 11 11 11 11 2134 2135 11 2134 11 11 11 2134 11 11 11 2135 2134 11 2134 2135 11 11 11 11 2134 2135 2134 11 11 2134 11 11 11 2134 11 11 11 11 2135 30 2942 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4754 1834 2134 2134 2134 2135 2134 2135 2134 2134 2134 2134 2134 11 11 11 11 2134 11 11 11 11 1835 2919 2920 14 14 14 14 14 14 14 3990 14 3990 14 2923 2924 1834 11 11 11 11 11 11 11 2135 2134 11 11 11 11 11 11 1835 1836 1831 4753 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4752 1830 1833 1834 11 11 11 2134 11 11 2134 2135 11 11 11 11 11 2135 11 2135 11 2134 2135 2134 11 2135 11 11 11 2134 11 11 11 11 11 11 11 11 11 1835 4755 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4754 1834 11 11 11 2135 2134 11 11 11 2135 2134 2134 2134 2135 11 11 11 2135 11 11 2135 2135 11 2134 2134 11 2134 11 2134 2135 11 2135 2134 11 11 2134 11 11 11 11 11 11 2134 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 1835 2919 2920 14 14 14 14 14 14 14 14 14 2923 2924 1834 11 11 11 11 2135 2135 11 2135 2135 2134 11 2134 2134 2134 19 11 2135 11 2135 11 2134 11 11 11 1835 1836 1831 4753 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4752 1830 1833 1834 11 11 11 11 2134 2135 11 11 2134 11 2134 11 2135 2135 2135 11 11 11 1835 1836 1831 2917 2918 8 8 8 8 8 8 8 8 8 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 11 2135 11 11 2135 11 2134 11 11 11 11 2134 2134 11 11 2135 11 11 2134 11 11 2135 11 2134 2135 2135 2134 11 2135 11 11 11 2135 11 11 2134 11 11 11 11 11 11 2135 2135 11 2135 2134 11 2134 2134 11 11 11 11 2135 2135 11 11 11 11 11 11 11 11 11 11 11 2134 2135 2134 19 11 11 2134 11 2135 2134 11 11 11 11 11 2134 11 11 11 11 2135 2134 2135 11 11 2135 2134 2135 2134 2135 2134 2135 2134 11 11 11 11 11 11 2134 11 11 2135 2134 11 11 2135 11 11 11 11 2134 2135 11 11 2135 11 11 11 11 2134 11 11 11 2134 2134 2135 11 11 2135 2134 11 11 11 11 11 11 2135 11 11 11 2134 11 11 2135 11 2135 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 483 281 2134 2134 11 2135 2134 11 11 11 11 2135 2135 11 2134 11 2135 11 2135 11 2135 2135 11 11 11 11 11 11 11 11 2134 2135 11 11 11 2135 11 11 11 11 11 2135 2134 2134 11 2134 2135 11 11 11 11 11 11 11 11 11 11 1835 4755 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4754 1834 11 11 11 11 11 2134 2134 11 2135 11 11 2134 2134 11 2134 2134 11 11 11 11 2134 11 11 11 2135 2134 11 2134 11 2134 11 2134 11 2134 11 11 11 11 282 484 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 11 11 2135 11 11 2134 11 11 2134 11 11 11 2134 2135 11 11 11 11 11 2135 11 2134 11 2135 2134 2135 2134 2135 11 2135 2134 11 11 2135 11 11 11 11 2134 2134 26 11 2134 11 11 2134 2134 2135 11 11 11 11 2135 11 2135 11 11 11 11 11 11 11 2135 2134 2135 11 11 11 11 11 11 11 11 2135 2135 2134 11 11 2135 11 2134 2134 11 11 11 2135 2135 11 11 11 2135 2135 2135 2135 11 11 11 1835 4755 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4754 1834 11 11 11 11 11 11 2134 2134 2135 11 11 11 2135 11 2135 2134 2135 11 11 11 11 11 1835 2919 2920 14 14 14 3990 14 14 14 3989 14 14 14 14 14 2915 2916 2917 2918 8 8 8 8 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 11 11 11 11 11 11 11 11 2134 11 2134 11 2134 11 2135 11 2134 11 11 2135 11 11 11 11 2135 11 11 2134 2135 2135 2135 2135 2135 2135 11 11 11 2135 11 11 11 11 11 11 11 11 2135 2134 11 2135 2135 11 2134 11 11 2135 11 2135 11 11 11 2134 2134 2134 11 2134 2135 2135 2135 11 11 2135 11 2135 11 2135 11 2135 2134 11 11 11 2134 11 2135 2135 11 2134 11 2134 11 11 11 11 11 11 11 11 2134 2134 11 11 11 11 2134 11 11 11 2134 2134 11 11 2134 11 11 2135 11 11 2135 11 2134 11 11 2135 2135 2135 11 2135 2135 2135 11 11 11 2135 2134 11 2135 11 2135 11 2135 11 11 2134 2135 2134 11 11 11 11 2134 2135 11 2135 2134 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 485 11 2135 11 11 11 2135 11 2134 2134 11 11 11 11 11 2135 11 11 2134 11 11 11 2135 11 2134 2135 11 11 11 11 11 11 11 11 11 2135 11 2135 26 11 2134 11 2135 2135 11 2135 2135 11 11 11 11 11 11 11 11 2134 11 11 282 484 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 11 2134 2134 11 2135 11 2135 11 2135 11 11 11 11 11 11 11 11 2134 2135 2135 11 11 11 2135 11 11 11 11 11 11 11 11 11 2134 2135 11 11 11 486 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 11 2134 11 2135 11 2134 11 2134 11 11 2135 2134 2134 11 11 11 11 11 2135 2134 2134 11 11 11 11 11 11 11 11 11 11 2135 11 2135 11 11 11 2135 11 11 11 11 2134 11 2134 11 11 2134 11 11 2134 11 2134 11 11 11 11 11 11 11 11 11 11 11 2135 2135 11 2135 11 2134 11 2134 11 11 11 2134 11 11 11 11 2134 11 11 11 11 11 2135 11 2135 11 2135 11 2135 11 11 2134 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 2135 11 11 11 11 11 11 11 11 11 11 2134 11 2134 11 11 11 2135 11 11 11 11 11 11 11 2135 2134 2135 11 2134 11 2135 2135 11 2134 2134 11 11 1835 2919 2920 14 14 14 14 14 14 14 14 2915 2916 2917 2918 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 2921 2922 2911 2912 14 14 14 14 14 14 14 14 14 14 14 3990 14 14 3989 3990 14 14 14 3989 14 14 14 2915 2916 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 2134 11 2135 11 11 2134 11 2134 11 11 2135 11 2134 2135 2135 11 11 11 11 2134 2134 11 2134 2135 11 2135 2134 11 11 11 11 11 11 2134 11 11 2135 2135 2135 11 2134 11 11 2134 11 11 11 2135 2135 11 11 11 11 11 11 11 11 11 11 2135 11 2134 11 11 19 2134 2134 2134 11 2135 11 2135 11 11 2135 11 2134 11 2134 11 11 11 11 2135 11 11 2134 11 2135 11 2134 11 2135 2134 2135 2134 11 2135 11 11 2134 2135 2135 11 2134 2134 11 2135 11 11 11 11 2134 11 2135 11 2135 11 11 2134 11 11 11 11 11 2134 11 11 11 2135 2134 2134 11 2135 11 2135 11 2134 2134 11 11 11 11 11 11 11 11 2135 11 11 11 11 2134 11 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 483 487 11 2135 2135 11 11 26 11 2134 11 2134 11 2135 11 2134 2135 2135 2134 11 11 11 2134 11 11 2134 2135 2135 2134 11 11 11 11 11 11 11 11 2134 11 2135 2134 2135 11 2135 2135 11 2135 2135 11 11 11 11 11 11 11 11 2135 2135 2134 11 486 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 11 11 11 11 11 2135 2135 11 2134 11 11 11 2134 2135 11 11 11 11 2134 11 11 11 11 11 2134 11 2135 11 2135 11 2135 11 11 11 2135 11 11 11 4751 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 483 281 11 2135 11 2135 11 2134 2135 11 2134 11 11 11 2134 26 11 2134 11 2134 2134 2134 11 11 11 2134 2134 2135 2134 2135 2134 2135 2134 11 11 2134 2134 2134 11 11 11 11 11 2134 2135 2134 19 11 2135 11 2135 11 2135 11 11 2134 11 11 11 11 2135 11 11 11 2135 2134 2134 11 11 11 2135 2135 11 26 11 11 11 11 11 2135 11 2135 11 2135 11 2135 2134 11 11 2135 2135 11 11 11 11 11 11 11 11 2134 11 11 282 484 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 2134 2135 2135 2135 2135 2134 11 11 11 2135 2135 2135 11 11 2135 11 11 11 2135 11 11 2134 11 11 2134 11 2135 11 2134 11 2134 26 11 11 2134 11 11 2134 11 11 11 11 11 11 11 11 11 11 11 11 11 1835 2919 2920 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 3989 3990 14 14 14 14 14 14 14 14 14 14 14 14 2923 2924 1834 11 11 2134 11 2134 11 2134 11 2134 11 2135 2134 2134 2134 2135 11 11 2135 11 2134 11 11 11 11 11 1835 1836 1831 3139 3140 0 0 0 0 0 0 0 0 0 0 0 0 0 - 2134 2135 11 11 2134 11 11 2135 2135 11 11 2135 2135 11 2134 2134 11 11 11 2134 11 11 11 2135 11 2134 11 11 11 11 11 11 11 2134 2135 11 11 11 2135 2134 2134 11 2134 19 2134 11 11 11 11 11 11 11 2135 2135 11 11 11 11 11 2135 11 11 2135 11 11 11 11 2135 11 2135 11 11 2134 2135 11 11 2134 2135 11 11 2135 2134 2135 11 2135 2134 2135 11 11 11 2134 2134 11 2135 11 2135 11 11 11 11 11 11 11 11 11 11 11 2135 11 2134 2134 2134 2134 11 11 2135 26 11 11 2135 2135 2135 2135 11 2134 11 11 11 11 2134 2135 11 2135 11 2134 2134 11 11 2134 2134 11 11 11 11 11 11 11 11 11 2135 11 11 11 11 11 2135 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 485 11 2135 11 2135 11 19 11 11 11 11 11 11 11 2135 11 11 11 19 2134 2134 11 2135 11 11 11 11 11 2134 11 11 2135 2134 11 11 11 11 2134 11 2134 11 19 2135 11 11 2134 11 11 2135 2134 11 2135 11 2135 11 11 2134 2135 2134 11 4751 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 483 281 2134 11 11 11 2135 11 11 11 2135 2135 11 11 11 11 11 19 2134 2134 11 11 2134 11 11 2134 11 11 11 2134 2134 2134 2134 2134 2135 11 11 2134 11 2135 2134 11 282 484 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 485 11 11 2135 11 2134 2135 11 11 11 2134 2135 11 2134 11 11 11 11 11 2135 2135 2135 11 11 11 2134 2134 11 2135 11 2135 11 2135 11 11 11 11 11 2135 11 11 11 2134 11 11 11 11 11 2135 2134 11 11 2134 11 11 11 11 11 11 11 2134 11 2134 11 2135 2135 11 11 11 2134 2134 11 11 11 11 2135 11 2134 11 11 2134 11 11 2135 11 2135 11 11 2135 2134 11 2135 11 2135 11 2135 11 11 2135 2135 2135 2135 11 486 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 483 281 11 11 11 11 11 2135 11 11 2135 2134 11 11 11 11 11 2135 11 11 11 11 11 11 11 2135 2135 11 11 11 11 11 11 11 11 2135 2135 2134 11 11 11 11 2135 2135 2135 11 11 11 2135 11 11 11 2134 11 11 11 11 11 2134 11 11 26 2135 11 11 2134 11 11 11 2135 2135 11 11 2134 2134 11 11 2134 2135 2134 11 11 11 11 2135 11 11 11 11 11 11 11 2134 2134 2134 26 2134 2134 2134 11 11 2135 11 11 11 2134 11 2135 11 11 11 11 11 11 11 11 1835 3143 3144 1838 0 0 0 0 0 0 0 0 0 0 0 0 - 2134 11 11 11 11 11 11 11 2134 11 2135 2134 11 11 2135 11 11 2134 2135 11 2134 11 2134 2135 2135 2135 11 11 2135 11 11 2134 11 2135 2134 11 11 2134 2135 11 11 11 11 2135 2134 2135 11 11 11 11 11 11 11 2135 11 2135 11 11 11 11 11 11 11 2134 2134 11 11 2134 11 11 11 11 2134 2134 2134 2135 11 11 2134 11 2135 2135 2135 11 2134 11 2134 11 2135 2135 11 11 2135 2134 2135 2135 11 11 2134 2134 11 2135 2135 11 11 11 11 2135 11 2135 11 11 11 11 11 11 11 11 11 11 11 11 2135 11 11 11 11 2135 11 2134 2135 2134 2135 11 11 19 11 2134 11 2135 2135 11 11 11 2134 2135 2134 11 11 11 11 11 11 2135 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4750 11 2135 2135 11 11 11 2135 11 2134 2135 2134 2135 2135 11 11 11 2135 11 11 2134 11 11 19 11 11 11 2135 11 2135 11 11 2134 11 11 11 11 11 2134 11 2135 11 11 2135 2135 11 2134 2134 11 11 11 11 11 11 2134 2134 11 11 11 11 282 484 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 485 11 11 2135 11 2134 2134 11 2135 11 11 11 11 2134 2134 11 11 11 11 11 11 11 2134 11 11 11 11 2135 11 11 2134 11 2135 11 11 2135 2134 2134 2134 11 11 11 11 486 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4750 11 11 11 2134 2135 2135 11 11 11 11 11 2134 11 11 11 11 11 11 2135 2134 2134 11 2135 11 11 11 2135 2134 2135 2134 11 2135 11 11 11 11 2134 11 2134 2135 2135 2134 11 11 2134 2135 2135 2135 2134 2134 11 11 11 11 11 2134 11 2134 11 11 11 2135 2134 2134 11 2134 2135 11 11 11 11 2134 11 2134 2134 11 11 11 11 11 11 2135 11 11 2135 11 11 11 2134 2135 2135 2135 11 11 11 11 11 2135 11 2135 2134 11 4751 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 485 11 11 2134 11 11 2135 11 11 11 11 2134 11 11 2135 2135 11 11 2135 2134 2134 2135 11 11 11 11 11 11 11 2134 11 2134 11 2135 2135 11 2134 11 2135 11 11 2134 11 11 11 11 2135 11 11 11 2135 11 2134 11 11 2135 11 11 11 11 11 2134 11 11 11 11 2135 11 11 11 2135 2134 2135 2134 11 2135 11 11 2135 11 2135 11 2134 2134 11 2135 11 11 11 11 2135 11 11 2134 11 2134 11 2135 11 11 11 11 19 11 2134 11 2134 11 2135 11 11 11 11 11 11 11 11 11 3147 1840 1838 0 0 0 0 0 0 0 0 0 0 0 - 2135 2134 2135 11 11 2134 11 2134 11 2134 11 2134 11 2135 11 2134 11 11 2135 11 2134 2134 11 11 2134 11 11 11 2134 2135 2135 11 11 11 2134 11 2134 11 11 11 2135 11 11 11 2135 2134 2135 11 11 2135 2134 11 2135 11 11 2135 11 2134 11 11 11 11 2134 2134 11 11 2134 2135 11 11 11 11 11 11 11 11 11 11 2134 11 2134 11 11 2134 11 11 11 11 11 11 11 2135 11 11 2134 11 2135 2135 11 2134 11 2135 11 2135 11 2134 2135 2134 11 11 11 2135 11 11 11 11 11 2134 2135 11 2134 11 2134 2134 2134 2135 11 11 11 11 11 11 2134 11 2135 11 2134 11 2134 11 2134 2134 11 11 11 2135 11 11 2135 11 2134 2135 2135 2134 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 2135 2135 11 11 2134 2134 2135 2135 11 11 2135 11 11 2134 11 2135 2134 11 11 2134 11 11 11 2134 11 11 11 11 2135 11 11 2134 11 11 11 2135 11 11 11 11 2135 2135 11 2134 2134 11 11 11 11 2134 11 11 11 2134 11 11 2134 11 486 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4750 11 11 11 11 11 11 11 11 11 11 2135 11 11 11 11 11 11 11 11 2134 2135 2135 2135 11 2135 11 19 2134 2135 11 11 11 11 2134 2135 11 2135 11 11 11 2135 11 4751 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 2134 2134 2134 2134 11 11 11 11 11 2134 2135 11 2135 2134 2134 2135 11 11 11 2134 11 11 11 2135 11 11 11 11 2134 2134 11 11 11 2134 2134 2134 11 11 11 11 11 2134 11 11 11 2134 2134 2135 2135 11 11 11 2135 11 11 2135 2135 11 11 11 11 19 11 11 2134 11 2134 11 2134 11 11 11 11 11 2135 11 2135 11 2134 2134 11 2135 11 11 11 11 2135 11 11 2134 11 2135 26 11 11 2135 11 11 11 11 282 484 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4750 11 2134 11 11 2134 11 2134 11 11 2135 11 2135 11 11 11 11 11 11 2134 2134 2135 11 11 11 11 11 11 11 2134 11 2135 2134 11 11 2135 11 11 2134 2135 2135 2134 11 2134 2135 2135 2134 11 11 2135 11 2135 11 11 2135 11 11 11 11 2134 11 2135 2135 11 11 11 11 11 2135 11 2135 11 2134 2135 11 2134 11 2135 2135 2134 2135 2135 2134 11 11 11 2135 2134 11 11 2134 2134 2135 2135 11 11 11 11 2134 11 11 11 11 11 11 2135 2134 2134 11 2135 2135 11 11 2134 2134 2135 2134 11 11 1842 1840 1844 0 0 0 0 0 0 0 0 0 0 - 2135 11 2134 11 2135 11 2134 11 11 2135 11 2134 2135 2135 11 11 11 2134 2135 2135 11 11 11 11 11 11 11 11 2134 11 11 2134 11 11 11 11 11 2134 11 2135 2135 11 11 11 11 2135 2134 11 2134 2135 11 11 11 11 2135 11 11 11 2134 2134 11 11 11 11 2135 11 2134 2134 2134 2134 2134 11 11 11 2135 2135 2135 11 11 26 11 2135 2135 11 11 11 11 2134 11 2134 11 11 2134 11 2135 2135 11 11 11 11 11 2134 11 11 2134 11 11 11 11 11 2134 11 11 2135 11 11 2135 11 2134 11 2135 2134 26 2134 11 11 11 11 2134 11 11 2135 2134 2134 11 11 11 11 2134 2135 2134 11 11 2134 2135 2135 2134 11 11 11 11 2134 11 2134 2135 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 483 281 2135 2135 11 11 11 2135 2135 11 11 11 11 11 11 11 11 11 2134 11 2135 11 11 11 11 2134 11 2134 2135 11 2134 2135 11 2134 11 2135 11 11 11 2134 11 2135 2134 11 11 11 2134 11 11 2135 2135 11 11 11 11 11 11 2135 11 11 11 11 4751 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 2134 11 11 11 11 11 2135 2135 11 11 11 11 11 2134 2135 2134 11 11 11 2135 11 2134 2135 2135 2134 11 11 2135 11 11 2135 2134 11 11 11 11 2134 11 2135 2135 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 11 11 11 2135 2134 11 11 11 11 11 11 2135 11 11 11 11 2134 11 11 2135 11 2134 11 11 11 11 2135 2134 11 11 2135 11 2135 11 2134 2134 11 2135 11 11 2135 2134 11 2134 11 11 2134 2135 11 2134 11 11 11 2135 2135 2135 11 2134 11 11 2135 11 11 2135 11 2134 11 11 2135 11 19 2134 11 2134 2134 11 11 11 11 2134 2135 2134 11 11 2134 11 11 11 2134 2135 2135 11 11 11 2135 11 11 2135 2134 2135 11 486 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 2134 11 2134 11 11 2134 2135 11 2134 11 2134 11 11 11 11 2134 11 11 11 11 2135 11 2134 2134 11 11 11 11 2134 2134 11 11 11 11 11 11 11 2134 2134 11 2135 11 11 11 11 11 11 2134 11 11 11 11 11 11 11 2134 11 11 11 11 2135 2134 2134 11 11 11 2135 11 11 11 11 11 2134 2135 2134 11 11 11 11 2134 11 11 2134 2135 2135 2135 2134 11 11 2135 11 11 2134 11 11 2135 2135 11 11 2134 11 11 11 2135 11 2134 11 2135 11 2134 2134 11 11 2134 2135 11 11 1842 1846 0 0 0 0 0 0 0 0 0 0 - 11 11 11 2134 11 11 2135 2134 11 11 2134 2135 11 2134 2134 11 11 11 11 11 2134 2134 11 11 2134 11 11 2134 2135 11 11 2134 2135 11 2134 11 11 11 11 11 11 2135 11 11 11 11 11 2135 11 11 11 11 11 11 2135 2135 11 2135 2134 11 2134 2135 2134 11 2134 11 11 11 2135 2134 11 11 2135 2134 11 11 11 11 11 2134 11 2135 2134 2135 11 11 11 11 11 11 11 11 11 11 11 11 11 2134 11 2134 2134 11 2135 2135 2134 11 2134 2135 2135 2135 2134 11 2135 11 11 2134 11 2134 11 11 11 11 11 2134 11 11 11 2134 11 11 2134 11 11 11 11 11 11 2135 2135 11 2134 11 2135 2135 2134 11 11 11 2135 11 2134 2135 2135 2134 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 485 2134 2135 11 11 11 11 2134 11 2134 11 2135 2135 11 11 11 2134 2135 2134 11 2134 2134 2134 11 11 11 2135 11 11 2134 2135 11 11 2134 11 11 11 2135 2135 11 11 11 11 11 2135 2135 11 2134 2135 11 11 2134 2134 11 11 2135 11 2135 11 11 11 11 282 484 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 483 281 2134 11 11 11 2135 2135 11 11 2134 2134 11 11 2135 11 11 2134 2135 2135 11 2135 11 11 2135 11 2135 11 2134 2135 11 11 11 2134 11 11 2135 11 11 11 11 11 11 2135 282 484 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 483 281 11 11 11 11 2135 2134 11 11 2134 11 11 11 2134 2135 11 11 2135 11 11 11 11 2134 11 11 11 11 11 11 2135 2135 11 11 11 11 11 11 11 2134 11 2135 11 11 11 11 11 2135 11 2135 11 2135 11 11 2134 11 11 11 11 2135 11 11 11 2134 11 11 2134 11 11 11 2135 11 11 2135 2134 11 11 11 11 2134 11 2134 2135 2134 11 2135 11 11 11 11 2135 2134 11 11 2134 11 11 11 11 11 11 2134 11 11 11 4751 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 483 281 11 11 2134 2135 11 11 2134 2134 2135 11 11 2135 11 2135 2134 11 2135 11 2135 2134 2135 11 11 11 11 11 2134 11 2135 2135 11 11 2135 11 2135 11 11 11 2135 11 11 11 2134 11 2134 2135 2135 11 11 11 11 11 11 11 11 2135 11 11 2135 2135 11 2134 11 2134 11 2135 11 2134 2134 11 11 11 11 2135 2135 11 2134 11 11 11 11 2134 11 11 11 2135 11 11 11 2134 2135 11 11 11 11 2134 11 11 11 2134 2134 2134 11 11 11 11 2134 11 2134 11 2135 11 11 11 2135 11 11 11 11 11 1848 1844 0 0 0 0 0 0 0 0 0 - 11 2135 11 2134 2134 11 11 11 11 2134 11 11 11 2135 11 11 2135 11 11 11 2135 11 2134 2135 2135 2135 2134 19 11 11 2135 2134 2134 11 2134 2135 11 2134 11 11 2134 11 11 11 2134 11 2134 11 11 2135 2135 11 11 11 11 11 11 11 11 2134 2135 2134 11 2135 11 11 11 2135 2134 11 2135 19 11 2135 11 11 11 11 11 11 2135 11 11 11 2135 2134 2134 11 2135 11 2134 2134 11 11 2135 2135 11 2134 11 11 11 2135 11 2134 2134 11 2135 11 11 11 11 11 11 2135 2134 11 11 11 11 11 11 2134 11 2134 2134 2135 11 2135 2135 11 2135 11 11 11 2134 2134 2135 2135 11 11 2135 11 2135 11 11 11 11 11 2134 2134 11 11 2134 11 11 2134 12 0 0 0 0 0 0 0 0 0 0 0 0 0 4750 2134 11 11 11 11 2135 2135 11 11 2135 11 2134 11 2135 11 2134 2134 11 2134 2135 2134 11 11 11 2135 11 11 11 11 11 2134 2135 11 11 2135 11 11 11 11 2134 11 11 11 2135 2135 11 2135 2135 11 11 2135 2135 11 2134 11 2134 2134 11 11 11 11 11 486 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 485 11 2134 11 2134 11 11 2134 19 2135 2134 11 11 11 11 11 26 11 11 2134 2134 2134 11 2134 11 11 11 11 11 2135 11 11 11 2135 2134 2134 2134 2135 11 2135 11 11 2134 11 11 486 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 485 11 11 11 11 2135 11 2135 11 11 2135 11 11 11 11 11 2135 2134 11 2134 11 2134 2134 11 2135 11 2134 2134 11 11 2134 2134 11 11 11 2134 2135 2134 11 11 11 2135 11 2135 11 11 11 2135 2134 11 11 2135 2134 11 11 11 11 2135 11 2135 2135 2135 11 2135 2135 11 2135 2135 11 11 2134 11 2135 2134 11 11 11 2134 11 11 11 11 2134 11 11 11 2135 11 11 11 2134 11 11 11 2134 11 11 2135 11 11 2135 2135 11 11 11 282 484 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 485 11 11 2134 2135 11 11 11 11 11 11 2134 2135 11 2134 11 2135 11 2135 11 2135 2134 2135 11 11 11 11 11 2134 2134 11 11 2134 2134 11 2134 2134 11 11 11 11 11 2134 2134 11 11 2134 11 11 2134 11 11 11 2134 11 11 2135 11 11 11 11 2134 11 11 11 2134 11 2134 11 11 11 11 2134 11 2134 2134 11 11 2134 11 2135 2134 2135 11 2135 11 2135 11 11 11 11 2135 2134 11 11 2135 2134 11 11 11 11 2135 11 11 2135 11 11 11 11 2134 11 2134 11 11 2134 2134 11 11 2134 2134 11 11 1850 1846 0 0 0 0 0 0 0 0 0 - 11 11 2135 2135 11 11 11 11 11 11 11 11 2135 2135 2134 11 11 11 2135 11 11 11 11 2135 11 2135 11 2134 11 11 2134 11 11 11 2135 2134 2134 2134 11 2134 2134 2135 11 11 11 2134 2134 2135 2134 2135 2134 2135 2134 11 11 2134 2135 2134 11 11 11 11 11 2135 2135 2135 2134 11 2135 11 11 11 2135 11 11 2134 11 11 11 2134 11 2134 11 2134 11 2135 2135 11 11 11 11 11 2134 2134 11 11 11 11 11 11 11 11 2135 11 11 11 2135 11 2135 11 11 11 11 11 11 11 11 11 2134 2135 11 11 2134 2134 2135 11 11 11 11 11 11 2134 11 2135 11 2134 11 2135 2134 11 11 2134 2135 2135 19 2135 11 2135 2134 11 11 11 2134 2134 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 10 2134 11 11 2134 11 2134 11 2134 11 2134 2134 11 11 2134 11 11 2135 11 11 11 11 2135 11 11 2134 2135 2135 2135 2135 2135 2135 2135 11 11 2134 11 2135 2135 2135 11 2135 2135 11 2134 11 2135 11 2134 11 11 2135 11 2134 2135 2134 11 11 2135 11 11 11 11 4751 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4750 11 2135 11 11 11 2135 2134 2135 11 2135 11 2135 2134 11 11 11 2134 2134 2134 11 2134 2134 2134 11 11 2134 11 11 2135 11 11 2135 11 2134 11 2135 2134 2134 2135 11 2134 2134 2134 11 4751 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4750 11 11 2135 11 2135 11 2135 11 2135 11 11 2134 2134 2134 2135 11 2135 2134 2135 11 2135 2135 11 11 11 2135 11 26 2134 11 11 11 11 11 2134 2135 2135 11 2135 2135 2135 11 11 11 2134 2134 2134 2134 2134 2134 2134 2134 2135 2135 11 2134 11 2135 2135 11 11 11 11 11 11 11 2134 11 2134 11 2134 11 2134 11 2134 2134 11 2134 11 11 11 2134 11 11 11 2135 2135 11 2135 2135 2134 11 11 11 2135 2135 2135 11 11 2134 11 11 11 11 11 486 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4750 11 11 2134 2135 2135 2135 2135 2135 2134 2134 2134 2135 11 11 2135 2134 11 11 2135 11 11 11 11 2135 11 2135 11 11 2134 11 11 2135 2135 2134 11 11 2135 11 11 11 2134 11 11 11 11 2134 11 2135 11 2135 11 2134 11 2135 11 11 11 11 11 2134 11 11 11 2135 2134 2135 11 11 2134 11 11 11 11 11 11 11 2134 2135 11 11 11 2135 11 2135 2135 2135 2134 11 2134 11 11 2134 11 11 2134 2135 11 2135 11 11 11 11 2134 11 2135 11 11 11 11 2134 26 2135 11 2134 11 2134 11 2134 11 11 11 11 1848 1844 0 0 0 0 0 0 0 0 + 0 0 0 0 0 2928 2925 2926 11 11 5369 5368 5368 11 5368 11 5368 11 11 11 2929 2930 2931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1845 1849 11 11 5368 11 5369 5368 5369 11 5368 11 5368 11 5369 11 11 11 5369 5368 11 5369 11 11 5369 5369 5368 11 11 5369 11 11 11 11 5369 11 5368 5368 5369 5369 5368 5368 5368 1539 19 5368 5369 11 11 11 5369 5369 11 11 11 11 5368 11 11 11 11 11 1835 3143 3144 1838 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 2928 17 2925 2926 11 11 5369 11 11 11 2929 2930 17 2931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1837 1847 11 11 11 11 5368 11 5368 11 11 5369 11 11 5368 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 5369 11 11 11 11 5368 11 11 11 11 11 11 11 11 11 11 11 11 5369 11 5369 5368 5369 11 5368 11 5368 11 11 11 5369 11 5368 11 11 3147 1840 1844 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 2928 17 17 3991 17 3991 17 2931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1837 1839 1849 11 11 11 5369 5369 11 11 5369 5368 5369 11 5369 5369 11 11 11 5368 5369 11 11 5369 11 5368 5369 5369 11 11 11 5369 11 11 11 5369 11 5368 5369 5369 11 5369 5369 5369 5369 5368 5369 5369 11 5368 11 5369 5368 5369 11 5369 5369 11 5369 5369 11 11 11 5369 11 11 11 1842 1846 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1843 1839 1841 11 11 11 11 11 5368 5368 5368 11 5368 11 5368 11 5369 11 5368 5368 11 11 11 11 5368 5368 11 11 11 11 11 11 5369 11 11 5369 11 5369 11 11 11 11 11 11 11 11 11 11 5368 5369 11 11 5369 5369 11 11 11 11 5369 11 5368 11 11 5368 11 5369 5368 11 11 1848 1844 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1845 1841 11 11 11 11 5368 5369 11 11 5369 11 11 11 5369 11 5369 5369 11 11 11 11 11 5369 11 11 11 11 11 11 11 11 5368 5369 5368 11 11 11 5368 5369 11 11 11 11 5369 5369 11 11 11 5368 11 5369 5369 5369 11 5369 5368 5369 11 11 5368 11 11 11 11 5368 5368 11 11 1850 1846 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5392 11 11 11 5369 5368 11 11 5368 11 5369 5368 5369 11 5369 11 11 11 11 11 11 5369 5369 11 5368 11 5368 5368 11 11 11 5369 11 11 11 11 5368 11 11 11 11 11 11 11 11 11 5368 5369 11 5368 11 5369 5369 11 1539 11 11 5368 11 11 5369 5368 5369 5368 5369 5368 5369 5369 11 11 1848 1844 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 44 44 44 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5396 11 11 19 5369 11 11 5369 5369 11 11 11 11 11 5368 5368 5369 11 5368 11 11 11 11 5369 5369 11 5368 5368 11 11 11 5368 5369 11 5369 11 11 11 5368 5369 5369 11 11 11 11 11 11 5368 5369 11 11 11 11 11 5369 5369 5369 11 11 11 11 11 19 11 5369 5369 11 11 11 11 1850 1846 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1843 22 11 5368 5368 5368 11 11 5369 5368 5368 5369 11 5369 5369 11 11 11 5368 11 5369 5368 5369 5368 11 11 11 5368 11 5369 5369 5368 11 11 11 11 11 11 5369 11 11 11 11 11 11 5368 5369 11 11 5369 11 11 11 11 5368 11 11 5368 11 11 5368 11 5368 11 11 11 11 5369 11 11 11 11 5393 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 78 78 78 78 78 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1845 23 5369 5368 11 11 11 11 5368 11 5369 5369 11 5368 11 5368 11 11 11 11 11 11 11 5369 11 11 11 11 11 11 11 11 5368 5369 5369 5368 11 5369 11 11 5368 5368 5369 5369 11 11 11 5368 11 5368 11 11 11 5368 11 5369 11 11 11 11 11 5369 11 11 11 11 5368 5368 11 11 11 11 5397 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47 83 27 28 29 83 47 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5392 11 5369 11 5368 11 11 11 11 11 5369 5368 5368 11 5368 5368 11 5369 11 5368 5368 11 11 5369 11 5369 11 11 5368 5369 5369 5368 11 11 11 11 5368 11 11 5368 5369 11 11 11 19 5369 11 11 5369 11 11 11 11 5369 5368 5368 5369 11 11 5368 11 1539 11 11 5368 5369 11 5368 11 5368 5368 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 8 8 8 2921 2922 2911 2912 14 14 14 14 14 14 14 14 2915 2916 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5396 11 11 5368 5369 11 5368 11 11 11 5368 11 11 11 5368 5368 5369 11 11 5369 5369 11 11 5368 5369 11 5368 19 11 11 11 5369 11 11 11 11 5369 11 5368 11 11 11 5368 5369 11 11 5368 11 5368 11 11 11 5369 11 11 11 5368 11 1539 11 11 11 11 11 11 11 11 5368 5368 11 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3140 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 14 14 14 2923 2924 1834 11 11 11 5368 11 11 5368 5369 11 11 1835 1836 1831 2917 2918 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 5369 5368 5368 5368 5368 11 11 11 11 11 11 11 11 11 11 11 5368 5368 11 5369 11 11 11 11 5369 11 5369 11 1539 11 11 11 5368 11 11 11 11 5369 11 11 5368 11 11 11 5369 11 5369 5368 11 11 5368 11 5369 5369 11 5368 11 5369 11 5368 11 11 5368 5368 11 11 5369 11 11 5368 11 5375 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3144 1838 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5374 11 11 11 11 11 11 11 5368 11 5368 11 11 11 11 5369 11 11 11 1835 2919 2920 14 14 14 14 2915 2916 2917 2918 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 5368 11 11 11 11 11 5368 11 11 5368 11 5369 11 5368 11 5369 5368 5369 5368 5369 11 5369 5368 11 11 11 19 5368 11 11 11 5368 5368 11 11 5368 11 11 5368 11 11 5368 11 11 11 5368 11 11 11 5369 11 11 11 5369 5368 5368 11 11 11 11 11 11 11 11 11 11 5369 11 5369 11 2941 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3147 1840 3149 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 83 0 0 0 83 0 0 0 83 0 0 0 0 0 0 0 0 78 83 83 78 78 83 83 78 78 83 83 78 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47 83 27 28 29 83 47 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2938 11 11 11 11 11 5369 11 5369 11 11 5368 5369 5368 11 11 11 11 11 11 11 11 11 11 11 11 11 1835 2919 2920 14 14 14 2915 2916 2917 2918 8 8 8 8 8 8 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 5369 11 5368 11 5369 5368 5369 11 11 11 11 5368 11 11 5368 11 5368 11 11 11 11 5369 11 11 11 11 11 5368 5368 11 11 11 5368 19 11 11 5368 11 11 5369 11 5368 11 11 11 5368 11 11 11 5368 11 5369 5369 11 5369 5368 11 5368 5369 11 11 5368 5368 11 11 5369 5369 5368 11 11 2935 2942 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 11 1842 3151 3152 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1826 1829 2911 2912 14 3990 14 3990 14 14 14 2915 2916 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2939 2925 2926 11 5368 11 11 11 5368 11 11 11 5369 11 5368 11 11 5368 5369 5369 5369 5368 11 5369 11 5369 11 11 11 11 11 11 11 11 1835 2919 2920 14 14 14 14 14 14 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5374 11 11 5368 11 11 11 11 11 11 5369 5369 11 11 11 5368 11 11 5369 11 11 11 11 11 11 11 11 11 11 5368 11 5369 11 11 11 11 11 5368 11 5368 11 11 5369 11 5369 5368 11 11 11 11 5369 11 11 5368 11 5369 5369 11 11 5368 11 1539 11 11 11 11 11 5368 11 2929 2930 2936 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 11 11 3155 3156 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 8 8 8 8 8 8 2921 2922 1830 1833 1834 11 11 11 5368 11 5369 5369 11 11 1835 1836 1831 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1826 1829 2911 2912 14 3990 14 14 14 14 14 2915 2916 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 2925 2926 11 11 5369 5369 11 11 11 5368 5369 5368 11 11 5368 11 11 5369 11 5368 11 11 11 5368 5369 11 11 5369 11 5369 11 11 11 11 11 5369 11 5368 11 5369 5375 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2938 11 11 11 11 5369 11 5369 5369 5369 11 11 11 11 11 11 5369 5369 11 11 5368 5368 11 11 11 11 11 5369 11 11 11 5368 11 11 11 11 5369 11 11 5368 11 5368 11 5368 11 11 11 11 11 11 11 5369 5369 11 5369 5369 11 5369 11 11 11 5369 5369 11 2929 2930 17 3991 17 2931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 + 5369 11 11 1835 1836 1831 2917 2918 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 2921 2922 2911 2912 14 14 14 14 14 14 14 14 3990 14 2923 2924 1834 11 11 11 11 5369 5369 11 5368 5368 5369 11 11 11 1835 1836 1831 2917 2918 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 2921 2922 1830 1833 1834 11 11 11 5368 11 5368 11 11 11 1835 1836 1831 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 2925 2926 11 11 5368 11 5369 5369 5368 11 11 11 11 5369 11 11 5368 5368 5369 5368 5368 5368 5368 5368 5368 5369 11 5368 11 11 11 11 5368 11 5368 11 5368 11 2941 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2939 2933 11 5368 5368 5368 11 11 11 11 11 11 5369 11 5369 5369 11 11 11 11 5368 19 11 11 5368 11 5369 5368 5369 5369 5368 11 5368 5369 5369 5369 5368 11 11 5368 11 5369 2929 2930 17 3991 3991 17 17 3991 2925 2926 11 11 5369 11 11 2929 2930 3991 17 17 3991 17 2931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1826 1829 2911 2912 + 5369 5368 11 11 11 1835 2919 2920 14 14 14 14 14 14 14 14 14 14 3990 3990 14 14 14 14 14 14 14 14 14 14 14 14 14 3990 14 14 14 14 14 14 14 14 14 14 3990 14 14 14 3990 14 14 14 14 3990 14 14 3988 14 14 14 14 14 14 3990 14 14 14 3989 14 14 2923 2924 1834 11 11 5369 11 11 5368 5369 11 11 5368 11 11 11 11 11 11 11 11 11 5369 11 11 11 11 5369 5369 11 11 11 1835 2919 2920 3990 3990 14 3989 14 14 14 3989 14 14 14 3990 14 14 3990 14 14 14 3989 14 14 14 14 14 14 14 3990 14 2923 2924 1834 11 11 11 5369 11 5368 5368 11 11 11 11 11 11 1835 1836 1831 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 2925 2926 11 5369 5369 5368 11 11 11 5369 11 5368 5368 5368 5368 11 11 5369 5368 11 11 5369 5368 5368 5368 11 11 11 5369 5369 11 5369 5369 11 11 2935 2942 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2934 2925 2926 11 11 11 5369 11 11 11 5368 11 5368 11 11 11 11 11 11 11 11 5368 5368 11 19 11 2929 2930 17 17 17 17 17 17 2925 2926 11 2929 2930 17 17 2931 0 0 0 0 0 0 0 0 2928 17 17 17 17 17 2931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1826 1829 1830 1833 1834 11 + 11 5369 5369 5369 11 11 11 11 11 11 11 5368 11 5369 11 5368 11 5368 11 5369 5368 11 11 11 5368 5369 5369 11 5369 11 11 11 5369 5368 11 5368 11 5368 11 5368 11 5368 11 11 11 11 5369 11 11 11 5369 11 5368 11 5368 5369 11 5368 11 11 5369 5369 5368 5369 5368 11 11 11 11 11 11 11 11 11 5369 11 11 11 11 11 11 11 11 11 11 5368 11 5368 11 11 11 5369 5368 5368 5369 5368 5368 11 5369 11 5369 11 11 11 5369 11 11 5368 11 5369 5368 5369 11 5369 11 5369 11 11 11 11 11 11 5369 5368 11 11 11 11 11 5368 11 5368 11 11 11 11 1539 5369 11 11 5369 5368 5369 11 5368 11 5368 19 11 11 11 1835 1836 1831 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 2925 2926 11 5369 11 5369 11 5369 5369 5369 5369 11 11 5368 11 5368 11 1539 11 5368 11 11 5369 11 11 5368 11 11 11 5369 11 2929 2930 2936 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 2925 2926 11 5369 11 5369 5369 11 5369 5369 11 11 11 11 2929 2930 17 17 17 17 3991 17 17 2931 0 0 0 0 0 0 0 0 2928 17 2931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1826 1829 1830 1833 1834 11 11 11 + 11 11 11 11 11 5368 5369 11 5368 5368 11 5368 5369 11 11 5369 5369 11 11 11 11 11 11 5368 11 11 11 11 11 5368 11 11 5368 5368 5368 5368 11 11 11 11 11 11 11 5369 11 11 5369 11 11 11 5369 11 5368 5368 11 5369 11 5368 5369 11 5368 11 5368 11 11 11 11 5368 11 11 5368 11 5368 5369 11 11 5369 5368 11 11 5369 5368 11 11 11 11 11 5369 11 11 11 11 11 5369 11 5368 11 5369 5368 5369 11 11 11 11 11 11 11 11 11 11 5369 11 11 11 5369 11 5368 5369 5369 5369 5369 5368 5368 11 11 11 11 5368 5369 11 11 5369 5369 11 5368 11 11 11 5369 11 5368 5368 11 11 5368 5368 11 11 11 11 11 11 11 1835 1836 1831 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 2925 2926 11 11 11 2929 2930 17 17 17 17 17 17 17 2925 2926 11 11 5368 11 5369 5368 5369 11 1539 11 2929 2930 17 2931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 2925 2926 5369 11 11 2929 2930 3991 17 3991 17 17 2931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3141 3142 1830 1833 1834 11 11 11 5369 11 + 11 11 5368 11 5368 5368 5369 11 11 11 11 11 11 11 11 11 11 11 11 11 5369 11 5369 11 11 11 11 11 11 11 11 11 5368 11 11 5369 11 11 5369 11 5368 11 5369 5368 5368 5369 11 5369 5368 5369 11 11 11 5369 5368 11 5369 11 5369 11 5369 11 11 5368 5369 5369 11 11 11 11 5368 5369 11 5369 5368 11 11 5368 11 5368 11 5368 11 5369 5368 11 19 5369 11 5369 5368 5369 11 5369 11 11 11 11 11 11 5369 5369 11 5368 11 5368 5368 11 11 11 5369 11 11 11 11 11 5369 11 11 11 11 11 11 11 11 5368 5369 11 11 11 5369 5369 11 11 11 11 5368 11 11 5369 5368 5369 5368 5369 5368 5369 5369 11 11 5369 11 11 11 11 11 1835 1836 1831 5385 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 17 3991 17 2931 0 0 0 0 0 0 0 0 0 2928 17 2925 2926 11 11 11 2929 2930 17 17 2931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 17 17 17 2931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1837 3145 3146 1834 11 11 5368 5368 11 11 11 + 11 11 11 5368 11 5368 11 5369 5369 11 11 11 5369 5369 11 11 11 11 5368 5369 5369 11 11 11 5368 5369 5369 5368 11 11 5368 5369 5369 5368 11 11 11 5369 5368 11 11 11 5368 5369 11 11 11 11 11 11 11 5368 11 11 5369 5369 11 11 11 11 5368 5368 11 11 11 5369 5369 5369 11 5369 11 11 5369 11 11 11 5369 11 11 5368 11 11 5368 11 5368 11 11 11 5368 11 5369 5369 11 5368 5368 11 5368 5369 11 11 5369 11 11 5368 11 5368 11 11 11 11 5369 11 11 11 11 5368 11 11 5368 5369 11 11 11 11 11 5368 11 11 11 5369 5369 11 11 11 5369 11 5368 5368 5369 5368 5368 11 11 5369 5369 11 11 11 11 11 11 11 11 11 11 11 11 1835 5389 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 17 3991 17 2931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1837 1839 3148 11 11 5368 11 11 11 11 5368 11 + 11 5369 11 11 11 5368 11 11 5368 11 11 5368 5368 5369 5368 11 5369 11 11 5368 5369 5368 11 11 11 5368 5369 11 11 5368 11 5369 11 11 5369 11 11 11 5368 11 11 11 5368 11 11 5368 11 5368 5368 5369 11 11 5368 11 11 5369 5369 11 11 5369 5369 11 5368 5368 11 11 11 5368 11 11 11 5368 11 5368 11 11 11 11 11 11 11 5368 5369 11 11 11 5368 5368 5368 11 5368 11 5368 11 11 11 5369 11 11 11 5369 5369 11 11 11 11 11 5369 11 11 5368 11 11 11 11 5368 11 5368 11 11 11 5368 5369 11 11 5369 11 5369 5368 5368 5368 11 5368 11 5368 11 5369 11 11 11 5369 5368 5369 5368 11 5369 11 11 11 11 11 5369 11 11 11 5369 11 11 12 0 0 2067 2068 2068 2068 2069 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5386 1841 11 5369 5369 11 5368 11 115 116 5369 11 + 11 11 5369 5369 11 5368 5368 5369 11 11 11 11 11 5369 11 5368 5368 11 5368 11 5369 11 5369 11 5368 11 11 5368 11 11 11 11 5369 5368 11 11 5368 11 11 5369 5369 5369 11 11 5369 11 11 5368 11 11 11 5368 11 5368 11 11 11 11 5368 5369 11 5369 5368 11 11 11 5369 11 11 11 5368 11 11 11 11 11 11 11 5369 5369 5368 5368 5368 5368 5369 11 5369 11 11 5368 11 5369 11 11 11 11 5369 5369 11 11 5368 11 11 11 5368 11 5369 11 5368 5368 11 5369 11 11 11 5368 11 5369 11 5368 5369 11 5368 11 11 5369 5368 11 11 11 5368 11 11 11 11 11 11 11 11 11 11 11 5369 5369 11 5368 11 5368 5368 11 5368 5368 11 5368 5369 5369 5369 11 12 0 0 2072 2073 2073 2073 2074 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 44 44 44 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2067 2068 2068 2068 2068 2068 2069 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5390 11 5369 5369 11 5368 11 11 117 118 11 5368 + 11 11 11 5368 11 5369 5369 11 11 11 5369 5368 11 11 11 11 5368 5368 11 11 11 5368 5369 5368 11 5368 5368 5368 11 5369 11 5368 5369 11 11 11 11 5368 5369 11 11 11 5368 11 11 5369 11 11 11 11 11 11 5368 11 5368 11 5368 11 5368 11 5368 5368 11 11 11 5369 11 11 5369 11 5368 5369 5369 5368 11 11 5369 11 11 5368 11 11 11 5369 5369 11 5368 11 11 11 11 11 11 11 11 11 5368 11 5369 5368 11 11 11 11 11 11 11 5369 11 11 5369 11 5368 5369 5369 5368 11 5369 11 5369 11 5368 11 5368 11 11 5369 5368 5369 11 5368 11 11 5368 11 11 11 11 11 11 11 5369 5368 11 11 11 11 11 11 11 11 11 11 11 5369 11 19 5368 5375 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2067 2068 2068 2068 2069 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2072 2073 2073 2073 2073 2073 2074 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5370 11 5368 11 5368 11 11 11 5369 11 5368 11 + 5368 5368 5369 11 11 11 11 11 11 11 11 11 11 11 5369 11 5369 11 11 5368 5368 11 11 11 11 5369 11 5368 5369 5369 5368 11 11 5368 11 5369 11 11 5369 5368 11 11 5368 11 5368 11 11 5368 11 11 11 11 11 5368 11 5369 5368 11 5369 11 11 5369 11 11 5368 5369 5369 11 5369 11 11 11 5369 5368 11 5368 11 11 5369 11 5369 11 11 5369 5368 5368 11 11 11 11 11 5369 5369 11 5368 5368 11 5369 11 11 11 11 5368 5368 11 5368 5368 11 11 11 11 5369 11 11 11 11 11 5369 11 11 5368 11 5369 11 11 11 11 11 11 5369 5368 5368 5369 11 11 11 5369 5368 11 5368 5369 11 5368 11 5368 11 5369 5369 11 5369 5369 11 5369 11 11 5369 19 5368 2941 0 0 0 0 0 0 0 0 0 2067 2068 2068 2068 2069 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 44 44 44 44 0 0 0 0 2072 2073 2073 2073 2074 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 83 83 0 0 0 0 0 0 0 0 0 0 44 44 44 44 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2934 2925 2926 11 11 5368 5369 5368 11 11 11 5369 + 5368 5369 11 11 5369 11 5368 5368 5369 5368 5368 11 11 5368 5368 11 11 5368 11 5369 11 11 11 11 11 11 11 11 5368 11 11 11 5368 5368 5368 5368 5369 5369 11 11 5369 11 11 5369 11 11 5369 5369 11 11 11 5368 11 11 5369 5368 11 11 5368 5369 11 5368 5368 11 11 11 11 11 5368 5368 11 11 5368 11 11 5368 5369 11 11 11 5369 11 5368 11 11 11 11 11 11 5369 11 11 11 11 5369 5369 11 11 11 11 11 11 5368 5369 11 5368 5368 11 5368 5368 5368 11 5368 5369 11 11 5369 5368 11 11 5369 11 11 11 11 11 11 11 11 5368 5368 5369 11 11 11 11 11 11 5369 5369 11 11 5369 5369 11 11 11 5368 5368 11 5368 5368 1539 11 11 5368 5369 30 2942 0 0 0 0 0 0 0 0 0 2072 2073 2073 2073 2074 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47 83 27 29 83 47 0 0 0 0 47 83 27 29 83 47 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2067 2068 2068 2068 2069 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 2925 2926 11 11 5369 11 5369 11 5369 + 5369 11 5369 5368 5369 11 11 11 5369 5369 11 11 11 11 11 11 11 11 11 11 11 5368 5369 5369 5368 11 11 1539 11 11 11 5368 11 5369 11 5369 11 11 5368 11 11 11 5368 11 5369 5368 5369 11 11 11 11 11 5368 11 11 11 11 5368 5369 5368 11 5369 11 5369 5368 11 5369 5369 5369 5368 11 5368 5369 11 11 11 11 11 11 11 11 5368 11 11 11 5369 5369 11 5368 11 11 5368 11 11 11 5369 11 11 11 11 11 11 5368 5368 11 5368 5368 11 5368 5369 5368 11 5369 11 11 11 11 11 11 11 11 5369 5369 5369 5369 11 11 5369 5368 11 5368 11 5368 5368 11 5368 5368 11 11 11 11 11 11 11 11 5368 5369 11 5369 5369 5368 11 11 11 11 5368 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2072 2073 2073 2073 2074 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 78 78 78 78 78 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 2925 2926 11 11 5369 11 11 + 5369 11 11 11 5369 5368 5368 11 5369 11 5369 5369 11 5368 11 11 11 11 11 5369 11 11 5368 11 11 11 5368 11 5368 5369 11 11 11 11 11 11 11 11 5368 5369 11 5369 5368 5368 5369 11 11 11 11 11 11 5368 11 5368 11 5368 11 5369 5368 11 11 5368 5369 5369 5368 5369 11 5369 5368 11 11 5368 5368 5368 11 11 11 11 5369 5369 5368 5369 11 11 5369 11 11 11 5369 11 11 5368 11 11 5369 5368 5369 5368 5369 5368 5369 5369 11 11 11 11 11 11 11 5368 5368 11 11 11 5369 11 11 11 11 11 11 11 11 11 5368 11 1539 11 11 11 5368 11 11 11 11 5369 11 5369 11 5368 5369 11 11 11 11 11 11 5368 11 5368 5369 5368 11 5368 5369 11 5369 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2067 2068 2068 2068 2069 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 2925 2926 11 11 11 + 5369 5369 5369 11 5369 5369 11 11 11 5368 11 5369 5369 11 11 5368 5368 11 5368 5368 11 11 11 11 5369 11 11 11 11 5369 11 5369 11 5369 11 5369 11 11 5368 5368 11 5368 11 11 11 11 5368 11 11 11 11 11 5368 5368 11 5369 11 11 5368 5369 11 5369 5369 11 5369 11 5369 11 5369 11 11 11 11 5369 11 11 5369 11 11 5369 5368 11 5368 5369 11 5368 11 11 5368 11 11 11 11 5369 11 11 11 11 11 11 11 11 5368 5368 11 5369 5369 5368 11 11 11 11 11 5368 11 11 11 5368 5369 11 11 11 5368 5369 11 11 5368 5368 5368 11 5368 5368 5368 11 11 11 5369 5369 11 11 5368 11 5369 5369 11 5368 11 5369 5369 5368 11 11 11 11 11 11 5368 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2072 2073 2073 2073 2074 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 78 83 78 0 0 78 83 78 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47 83 27 29 83 47 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2928 2933 11 5368 + 11 11 11 11 11 11 5369 5369 11 11 11 11 11 5369 11 11 11 11 11 11 11 11 19 5368 5368 11 11 11 5368 5369 5369 5369 5369 5369 5369 5369 5369 11 11 5368 11 5369 5368 5368 11 5368 5368 5369 11 11 11 11 11 5369 5369 11 11 11 11 11 11 11 11 5368 5368 5368 11 11 5368 5368 5368 11 5369 11 11 11 5369 11 5369 11 11 5369 5369 5369 11 5368 11 11 11 5369 5368 5369 11 11 5368 11 19 11 11 11 11 11 5369 11 5368 11 11 11 5368 11 11 11 5369 5368 11 19 5369 11 11 5369 11 11 5369 11 11 5369 5369 11 11 5369 5368 5369 11 11 11 5368 11 5369 5368 5369 11 5368 11 5369 5368 11 11 11 5368 5369 5369 11 5369 11 11 11 5369 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 78 83 83 78 78 83 83 78 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1826 1829 2911 2912 14 14 3988 14 2915 2916 2917 2918 8 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 83 83 0 0 0 0 0 0 0 0 0 1826 1829 2911 2912 14 14 3988 14 2915 2916 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2934 2933 11 + 11 11 11 5369 11 5368 11 5369 11 5368 11 11 5368 5369 11 5368 11 5368 5369 11 5369 5369 5369 11 5368 5369 5369 5368 11 11 5368 11 5368 11 11 11 5368 11 11 5369 11 11 5368 11 11 11 5369 5368 5369 11 11 5368 11 11 11 11 11 11 11 5369 5369 5368 11 11 11 5368 11 11 11 5369 11 11 11 5369 11 11 5368 11 11 5369 11 5369 5368 5368 5369 11 5368 11 5368 11 5369 5369 11 11 1539 11 11 11 11 11 11 11 5369 11 5369 11 11 11 11 11 5369 5369 5368 11 11 5368 11 5368 11 5368 11 5368 11 5369 5369 5369 11 11 5369 5368 5369 11 5369 5369 11 11 11 5369 5369 11 11 11 11 5369 11 11 11 5368 5368 11 11 5368 11 11 5368 5369 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 83 78 83 78 83 0 0 0 0 83 78 83 78 83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 8 8 8 8 2921 2922 2911 2912 14 14 14 14 14 2915 2916 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 8 8 8 8 8 2921 2922 1830 1833 1834 11 11 5368 5369 11 11 1835 2919 2920 3989 14 14 14 14 2915 2916 2917 2918 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1826 1829 1830 1833 1834 11 11 11 5369 11 11 1835 1836 1831 2917 2918 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27 29 83 83 27 29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2934 2933 + 11 5368 5368 5368 11 11 11 5369 5369 11 11 11 11 5368 5368 11 11 11 11 5368 11 5369 11 11 11 5368 11 11 11 5368 5368 5368 19 11 11 11 5368 5369 11 11 11 5369 5369 11 5368 11 11 11 5368 5369 11 11 5369 5368 11 5369 11 11 5369 11 5369 11 11 11 5369 11 11 11 5369 11 5369 11 11 5368 5369 5369 11 11 11 5368 11 5368 11 11 11 11 5369 5368 5368 11 5368 5368 11 11 11 11 11 5369 11 5369 11 11 5368 5369 5369 11 5368 5368 11 5369 11 11 11 11 11 5368 11 11 5368 11 5369 5368 11 11 11 5368 11 5368 11 5368 5369 19 11 5369 11 5368 11 11 11 11 5368 11 5369 11 5368 5369 5369 11 5368 5368 11 5369 11 11 11 11 11 5375 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1826 1829 2911 2912 14 14 14 2915 2916 2917 2918 8 8 8 8 8 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 2921 2922 2911 2912 14 14 14 14 2915 2916 2917 2918 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 8 8 8 8 2921 2922 2911 2912 14 14 14 14 14 3988 3988 14 2923 2924 1834 11 11 5369 5369 5369 11 11 1835 1836 1831 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1826 1829 2911 2912 14 14 14 14 14 14 3989 14 14 2923 2924 1834 11 11 11 11 5369 5369 11 11 11 11 11 11 11 11 5369 11 11 1835 2919 2920 2915 2916 2917 2918 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 1826 1829 1830 1833 1834 11 11 11 11 11 11 11 11 11 11 1835 2919 2920 14 14 3990 14 2915 2916 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2934 + 11 11 11 5368 11 11 11 5369 11 5369 11 5369 11 5369 11 11 11 5368 11 5369 11 11 5368 11 11 11 11 11 5369 11 5369 11 5368 11 5368 11 5369 5368 11 11 5368 11 5368 11 11 5369 5368 5368 11 5369 5369 1539 5368 11 11 5368 5369 11 5369 5368 11 11 11 5369 11 11 11 5369 11 5368 5369 11 11 11 11 11 11 11 11 11 11 5369 11 11 11 11 5368 11 11 5368 11 11 5368 11 5368 11 5368 11 5368 11 5369 5368 11 5368 11 11 11 11 11 11 11 5368 5369 5369 5369 5368 11 11 11 5369 5368 5368 5368 5369 11 11 11 11 11 11 11 5369 11 5369 5368 11 5369 11 5369 11 5369 11 5369 11 11 5369 11 11 5369 11 11 11 11 5368 11 11 11 2941 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5384 1830 1833 1834 5368 5368 5368 5368 5368 1835 2919 2920 14 14 3990 3990 14 14 14 3990 14 2915 2916 2917 2918 8 8 8 8 8 8 8 8 8 8 8 2921 2922 2911 2912 2923 2924 1834 11 11 11 11 11 11 1835 2919 2920 14 2915 2916 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1826 1829 2911 2912 14 3989 14 14 14 3990 14 14 2923 2924 1834 11 11 5369 11 5368 11 11 11 11 11 11 11 11 5368 11 5368 11 11 11 11 11 1835 1836 1831 5385 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5384 1830 1833 1834 11 11 5368 5368 11 11 11 11 11 11 11 11 11 11 11 11 5369 11 11 5368 11 11 5368 11 5369 11 5368 11 1539 11 11 11 11 11 1835 2919 2920 14 14 3990 14 14 14 14 3989 14 14 14 14 3990 14 14 14 14 2915 2916 2917 2918 8 8 8 8 8 8 8 8 8 2921 2922 1830 1833 1834 11 11 11 5368 5369 5369 11 5369 11 11 5368 11 11 11 11 11 5369 5369 11 11 1835 1836 1831 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1826 1829 2911 2912 14 14 3990 14 14 14 14 14 14 14 3990 14 3988 14 14 14 2915 2916 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 78 83 78 0 0 0 0 0 0 0 0 78 83 78 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 11 11 5369 11 5368 11 5368 5369 5368 5368 11 11 5369 5369 5368 5369 5369 11 11 11 11 11 11 11 11 11 5369 11 11 11 11 11 11 11 11 11 11 5368 11 5368 11 11 11 11 5368 5368 11 5368 5368 11 5369 11 5369 11 5369 11 5369 11 11 5369 11 11 5368 11 11 5369 11 11 11 11 11 11 11 11 5369 5368 11 11 11 11 11 5369 11 5369 5368 5369 11 5368 5368 5369 11 11 5369 5368 5369 5368 5369 5368 5369 5368 11 11 5369 11 11 5369 11 11 11 11 5368 11 11 11 11 11 11 11 11 11 11 5368 5369 11 5368 11 11 11 5368 11 11 11 5369 5368 11 5368 5369 11 11 11 11 5368 5369 5368 11 11 5368 11 11 11 5368 11 11 11 11 5369 30 2942 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5388 1834 5368 5368 5368 5369 5368 5369 5368 5368 5368 5368 5368 11 11 11 11 5368 11 11 11 11 1835 2919 2920 14 14 14 14 14 14 14 3990 14 3990 14 2923 2924 1834 11 11 11 11 11 11 11 5369 5368 11 11 11 11 11 11 1835 1836 1831 5385 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5384 1830 1833 1834 11 11 11 5368 11 11 5368 5369 11 11 11 11 11 5369 11 5369 11 5368 5369 5368 11 5369 11 11 11 5368 11 11 11 11 11 11 11 11 11 1835 5389 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5388 1834 11 11 11 5369 5368 11 11 11 5369 5368 5368 5368 5369 11 11 11 5369 11 11 5369 5369 11 5368 5368 11 5368 11 5368 5369 11 5369 5368 11 11 5368 11 11 11 11 11 11 5368 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 1835 2919 2920 14 14 14 14 14 14 14 14 14 2923 2924 1834 11 11 11 11 5369 5369 11 5369 5369 5368 11 5368 5368 5368 19 11 5369 11 5369 11 5368 11 11 11 1835 1836 1831 5385 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5384 1830 1833 1834 11 11 11 11 5368 5369 11 11 5368 11 5368 11 5369 5369 5369 11 11 11 1835 1836 1831 2917 2918 8 8 8 8 8 8 8 8 8 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 11 5369 11 11 5369 11 5368 11 11 11 11 5368 5368 11 11 5369 11 11 5368 11 11 5369 11 5368 5369 5369 5368 11 5369 11 11 11 5369 11 11 5368 11 11 11 11 11 11 5369 5369 11 5369 5368 11 5368 5368 11 11 11 11 5369 5369 11 11 11 11 11 11 11 11 11 11 11 5368 5369 5368 19 11 11 5368 11 5369 5368 11 11 11 11 11 5368 11 11 11 11 5369 5368 5369 11 11 5369 5368 5369 5368 5369 5368 5369 5368 11 11 11 11 11 11 5368 11 11 5369 5368 11 11 5369 11 11 11 11 5368 5369 11 11 5369 11 11 11 11 5368 11 11 11 5368 5368 5369 11 11 5369 5368 11 11 11 11 11 11 5369 11 11 11 5368 11 11 5369 11 5369 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5254 5245 5368 5368 11 5369 5368 11 11 11 11 5369 5369 11 5368 11 5369 11 5369 11 5369 5369 11 11 11 11 11 11 11 11 5368 5369 11 11 11 5369 11 11 11 11 11 5369 5368 5368 11 5368 5369 11 11 11 11 11 11 11 11 11 11 1835 5389 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5388 1834 11 11 11 11 11 5368 5368 11 5369 11 11 5368 5368 11 5368 5368 11 11 11 11 5368 11 11 11 5369 5368 11 5368 11 5368 11 5368 11 5368 11 11 11 11 5247 5255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 11 11 5369 11 11 5368 11 11 5368 11 11 11 5368 5369 11 11 11 11 11 5369 11 5368 11 5369 5368 5369 5368 5369 11 5369 5368 11 11 5369 11 11 11 11 5368 5368 1539 11 5368 11 11 5368 5368 5369 11 11 11 11 5369 11 5369 11 11 11 11 11 11 11 5369 5368 5369 11 11 11 11 11 11 11 11 5369 5369 5368 11 11 5369 11 5368 5368 11 11 11 5369 5369 11 11 11 5369 5369 5369 5369 11 11 11 1835 5389 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5388 1834 11 11 11 11 11 11 5368 5368 5369 11 11 11 5369 11 5369 5368 5369 11 11 11 11 11 1835 2919 2920 14 14 14 3990 14 14 14 3989 14 14 14 14 14 2915 2916 2917 2918 8 8 8 8 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2909 2910 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 2913 2914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 11 11 11 11 11 11 11 11 5368 11 5368 11 5368 11 5369 11 5368 11 11 5369 11 11 11 11 5369 11 11 5368 5369 5369 5369 5369 5369 5369 11 11 11 5369 11 11 11 11 11 11 11 11 5369 5368 11 5369 5369 11 5368 11 11 5369 11 5369 11 11 11 5368 5368 5368 11 5368 5369 5369 5369 11 11 5369 11 5369 11 5369 11 5369 5368 11 11 11 5368 11 5369 5369 11 5368 11 5368 11 11 11 11 11 11 11 11 5368 5368 11 11 11 11 5368 11 11 11 5368 5368 11 11 5368 11 11 5369 11 11 5369 11 5368 11 11 5369 5369 5369 11 5369 5369 5369 11 11 11 5369 5368 11 5369 11 5369 11 5369 11 11 5368 5369 5368 11 11 11 11 5368 5369 11 5369 5368 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5260 11 5369 11 11 11 5369 11 5368 5368 11 11 11 11 11 5369 11 11 5368 11 11 11 5369 11 5368 5369 11 11 11 11 11 11 11 11 11 5369 11 5369 1539 11 5368 11 5369 5369 11 5369 5369 11 11 11 11 11 11 11 11 5368 11 11 5247 5255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 11 5368 5368 11 5369 11 5369 11 5369 11 11 11 11 11 11 11 11 5368 5369 5369 11 11 11 5369 11 11 11 11 11 11 11 11 11 5368 5369 11 11 11 5261 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 11 5368 11 5369 11 5368 11 5368 11 11 5369 5368 5368 11 11 11 11 11 5369 5368 5368 11 11 11 11 11 11 11 11 11 11 5369 11 5369 11 11 11 5369 11 11 11 11 5368 11 5368 11 11 5368 11 11 5368 11 5368 11 11 11 11 11 11 11 11 11 11 11 5369 5369 11 5369 11 5368 11 5368 11 11 11 5368 11 11 11 11 5368 11 11 11 11 11 5369 11 5369 11 5369 11 5369 11 11 5368 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 5369 11 11 11 11 11 11 11 11 11 11 5368 11 5368 11 11 11 5369 11 11 11 11 11 11 11 5369 5368 5369 11 5368 11 5369 5369 11 5368 5368 11 11 1835 2919 2920 14 14 14 14 14 14 14 14 2915 2916 2917 2918 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 2921 2922 2911 2912 14 14 14 14 14 14 14 14 14 14 14 3990 14 14 3989 3990 14 14 14 3989 14 14 14 2915 2916 1832 1827 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5368 11 5369 11 11 5368 11 5368 11 11 5369 11 5368 5369 5369 11 11 11 11 5368 5368 11 5368 5369 11 5369 5368 11 11 11 11 11 11 5368 11 11 5369 5369 5369 11 5368 11 11 5368 11 11 11 5369 5369 11 11 11 11 11 11 11 11 11 11 5369 11 5368 11 11 19 5368 5368 5368 11 5369 11 5369 11 11 5369 11 5368 11 5368 11 11 11 11 5369 11 11 5368 11 5369 11 5368 11 5369 5368 5369 5368 11 5369 11 11 5368 5369 5369 11 5368 5368 11 5369 11 11 11 11 5368 11 5369 11 5369 11 11 5368 11 11 11 11 11 5368 11 11 11 5369 5368 5368 11 5369 11 5369 11 5368 5368 11 11 11 11 11 11 11 11 5369 11 11 11 11 5368 11 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5254 5266 11 5369 5369 11 11 1539 11 5368 11 5368 11 5369 11 5368 5369 5369 5368 11 11 11 5368 11 11 5368 5369 5369 5368 11 11 11 11 11 11 11 11 5368 11 5369 5368 5369 11 5369 5369 11 5369 5369 11 11 11 11 11 11 11 11 5369 5369 5368 11 5261 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 11 11 11 11 11 5369 5369 11 5368 11 11 11 5368 5369 11 11 11 11 5368 11 11 11 11 11 5368 11 5369 11 5369 11 5369 11 11 11 5369 11 11 11 5381 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5254 5245 11 5369 11 5369 11 5368 5369 11 5368 11 11 11 5368 1539 11 5368 11 5368 5368 5368 11 11 11 5368 5368 5369 5368 5369 5368 5369 5368 11 11 5368 5368 5368 11 11 11 11 11 5368 5369 5368 19 11 5369 11 5369 11 5369 11 11 5368 11 11 11 11 5369 11 11 11 5369 5368 5368 11 11 11 5369 5369 11 1539 11 11 11 11 11 5369 11 5369 11 5369 11 5369 5368 11 11 5369 5369 11 11 11 11 11 11 11 11 5368 11 11 5247 5255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 5368 5369 5369 5369 5369 5368 11 11 11 5369 5369 5369 11 11 5369 11 11 11 5369 11 11 5368 11 11 5368 11 5369 11 5368 11 5368 1539 11 11 5368 11 11 5368 11 11 11 11 11 11 11 11 11 11 11 11 11 1835 2919 2920 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 3989 3990 14 14 14 14 14 14 14 14 14 14 14 14 2923 2924 1834 11 11 5368 11 5368 11 5368 11 5368 11 5369 5368 5368 5368 5369 11 11 5369 11 5368 11 11 11 11 11 1835 1836 1831 3139 3140 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5368 5369 11 11 5368 11 11 5369 5369 11 11 5369 5369 11 5368 5368 11 11 11 5368 11 11 11 5369 11 5368 11 11 11 11 11 11 11 5368 5369 11 11 11 5369 5368 5368 11 5368 19 5368 11 11 11 11 11 11 11 5369 5369 11 11 11 11 11 5369 11 11 5369 11 11 11 11 5369 11 5369 11 11 5368 5369 11 11 5368 5369 11 11 5369 5368 5369 11 5369 5368 5369 11 11 11 5368 5368 11 5369 11 5369 11 11 11 11 11 11 11 11 11 11 11 5369 11 5368 5368 5368 5368 11 11 5369 1539 11 11 5369 5369 5369 5369 11 5368 11 11 11 11 5368 5369 11 5369 11 5368 5368 11 11 5368 5368 11 11 11 11 11 11 11 11 11 5369 11 11 11 11 11 5369 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5260 11 5369 11 5369 11 19 11 11 11 11 11 11 11 5369 11 11 11 19 5368 5368 11 5369 11 11 11 11 11 5368 11 11 5369 5368 11 11 11 11 5368 11 5368 11 19 5369 11 11 5368 11 11 5369 5368 11 5369 11 5369 11 11 5368 5369 5368 11 5381 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5254 5245 5368 11 11 11 5369 11 11 11 5369 5369 11 11 11 11 11 19 5368 5368 11 11 5368 11 11 5368 11 11 11 5368 5368 5368 5368 5368 5369 11 11 5368 11 5369 5368 11 5247 5255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5260 11 11 5369 11 5368 5369 11 11 11 5368 5369 11 5368 11 11 11 11 11 5369 5369 5369 11 11 11 5368 5368 11 5369 11 5369 11 5369 11 11 11 11 11 5369 11 11 11 5368 11 11 11 11 11 5369 5368 11 11 5368 11 11 11 11 11 11 11 5368 11 5368 11 5369 5369 11 11 11 5368 5368 11 11 11 11 5369 11 5368 11 11 5368 11 11 5369 11 5369 11 11 5369 5368 11 5369 11 5369 11 5369 11 11 5369 5369 5369 5369 11 5261 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5254 5245 11 11 11 11 11 5369 11 11 5369 5368 11 11 11 11 11 5369 11 11 11 11 11 11 11 5369 5369 11 11 11 11 11 11 11 11 5369 5369 5368 11 11 11 11 5369 5369 5369 11 11 11 5369 11 11 11 5368 11 11 11 11 11 5368 11 11 1539 5369 11 11 5368 11 11 11 5369 5369 11 11 5368 5368 11 11 5368 5369 5368 11 11 11 11 5369 11 11 11 11 11 11 11 5368 5368 5368 1539 5368 5368 5368 11 11 5369 11 11 11 5368 11 5369 11 11 11 11 11 11 11 11 1835 3143 3144 1838 0 0 0 0 0 0 0 0 0 0 0 0 + 5368 11 11 11 11 11 11 11 5368 11 5369 5368 11 11 5369 11 11 5368 5369 11 5368 11 5368 5369 5369 5369 11 11 5369 11 11 5368 11 5369 5368 11 11 5368 5369 11 11 11 11 5369 5368 5369 11 11 11 11 11 11 11 5369 11 5369 11 11 11 11 11 11 11 5368 5368 11 11 5368 11 11 11 11 5368 5368 5368 5369 11 11 5368 11 5369 5369 5369 11 5368 11 5368 11 5369 5369 11 11 5369 5368 5369 5369 11 11 5368 5368 11 5369 5369 11 11 11 11 5369 11 5369 11 11 11 11 11 11 11 11 11 11 11 11 5369 11 11 11 11 5369 11 5368 5369 5368 5369 11 11 19 11 5368 11 5369 5369 11 11 11 5368 5369 5368 11 11 11 11 11 11 5369 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5380 11 5369 5369 11 11 11 5369 11 5368 5369 5368 5369 5369 11 11 11 5369 11 11 5368 11 11 19 11 11 11 5369 11 5369 11 11 5368 11 11 11 11 11 5368 11 5369 11 11 5369 5369 11 5368 5368 11 11 11 11 11 11 5368 5368 11 11 11 11 5247 5255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5260 11 11 5369 11 5368 5368 11 5369 11 11 11 11 5368 5368 11 11 11 11 11 11 11 5368 11 11 11 11 5369 11 11 5368 11 5369 11 11 5369 5368 5368 5368 11 11 11 11 5261 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5380 11 11 11 5368 5369 5369 11 11 11 11 11 5368 11 11 11 11 11 11 5369 5368 5368 11 5369 11 11 11 5369 5368 5369 5368 11 5369 11 11 11 11 5368 11 5368 5369 5369 5368 11 11 5368 5369 5369 5369 5368 5368 11 11 11 11 11 5368 11 5368 11 11 11 5369 5368 5368 11 5368 5369 11 11 11 11 5368 11 5368 5368 11 11 11 11 11 11 5369 11 11 5369 11 11 11 5368 5369 5369 5369 11 11 11 11 11 5369 11 5369 5368 11 5381 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5260 11 11 5368 11 11 5369 11 11 11 11 5368 11 11 5369 5369 11 11 5369 5368 5368 5369 11 11 11 11 11 11 11 5368 11 5368 11 5369 5369 11 5368 11 5369 11 11 5368 11 11 11 11 5369 11 11 11 5369 11 5368 11 11 5369 11 11 11 11 11 5368 11 11 11 11 5369 11 11 11 5369 5368 5369 5368 11 5369 11 11 5369 11 5369 11 5368 5368 11 5369 11 11 11 11 5369 11 11 5368 11 5368 11 5369 11 11 11 11 19 11 5368 11 5368 11 5369 11 11 11 11 11 11 11 11 11 3147 1840 1838 0 0 0 0 0 0 0 0 0 0 0 + 5369 5368 5369 11 11 5368 11 5368 11 5368 11 5368 11 5369 11 5368 11 11 5369 11 5368 5368 11 11 5368 11 11 11 5368 5369 5369 11 11 11 5368 11 5368 11 11 11 5369 11 11 11 5369 5368 5369 11 11 5369 5368 11 5369 11 11 5369 11 5368 11 11 11 11 5368 5368 11 11 5368 5369 11 11 11 11 11 11 11 11 11 11 5368 11 5368 11 11 5368 11 11 11 11 11 11 11 5369 11 11 5368 11 5369 5369 11 5368 11 5369 11 5369 11 5368 5369 5368 11 11 11 5369 11 11 11 11 11 5368 5369 11 5368 11 5368 5368 5368 5369 11 11 11 11 11 11 5368 11 5369 11 5368 11 5368 11 5368 5368 11 11 11 5369 11 11 5369 11 5368 5369 5369 5368 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 5369 5369 11 11 5368 5368 5369 5369 11 11 5369 11 11 5368 11 5369 5368 11 11 5368 11 11 11 5368 11 11 11 11 5369 11 11 5368 11 11 11 5369 11 11 11 11 5369 5369 11 5368 5368 11 11 11 11 5368 11 11 11 5368 11 11 5368 11 5261 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5380 11 11 11 11 11 11 11 11 11 11 5369 11 11 11 11 11 11 11 11 5368 5369 5369 5369 11 5369 11 19 5368 5369 11 11 11 11 5368 5369 11 5369 11 11 11 5369 11 5381 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 5368 5368 5368 5368 11 11 11 11 11 5368 5369 11 5369 5368 5368 5369 11 11 11 5368 11 11 11 5369 11 11 11 11 5368 5368 11 11 11 5368 5368 5368 11 11 11 11 11 5368 11 11 11 5368 5368 5369 5369 11 11 11 5369 11 11 5369 5369 11 11 11 11 19 11 11 5368 11 5368 11 5368 11 11 11 11 11 5369 11 5369 11 5368 5368 11 5369 11 11 11 11 5369 11 11 5368 11 5369 1539 11 11 5369 11 11 11 11 5247 5255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5380 11 5368 11 11 5368 11 5368 11 11 5369 11 5369 11 11 11 11 11 11 5368 5368 5369 11 11 11 11 11 11 11 5368 11 5369 5368 11 11 5369 11 11 5368 5369 5369 5368 11 5368 5369 5369 5368 11 11 5369 11 5369 11 11 5369 11 11 11 11 5368 11 5369 5369 11 11 11 11 11 5369 11 5369 11 5368 5369 11 5368 11 5369 5369 5368 5369 5369 5368 11 11 11 5369 5368 11 11 5368 5368 5369 5369 11 11 11 11 5368 11 11 11 11 11 11 5369 5368 5368 11 5369 5369 11 11 5368 5368 5369 5368 11 11 1842 1840 1844 0 0 0 0 0 0 0 0 0 0 + 5369 11 5368 11 5369 11 5368 11 11 5369 11 5368 5369 5369 11 11 11 5368 5369 5369 11 11 11 11 11 11 11 11 5368 11 11 5368 11 11 11 11 11 5368 11 5369 5369 11 11 11 11 5369 5368 11 5368 5369 11 11 11 11 5369 11 11 11 5368 5368 11 11 11 11 5369 11 5368 5368 5368 5368 5368 11 11 11 5369 5369 5369 11 11 1539 11 5369 5369 11 11 11 11 5368 11 5368 11 11 5368 11 5369 5369 11 11 11 11 11 5368 11 11 5368 11 11 11 11 11 5368 11 11 5369 11 11 5369 11 5368 11 5369 5368 1539 5368 11 11 11 11 5368 11 11 5369 5368 5368 11 11 11 11 5368 5369 5368 11 11 5368 5369 5369 5368 11 11 11 11 5368 11 5368 5369 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 5254 5245 5369 5369 11 11 11 5369 5369 11 11 11 11 11 11 11 11 11 5368 11 5369 11 11 11 11 5368 11 5368 5369 11 5368 5369 11 5368 11 5369 11 11 11 5368 11 5369 5368 11 11 11 5368 11 11 5369 5369 11 11 11 11 11 11 5369 11 11 11 11 5381 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 5368 11 11 11 11 11 5369 5369 11 11 11 11 11 5368 5369 5368 11 11 11 5369 11 5368 5369 5369 5368 11 11 5369 11 11 5369 5368 11 11 11 11 5368 11 5369 5369 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 11 11 11 5369 5368 11 11 11 11 11 11 5369 11 11 11 11 5368 11 11 5369 11 5368 11 11 11 11 5369 5368 11 11 5369 11 5369 11 5368 5368 11 5369 11 11 5369 5368 11 5368 11 11 5368 5369 11 5368 11 11 11 5369 5369 5369 11 5368 11 11 5369 11 11 5369 11 5368 11 11 5369 11 19 5368 11 5368 5368 11 11 11 11 5368 5369 5368 11 11 5368 11 11 11 5368 5369 5369 11 11 11 5369 11 11 5369 5368 5369 11 5261 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 5368 11 5368 11 11 5368 5369 11 5368 11 5368 11 11 11 11 5368 11 11 11 11 5369 11 5368 5368 11 11 11 11 5368 5368 11 11 11 11 11 11 11 5368 5368 11 5369 11 11 11 11 11 11 5368 11 11 11 11 11 11 11 5368 11 11 11 11 5369 5368 5368 11 11 11 5369 11 11 11 11 11 5368 5369 5368 11 11 11 11 5368 11 11 5368 5369 5369 5369 5368 11 11 5369 11 11 5368 11 11 5369 5369 11 11 5368 11 11 11 5369 11 5368 11 5369 11 5368 5368 11 11 5368 5369 11 11 1842 1846 0 0 0 0 0 0 0 0 0 0 + 11 11 11 5368 11 11 5369 5368 11 11 5368 5369 11 5368 5368 11 11 11 11 11 5368 5368 11 11 5368 11 11 5368 5369 11 11 5368 5369 11 5368 11 11 11 11 11 11 5369 11 11 11 11 11 5369 11 11 11 11 11 11 5369 5369 11 5369 5368 11 5368 5369 5368 11 5368 11 11 11 5369 5368 11 11 5369 5368 11 11 11 11 11 5368 11 5369 5368 5369 11 11 11 11 11 11 11 11 11 11 11 11 11 5368 11 5368 5368 11 5369 5369 5368 11 5368 5369 5369 5369 5368 11 5369 11 11 5368 11 5368 11 11 11 11 11 5368 11 11 11 5368 11 11 5368 11 11 11 11 11 11 5369 5369 11 5368 11 5369 5369 5368 11 11 11 5369 11 5368 5369 5369 5368 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 5260 5368 5369 11 11 11 11 5368 11 5368 11 5369 5369 11 11 11 5368 5369 5368 11 5368 5368 5368 11 11 11 5369 11 11 5368 5369 11 11 5368 11 11 11 5369 5369 11 11 11 11 11 5369 5369 11 5368 5369 11 11 5368 5368 11 11 5369 11 5369 11 11 11 11 5247 5255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5254 5245 5368 11 11 11 5369 5369 11 11 5368 5368 11 11 5369 11 11 5368 5369 5369 11 5369 11 11 5369 11 5369 11 5368 5369 11 11 11 5368 11 11 5369 11 11 11 11 11 11 5369 5247 5255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5254 5245 11 11 11 11 5369 5368 11 11 5368 11 11 11 5368 5369 11 11 5369 11 11 11 11 5368 11 11 11 11 11 11 5369 5369 11 11 11 11 11 11 11 5368 11 5369 11 11 11 11 11 5369 11 5369 11 5369 11 11 5368 11 11 11 11 5369 11 11 11 5368 11 11 5368 11 11 11 5369 11 11 5369 5368 11 11 11 11 5368 11 5368 5369 5368 11 5369 11 11 11 11 5369 5368 11 11 5368 11 11 11 11 11 11 5368 11 11 11 5381 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5254 5245 11 11 5368 5369 11 11 5368 5368 5369 11 11 5369 11 5369 5368 11 5369 11 5369 5368 5369 11 11 11 11 11 5368 11 5369 5369 11 11 5369 11 5369 11 11 11 5369 11 11 11 5368 11 5368 5369 5369 11 11 11 11 11 11 11 11 5369 11 11 5369 5369 11 5368 11 5368 11 5369 11 5368 5368 11 11 11 11 5369 5369 11 5368 11 11 11 11 5368 11 11 11 5369 11 11 11 5368 5369 11 11 11 11 5368 11 11 11 5368 5368 5368 11 11 11 11 5368 11 5368 11 5369 11 11 11 5369 11 11 11 11 11 1848 1844 0 0 0 0 0 0 0 0 0 + 11 5369 11 5368 5368 11 11 11 11 5368 11 11 11 5369 11 11 5369 11 11 11 5369 11 5368 5369 5369 5369 5368 19 11 11 5369 5368 5368 11 5368 5369 11 5368 11 11 5368 11 11 11 5368 11 5368 11 11 5369 5369 11 11 11 11 11 11 11 11 5368 5369 5368 11 5369 11 11 11 5369 5368 11 5369 19 11 5369 11 11 11 11 11 11 5369 11 11 11 5369 5368 5368 11 5369 11 5368 5368 11 11 5369 5369 11 5368 11 11 11 5369 11 5368 5368 11 5369 11 11 11 11 11 11 5369 5368 11 11 11 11 11 11 5368 11 5368 5368 5369 11 5369 5369 11 5369 11 11 11 5368 5368 5369 5369 11 11 5369 11 5369 11 11 11 11 11 5368 5368 11 11 5368 11 11 5368 12 0 0 0 0 0 0 0 0 0 0 0 0 0 5380 5368 11 11 11 11 5369 5369 11 11 5369 11 5368 11 5369 11 5368 5368 11 5368 5369 5368 11 11 11 5369 11 11 11 11 11 5368 5369 11 11 5369 11 11 11 11 5368 11 11 11 5369 5369 11 5369 5369 11 11 5369 5369 11 5368 11 5368 5368 11 11 11 11 11 5261 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5260 11 5368 11 5368 11 11 5368 19 5369 5368 11 11 11 11 11 1539 11 11 5368 5368 5368 11 5368 11 11 11 11 11 5369 11 11 11 5369 5368 5368 5368 5369 11 5369 11 11 5368 11 11 5261 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5260 11 11 11 11 5369 11 5369 11 11 5369 11 11 11 11 11 5369 5368 11 5368 11 5368 5368 11 5369 11 5368 5368 11 11 5368 5368 11 11 11 5368 5369 5368 11 11 11 5369 11 5369 11 11 11 5369 5368 11 11 5369 5368 11 11 11 11 5369 11 5369 5369 5369 11 5369 5369 11 5369 5369 11 11 5368 11 5369 5368 11 11 11 5368 11 11 11 11 5368 11 11 11 5369 11 11 11 5368 11 11 11 5368 11 11 5369 11 11 5369 5369 11 11 11 5247 5255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5260 11 11 5368 5369 11 11 11 11 11 11 5368 5369 11 5368 11 5369 11 5369 11 5369 5368 5369 11 11 11 11 11 5368 5368 11 11 5368 5368 11 5368 5368 11 11 11 11 11 5368 5368 11 11 5368 11 11 5368 11 11 11 5368 11 11 5369 11 11 11 11 5368 11 11 11 5368 11 5368 11 11 11 11 5368 11 5368 5368 11 11 5368 11 5369 5368 5369 11 5369 11 5369 11 11 11 11 5369 5368 11 11 5369 5368 11 11 11 11 5369 11 11 5369 11 11 11 11 5368 11 5368 11 11 5368 5368 11 11 5368 5368 11 11 1850 1846 0 0 0 0 0 0 0 0 0 + 11 11 5369 5369 11 11 11 11 11 11 11 11 5369 5369 5368 11 11 11 5369 11 11 11 11 5369 11 5369 11 5368 11 11 5368 11 11 11 5369 5368 5368 5368 11 5368 5368 5369 11 11 11 5368 5368 5369 5368 5369 5368 5369 5368 11 11 5368 5369 5368 11 11 11 11 11 5369 5369 5369 5368 11 5369 11 11 11 5369 11 11 5368 11 11 11 5368 11 5368 11 5368 11 5369 5369 11 11 11 11 11 5368 5368 11 11 11 11 11 11 11 11 5369 11 11 11 5369 11 5369 11 11 11 11 11 11 11 11 11 5368 5369 11 11 5368 5368 5369 11 11 11 11 11 11 5368 11 5369 11 5368 11 5369 5368 11 11 5368 5369 5369 19 5369 11 5369 5368 11 11 11 5368 5368 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 10 5368 11 11 5368 11 5368 11 5368 11 5368 5368 11 11 5368 11 11 5369 11 11 11 11 5369 11 11 5368 5369 5369 5369 5369 5369 5369 5369 11 11 5368 11 5369 5369 5369 11 5369 5369 11 5368 11 5369 11 5368 11 11 5369 11 5368 5369 5368 11 11 5369 11 11 11 11 5381 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5380 11 5369 11 11 11 5369 5368 5369 11 5369 11 5369 5368 11 11 11 5368 5368 5368 11 5368 5368 5368 11 11 5368 11 11 5369 11 11 5369 11 5368 11 5369 5368 5368 5369 11 5368 5368 5368 11 5381 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5380 11 11 5369 11 5369 11 5369 11 5369 11 11 5368 5368 5368 5369 11 5369 5368 5369 11 5369 5369 11 11 11 5369 11 1539 5368 11 11 11 11 11 5368 5369 5369 11 5369 5369 5369 11 11 11 5368 5368 5368 5368 5368 5368 5368 5368 5369 5369 11 5368 11 5369 5369 11 11 11 11 11 11 11 5368 11 5368 11 5368 11 5368 11 5368 5368 11 5368 11 11 11 5368 11 11 11 5369 5369 11 5369 5369 5368 11 11 11 5369 5369 5369 11 11 5368 11 11 11 11 11 5261 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5380 11 11 5368 5369 5369 5369 5369 5369 5368 5368 5368 5369 11 11 5369 5368 11 11 5369 11 11 11 11 5369 11 5369 11 11 5368 11 11 5369 5369 5368 11 11 5369 11 11 11 5368 11 11 11 11 5368 11 5369 11 5369 11 5368 11 5369 11 11 11 11 11 5368 11 11 11 5369 5368 5369 11 11 5368 11 11 11 11 11 11 11 5368 5369 11 11 11 5369 11 5369 5369 5369 5368 11 5368 11 11 5368 11 11 5368 5369 11 5369 11 11 11 11 5368 11 5369 11 11 11 11 5368 1539 5369 11 5368 11 5368 11 5368 11 11 11 11 1848 1844 0 0 0 0 0 0 0 0 ) ) (tilemap @@ -210,51 +201,51 @@ logo.set_visible(true); (width 580) (height 45) (tiles - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2126 2469 4780 2469 2469 2469 2469 4780 4780 2469 2469 4780 2469 4780 4780 2469 2469 2469 2469 4780 2469 4780 4780 4780 4780 2469 4780 2469 2469 2469 2469 2469 2469 2469 2469 2469 2469 2469 4780 4780 4780 2469 2469 2469 4780 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2130 2469 4780 4780 2469 4780 4780 4780 4780 4780 4780 4780 2469 4780 2469 4780 4780 2469 4780 4780 2469 4780 4780 4780 4780 2469 2469 4780 4780 4780 4780 4780 4780 4780 4780 4780 4780 4780 2469 4780 2469 2469 2469 4780 2469 4780 2128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2130 2469 2469 4780 2469 2469 4780 2469 4780 2469 2469 4780 4780 2469 2469 2469 2469 2469 4780 4780 4780 2469 4780 4780 4780 2469 4780 2469 2469 2469 2469 2469 2469 2469 2469 2469 2469 2469 4780 2469 4780 2469 2469 2469 4780 2469 2469 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2126 4780 2469 4780 2469 4780 2469 4780 2469 2469 4780 2469 4780 4780 2469 2469 4780 4780 2469 4780 4780 4780 2469 2469 4780 2469 4780 2469 4780 4780 4780 4780 4780 4780 4780 4780 4780 4780 2469 2469 4780 2469 2469 2469 2469 4780 4780 4780 2469 2128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2126 2469 4780 2469 2469 4780 2469 2469 4780 2469 4780 2469 4780 2469 4780 2469 4780 4780 4780 4780 4780 4780 2469 2469 2469 4780 2469 4780 2469 2469 2469 2469 2469 2469 2469 2469 2469 4780 4780 2469 4780 2469 2469 2469 4780 2469 2469 2469 4780 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2130 2469 2469 4780 2469 2469 4780 4780 4780 4780 4780 2469 2469 4780 2469 4780 2469 2469 4780 4780 4780 2469 4780 4780 4780 2469 2469 2469 4780 4780 4780 4780 4780 4780 4780 4780 2469 2469 4780 2469 4780 2469 2469 4780 2469 4780 4780 2469 4780 4780 2128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2126 4780 4780 2469 4780 2469 2469 2469 4780 2469 4780 2469 4780 4780 2469 2469 4780 2469 2469 2469 4780 2469 2469 2469 2469 2469 4780 4780 4780 2469 2469 2469 2469 2469 2469 4780 4780 4780 2469 2469 4780 4780 2469 4780 4780 2469 2469 2469 4780 4780 2124 2133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2126 2469 4780 2469 2469 4780 2469 4780 2469 4780 2469 2469 2469 2469 4780 2469 4780 2469 4780 2469 2469 2469 4780 4780 4780 4780 2469 4780 2469 4780 4780 4780 4780 4780 4780 2469 2469 2469 4780 2469 4780 4780 4780 4780 2469 4780 4780 2469 4780 4780 2128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2131 2125 4780 2469 4780 2469 4780 4780 4780 4780 4780 2469 4780 2469 4780 2469 4780 4780 4780 4780 4780 4780 2469 2469 2469 2469 4780 2469 4780 4780 2469 2469 2469 2469 2124 2132 2132 2132 2125 2469 4780 4780 4780 2469 4780 2469 4780 4780 4780 2124 2133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2126 2469 4780 2469 2469 4780 2469 2469 2469 2469 4780 4780 2469 2469 2469 4780 4780 2469 2469 2469 2469 2469 4780 4780 2469 2469 4780 4780 2469 2124 2132 2132 2132 2133 0 0 0 2131 2132 2132 2125 4780 2469 2469 2469 2469 2124 2132 2133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2131 2125 4780 2469 2469 2469 4780 4780 2469 2469 4780 4780 2469 2469 4780 2469 2469 4780 4780 2124 2132 2132 2125 4780 4780 2469 4780 2124 2132 2133 0 0 0 0 0 0 0 0 0 0 2131 2132 2132 2132 2132 2132 2133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2131 2132 2125 4780 4780 2469 2469 2469 2469 4780 2469 4780 4780 2469 4780 2124 2132 2132 2133 0 0 2131 2132 2132 2132 2132 2133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2131 2132 2132 2125 2469 2469 2469 2469 4780 2124 2132 2132 2132 2133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2131 2132 2132 2132 2132 2132 2133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 4780 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 4780 4780 2129 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 4780 2469 4780 4780 2129 2123 0 0 0 0 0 0 0 0 0 2121 2122 2122 2122 2130 2469 2469 2469 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2122 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2122 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 4780 2469 2469 2469 4780 2129 2122 2122 2123 0 0 0 0 2121 2122 2130 2469 4780 2469 4780 2469 4780 2469 4780 2129 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2130 4780 2469 4780 4780 2129 2122 2123 0 0 0 0 0 0 0 0 0 2121 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2130 2469 2469 2469 2469 2129 2122 2122 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2122 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 4780 4780 4780 2469 4780 2469 2469 4780 2129 2122 2122 2122 2122 2130 4780 4780 2469 2469 4780 4780 4780 2469 2469 2469 4780 2469 2469 2129 2122 2122 2122 2123 0 0 0 0 0 2121 2122 2122 2130 2469 2469 4780 4780 2469 4780 2469 4780 2129 2122 2122 2123 0 0 0 2121 2122 2122 2130 2469 2469 2129 2122 2123 0 0 0 0 0 0 0 0 2121 2122 2130 2469 4780 4780 2469 4780 4780 2469 2469 2469 4780 2469 2129 2122 2123 0 0 0 0 0 0 2121 2122 2122 2123 0 0 0 0 0 0 0 0 0 2121 2122 2130 2469 2469 2469 2129 2122 2123 0 0 0 0 0 0 0 2121 2122 2122 2130 4780 2469 4780 4780 2129 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 2469 2469 2469 4780 2469 2469 4780 2469 2469 4780 4780 4780 4780 4780 2469 2127 2469 4780 4780 2469 2469 4780 4780 4780 4780 2469 4780 2469 2469 2469 2469 2129 2122 2122 2122 2122 2122 2130 2469 2469 4780 4780 2469 2469 2469 4780 4780 2469 4780 4780 4780 4780 2129 2122 2122 2122 2130 2469 2469 4780 4780 2469 4780 2469 2129 2123 0 0 0 0 0 2121 2122 2130 4780 2469 4780 4780 2469 4780 2469 4780 2469 2469 2469 2469 2469 4780 4780 2129 2122 2123 0 0 2121 2122 2130 2469 4780 2129 2123 0 0 0 0 0 2121 2122 2122 2130 4780 2469 4780 4780 4780 4780 4780 2129 2122 2123 0 0 0 2121 2122 2130 2469 4780 4780 2469 2469 2469 2469 4780 4780 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 2469 2469 4780 2469 2469 4780 2469 2469 2469 2469 2469 4780 4780 2469 2469 4780 4780 2469 2469 2469 4780 4780 4780 2469 4780 4780 4780 2469 2469 2469 4780 4780 2469 2469 2469 2469 2469 2469 4780 4780 2469 4780 2469 2469 2469 4780 2469 2469 2469 4780 4780 2469 4780 4780 2469 2469 4780 4780 2469 2469 4780 2469 2469 4780 4780 2129 2122 2122 2122 2122 2122 2130 2469 2469 4780 2469 2469 4780 4780 4780 2469 4780 2469 4780 2469 2469 4780 4780 2469 2469 2469 2129 2122 2122 2130 2469 4780 2469 4780 4780 2129 2123 0 2121 2122 2122 2130 4780 2469 2469 2469 4780 2469 2469 2469 2469 2469 2469 4780 2129 2122 2122 2122 2130 2469 4780 4780 4780 2469 2469 2469 2469 4780 2469 2469 4780 2129 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 2469 4780 2469 2469 2469 4780 4780 4780 2469 2469 4780 2469 4780 2469 4780 4780 4780 4780 4780 4780 4780 2469 2469 2469 2469 4780 4780 2469 4780 4780 4780 2469 4780 2469 4780 2469 4780 2469 2469 4780 4780 4780 2469 4780 2469 2469 2469 4780 2469 4780 4780 4780 2469 4780 4780 2469 4780 2469 2469 2469 2469 2469 4780 2469 2469 4780 2469 2469 2469 2469 4780 2469 2469 2469 4780 4780 4780 4780 4780 4780 4780 2469 2469 4780 4780 2469 2469 4780 2469 4780 4780 2469 4780 4780 2469 2469 4780 2469 4780 2469 4780 2129 2122 2130 4780 2469 2469 4780 2469 2469 2469 4780 2469 4780 4780 4780 4780 4780 4780 4780 2469 2469 2469 2469 2469 2469 4780 2469 2469 4780 2469 2469 2469 2469 2469 2469 2469 4780 2469 2129 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 2469 4780 4780 4780 2469 2469 2469 4780 2469 4780 2469 2469 4780 2469 4780 4780 2469 4780 4780 2469 4780 2469 2469 2469 4780 2469 2469 4780 2469 2469 4780 4780 4780 4780 4780 4780 4780 4780 2469 2469 4780 2469 2469 2469 2469 4780 2469 4780 4780 4780 4780 2469 4780 2469 4780 2469 4780 2469 2469 2469 2469 2469 2469 2469 2469 2469 4780 2469 2469 4780 4780 2469 2469 2469 4780 4780 4780 2469 2469 2469 2469 2469 2469 4780 2469 4780 4780 4780 2469 4780 4780 2469 4780 4780 2469 2469 2469 2469 2469 2469 2469 2469 4780 4780 2469 4780 4780 2469 4780 2469 2469 4780 2469 4780 2469 2469 4780 4780 4780 4780 4780 4780 4780 4780 2469 2469 2469 4780 4780 4780 2469 4780 4780 4780 2469 2469 4780 2469 4780 2469 2469 2129 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 2469 2469 2469 4780 2469 2469 4780 2469 4780 2469 4780 2469 2469 4780 4780 2469 2469 4780 2469 2469 4780 4780 4780 4780 2469 4780 4780 4780 4780 2469 4780 2469 4780 2469 4780 2469 4780 2469 2469 2469 4780 2469 2469 4780 4780 4780 2469 4780 4780 4780 4780 4780 2469 2469 2469 2469 4780 4780 2469 2469 4780 2469 2469 4780 2469 2469 2469 4780 2469 4780 4780 4780 2469 2469 4780 4780 2469 4780 4780 2469 2469 4780 2469 2469 4780 2469 4780 4780 2469 4780 4780 4780 2469 2469 4780 4780 4780 4780 4780 2469 4780 4780 2469 2469 4780 2469 2469 2469 4780 4780 4780 4780 2469 2469 2469 4780 4780 2469 2469 2469 4780 4780 2469 2469 4780 2469 2469 2469 2469 4780 2469 2469 2469 4780 2469 4780 2469 2469 4780 4780 2469 4780 2469 2129 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 2469 4780 4780 4780 2469 4780 2469 2469 4780 2469 4780 2469 4780 2469 4780 2469 4780 4780 4780 4780 4780 4780 2469 2469 2469 4780 2469 4780 2469 2469 2469 2469 2469 2469 2469 2469 2469 2469 4780 2469 4780 2469 2469 2469 4780 2469 2469 2469 4780 4780 4780 4780 4780 2469 2469 4780 4780 4780 4780 4780 4780 4780 4780 2469 2469 2469 4780 4780 2469 2469 2469 4780 2469 4780 2469 4780 2469 4780 2469 4780 2127 2469 2469 2469 4780 2469 4780 4780 4780 2469 2469 2469 4780 4780 2469 4780 2469 4780 4780 4780 4780 4780 2469 2469 2469 4780 4780 4780 2469 4780 4780 4780 2469 2469 4780 2469 2469 4780 4780 2469 4780 4780 2469 4780 4780 2469 2469 2469 4780 2469 2469 2469 4780 2469 4780 2469 4780 2469 2469 2469 4780 2469 4780 2469 2469 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 4780 4780 2469 2469 4780 2469 4780 2469 4780 2469 4780 4780 2469 2469 4780 2469 4780 2469 2469 4780 2469 2469 2469 4780 2469 2469 2469 2469 4780 4780 2469 4780 2469 2469 4780 2469 2469 4780 2469 2469 2469 4780 2469 4780 4780 4780 2469 2469 2469 4780 4780 2469 4780 4780 4780 4780 4780 4780 4780 2469 2469 2469 4780 4780 4780 2469 2469 4780 4780 2469 4780 2469 4780 2469 4780 4780 2469 2469 4780 2469 4780 2469 2469 2469 2469 4780 2469 4780 2469 4780 2469 2469 4780 4780 2469 4780 4780 4780 4780 4780 4780 4780 2469 4780 2469 4780 4780 4780 4780 4780 2469 2469 2469 4780 4780 2469 4780 2469 4780 2469 4780 2469 4780 2469 2469 2469 2469 4780 2469 2469 2469 4780 2469 2469 4780 4780 4780 2469 2469 4780 4780 2469 4780 2469 4780 2469 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 4780 2469 2469 2469 4780 2469 4780 2469 2469 4780 4780 4780 4780 2469 2469 4780 4780 4780 4780 2469 4780 2469 4780 4780 2469 2469 2469 4780 4780 2469 2469 2469 2469 4780 4780 4780 2469 2469 4780 4780 4780 2469 2469 4780 2469 4780 4780 2469 2469 2469 4780 4780 2469 2469 2469 2469 4780 4780 2469 2469 2469 4780 4780 4780 2469 4780 4780 4780 2469 4780 2469 4780 4780 2469 2469 2469 2469 4780 4780 2469 4780 2469 4780 4780 4780 4780 2469 2469 2469 2469 2469 2469 4780 2469 4780 2469 4780 2469 4780 2469 4780 4780 2469 2469 2469 4780 2469 2469 4780 2469 4780 4780 4780 4780 2469 2469 4780 2469 2469 4780 2469 2469 4780 4780 4780 2469 4780 2469 4780 2469 2469 2469 4780 2469 4780 2469 2469 2469 4780 4780 2469 4780 2469 2469 2469 2469 2469 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 4780 4780 4780 2469 4780 4780 2469 2469 4780 2469 4780 2469 2469 2469 4780 2469 4780 2469 4780 2469 4780 2469 2469 4780 4780 4780 4780 4780 2469 4780 2469 4780 2469 4780 2469 4780 2469 2469 4780 4780 2469 2469 2469 4780 4780 2469 2469 2469 2469 2469 2469 2469 2469 4780 4780 2469 2469 4780 2469 2469 4780 4780 4780 2469 4780 4780 4780 2469 4780 2469 2469 2469 4780 4780 2469 2469 2469 2469 2469 4780 4780 2469 4780 4780 4780 4780 2469 4780 4780 2469 4780 4780 2469 4780 2469 4780 2469 4780 2469 4780 2469 2469 4780 2469 4780 4780 4780 4780 4780 2469 4780 2469 2469 2469 2469 2469 4780 4780 2469 2469 2469 2469 2469 2469 4780 4780 4780 2469 4780 4780 2469 2469 4780 2469 2469 4780 2469 4780 2469 2469 2469 2469 2469 4780 4780 2469 4780 4780 2128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 4780 4780 2469 4780 2469 2469 2469 2469 2469 2469 4780 4780 2469 2469 2469 2469 2469 4780 4780 4780 2469 4780 4780 4780 2469 4780 2469 4780 4780 4780 4780 4780 4780 4780 4780 4780 4780 2469 4780 2469 4780 4780 4780 2469 2469 2469 2469 2469 2469 2469 2469 4780 2469 4780 2469 2469 2469 4780 4780 2469 4780 2469 2469 2469 4780 2469 4780 2469 4780 4780 4780 4780 4780 4780 2469 2469 4780 4780 4780 4780 4780 2469 4780 2469 2469 2469 4780 2469 2469 2469 4780 4780 2469 2469 2469 2469 2469 2469 2469 2469 4780 4780 2469 4780 4780 2469 4780 4780 4780 2469 2469 2469 4780 4780 4780 4780 4780 4780 4780 4780 4780 2469 2469 4780 2469 4780 4780 4780 2469 4780 4780 4780 2469 2469 2469 2469 2469 4780 4780 2469 2469 2469 2469 2469 2469 2469 2469 4780 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 4780 2469 4780 4780 2469 4780 2469 4780 2469 4780 4780 2469 2469 4780 4780 2469 4780 4780 2469 2469 2469 2469 4780 2469 2469 2469 2469 4780 2469 4780 2469 4780 2469 4780 2469 2469 4780 4780 4780 4780 4780 4780 2469 2469 4780 2469 2469 2469 2469 2469 4780 4780 4780 4780 2469 2469 4780 4780 4780 4780 4780 4780 4780 4780 4780 2469 4780 2469 2469 2469 2469 4780 2469 2469 4780 2469 2469 4780 4780 4780 4780 4780 2469 4780 2469 2469 4780 2469 2469 2469 4780 4780 2469 2469 2469 2469 2469 2469 2469 2469 4780 4780 2469 4780 4780 4780 2469 2469 2469 2469 2469 4780 4780 2469 4780 4780 4780 4780 2469 2469 4780 4780 2469 4780 4780 4780 4780 2469 4780 4780 4780 2469 2469 2469 4780 4780 2469 2469 4780 2469 4780 4780 2469 4780 2469 4780 4780 4780 2469 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 4780 4780 4780 4780 2469 4780 4780 4780 2469 4780 2469 4780 2469 4780 2469 2469 2469 2469 4780 2469 4780 4780 4780 4780 2469 4780 4780 2469 2469 2469 2469 2469 2469 2469 2469 4780 4780 2469 4780 4780 2469 4780 4780 4780 2469 4780 2469 2469 2469 2469 2469 4780 2469 4780 4780 2469 4780 2469 4780 4780 4780 2469 2469 2469 4780 2469 2469 2469 2469 4780 4780 2469 4780 2469 4780 2469 4780 2469 2469 4780 4780 4780 2469 4780 2469 2469 4780 2469 4780 2469 4780 4780 4780 4780 4780 4780 4780 4780 2469 2469 4780 4780 2469 4780 2469 4780 4780 4780 2469 2469 4780 4780 2469 4780 4780 2469 4780 4780 2469 4780 2469 4780 2469 2469 2469 2469 4780 2469 2469 2469 4780 4780 4780 2469 2469 4780 2469 4780 2469 4780 2469 4780 4780 2469 2469 2469 4780 4780 4780 4780 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2130 4780 4780 2129 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 2469 4780 2469 4780 4780 2469 4780 2469 4780 4780 2469 2469 2469 2469 2469 4780 4780 4780 4780 2469 2469 4780 2469 2469 2469 2469 2469 4780 2469 4780 2469 4780 4780 2469 4780 2469 2469 2469 2469 4780 2469 4780 4780 2469 4780 4780 4780 2469 2469 4780 2469 4780 4780 4780 4780 4780 4780 2469 4780 2469 4780 2469 4780 4780 2469 2469 2469 2469 4780 2469 4780 2469 4780 4780 2469 4780 2469 4780 2469 4780 4780 4780 4780 2469 4780 4780 2469 4780 2469 2469 2469 4780 2469 2469 2469 2469 2469 2469 4780 4780 2469 2469 2469 4780 2469 2469 4780 2469 4780 4780 4780 2469 2469 4780 2469 4780 2469 4780 2469 2469 4780 4780 2469 2469 4780 2469 4780 4780 4780 2469 2469 2469 4780 2469 4780 2469 2469 2469 2469 4780 4780 4780 4780 4780 4780 4780 4780 2469 4780 4780 4780 2128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2122 2130 2469 2469 2469 2469 2469 2129 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 2469 2469 4780 4780 2469 4780 4780 2469 2469 4780 4780 2469 2469 4780 2469 2469 4780 4780 4780 2469 4780 4780 4780 2469 4780 2469 2469 4780 4780 4780 4780 4780 4780 2469 2469 4780 4780 4780 2469 2469 2469 4780 2469 2469 2469 4780 4780 4780 2469 2469 4780 4780 2469 2469 4780 4780 4780 4780 4780 2469 4780 4780 2469 4780 4780 4780 4780 2469 4780 2469 4780 4780 2469 2469 2469 4780 2469 2469 4780 2469 2469 2469 2469 4780 2469 2469 2469 4780 2469 4780 2469 2469 2469 2469 4780 2469 4780 4780 4780 4780 4780 4780 4780 2469 4780 4780 4780 2469 4780 2469 2469 2469 2469 4780 4780 2469 2469 4780 2469 2469 2469 2469 2469 4780 2469 4780 4780 4780 2469 2469 2469 4780 2469 4780 2469 2469 4780 4780 2469 2469 4780 4780 2469 4780 4780 2469 4780 4780 4780 2469 4780 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2122 2122 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2122 2123 0 0 0 0 0 0 0 2121 2122 2122 2130 4780 2469 2469 2469 2469 2469 2469 4780 2469 4780 4780 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2130 4780 2129 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 2469 4780 4780 4780 2469 2469 4780 4780 2469 4780 2469 2469 4780 4780 2469 4780 2469 2469 2469 2469 2469 4780 2469 2469 2469 2469 4780 4780 2469 4780 2469 2469 4780 2469 2469 4780 4780 2469 2469 4780 4780 4780 4780 2469 2469 2469 4780 4780 4780 4780 4780 4780 4780 2469 4780 2469 4780 4780 2469 4780 4780 4780 4780 2469 2469 4780 4780 2469 2469 4780 4780 4780 2469 2469 2469 2469 4780 4780 2469 4780 2469 2469 2469 4780 2469 4780 2469 2469 2469 2469 4780 4780 2469 2469 2469 2469 4780 4780 2469 2469 4780 2469 2469 4780 2469 4780 4780 2469 4780 2469 4780 4780 4780 4780 4780 4780 4780 2469 2469 4780 4780 4780 2469 4780 4780 4780 4780 2469 4780 2469 2469 2469 2469 4780 4780 2469 4780 2469 4780 2469 2469 4780 4780 4780 2469 2469 2469 4780 4780 4780 4780 2469 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2130 4780 4780 2129 2122 2122 2123 0 0 0 0 0 0 0 0 2121 2122 2130 2469 4780 2469 4780 4780 2129 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2130 2469 4780 2129 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2130 4780 4780 2129 2122 2122 2123 0 0 2121 2122 2130 2469 4780 2469 2469 4780 4780 2469 2469 2469 2469 2469 2469 4780 4780 4780 2129 2122 2123 0 0 0 0 0 0 0 2121 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2122 2122 2123 0 0 0 0 0 0 0 0 2121 2122 2130 4780 2469 2469 2469 2469 2469 2129 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 2469 2469 2469 4780 4780 2469 4780 2469 4780 2469 4780 2469 4780 2469 2469 2469 2469 4780 2469 4780 2469 2469 4780 4780 2469 2469 4780 4780 2469 2469 2469 2469 4780 4780 2469 4780 2469 4780 4780 4780 2469 4780 4780 4780 2469 2469 2469 4780 4780 2469 2469 2469 2469 4780 4780 2469 2469 2469 4780 4780 2469 4780 2469 2469 4780 4780 2469 2469 4780 4780 4780 4780 4780 4780 4780 4780 4780 4780 2469 4780 2469 4780 4780 2469 4780 2469 4780 4780 4780 4780 2469 2469 4780 4780 2469 4780 2469 2469 4780 2469 4780 2469 2469 2469 4780 2469 2469 2469 4780 2469 4780 2469 2469 4780 4780 4780 4780 2469 2469 4780 2469 4780 2469 2469 2469 2469 4780 4780 4780 4780 4780 4780 2469 4780 2469 4780 2469 4780 2469 4780 2469 2469 4780 4780 4780 2469 2469 2469 2469 4780 2469 2469 2469 2128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2130 2469 2469 2129 2123 0 0 0 0 0 2121 2122 2122 2123 0 0 2121 2122 2122 2130 4780 2469 4780 2469 4780 2469 2469 2129 2122 2122 2123 0 0 0 2121 2122 2130 2469 2469 2469 4780 2469 4780 4780 2469 4780 2129 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2130 4780 2469 2129 2122 2123 0 0 0 0 0 2121 2122 2123 0 0 0 0 0 0 2121 2122 2130 2469 4780 4780 4780 2469 2469 2129 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2130 4780 4780 4780 4780 2469 2469 4780 2129 2122 2122 2130 4780 4780 4780 2469 4780 4780 2469 2469 4780 4780 4780 4780 2469 2469 4780 4780 4780 2469 2469 2129 2122 2122 2123 0 0 2121 2122 2130 4780 2129 2122 2123 0 0 0 0 0 2121 2122 2122 2122 2123 0 0 0 0 0 0 0 0 0 2121 2122 2130 4780 4780 4780 2129 2122 2123 0 0 0 2121 2122 2122 2130 4780 4780 4780 2469 4780 4780 2469 4780 2469 2469 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2122 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 2469 4780 2469 4780 2469 4780 2469 4780 4780 2469 2469 2469 2469 2469 4780 4780 4780 2469 2469 2469 4780 2469 4780 4780 4780 4780 4780 2469 2469 4780 2469 2469 4780 4780 4780 4780 4780 2469 4780 2469 2469 2469 4780 4780 4780 2469 2469 2469 2469 2469 4780 4780 2469 4780 2469 4780 2469 4780 2469 2469 4780 4780 4780 4780 2469 4780 2469 2469 2469 2469 2469 4780 4780 4780 2469 2469 2469 2469 4780 2469 4780 2469 2469 2469 4780 4780 4780 2469 4780 2469 4780 4780 2469 4780 2469 2469 4780 4780 2469 4780 4780 2469 2469 2469 2469 4780 4780 4780 4780 2469 2469 4780 4780 2469 4780 4780 2469 4780 2469 4780 2469 2469 2469 2469 2469 4780 4780 4780 2469 4780 4780 2469 2469 2469 4780 4780 2469 4780 2469 2469 2469 2469 2469 2469 2469 2469 2469 2469 4780 4780 2469 2469 4780 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2130 2469 4780 4780 4780 4780 2129 2122 2123 0 2121 2122 2130 2469 4780 2129 2122 2122 2130 4780 2469 2469 4780 2469 2469 4780 2469 4780 2469 4780 4780 4780 2129 2122 2122 2122 2130 4780 4780 2469 4780 4780 2469 2469 4780 4780 4780 4780 2469 4780 2129 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2130 4780 4780 2469 2469 4780 4780 2129 2122 2122 2123 0 2121 2130 4780 2129 2122 2123 0 2121 2122 2122 2130 4780 2469 4780 4780 2469 2469 4780 4780 4780 4780 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2130 2469 2469 4780 4780 4780 4780 4780 4780 2469 4780 2469 2469 4780 2469 4780 4780 2469 4780 2469 4780 4780 4780 4780 2469 2469 4780 4780 2469 4780 2469 4780 2469 2469 4780 2469 2129 2122 2122 2130 4780 2469 2469 4780 2469 2129 2122 2123 0 2121 2122 2130 2469 2469 4780 2129 2122 2122 2123 0 0 0 0 2121 2122 2130 2469 2469 2469 2469 4780 2469 2469 2129 2122 2122 2122 2130 2469 2469 4780 4780 2469 2127 4780 4780 2469 2469 2469 2469 4780 4780 2129 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2130 4780 2469 2129 2122 2123 0 0 0 0 0 0 0 0 0 2121 2122 2130 4780 2469 2469 4780 2129 2122 2122 2123 0 0 0 0 0 0 2121 2122 2130 2469 2129 2122 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2122 2130 4780 2469 2129 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 2469 4780 4780 2469 4780 4780 2469 2469 4780 4780 2469 2469 4780 2469 2469 4780 4780 4780 2469 4780 2469 2469 4780 4780 2469 4780 4780 2469 2469 4780 4780 2469 2469 4780 2469 4780 4780 2469 4780 4780 4780 2469 4780 4780 4780 4780 2469 2469 4780 4780 4780 4780 4780 4780 2469 2469 4780 2469 2469 4780 2469 2469 2469 4780 2469 2469 4780 4780 2469 2469 4780 4780 2469 2469 4780 4780 4780 4780 4780 2469 4780 2469 2469 2469 4780 4780 4780 4780 4780 4780 4780 4780 4780 4780 2469 2469 4780 2469 4780 2469 2469 4780 2469 2469 2469 4780 2469 2469 2469 2469 2469 4780 2469 4780 2469 2469 4780 2469 4780 4780 4780 4780 4780 2469 4780 4780 4780 2469 4780 4780 2469 4780 4780 2469 2469 4780 4780 2469 2469 4780 2469 4780 2469 2469 2469 4780 4780 4780 2469 4780 2469 2469 2469 2469 2128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2130 4780 2469 4780 2469 4780 2469 2469 4780 4780 2129 2122 2130 2469 4780 2469 2469 2469 4780 2469 4780 2469 4780 4780 2469 2469 2469 4780 2469 2469 4780 4780 2469 2469 4780 4780 4780 4780 4780 2469 2469 2469 2469 2469 4780 4780 2469 2469 4780 4780 2469 2469 2469 4780 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2130 4780 2469 2469 4780 4780 2469 2469 4780 4780 2469 4780 2129 2122 2130 2469 4780 2469 2469 2129 2122 2130 2469 4780 2469 2469 4780 4780 4780 2469 2469 4780 2469 4780 4780 4780 2129 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2130 2469 2469 4780 2469 2469 4780 4780 4780 2469 2469 4780 2469 2469 2469 4780 4780 4780 2469 4780 4780 2469 2469 4780 4780 2469 2469 4780 4780 4780 4780 4780 4780 4780 2469 4780 2469 4780 4780 4780 4780 4780 2469 4780 2469 4780 2469 4780 2129 2122 2130 4780 4780 4780 2469 4780 4780 4780 2469 2129 2122 2122 2122 2122 2130 2469 4780 4780 2469 2127 4780 4780 4780 4780 2469 4780 2469 2469 2469 4780 2469 4780 4780 2127 4780 2469 2469 4780 2469 2469 4780 4780 2469 2469 2469 4780 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2130 4780 4780 2469 2469 2469 4780 2129 2122 2122 2122 2123 0 0 2121 2122 2122 2130 4780 4780 4780 4780 4780 2469 4780 2469 2469 2129 2122 2122 2122 2122 2122 2122 2130 2469 4780 4780 4780 2469 4780 2469 2129 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 2121 2130 2469 4780 2469 2129 2122 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2122 2122 2122 2130 2469 2469 2469 4780 4780 4780 2469 4780 2129 2122 2122 2122 2123 0 0 0 0 0 0 0 2121 2122 2122 2130 4780 2469 2129 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 - 4780 2469 4780 2469 2469 4780 2469 4780 4780 2469 4780 2469 4780 2469 4780 4780 2469 4780 4780 4780 2469 4780 2469 2469 2469 2469 2469 2469 4780 4780 2469 2469 2469 4780 2469 2469 4780 2469 4780 4780 2469 4780 2469 4780 2469 4780 2469 4780 4780 2469 2469 4780 4780 2469 4780 2469 4780 4780 4780 2469 2469 2469 4780 2469 2469 4780 4780 2469 2469 4780 2469 2469 4780 2469 4780 4780 2469 2469 4780 4780 2469 4780 4780 4780 2469 2469 2469 4780 2469 2469 2469 2469 4780 4780 2469 2469 4780 2469 4780 2469 4780 2469 4780 2469 2469 4780 2469 4780 4780 4780 4780 4780 4780 2469 2469 4780 4780 4780 4780 4780 4780 2469 4780 2469 2469 2469 4780 2469 2469 4780 2469 2469 4780 4780 2469 2469 2469 2469 4780 4780 2469 2469 2469 4780 4780 4780 4780 4780 2469 2469 4780 4780 2469 2469 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2130 4780 4780 2469 2469 4780 4780 2469 2469 2469 2469 2469 4780 2469 2469 4780 2469 2469 2469 4780 2469 4780 2469 2469 4780 4780 4780 4780 2469 2469 2469 4780 2469 4780 4780 2469 4780 2469 4780 4780 4780 2469 2469 4780 2469 2469 4780 4780 2469 2469 4780 2469 4780 2469 2469 4780 4780 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2130 2469 4780 4780 2469 2469 2469 2469 4780 2469 4780 4780 4780 2469 4780 4780 2469 2469 2469 4780 2469 2469 4780 4780 4780 2469 2469 4780 4780 2469 2469 2469 2469 2469 2469 4780 2469 4780 4780 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2130 4780 2469 4780 2469 4780 4780 2469 4780 4780 4780 4780 4780 2469 2469 4780 2469 2469 2469 2469 4780 2469 2469 2469 2469 4780 4780 2469 2469 4780 4780 4780 2469 2469 2469 4780 4780 4780 2469 4780 2469 2469 2469 2469 2469 2469 4780 4780 2469 2469 4780 4780 4780 4780 2469 4780 2469 2469 2469 4780 2469 2469 4780 2469 2469 4780 4780 2469 4780 2469 2469 2469 2469 4780 2469 4780 2469 4780 2469 2469 2469 4780 4780 2469 4780 2469 4780 2469 2469 4780 4780 2469 2469 4780 2469 4780 2469 2469 2469 2129 2122 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2130 2469 4780 4780 4780 4780 4780 4780 2469 2469 4780 2469 4780 2129 2122 2122 2130 2469 2469 2469 4780 4780 4780 4780 4780 2469 2469 4780 4780 2469 2469 4780 2469 2469 4780 4780 4780 4780 4780 2469 2469 4780 4780 2469 4780 4780 2469 2129 2122 2122 2122 2123 0 0 0 0 0 2121 2122 2122 2130 4780 2469 4780 2469 4780 4780 4780 2129 2122 2122 2123 0 0 2121 2122 2122 2122 2123 0 0 2121 2122 2130 4780 4780 4780 4780 2469 2469 4780 4780 2469 2469 4780 4780 4780 4780 2469 4780 2129 2122 2122 2122 2122 2122 2122 2122 2130 4780 4780 2469 2469 4780 4780 2469 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 - 4780 4780 2469 2469 4780 2469 4780 2469 4780 2469 4780 4780 2469 2469 2469 4780 4780 4780 2469 4780 4780 4780 4780 2469 4780 2469 4780 2469 2469 4780 2469 4780 4780 4780 2469 2469 2469 2469 4780 2469 2469 2469 4780 2469 4780 2469 2469 2469 2469 2469 2469 2469 2469 4780 2469 2469 2469 2469 4780 4780 4780 2469 4780 2469 2469 2469 2469 4780 2469 4780 2469 4780 2469 4780 4780 2469 4780 4780 4780 2469 2469 2469 4780 2469 4780 2469 2469 4780 4780 4780 2469 4780 2469 2469 4780 4780 4780 4780 4780 2469 4780 4780 2469 4780 4780 4780 2469 4780 2469 2469 4780 4780 4780 4780 4780 4780 4780 4780 2469 2469 4780 2469 2469 2469 2469 4780 4780 4780 4780 4780 4780 2469 4780 2469 4780 2469 4780 2469 2469 2469 2469 2469 2469 2469 2469 2469 2469 2469 2469 4780 4780 4780 2469 2469 4780 2128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2130 4780 2469 4780 2469 4780 2469 4780 2469 2469 2469 4780 2469 4780 4780 2469 4780 4780 4780 4780 2469 4780 4780 2469 2469 2469 2469 2469 2469 2469 2469 2469 4780 2469 4780 2469 2469 2469 4780 2469 2469 2469 2469 4780 2469 4780 2469 4780 4780 2469 2469 2469 2469 2469 2469 4780 2469 4780 4780 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2130 2469 4780 4780 2469 2469 2469 4780 2469 4780 2469 2469 4780 4780 4780 2469 2469 2469 4780 2469 2469 2469 4780 4780 2469 4780 4780 2469 4780 4780 2469 4780 2469 4780 2469 2469 2469 2469 4780 2469 2469 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2130 2469 4780 2469 4780 2469 4780 2469 4780 2469 2469 2469 2469 2469 4780 2469 2469 2469 4780 2469 2469 4780 4780 4780 2469 2469 2469 2469 4780 4780 2469 4780 4780 2469 2469 2469 4780 2469 2469 2469 4780 2469 4780 2469 2469 2469 2469 2469 2469 2469 2469 2469 2469 4780 2469 4780 2469 2469 2469 4780 4780 4780 4780 4780 4780 2469 4780 2469 4780 2469 4780 2469 4780 2469 2469 4780 2469 4780 4780 4780 2469 4780 4780 4780 2469 2469 2469 2469 2469 2469 4780 4780 2469 2127 2469 2127 2469 4780 2469 4780 4780 4780 2129 2123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2121 2130 2469 2469 2469 2469 2469 2469 2469 2469 2469 2469 4780 4780 2469 2469 4780 4780 2469 4780 4780 4780 2469 2469 4780 2469 2469 4780 2469 4780 4780 2469 2469 2469 4780 4780 2469 4780 4780 4780 2469 2469 4780 4780 2469 2469 2127 2469 4780 2469 4780 2469 4780 2129 2122 2123 0 2121 2122 2130 4780 4780 4780 2469 2469 2469 4780 4780 2469 4780 4780 4780 4780 2129 2122 2122 2130 2469 4780 2469 2129 2122 2122 2130 2469 2469 2469 4780 2469 4780 4780 2469 2469 4780 2469 2469 4780 2469 4780 4780 4780 4780 2469 4780 2469 2469 4780 4780 4780 2469 2469 2469 4780 2469 4780 2469 4780 2469 4780 2129 2123 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5544 5543 5549 5543 5543 5543 5543 5549 5549 5543 5543 5549 5543 5549 5549 5543 5543 5543 5543 5549 5543 5549 5549 5549 5549 5543 5549 5543 5543 5543 5543 5543 5543 5543 5543 5543 5543 5543 5549 5549 5549 5543 5543 5543 5549 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5548 5543 5549 5549 5543 5549 5549 5549 5549 5549 5549 5549 5543 5549 5543 5549 5549 5543 5549 5549 5543 5549 5549 5549 5549 5543 5543 5549 5549 5549 5549 5549 5549 5549 5549 5549 5549 5549 5543 5549 5543 5543 5543 5549 5543 5549 5546 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5548 5543 5543 5549 5543 5543 5549 5543 5549 5543 5543 5549 5549 5543 5543 5543 5543 5543 5549 5549 5549 5543 5549 5549 5549 5543 5549 5543 5543 5543 5543 5543 5543 5543 5543 5543 5543 5543 5549 5543 5549 5543 5543 5543 5549 5543 5543 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5544 5549 5543 5549 5543 5549 5543 5549 5543 5543 5549 5543 5549 5549 5543 5543 5549 5549 5543 5549 5549 5549 5543 5543 5549 5543 5549 5543 5549 5549 5549 5549 5549 5549 5549 5549 5549 5549 5543 5543 5549 5543 5543 5543 5543 5549 5549 5549 5543 5546 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5544 5543 5549 5543 5543 5549 5543 5543 5549 5543 5549 5543 5549 5543 5549 5543 5549 5549 5549 5549 5549 5549 5543 5543 5543 5549 5543 5549 5543 5543 5543 5543 5543 5543 5543 5543 5543 5549 5549 5543 5549 5543 5543 5543 5549 5543 5543 5543 5549 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5548 5543 5543 5549 5543 5543 5549 5549 5549 5549 5549 5543 5543 5549 5543 5549 5543 5543 5549 5549 5549 5543 5549 5549 5549 5543 5543 5543 5549 5549 5549 5549 5549 5549 5549 5549 5543 5543 5549 5543 5549 5543 5543 5549 5543 5549 5549 5543 5549 5549 5546 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5544 5549 5549 5543 5549 5543 5543 5543 5549 5543 5549 5543 5549 5549 5543 5543 5549 5543 5543 5543 5549 5543 5543 5543 5543 5543 5549 5549 5549 5543 5543 5543 5543 5543 5543 5549 5549 5549 5543 5543 5549 5549 5543 5549 5549 5543 5543 5543 5549 5549 5541 5552 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5544 5543 5549 5543 5543 5549 5543 5549 5543 5549 5543 5543 5543 5543 5549 5543 5549 5543 5549 5543 5543 5543 5549 5549 5549 5549 5543 5549 5543 5549 5549 5549 5549 5549 5549 5543 5543 5543 5549 5543 5549 5549 5549 5549 5543 5549 5549 5543 5549 5549 5546 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5550 5542 5549 5543 5549 5543 5549 5549 5549 5549 5549 5543 5549 5543 5549 5543 5549 5549 5549 5549 5549 5549 5543 5543 5543 5543 5549 5543 5549 5549 5543 5543 5543 5543 5541 5551 5551 5551 5542 5543 5549 5549 5549 5543 5549 5543 5549 5549 5549 5541 5552 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5544 5543 5549 5543 5543 5549 5543 5543 5543 5543 5549 5549 5543 5543 5543 5549 5549 5543 5543 5543 5543 5543 5549 5549 5543 5543 5549 5549 5543 5541 5551 5551 5551 5552 0 0 0 5550 5551 5551 5542 5549 5543 5543 5543 5543 5541 5551 5552 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5550 5542 5549 5543 5543 5543 5549 5549 5543 5543 5549 5549 5543 5543 5549 5543 5543 5549 5549 5541 5551 5551 5542 5549 5549 5543 5549 5541 5551 5552 0 0 0 0 0 0 0 0 0 0 5550 5551 5551 5551 5551 5551 5552 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5550 5551 5542 5549 5549 5543 5543 5543 5543 5549 5543 5549 5549 5543 5549 5541 5551 5551 5552 0 0 5550 5551 5551 5551 5551 5552 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5550 5551 5551 5542 5543 5543 5543 5543 5549 5541 5551 5551 5551 5552 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5550 5551 5551 5551 5551 5551 5552 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5549 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5549 5549 5547 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5549 5543 5549 5549 5547 5540 0 0 0 0 0 0 0 0 0 5538 5539 5539 5539 5548 5543 5543 5543 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5539 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5539 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5549 5543 5543 5543 5549 5547 5539 5539 5540 0 0 0 0 5538 5539 5548 5543 5549 5543 5549 5543 5549 5543 5549 5547 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5548 5549 5543 5549 5549 5547 5539 5540 0 0 0 0 0 0 0 0 0 5538 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5548 5543 5543 5543 5543 5547 5539 5539 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5539 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5549 5549 5549 5543 5549 5543 5543 5549 5547 5539 5539 5539 5539 5548 5549 5549 5543 5543 5549 5549 5549 5543 5543 5543 5549 5543 5543 5547 5539 5539 5539 5540 0 0 0 0 0 5538 5539 5539 5548 5543 5543 5549 5549 5543 5549 5543 5549 5547 5539 5539 5540 0 0 0 5538 5539 5539 5548 5543 5543 5547 5539 5540 0 0 0 0 0 0 0 0 5538 5539 5548 5543 5549 5549 5543 5549 5549 5543 5543 5543 5549 5543 5547 5539 5540 0 0 0 0 0 0 5538 5539 5539 5540 0 0 0 0 0 0 0 0 0 5538 5539 5548 5543 5543 5543 5547 5539 5540 0 0 0 0 0 0 0 5538 5539 5539 5548 5549 5543 5549 5549 5547 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5543 5543 5543 5549 5543 5543 5549 5543 5543 5549 5549 5549 5549 5549 5543 5545 5543 5549 5549 5543 5543 5549 5549 5549 5549 5543 5549 5543 5543 5543 5543 5547 5539 5539 5539 5539 5539 5548 5543 5543 5549 5549 5543 5543 5543 5549 5549 5543 5549 5549 5549 5549 5547 5539 5539 5539 5548 5543 5543 5549 5549 5543 5549 5543 5547 5540 0 0 0 0 0 5538 5539 5548 5549 5543 5549 5549 5543 5549 5543 5549 5543 5543 5543 5543 5543 5549 5549 5547 5539 5540 0 0 5538 5539 5548 5543 5549 5547 5540 0 0 0 0 0 5538 5539 5539 5548 5549 5543 5549 5549 5549 5549 5549 5547 5539 5540 0 0 0 5538 5539 5548 5543 5549 5549 5543 5543 5543 5543 5549 5549 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5543 5543 5549 5543 5543 5549 5543 5543 5543 5543 5543 5549 5549 5543 5543 5549 5549 5543 5543 5543 5549 5549 5549 5543 5549 5549 5549 5543 5543 5543 5549 5549 5543 5543 5543 5543 5543 5543 5549 5549 5543 5549 5543 5543 5543 5549 5543 5543 5543 5549 5549 5543 5549 5549 5543 5543 5549 5549 5543 5543 5549 5543 5543 5549 5549 5547 5539 5539 5539 5539 5539 5548 5543 5543 5549 5543 5543 5549 5549 5549 5543 5549 5543 5549 5543 5543 5549 5549 5543 5543 5543 5547 5539 5539 5548 5543 5549 5543 5549 5549 5547 5540 0 5538 5539 5539 5548 5549 5543 5543 5543 5549 5543 5543 5543 5543 5543 5543 5549 5547 5539 5539 5539 5548 5543 5549 5549 5549 5543 5543 5543 5543 5549 5543 5543 5549 5547 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5543 5549 5543 5543 5543 5549 5549 5549 5543 5543 5549 5543 5549 5543 5549 5549 5549 5549 5549 5549 5549 5543 5543 5543 5543 5549 5549 5543 5549 5549 5549 5543 5549 5543 5549 5543 5549 5543 5543 5549 5549 5549 5543 5549 5543 5543 5543 5549 5543 5549 5549 5549 5543 5549 5549 5543 5549 5543 5543 5543 5543 5543 5549 5543 5543 5549 5543 5543 5543 5543 5549 5543 5543 5543 5549 5549 5549 5549 5549 5549 5549 5543 5543 5549 5549 5543 5543 5549 5543 5549 5549 5543 5549 5549 5543 5543 5549 5543 5549 5543 5549 5547 5539 5548 5549 5543 5543 5549 5543 5543 5543 5549 5543 5549 5549 5549 5549 5549 5549 5549 5543 5543 5543 5543 5543 5543 5549 5543 5543 5549 5543 5543 5543 5543 5543 5543 5543 5549 5543 5547 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5543 5549 5549 5549 5543 5543 5543 5549 5543 5549 5543 5543 5549 5543 5549 5549 5543 5549 5549 5543 5549 5543 5543 5543 5549 5543 5543 5549 5543 5543 5549 5549 5549 5549 5549 5549 5549 5549 5543 5543 5549 5543 5543 5543 5543 5549 5543 5549 5549 5549 5549 5543 5549 5543 5549 5543 5549 5543 5543 5543 5543 5543 5543 5543 5543 5543 5549 5543 5543 5549 5549 5543 5543 5543 5549 5549 5549 5543 5543 5543 5543 5543 5543 5549 5543 5549 5549 5549 5543 5549 5549 5543 5549 5549 5543 5543 5543 5543 5543 5543 5543 5543 5549 5549 5543 5549 5549 5543 5549 5543 5543 5549 5543 5549 5543 5543 5549 5549 5549 5549 5549 5549 5549 5549 5543 5543 5543 5549 5549 5549 5543 5549 5549 5549 5543 5543 5549 5543 5549 5543 5543 5547 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5543 5543 5543 5549 5543 5543 5549 5543 5549 5543 5549 5543 5543 5549 5549 5543 5543 5549 5543 5543 5549 5549 5549 5549 5543 5549 5549 5549 5549 5543 5549 5543 5549 5543 5549 5543 5549 5543 5543 5543 5549 5543 5543 5549 5549 5549 5543 5549 5549 5549 5549 5549 5543 5543 5543 5543 5549 5549 5543 5543 5549 5543 5543 5549 5543 5543 5543 5549 5543 5549 5549 5549 5543 5543 5549 5549 5543 5549 5549 5543 5543 5549 5543 5543 5549 5543 5549 5549 5543 5549 5549 5549 5543 5543 5549 5549 5549 5549 5549 5543 5549 5549 5543 5543 5549 5543 5543 5543 5549 5549 5549 5549 5543 5543 5543 5549 5549 5543 5543 5543 5549 5549 5543 5543 5549 5543 5543 5543 5543 5549 5543 5543 5543 5549 5543 5549 5543 5543 5549 5549 5543 5549 5543 5547 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5543 5549 5549 5549 5543 5549 5543 5543 5549 5543 5549 5543 5549 5543 5549 5543 5549 5549 5549 5549 5549 5549 5543 5543 5543 5549 5543 5549 5543 5543 5543 5543 5543 5543 5543 5543 5543 5543 5549 5543 5549 5543 5543 5543 5549 5543 5543 5543 5549 5549 5549 5549 5549 5543 5543 5549 5549 5549 5549 5549 5549 5549 5549 5543 5543 5543 5549 5549 5543 5543 5543 5549 5543 5549 5543 5549 5543 5549 5543 5549 5545 5543 5543 5543 5549 5543 5549 5549 5549 5543 5543 5543 5549 5549 5543 5549 5543 5549 5549 5549 5549 5549 5543 5543 5543 5549 5549 5549 5543 5549 5549 5549 5543 5543 5549 5543 5543 5549 5549 5543 5549 5549 5543 5549 5549 5543 5543 5543 5549 5543 5543 5543 5549 5543 5549 5543 5549 5543 5543 5543 5549 5543 5549 5543 5543 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5549 5549 5543 5543 5549 5543 5549 5543 5549 5543 5549 5549 5543 5543 5549 5543 5549 5543 5543 5549 5543 5543 5543 5549 5543 5543 5543 5543 5549 5549 5543 5549 5543 5543 5549 5543 5543 5549 5543 5543 5543 5549 5543 5549 5549 5549 5543 5543 5543 5549 5549 5543 5549 5549 5549 5549 5549 5549 5549 5543 5543 5543 5549 5549 5549 5543 5543 5549 5549 5543 5549 5543 5549 5543 5549 5549 5543 5543 5549 5543 5549 5543 5543 5543 5543 5549 5543 5549 5543 5549 5543 5543 5549 5549 5543 5549 5549 5549 5549 5549 5549 5549 5543 5549 5543 5549 5549 5549 5549 5549 5543 5543 5543 5549 5549 5543 5549 5543 5549 5543 5549 5543 5549 5543 5543 5543 5543 5549 5543 5543 5543 5549 5543 5543 5549 5549 5549 5543 5543 5549 5549 5543 5549 5543 5549 5543 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5549 5543 5543 5543 5549 5543 5549 5543 5543 5549 5549 5549 5549 5543 5543 5549 5549 5549 5549 5543 5549 5543 5549 5549 5543 5543 5543 5549 5549 5543 5543 5543 5543 5549 5549 5549 5543 5543 5549 5549 5549 5543 5543 5549 5543 5549 5549 5543 5543 5543 5549 5549 5543 5543 5543 5543 5549 5549 5543 5543 5543 5549 5549 5549 5543 5549 5549 5549 5543 5549 5543 5549 5549 5543 5543 5543 5543 5549 5549 5543 5549 5543 5549 5549 5549 5549 5543 5543 5543 5543 5543 5543 5549 5543 5549 5543 5549 5543 5549 5543 5549 5549 5543 5543 5543 5549 5543 5543 5549 5543 5549 5549 5549 5549 5543 5543 5549 5543 5543 5549 5543 5543 5549 5549 5549 5543 5549 5543 5549 5543 5543 5543 5549 5543 5549 5543 5543 5543 5549 5549 5543 5549 5543 5543 5543 5543 5543 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5549 5549 5549 5543 5549 5549 5543 5543 5549 5543 5549 5543 5543 5543 5549 5543 5549 5543 5549 5543 5549 5543 5543 5549 5549 5549 5549 5549 5543 5549 5543 5549 5543 5549 5543 5549 5543 5543 5549 5549 5543 5543 5543 5549 5549 5543 5543 5543 5543 5543 5543 5543 5543 5549 5549 5543 5543 5549 5543 5543 5549 5549 5549 5543 5549 5549 5549 5543 5549 5543 5543 5543 5549 5549 5543 5543 5543 5543 5543 5549 5549 5543 5549 5549 5549 5549 5543 5549 5549 5543 5549 5549 5543 5549 5543 5549 5543 5549 5543 5549 5543 5543 5549 5543 5549 5549 5549 5549 5549 5543 5549 5543 5543 5543 5543 5543 5549 5549 5543 5543 5543 5543 5543 5543 5549 5549 5549 5543 5549 5549 5543 5543 5549 5543 5543 5549 5543 5549 5543 5543 5543 5543 5543 5549 5549 5543 5549 5549 5546 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5549 5549 5543 5549 5543 5543 5543 5543 5543 5543 5549 5549 5543 5543 5543 5543 5543 5549 5549 5549 5543 5549 5549 5549 5543 5549 5543 5549 5549 5549 5549 5549 5549 5549 5549 5549 5549 5543 5549 5543 5549 5549 5549 5543 5543 5543 5543 5543 5543 5543 5543 5549 5543 5549 5543 5543 5543 5549 5549 5543 5549 5543 5543 5543 5549 5543 5549 5543 5549 5549 5549 5549 5549 5549 5543 5543 5549 5549 5549 5549 5549 5543 5549 5543 5543 5543 5549 5543 5543 5543 5549 5549 5543 5543 5543 5543 5543 5543 5543 5543 5549 5549 5543 5549 5549 5543 5549 5549 5549 5543 5543 5543 5549 5549 5549 5549 5549 5549 5549 5549 5549 5543 5543 5549 5543 5549 5549 5549 5543 5549 5549 5549 5543 5543 5543 5543 5543 5549 5549 5543 5543 5543 5543 5543 5543 5543 5543 5549 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5549 5543 5549 5549 5543 5549 5543 5549 5543 5549 5549 5543 5543 5549 5549 5543 5549 5549 5543 5543 5543 5543 5549 5543 5543 5543 5543 5549 5543 5549 5543 5549 5543 5549 5543 5543 5549 5549 5549 5549 5549 5549 5543 5543 5549 5543 5543 5543 5543 5543 5549 5549 5549 5549 5543 5543 5549 5549 5549 5549 5549 5549 5549 5549 5549 5543 5549 5543 5543 5543 5543 5549 5543 5543 5549 5543 5543 5549 5549 5549 5549 5549 5543 5549 5543 5543 5549 5543 5543 5543 5549 5549 5543 5543 5543 5543 5543 5543 5543 5543 5549 5549 5543 5549 5549 5549 5543 5543 5543 5543 5543 5549 5549 5543 5549 5549 5549 5549 5543 5543 5549 5549 5543 5549 5549 5549 5549 5543 5549 5549 5549 5543 5543 5543 5549 5549 5543 5543 5549 5543 5549 5549 5543 5549 5543 5549 5549 5549 5543 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5549 5549 5549 5549 5543 5549 5549 5549 5543 5549 5543 5549 5543 5549 5543 5543 5543 5543 5549 5543 5549 5549 5549 5549 5543 5549 5549 5543 5543 5543 5543 5543 5543 5543 5543 5549 5549 5543 5549 5549 5543 5549 5549 5549 5543 5549 5543 5543 5543 5543 5543 5549 5543 5549 5549 5543 5549 5543 5549 5549 5549 5543 5543 5543 5549 5543 5543 5543 5543 5549 5549 5543 5549 5543 5549 5543 5549 5543 5543 5549 5549 5549 5543 5549 5543 5543 5549 5543 5549 5543 5549 5549 5549 5549 5549 5549 5549 5549 5543 5543 5549 5549 5543 5549 5543 5549 5549 5549 5543 5543 5549 5549 5543 5549 5549 5543 5549 5549 5543 5549 5543 5549 5543 5543 5543 5543 5549 5543 5543 5543 5549 5549 5549 5543 5543 5549 5543 5549 5543 5549 5543 5549 5549 5543 5543 5543 5549 5549 5549 5549 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5548 5549 5549 5547 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5543 5549 5543 5549 5549 5543 5549 5543 5549 5549 5543 5543 5543 5543 5543 5549 5549 5549 5549 5543 5543 5549 5543 5543 5543 5543 5543 5549 5543 5549 5543 5549 5549 5543 5549 5543 5543 5543 5543 5549 5543 5549 5549 5543 5549 5549 5549 5543 5543 5549 5543 5549 5549 5549 5549 5549 5549 5543 5549 5543 5549 5543 5549 5549 5543 5543 5543 5543 5549 5543 5549 5543 5549 5549 5543 5549 5543 5549 5543 5549 5549 5549 5549 5543 5549 5549 5543 5549 5543 5543 5543 5549 5543 5543 5543 5543 5543 5543 5549 5549 5543 5543 5543 5549 5543 5543 5549 5543 5549 5549 5549 5543 5543 5549 5543 5549 5543 5549 5543 5543 5549 5549 5543 5543 5549 5543 5549 5549 5549 5543 5543 5543 5549 5543 5549 5543 5543 5543 5543 5549 5549 5549 5549 5549 5549 5549 5549 5543 5549 5549 5549 5546 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5539 5548 5543 5543 5543 5543 5543 5547 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5543 5543 5549 5549 5543 5549 5549 5543 5543 5549 5549 5543 5543 5549 5543 5543 5549 5549 5549 5543 5549 5549 5549 5543 5549 5543 5543 5549 5549 5549 5549 5549 5549 5543 5543 5549 5549 5549 5543 5543 5543 5549 5543 5543 5543 5549 5549 5549 5543 5543 5549 5549 5543 5543 5549 5549 5549 5549 5549 5543 5549 5549 5543 5549 5549 5549 5549 5543 5549 5543 5549 5549 5543 5543 5543 5549 5543 5543 5549 5543 5543 5543 5543 5549 5543 5543 5543 5549 5543 5549 5543 5543 5543 5543 5549 5543 5549 5549 5549 5549 5549 5549 5549 5543 5549 5549 5549 5543 5549 5543 5543 5543 5543 5549 5549 5543 5543 5549 5543 5543 5543 5543 5543 5549 5543 5549 5549 5549 5543 5543 5543 5549 5543 5549 5543 5543 5549 5549 5543 5543 5549 5549 5543 5549 5549 5543 5549 5549 5549 5543 5549 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5539 5539 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5539 5540 0 0 0 0 0 0 0 5538 5539 5539 5548 5549 5543 5543 5543 5543 5543 5543 5549 5543 5549 5549 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5548 5549 5547 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5543 5549 5549 5549 5543 5543 5549 5549 5543 5549 5543 5543 5549 5549 5543 5549 5543 5543 5543 5543 5543 5549 5543 5543 5543 5543 5549 5549 5543 5549 5543 5543 5549 5543 5543 5549 5549 5543 5543 5549 5549 5549 5549 5543 5543 5543 5549 5549 5549 5549 5549 5549 5549 5543 5549 5543 5549 5549 5543 5549 5549 5549 5549 5543 5543 5549 5549 5543 5543 5549 5549 5549 5543 5543 5543 5543 5549 5549 5543 5549 5543 5543 5543 5549 5543 5549 5543 5543 5543 5543 5549 5549 5543 5543 5543 5543 5549 5549 5543 5543 5549 5543 5543 5549 5543 5549 5549 5543 5549 5543 5549 5549 5549 5549 5549 5549 5549 5543 5543 5549 5549 5549 5543 5549 5549 5549 5549 5543 5549 5543 5543 5543 5543 5549 5549 5543 5549 5543 5549 5543 5543 5549 5549 5549 5543 5543 5543 5549 5549 5549 5549 5543 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5548 5549 5549 5547 5539 5539 5540 0 0 0 0 0 0 0 0 5538 5539 5548 5543 5549 5543 5549 5549 5547 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5548 5543 5549 5547 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5548 5549 5549 5547 5539 5539 5540 0 0 5538 5539 5548 5543 5549 5543 5543 5549 5549 5543 5543 5543 5543 5543 5543 5549 5549 5549 5547 5539 5540 0 0 0 0 0 0 0 5538 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5539 5539 5540 0 0 0 0 0 0 0 0 5538 5539 5548 5549 5543 5543 5543 5543 5543 5547 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5543 5543 5543 5549 5549 5543 5549 5543 5549 5543 5549 5543 5549 5543 5543 5543 5543 5549 5543 5549 5543 5543 5549 5549 5543 5543 5549 5549 5543 5543 5543 5543 5549 5549 5543 5549 5543 5549 5549 5549 5543 5549 5549 5549 5543 5543 5543 5549 5549 5543 5543 5543 5543 5549 5549 5543 5543 5543 5549 5549 5543 5549 5543 5543 5549 5549 5543 5543 5549 5549 5549 5549 5549 5549 5549 5549 5549 5549 5543 5549 5543 5549 5549 5543 5549 5543 5549 5549 5549 5549 5543 5543 5549 5549 5543 5549 5543 5543 5549 5543 5549 5543 5543 5543 5549 5543 5543 5543 5549 5543 5549 5543 5543 5549 5549 5549 5549 5543 5543 5549 5543 5549 5543 5543 5543 5543 5549 5549 5549 5549 5549 5549 5543 5549 5543 5549 5543 5549 5543 5549 5543 5543 5549 5549 5549 5543 5543 5543 5543 5549 5543 5543 5543 5546 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5548 5543 5543 5547 5540 0 0 0 0 0 5538 5539 5539 5540 0 0 5538 5539 5539 5548 5549 5543 5549 5543 5549 5543 5543 5547 5539 5539 5540 0 0 0 5538 5539 5548 5543 5543 5543 5549 5543 5549 5549 5543 5549 5547 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5548 5549 5543 5547 5539 5540 0 0 0 0 0 5538 5539 5540 0 0 0 0 0 0 5538 5539 5548 5543 5549 5549 5549 5543 5543 5547 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5548 5549 5549 5549 5549 5543 5543 5549 5547 5539 5539 5548 5549 5549 5549 5543 5549 5549 5543 5543 5549 5549 5549 5549 5543 5543 5549 5549 5549 5543 5543 5547 5539 5539 5540 0 0 5538 5539 5548 5549 5547 5539 5540 0 0 0 0 0 5538 5539 5539 5539 5540 0 0 0 0 0 0 0 0 0 5538 5539 5548 5549 5549 5549 5547 5539 5540 0 0 0 5538 5539 5539 5548 5549 5549 5549 5543 5549 5549 5543 5549 5543 5543 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5539 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5543 5549 5543 5549 5543 5549 5543 5549 5549 5543 5543 5543 5543 5543 5549 5549 5549 5543 5543 5543 5549 5543 5549 5549 5549 5549 5549 5543 5543 5549 5543 5543 5549 5549 5549 5549 5549 5543 5549 5543 5543 5543 5549 5549 5549 5543 5543 5543 5543 5543 5549 5549 5543 5549 5543 5549 5543 5549 5543 5543 5549 5549 5549 5549 5543 5549 5543 5543 5543 5543 5543 5549 5549 5549 5543 5543 5543 5543 5549 5543 5549 5543 5543 5543 5549 5549 5549 5543 5549 5543 5549 5549 5543 5549 5543 5543 5549 5549 5543 5549 5549 5543 5543 5543 5543 5549 5549 5549 5549 5543 5543 5549 5549 5543 5549 5549 5543 5549 5543 5549 5543 5543 5543 5543 5543 5549 5549 5549 5543 5549 5549 5543 5543 5543 5549 5549 5543 5549 5543 5543 5543 5543 5543 5543 5543 5543 5543 5543 5549 5549 5543 5543 5549 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5548 5543 5549 5549 5549 5549 5547 5539 5540 0 5538 5539 5548 5543 5549 5547 5539 5539 5548 5549 5543 5543 5549 5543 5543 5549 5543 5549 5543 5549 5549 5549 5547 5539 5539 5539 5548 5549 5549 5543 5549 5549 5543 5543 5549 5549 5549 5549 5543 5549 5547 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5548 5549 5549 5543 5543 5549 5549 5547 5539 5539 5540 0 5538 5548 5549 5547 5539 5540 0 5538 5539 5539 5548 5549 5543 5549 5549 5543 5543 5549 5549 5549 5549 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5548 5543 5543 5549 5549 5549 5549 5549 5549 5543 5549 5543 5543 5549 5543 5549 5549 5543 5549 5543 5549 5549 5549 5549 5543 5543 5549 5549 5543 5549 5543 5549 5543 5543 5549 5543 5547 5539 5539 5548 5549 5543 5543 5549 5543 5547 5539 5540 0 5538 5539 5548 5543 5543 5549 5547 5539 5539 5540 0 0 0 0 5538 5539 5548 5543 5543 5543 5543 5549 5543 5543 5547 5539 5539 5539 5548 5543 5543 5549 5549 5543 5545 5549 5549 5543 5543 5543 5543 5549 5549 5547 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5548 5549 5543 5547 5539 5540 0 0 0 0 0 0 0 0 0 5538 5539 5548 5549 5543 5543 5549 5547 5539 5539 5540 0 0 0 0 0 0 5538 5539 5548 5543 5547 5539 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5539 5548 5549 5543 5547 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5543 5549 5549 5543 5549 5549 5543 5543 5549 5549 5543 5543 5549 5543 5543 5549 5549 5549 5543 5549 5543 5543 5549 5549 5543 5549 5549 5543 5543 5549 5549 5543 5543 5549 5543 5549 5549 5543 5549 5549 5549 5543 5549 5549 5549 5549 5543 5543 5549 5549 5549 5549 5549 5549 5543 5543 5549 5543 5543 5549 5543 5543 5543 5549 5543 5543 5549 5549 5543 5543 5549 5549 5543 5543 5549 5549 5549 5549 5549 5543 5549 5543 5543 5543 5549 5549 5549 5549 5549 5549 5549 5549 5549 5549 5543 5543 5549 5543 5549 5543 5543 5549 5543 5543 5543 5549 5543 5543 5543 5543 5543 5549 5543 5549 5543 5543 5549 5543 5549 5549 5549 5549 5549 5543 5549 5549 5549 5543 5549 5549 5543 5549 5549 5543 5543 5549 5549 5543 5543 5549 5543 5549 5543 5543 5543 5549 5549 5549 5543 5549 5543 5543 5543 5543 5546 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5548 5549 5543 5549 5543 5549 5543 5543 5549 5549 5547 5539 5548 5543 5549 5543 5543 5543 5549 5543 5549 5543 5549 5549 5543 5543 5543 5549 5543 5543 5549 5549 5543 5543 5549 5549 5549 5549 5549 5543 5543 5543 5543 5543 5549 5549 5543 5543 5549 5549 5543 5543 5543 5549 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5548 5549 5543 5543 5549 5549 5543 5543 5549 5549 5543 5549 5547 5539 5548 5543 5549 5543 5543 5547 5539 5548 5543 5549 5543 5543 5549 5549 5549 5543 5543 5549 5543 5549 5549 5549 5547 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5548 5543 5543 5549 5543 5543 5549 5549 5549 5543 5543 5549 5543 5543 5543 5549 5549 5549 5543 5549 5549 5543 5543 5549 5549 5543 5543 5549 5549 5549 5549 5549 5549 5549 5543 5549 5543 5549 5549 5549 5549 5549 5543 5549 5543 5549 5543 5549 5547 5539 5548 5549 5549 5549 5543 5549 5549 5549 5543 5547 5539 5539 5539 5539 5548 5543 5549 5549 5543 5545 5549 5549 5549 5549 5543 5549 5543 5543 5543 5549 5543 5549 5549 5545 5549 5543 5543 5549 5543 5543 5549 5549 5543 5543 5543 5549 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5548 5549 5549 5543 5543 5543 5549 5547 5539 5539 5539 5540 0 0 5538 5539 5539 5548 5549 5549 5549 5549 5549 5543 5549 5543 5543 5547 5539 5539 5539 5539 5539 5539 5548 5543 5549 5549 5549 5543 5549 5543 5547 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 5538 5548 5543 5549 5543 5547 5539 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5539 5539 5539 5548 5543 5543 5543 5549 5549 5549 5543 5549 5547 5539 5539 5539 5540 0 0 0 0 0 0 0 5538 5539 5539 5548 5549 5543 5547 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5549 5543 5549 5543 5543 5549 5543 5549 5549 5543 5549 5543 5549 5543 5549 5549 5543 5549 5549 5549 5543 5549 5543 5543 5543 5543 5543 5543 5549 5549 5543 5543 5543 5549 5543 5543 5549 5543 5549 5549 5543 5549 5543 5549 5543 5549 5543 5549 5549 5543 5543 5549 5549 5543 5549 5543 5549 5549 5549 5543 5543 5543 5549 5543 5543 5549 5549 5543 5543 5549 5543 5543 5549 5543 5549 5549 5543 5543 5549 5549 5543 5549 5549 5549 5543 5543 5543 5549 5543 5543 5543 5543 5549 5549 5543 5543 5549 5543 5549 5543 5549 5543 5549 5543 5543 5549 5543 5549 5549 5549 5549 5549 5549 5543 5543 5549 5549 5549 5549 5549 5549 5543 5549 5543 5543 5543 5549 5543 5543 5549 5543 5543 5549 5549 5543 5543 5543 5543 5549 5549 5543 5543 5543 5549 5549 5549 5549 5549 5543 5543 5549 5549 5543 5543 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5548 5549 5549 5543 5543 5549 5549 5543 5543 5543 5543 5543 5549 5543 5543 5549 5543 5543 5543 5549 5543 5549 5543 5543 5549 5549 5549 5549 5543 5543 5543 5549 5543 5549 5549 5543 5549 5543 5549 5549 5549 5543 5543 5549 5543 5543 5549 5549 5543 5543 5549 5543 5549 5543 5543 5549 5549 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5548 5543 5549 5549 5543 5543 5543 5543 5549 5543 5549 5549 5549 5543 5549 5549 5543 5543 5543 5549 5543 5543 5549 5549 5549 5543 5543 5549 5549 5543 5543 5543 5543 5543 5543 5549 5543 5549 5549 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5548 5549 5543 5549 5543 5549 5549 5543 5549 5549 5549 5549 5549 5543 5543 5549 5543 5543 5543 5543 5549 5543 5543 5543 5543 5549 5549 5543 5543 5549 5549 5549 5543 5543 5543 5549 5549 5549 5543 5549 5543 5543 5543 5543 5543 5543 5549 5549 5543 5543 5549 5549 5549 5549 5543 5549 5543 5543 5543 5549 5543 5543 5549 5543 5543 5549 5549 5543 5549 5543 5543 5543 5543 5549 5543 5549 5543 5549 5543 5543 5543 5549 5549 5543 5549 5543 5549 5543 5543 5549 5549 5543 5543 5549 5543 5549 5543 5543 5543 5547 5539 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5548 5543 5549 5549 5549 5549 5549 5549 5543 5543 5549 5543 5549 5547 5539 5539 5548 5543 5543 5543 5549 5549 5549 5549 5549 5543 5543 5549 5549 5543 5543 5549 5543 5543 5549 5549 5549 5549 5549 5543 5543 5549 5549 5543 5549 5549 5543 5547 5539 5539 5539 5540 0 0 0 0 0 5538 5539 5539 5548 5549 5543 5549 5543 5549 5549 5549 5547 5539 5539 5540 0 0 5538 5539 5539 5539 5540 0 0 5538 5539 5548 5549 5549 5549 5549 5543 5543 5549 5549 5543 5543 5549 5549 5549 5549 5543 5549 5547 5539 5539 5539 5539 5539 5539 5539 5548 5549 5549 5543 5543 5549 5549 5543 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 + 5549 5549 5543 5543 5549 5543 5549 5543 5549 5543 5549 5549 5543 5543 5543 5549 5549 5549 5543 5549 5549 5549 5549 5543 5549 5543 5549 5543 5543 5549 5543 5549 5549 5549 5543 5543 5543 5543 5549 5543 5543 5543 5549 5543 5549 5543 5543 5543 5543 5543 5543 5543 5543 5549 5543 5543 5543 5543 5549 5549 5549 5543 5549 5543 5543 5543 5543 5549 5543 5549 5543 5549 5543 5549 5549 5543 5549 5549 5549 5543 5543 5543 5549 5543 5549 5543 5543 5549 5549 5549 5543 5549 5543 5543 5549 5549 5549 5549 5549 5543 5549 5549 5543 5549 5549 5549 5543 5549 5543 5543 5549 5549 5549 5549 5549 5549 5549 5549 5543 5543 5549 5543 5543 5543 5543 5549 5549 5549 5549 5549 5549 5543 5549 5543 5549 5543 5549 5543 5543 5543 5543 5543 5543 5543 5543 5543 5543 5543 5543 5549 5549 5549 5543 5543 5549 5546 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5548 5549 5543 5549 5543 5549 5543 5549 5543 5543 5543 5549 5543 5549 5549 5543 5549 5549 5549 5549 5543 5549 5549 5543 5543 5543 5543 5543 5543 5543 5543 5543 5549 5543 5549 5543 5543 5543 5549 5543 5543 5543 5543 5549 5543 5549 5543 5549 5549 5543 5543 5543 5543 5543 5543 5549 5543 5549 5549 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5548 5543 5549 5549 5543 5543 5543 5549 5543 5549 5543 5543 5549 5549 5549 5543 5543 5543 5549 5543 5543 5543 5549 5549 5543 5549 5549 5543 5549 5549 5543 5549 5543 5549 5543 5543 5543 5543 5549 5543 5543 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5548 5543 5549 5543 5549 5543 5549 5543 5549 5543 5543 5543 5543 5543 5549 5543 5543 5543 5549 5543 5543 5549 5549 5549 5543 5543 5543 5543 5549 5549 5543 5549 5549 5543 5543 5543 5549 5543 5543 5543 5549 5543 5549 5543 5543 5543 5543 5543 5543 5543 5543 5543 5543 5549 5543 5549 5543 5543 5543 5549 5549 5549 5549 5549 5549 5543 5549 5543 5549 5543 5549 5543 5549 5543 5543 5549 5543 5549 5549 5549 5543 5549 5549 5549 5543 5543 5543 5543 5543 5543 5549 5549 5543 5545 5543 5545 5543 5549 5543 5549 5549 5549 5547 5540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5538 5548 5543 5543 5543 5543 5543 5543 5543 5543 5543 5543 5549 5549 5543 5543 5549 5549 5543 5549 5549 5549 5543 5543 5549 5543 5543 5549 5543 5549 5549 5543 5543 5543 5549 5549 5543 5549 5549 5549 5543 5543 5549 5549 5543 5543 5545 5543 5549 5543 5549 5543 5549 5547 5539 5540 0 5538 5539 5548 5549 5549 5549 5543 5543 5543 5549 5549 5543 5549 5549 5549 5549 5547 5539 5539 5548 5543 5549 5543 5547 5539 5539 5548 5543 5543 5543 5549 5543 5549 5549 5543 5543 5549 5543 5543 5549 5543 5549 5549 5549 5549 5543 5549 5543 5543 5549 5549 5549 5543 5543 5543 5549 5543 5549 5543 5549 5543 5549 5547 5540 0 0 0 0 0 0 0 0 0 0 0 ) ) (tilemap @@ -274,11 +265,11 @@ logo.set_visible(true); 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4118 0 4005 4006 4008 0 4118 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4365 0 4361 4362 4364 0 4365 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4118 0 4005 4006 4008 0 4118 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4365 0 4361 4362 4364 0 4365 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 @@ -291,20 +282,20 @@ logo.set_visible(true); 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4118 0 4005 4008 0 4118 0 0 0 0 4118 0 4005 4008 0 4118 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4365 0 4361 4364 0 4365 0 0 0 0 4365 0 4361 4364 0 4365 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4118 0 4005 4008 0 4118 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4365 0 4361 4364 0 4365 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4005 4008 0 0 4005 4008 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4361 4364 0 0 4361 4364 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4005 4008 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4005 4008 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4005 4008 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4005 4008 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4005 4008 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4005 4008 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4005 4008 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4005 4008 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4005 4008 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4361 4364 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4361 4364 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4361 4364 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4361 4364 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4361 4364 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4361 4364 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4361 4364 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4361 4364 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4361 4364 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 @@ -350,9 +341,9 @@ logo.set_visible(true); 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2057 2058 2061 2066 2071 2058 2050 2064 0 0 0 0 0 0 0 2057 2060 2059 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2192 2179 2182 2184 2197 2179 2190 0 0 0 0 0 0 0 0 0 0 0 0 0 2185 2200 2179 2179 2198 2200 2187 2190 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2192 2180 2195 2187 2179 2196 2179 2195 2198 2186 0 0 0 0 0 2057 2061 2050 2064 0 0 0 0 0 0 2057 2058 2059 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2192 2189 2189 2197 2196 2198 2200 2188 2188 2197 2179 2198 2186 0 0 0 2052 2056 2066 2060 2070 2059 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2057 2060 2060 2058 2058 2058 2071 2058 2058 2058 2065 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2057 2071 2065 2058 2071 2050 2064 0 0 0 0 0 0 0 0 2057 2065 2055 2054 0 0 2062 2051 2065 2050 2064 0 0 0 0 0 0 0 0 0 2185 2200 2182 2201 2200 2195 2187 2190 0 0 0 0 0 0 0 0 0 0 0 0 0 2192 2196 2182 2184 2187 2179 2195 2190 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2185 2200 2189 2179 2197 2180 2179 2180 2197 2179 2198 2186 0 0 0 2052 2056 2058 2059 0 0 0 0 0 0 2052 2056 2058 2059 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2192 2180 2188 2180 2188 2179 2180 2179 2181 2179 2187 2196 2190 0 0 2052 2056 2058 2061 2061 2060 2059 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2052 2056 2058 2065 2058 2058 2065 2058 2058 2066 2058 2050 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2057 2066 2058 2058 2050 2064 0 0 0 0 0 0 0 0 0 2057 2058 2058 2059 0 0 0 2057 2058 2055 2054 0 0 0 0 0 0 0 0 2185 2200 2180 2198 2200 2180 2179 2195 2198 2186 0 0 0 0 0 0 0 0 0 0 0 2185 2200 2179 2198 2200 2187 2197 2189 2190 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2193 2184 2187 2179 2197 2180 2197 2179 2196 2179 2195 2198 2186 0 2052 2056 2058 2058 2059 0 0 0 0 0 0 2057 2058 2061 2055 2054 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2192 2197 2189 2189 2179 2179 2189 2187 2181 2189 2188 2182 2194 0 0 2057 2058 2070 2061 2058 2058 2055 2054 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2052 2056 2058 2058 2058 2060 2058 2060 2061 2058 2050 2063 2064 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2057 2070 2061 2058 2059 0 0 0 0 0 0 0 0 0 0 2062 2051 2065 2055 2054 0 0 2057 2058 2058 2059 0 0 0 0 0 0 0 2185 2200 2188 2179 2188 2189 2181 2197 2181 2189 2190 0 0 0 0 0 0 0 0 0 0 2185 2200 2195 2179 2189 2181 2180 2189 2179 2190 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1705 1706 1706 1706 1706 1706 1706 1706 1706 1706 1706 1706 1707 1705 1706 1706 1706 1706 1706 1706 1706 1706 1706 1706 1707 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2193 2184 2197 2195 2197 2187 2196 2189 2195 2188 2196 2190 0 2057 2060 2058 2058 2055 2054 0 0 0 0 2052 2056 2058 2066 2058 2055 2054 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2185 2200 2195 2187 2197 2196 2179 2179 2188 2188 2179 2182 2194 0 0 0 2062 2051 2065 2065 2061 2058 2058 2059 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2057 2058 2071 2060 2061 2058 2066 2066 2061 2050 2064 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2057 2058 2058 2050 2064 0 0 0 0 0 0 0 0 0 0 0 2057 2058 2058 2055 2054 0 2057 2065 2050 2064 0 0 0 0 0 0 2185 2200 2181 2179 2188 2189 2181 2197 2180 2188 2188 2198 2186 0 0 0 0 0 0 0 0 2185 2200 2181 2181 2187 2179 2187 2189 2182 2183 2194 0 0 0 0 0 0 0 0 0 0 0 0 0 1705 1706 1706 1706 1706 1706 1706 1706 1706 1706 1706 1706 1707 1705 1706 1706 1706 1706 1706 1706 1706 1706 1706 1706 1707 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1708 1709 1709 1709 1709 1709 1709 1709 1709 1709 1709 1709 1710 1708 1709 1709 1709 1709 1709 1709 1709 1709 1709 1709 1710 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2193 2183 2183 2183 2183 2183 2183 2183 2183 2183 2194 0 2057 2058 2066 2058 2058 2059 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2185 2200 2196 2189 2195 2188 2187 2181 2189 2181 2195 2187 2190 0 0 0 0 0 2057 2061 2058 2058 2065 2050 2064 0 0 0 0 0 0 0 0 0 0 1705 1706 1706 1706 1706 1706 1706 1706 1706 1706 1706 1706 1707 1705 1706 1706 1706 1706 1706 1706 1706 1706 1706 1706 1707 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2052 2056 2061 2058 2058 2058 2065 2066 2061 2050 2064 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2062 2051 2058 2059 0 0 0 0 0 0 0 0 0 0 0 0 2062 2051 2061 2058 2055 2054 2062 2063 2064 0 0 0 0 0 0 0 2192 2197 2195 2179 2180 2179 2187 2179 2179 2179 2196 2188 2190 0 0 0 0 0 0 0 0 2192 2197 2195 2187 2196 2179 2182 2183 2194 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1708 1709 1709 1709 1709 1709 1709 1709 1709 1709 1709 1709 1710 1708 1709 1709 1709 1709 1709 1709 1709 1709 1709 1709 1710 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2062 2063 2063 2063 2063 2064 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2192 2195 2181 2188 2179 2179 2189 2189 2182 2183 2183 2183 2194 0 0 0 0 0 2062 2063 2063 2063 2063 2064 0 0 0 0 0 0 0 0 0 0 0 1708 1709 1709 1709 1709 1709 1709 1709 1709 1709 1709 1709 1710 1708 1709 1709 1709 1709 1709 1709 1709 1709 1709 1709 1710 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2052 2053 2056 2066 2060 2066 2065 2058 2060 2050 2063 2064 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2057 2070 2061 2058 2059 0 0 0 0 0 0 0 0 0 0 2062 2051 2065 2055 2054 0 0 2057 2058 2058 2059 0 0 0 0 0 0 0 2185 2200 2188 2179 2188 2189 2181 2197 2181 2189 2190 0 0 0 0 0 0 0 0 0 0 2185 2200 2195 2179 2189 2181 2180 2189 2179 2190 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4439 4440 4440 4440 4440 4440 4440 4440 4440 4440 4440 4440 4441 4439 4440 4440 4440 4440 4440 4440 4440 4440 4440 4440 4441 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2193 2184 2197 2195 2197 2187 2196 2189 2195 2188 2196 2190 0 2057 2060 2058 2058 2055 2054 0 0 0 0 2052 2056 2058 2066 2058 2055 2054 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2185 2200 2195 2187 2197 2196 2179 2179 2188 2188 2179 2182 2194 0 0 0 2062 2051 2065 2065 2061 2058 2058 2059 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2057 2058 2071 2060 2061 2058 2066 2066 2061 2050 2064 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2057 2058 2058 2050 2064 0 0 0 0 0 0 0 0 0 0 0 2057 2058 2058 2055 2054 0 2057 2065 2050 2064 0 0 0 0 0 0 2185 2200 2181 2179 2188 2189 2181 2197 2180 2188 2188 2198 2186 0 0 0 0 0 0 0 0 2185 2200 2181 2181 2187 2179 2187 2189 2182 2183 2194 0 0 0 0 0 0 0 0 0 0 0 0 0 4439 4440 4440 4440 4440 4440 4440 4440 4440 4440 4440 4440 4441 4439 4440 4440 4440 4440 4440 4440 4440 4440 4440 4440 4441 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4392 4393 4393 4393 4393 4393 4393 4393 4393 4393 4393 4393 4394 4392 4393 4393 4393 4393 4393 4393 4393 4393 4393 4393 4394 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2193 2183 2183 2183 2183 2183 2183 2183 2183 2183 2194 0 2057 2058 2066 2058 2058 2059 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2185 2200 2196 2189 2195 2188 2187 2181 2189 2181 2195 2187 2190 0 0 0 0 0 2057 2061 2058 2058 2065 2050 2064 0 0 0 0 0 0 0 0 0 0 4439 4440 4440 4440 4440 4440 4440 4440 4440 4440 4440 4440 4441 4439 4440 4440 4440 4440 4440 4440 4440 4440 4440 4440 4441 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2052 2056 2061 2058 2058 2058 2065 2066 2061 2050 2064 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2062 2051 2058 2059 0 0 0 0 0 0 0 0 0 0 0 0 2062 2051 2061 2058 2055 2054 2062 2063 2064 0 0 0 0 0 0 0 2192 2197 2195 2179 2180 2179 2187 2179 2179 2179 2196 2188 2190 0 0 0 0 0 0 0 0 2192 2197 2195 2187 2196 2179 2182 2183 2194 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4392 4393 4393 4393 4393 4393 4393 4393 4393 4393 4393 4393 4394 4392 4393 4393 4393 4393 4393 4393 4393 4393 4393 4393 4394 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2062 2063 2063 2063 2063 2064 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2192 2195 2181 2188 2179 2179 2189 2189 2182 2183 2183 2183 2194 0 0 0 0 0 2062 2063 2063 2063 2063 2064 0 0 0 0 0 0 0 0 0 0 0 4392 4393 4393 4393 4393 4393 4393 4393 4393 4393 4393 4393 4394 4392 4393 4393 4393 4393 4393 4393 4393 4393 4393 4393 4394 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2052 2053 2056 2066 2060 2066 2065 2058 2060 2050 2063 2064 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2062 2063 2064 0 0 0 0 0 0 0 0 0 0 0 0 0 2057 2061 2065 2058 2059 0 0 0 0 0 0 0 0 0 0 2193 2183 2183 2183 2183 2183 2183 2183 2183 2183 2183 2183 2194 0 0 0 0 0 0 0 0 2193 2184 2195 2187 2182 2183 2194 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3027 3015 3024 0 0 0 0 3023 3016 3028 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2193 2183 2183 2184 2181 2187 2189 2197 2190 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2052 2053 2053 2056 2058 2061 2058 2070 2070 2061 2066 2050 2064 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2057 2058 2065 2066 2059 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2193 2183 2183 2194 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3027 3015 3024 0 0 0 0 3023 3016 3028 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3027 3015 3024 0 0 3023 3016 3028 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2193 2183 2183 2183 2183 2194 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3027 3015 3024 0 0 0 0 3023 3016 3028 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2052 2056 2070 2058 2058 2070 2058 2061 2065 2060 2066 2050 2064 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2057 2065 2058 2065 2055 2054 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3027 3015 3024 0 0 3023 3016 3028 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3027 3015 3024 3023 3016 3028 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3027 3015 3024 0 0 3023 3016 3028 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2057 2058 2070 2058 2066 2058 2066 2058 2071 2060 2061 2059 0 0 0 0 0 0 0 0 @@ -458,17 +449,17 @@ logo.set_visible(true); 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1540 1541 1541 1541 1541 1541 1541 1541 1541 1541 1541 1541 1421 1711 1712 1700 1541 1541 1541 1541 1541 1541 1541 1541 1541 1541 1542 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1540 1541 1541 1541 1541 1541 1541 1541 1541 1541 1541 1541 1421 1711 1712 1700 1541 1541 1541 1541 1541 1541 1541 1541 1541 1541 1542 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1543 1544 1544 1544 1544 1544 1544 1544 1544 1544 1544 1544 1422 1713 1714 1701 1544 1544 1544 1544 1544 1544 1544 1544 1544 1544 1545 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1540 1541 1541 1541 1541 1541 1541 1541 1541 1541 1541 1541 1421 1711 1712 1700 1541 1541 1541 1541 1541 1541 1541 1541 1541 1541 1542 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1543 1544 1544 1544 1544 1544 1544 1544 1544 1544 1544 1544 1422 1713 1714 1701 1544 1544 1544 1544 1544 1544 1544 1544 1544 1544 1545 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1543 1544 1544 1544 1544 1544 1544 1544 1544 1544 1544 1544 1422 1713 1714 1701 1544 1544 1544 1544 1544 1544 1544 1544 1544 1544 1545 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3448 3449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4412 4413 4413 4413 4413 4413 4413 4413 4413 4413 4413 4413 4415 4442 4443 4416 4413 4413 4413 4413 4413 4413 4413 4413 4413 4413 4414 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4412 4413 4413 4413 4413 4413 4413 4413 4413 4413 4413 4413 4415 4442 4443 4416 4413 4413 4413 4413 4413 4413 4413 4413 4413 4413 4414 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4421 4422 4422 4422 4422 4422 4422 4422 4422 4422 4422 4422 4424 5358 5359 4425 4422 4422 4422 4422 4422 4422 4422 4422 4422 4422 4423 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4412 4413 4413 4413 4413 4413 4413 4413 4413 4413 4413 4413 4415 4442 4443 4416 4413 4413 4413 4413 4413 4413 4413 4413 4413 4413 4414 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4421 4422 4422 4422 4422 4422 4422 4422 4422 4422 4422 4422 4424 5358 5359 4425 4422 4422 4422 4422 4422 4422 4422 4422 4422 4422 4423 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4421 4422 4422 4422 4422 4422 4422 4422 4422 4422 4422 4422 4424 5358 5359 4425 4422 4422 4422 4422 4422 4422 4422 4422 4422 4422 4423 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4446 4447 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ) ) ) diff --git a/data/levels/misc/messages.pot b/data/levels/misc/messages.pot index 1fbc3f2dbf4..eb69ce242b7 100644 --- a/data/levels/misc/messages.pot +++ b/data/levels/misc/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: SuperTux v0.6.2-963-gb4a1b149f\n" +"Project-Id-Version: SuperTux v0.6.3-1080-g2e08c1b7f\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,9 +18,9 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: data/levels/misc/credits.stl:3 -msgid "Credits" +msgid "Credits Level" msgstr "" -#: data/levels/misc/menu.stl.in:3 +#: data/levels/misc/menu.stl:3 msgid "Menu Level" msgstr "" diff --git a/data/levels/revenge_in_redmond/messages.pot b/data/levels/revenge_in_redmond/messages.pot index ddc63f37a39..4f059114bb2 100644 --- a/data/levels/revenge_in_redmond/messages.pot +++ b/data/levels/revenge_in_redmond/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: SuperTux v0.6.2-963-gb4a1b149f\n" +"Project-Id-Version: SuperTux v0.6.3-1080-g2e08c1b7f\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,7 +29,7 @@ msgstr "" msgid "Long Office Nights" msgstr "" -#: data/levels/revenge_in_redmond/long_office_nights.stl:570 +#: data/levels/revenge_in_redmond/long_office_nights.stl:568 msgid "" "#Only those wielding the legendary coffee and mints shall pass this barrier!" msgstr "" @@ -42,8 +42,8 @@ msgstr "" msgid "Where Is My Super Cape?" msgstr "" -#: data/levels/revenge_in_redmond/who_is_dawn.stl:3 -msgid "Who Is This Dawn?" +#: data/levels/revenge_in_redmond/who_is_gown.stl:3 +msgid "Who Is This Gown?" msgstr "" #: data/levels/revenge_in_redmond/worldmap.stwm:3 diff --git a/data/levels/test/messages.pot b/data/levels/test/messages.pot index 7a3fb43a600..405f2b208cf 100644 --- a/data/levels/test/messages.pot +++ b/data/levels/test/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: SuperTux v0.6.2-963-gb4a1b149f\n" +"Project-Id-Version: SuperTux v0.6.3-1080-g2e08c1b7f\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/data/levels/world1/af_ZA.po b/data/levels/world1/af_ZA.po index 36716907605..cd3a1e19f0c 100644 --- a/data/levels/world1/af_ZA.po +++ b/data/levels/world1/af_ZA.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2019-12-25 07:33+0000\n" -"Last-Translator: Martin van Zijl \n" -"Language-Team: Afrikaans (South Africa) (http://www.transifex.com/arctic-games/supertux/language/af_ZA/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: Martin van Zijl , 2019\n" +"Language-Team: Afrikaans (South Africa) (http://app.transifex.com/arctic-games/supertux/language/af_ZA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -31,7 +31,7 @@ msgstr "" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Jy het 'n geheime plek ontdek!" @@ -58,10 +58,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Kristalle\n#Hierdie level het vier gekleurde kristalle. Kan jy hulle vind?\n#\n#Opmerking: Hierdie kristalle doen op die oomblik niks nie, maar mag dalk in 'n toekomstige weergawe van die spel." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Leë Troonkamer" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Nolok se Kasteel" diff --git a/data/levels/world1/ar.po b/data/levels/world1/ar.po index 23c9a1d4b06..3c67e18a0f2 100644 --- a/data/levels/world1/ar.po +++ b/data/levels/world1/ar.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 22:58+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022-2023\n" "Language-Team: Arabic (http://app.transifex.com/arctic-games/supertux/language/ar/)\n" @@ -34,7 +34,7 @@ msgstr "23 المحمولة جوا" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "لقد وجدتَ منطقة سرية!" @@ -61,10 +61,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "- بلورات\n# يحتوي هذا المستوى على أربع بلورات ملونة. هل يمكنك العثور عليهم؟\n#\n# ملاحظة: هذه البلورات لا تخدم أي غرض في الوقت الحالي ولكنها قد تخدم في إصدار مستقبلي للعبة." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "غرفة عرش فارغة" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "قلعة نولوك" diff --git a/data/levels/world1/az.po b/data/levels/world1/az.po index 0d8e63ac782..5d62b0ee8e7 100644 --- a/data/levels/world1/az.po +++ b/data/levels/world1/az.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 22:58+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Azerbaijani (http://app.transifex.com/arctic-games/supertux/language/az/)\n" @@ -31,7 +31,7 @@ msgstr "23-cü hava desantı" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Gizli bir sahə tapdınız!" @@ -58,10 +58,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Kristallar\n#Bu səviyyə dörd rəngli kristaldan ibarətdir. Onları tapa bilərsinizmi?\n#\n#Qeyd: Bu kristallar hazırda heç bir məqsədə xidmət etmir, lakin oyunun gələcək buraxılışında olacaq." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Boş taxt otağı" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Nolok qalası" diff --git a/data/levels/world1/bg.po b/data/levels/world1/bg.po index c2052b19c24..2ffd02b3141 100644 --- a/data/levels/world1/bg.po +++ b/data/levels/world1/bg.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-10-09 12:45+0000\n" -"Last-Translator: Любомир Василев\n" -"Language-Team: Bulgarian (http://www.transifex.com/arctic-games/supertux/language/bg/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: Любомир Василев, 2021\n" +"Language-Team: Bulgarian (http://app.transifex.com/arctic-games/supertux/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -33,7 +33,7 @@ msgstr "„Въздушна“ №23" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Ти откри тайно място!" @@ -60,10 +60,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Кристали\n#В това ниво има четири цветни кристала. Можеш ли да ги намериш?\n#\n#Забележка: В момента кристалите не се използват за нищо, но това може да се промени в някоя следваща версия на играта." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Празна тронна зала" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Замъкът на Нолок" diff --git a/data/levels/world1/ca.po b/data/levels/world1/ca.po index a3973ce85a4..321179b4956 100644 --- a/data/levels/world1/ca.po +++ b/data/levels/world1/ca.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 22:58+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Catalan (http://app.transifex.com/arctic-games/supertux/language/ca/)\n" @@ -35,7 +35,7 @@ msgstr "23a divisió aeroespacial" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Has trobat una àrea secreta!" @@ -62,10 +62,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "- Cristalls\n#Aquest nivell conté quatre cristalls de colors. Els pots trobar?\n#\n#Nota: aquests cristalls no tenen cap propòsit en aquest moment, però sí que ho faran en un futur llançament del joc." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Sala del tron ​​buida" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "El castell d'en Nolok" diff --git a/data/levels/world1/cs.po b/data/levels/world1/cs.po index 3c755566db3..6798451c9d7 100644 --- a/data/levels/world1/cs.po +++ b/data/levels/world1/cs.po @@ -4,7 +4,7 @@ # # Translators: # Hume2 , 2016 -# Jiří Paleček , 2021 +# Jiří Paleček , 2021-2022 # Jiří Paleček , 2015-2016 # Jiří Paleček , 2013-2015 # Jiří Paleček , 2020 @@ -15,10 +15,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-20 12:14+0000\n" -"Last-Translator: Jiří Paleček \n" -"Language-Team: Czech (http://www.transifex.com/arctic-games/supertux/language/cs/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: Jiří Paleček , 2021-2022\n" +"Language-Team: Czech (http://app.transifex.com/arctic-games/supertux/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -38,7 +38,7 @@ msgstr "23. letecká" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Našel jsi tajnou skrýš!" @@ -65,17 +65,13 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Krystaly\n#Tato úroveň obsahuje čtyři barevné krystaly. Zvládneš je najít?\n#\n#Poznámka: Tyto krystaly nemají zatím žádné využití, ale to se může do budoucna změnit." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Prázdný trůnní sál" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Nolokův hrad" #: data/levels/world1/crystal_mine.stl:3 msgid "The Crystal Mine" -msgstr "Krystalový důl" +msgstr "Křišťálový důl" #: data/levels/world1/crystal_mine.stl:686 msgid "#You have to activate two switches to open this door." @@ -100,7 +96,7 @@ msgid "" "!images/objects/pushbutton/pushbutton-0.png\n" "#Switches can be used to do all manner of things. Press the UP key to use a switch.\n" "#There are also buttons that you can press by jumping on them." -msgstr "-Páčky a tlačítka\n!images/objects/switch/switch-0.png\n!images/objects/pushbutton/pushbutton-0.png\n#Páčky zvládnou spoustu věcí - stiskni klávesu NAHORU pro jejich použití.\n#Tlačítka stiskneš tím, že na ně skočíš." +msgstr "-Páčky a tlačítka\n!images/objects/switch/switch-0.png\n!images/objects/pushbutton/pushbutton-0.png\n#Páčky zvládnou spoustu věcí - stiskni klávesu NAHORU pro jejich použití. Tlačítka stiskneš tím, že na ně skočíš." #: data/levels/world1/fork_in_the_road.stl:93 msgid "" @@ -211,7 +207,7 @@ msgstr "Tux se probral, motala se mu hlava, a náhle zjistil, že Penny je pryč #: data/levels/world1/scripts_intro.txt:5 msgid "Tux was starting to become worried. He then saw a letter, and it read:" -msgstr "Tux se začínal strachovat. Potom uviděl dopis, ve kterém bylo napsáno:" +msgstr "Začínal se strachovat, a náhle uviděl dopis, ve kterém bylo napsáno:" #: data/levels/world1/scripts_intro.txt:6 msgid "" @@ -235,7 +231,7 @@ msgstr "Tux si uvědomil, v jakém nebezpečí by Penny mohla být, a rozhodl se #: data/levels/world1/scripts_intro.txt:10 msgid "" "Then, Tux saw Nolok's castle in the distance and set off to rescue Penny!" -msgstr "Poté v dáli uviděl Nolokův hrad a vydal se Penny zachránit!" +msgstr "Rozhlédl se, v dáli spatřil Nolokův hrad, a vydal se na cestu." #: data/levels/world1/scripts_yeti_cutscene.txt:2 msgid "Exhausted from his long walk, Tux decided to take a little break." @@ -339,7 +335,7 @@ msgstr "Zmrzlý ostrov" #: data/levels/world1/yeti_boss.stl:3 msgid "No More Mr. Ice Guy" -msgstr "Žádná další ledová panna" +msgstr "Zkáza sněžného muže" #: data/levels/world1/yeti_cutscene.stl:3 msgid "A Yeti in the Distance" diff --git a/data/levels/world1/da.po b/data/levels/world1/da.po index 15be921716e..6f7e1a4d328 100644 --- a/data/levels/world1/da.po +++ b/data/levels/world1/da.po @@ -4,14 +4,15 @@ # # Translators: # Joe Hansen , 2015-2016,2018-2019 +# Lars Lyngby , 2024 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2019-12-22 14:19+0000\n" -"Last-Translator: Joe Hansen \n" -"Language-Team: Danish (http://www.transifex.com/arctic-games/supertux/language/da/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: Lars Lyngby , 2024\n" +"Language-Team: Danish (http://app.transifex.com/arctic-games/supertux/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -31,7 +32,7 @@ msgstr "Højt at flyve..." #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Du har fundet et hemmeligt område" @@ -56,11 +57,7 @@ msgid "" "#This level contains four coloured crystals. Can you find them?\n" "#\n" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." -msgstr "-Krystaller\n#Denne bane indeholder fire farvelagte krystaller. Kan du finde dem?\n#\n#Bemærk: Disse krystallers har ikke et formål i øjeblikket, men vil måske have et i en fremtidig udgivelse af spillet." - -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Tomt tronrum" +msgstr "-Krystaller\n#Denne bane indeholder fire farvelagte krystaller. Kan du finde dem?\n#\n#Bemærk: Disse krystaller tjener ikke et formål lige nu, men de vil måske have et formål i en fremtidig udgave af spillet." #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" @@ -113,7 +110,7 @@ msgid "" "-Secret Exits\n" "#Some level can have multiple exits. They are mostly hidden, so keep an eye out for them.\n" "#Maybe they lead you to something special." -msgstr "-Hemmelige udgange\n#Nogle baner kan have flere udgange. De er ofte skjult, så hold specielt øje efter dem.\n#Måske fører de dig til noget specielt." +msgstr "-Hemmelige udgange\n#Nogle baner kan have flere udgange. De er ofte skjult, så hold specielt udkig efter dem.\n#Måske fører de dig til noget helt specielt." #: data/levels/world1/frosted_fields.stl:3 msgid "The Frosted Fields" @@ -297,7 +294,7 @@ msgid "" "-Checkpoints\n" "!images/objects/resetpoints/bell-m.png\n" "#Activate the checkpoint. If you die, you can retry the level from here. Every time you retry from a checkpoint, you will lose 10 percent of your coins (at least 25 coins)." -msgstr "-Kontrolpunkter\n!images/objects/resetpoints/bell-m.png\n#Aktiver kontrolpunktet. Hvis du dør, så kan du starte forfra på banen derfra. Hver gang du prøver igen fra et kontrolpunkt, så mister du 10 procent af dine mønster (mindst 25 mønter)." +msgstr "-Kontrolpunkter\n!images/objects/resetpoints/bell-m.png\n#Aktiver kontrolpunktet. Hvis du dør, kan du genstarte banen derfra. Hver gang du genstarter fra et kontrolpunkt, mister du 10 procent af dine mønster (dog mindst 25 mønter)." #: data/levels/world1/welcome_antarctica.stl:97 msgid "" diff --git a/data/levels/world1/de.po b/data/levels/world1/de.po index 82575e6c5c4..711dadb7e12 100644 --- a/data/levels/world1/de.po +++ b/data/levels/world1/de.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Wuzzy , 2015-2016 +# Wuzzy , 2015-2016 # Anonymouse , 2013 # Anonymouse , 2013 # Christoph Sommer , 2013 @@ -20,10 +20,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2019-11-24 01:44+0100\n" -"PO-Revision-Date: 2019-11-26 22:12+0000\n" -"Last-Translator: Wuzzy \n" -"Language-Team: German (http://www.transifex.com/arctic-games/supertux/language/de/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: Ondřej Hošek , 2013\n" +"Language-Team: German (http://app.transifex.com/arctic-games/supertux/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,16 +34,16 @@ msgstr "" msgid "23rd Airborne" msgstr "23. Luftlandedivision" -#: data/levels/world1/23rd_airborne.stl:355 -#: data/levels/world1/between_glaciers.stl:615 -#: data/levels/world1/between_glaciers.stl:623 -#: data/levels/world1/crystal_mine.stl:1150 -#: data/levels/world1/crystal_mine.stl:1158 +#: data/levels/world1/23rd_airborne.stl:598 +#: data/levels/world1/between_glaciers.stl:855 +#: data/levels/world1/between_glaciers.stl:863 +#: data/levels/world1/crystal_mine.stl:1535 +#: data/levels/world1/crystal_mine.stl:1543 #: data/levels/world1/frosted_fields.stl:188 #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 -#: data/levels/world1/shattered_bridge.stl:269 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:200 +#: data/levels/world1/shattered_bridge.stl:628 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Du hast ein Versteck gefunden!" @@ -51,7 +51,7 @@ msgstr "Du hast ein Versteck gefunden!" msgid "Above the Arctic Skies" msgstr "Über dem arktischen Himmel" -#: data/levels/world1/above_arctic_skies.stl:152 +#: data/levels/world1/above_arctic_skies.stl:162 msgid "" "-Air Flower\n" "!images/powerups/airflower/air_flower-0.png\n" @@ -62,7 +62,7 @@ msgstr "-Luftblume\n!images/powerups/airflower/air_flower-0.png\n#Durch die Luft msgid "Between Two Glaciers" msgstr "Zwischen zwei Gletschern" -#: data/levels/world1/between_glaciers.stl:104 +#: data/levels/world1/between_glaciers.stl:108 msgid "" "-Crystals\n" "#This level contains four coloured crystals. Can you find them?\n" @@ -70,10 +70,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Kristalle\n#Dieser Level enthält vier farbige Kristalle. Kannst du sie finden?\n#\n#Hinweis: Diese Kristalle erfüllen derzeit keinen besonderen Zweck, allerdings könnte sich das in einer späteren Version ändern." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Leerer Thronraum" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Noloks Schloss" @@ -82,7 +78,7 @@ msgstr "Noloks Schloss" msgid "The Crystal Mine" msgstr "Die Kristallmine" -#: data/levels/world1/crystal_mine.stl:608 +#: data/levels/world1/crystal_mine.stl:686 msgid "#You have to activate two switches to open this door." msgstr "#Du musst zwei Schalter umlegen, um diese Tür zu öffnen." @@ -288,7 +284,7 @@ msgstr "Via Nostalgica" msgid "Welcome to Antarctica" msgstr "Willkommen in der Antarktis" -#: data/levels/world1/welcome_antarctica.stl:68 +#: data/levels/world1/welcome_antarctica.stl:74 msgid "" "-Bonus Blocks\n" "!images/objects/bonus_block/full-0.png\n" @@ -297,42 +293,42 @@ msgid "" "#Hit them from below to get at their contents." msgstr "-Bonusblöcke\n!images/objects/bonus_block/full-0.png\n#Bonus-Blöcke können nicht nur Münzen, Eier oder Feuerblumen enthalten, sondern auch besondere Gegenstände, die Tux auf seiner Reise unterstützen.\n#\n#Durch Anstoßen von unten geben sie ihren Inhalt frei." -#: data/levels/world1/welcome_antarctica.stl:77 +#: data/levels/world1/welcome_antarctica.stl:83 msgid "" "-Eggs\n" "!images/powerups/egg/egg-shade.png\n" "#The egg makes Tux grow larger. Tux can then smash wooden blocks with his head." msgstr "-Eier\n!images/powerups/egg/egg-shade.png\n#Die Eier machen Tux größer. Tux kann Holzblöcke mit seinem Kopf zertrümmern." -#: data/levels/world1/welcome_antarctica.stl:84 +#: data/levels/world1/welcome_antarctica.stl:90 msgid "" "-Checkpoints\n" "!images/objects/resetpoints/bell-m.png\n" "#Activate the checkpoint. If you die, you can retry the level from here. Every time you retry from a checkpoint, you will lose 10 percent of your coins (at least 25 coins)." msgstr "-Kontrollpunkte\n!images/objects/resetpoints/bell-m.png\n#Aktiviere den Kontrollpunkt. Wenn du stirbst, kannst du die Ebene von hier aus nochmal probieren. Immer, wenn du hier neustartest, verlierst du 10 Prozent deiner Münzen (mindestens 25 Münzen)." -#: data/levels/world1/welcome_antarctica.stl:91 +#: data/levels/world1/welcome_antarctica.stl:97 msgid "" "-Running\n" "!images/tiles/signs/run.png\n" "#The path in front of you is blocked. Gain some speed before jumping to pass over the blocks." msgstr "-Rennen\n!images/tiles/signs/run.png\n#Der Weg zum Ziel ist versperrt! Die Blöcke rechts von hier können nur rennend übersprungen werden." -#: data/levels/world1/welcome_antarctica.stl:98 +#: data/levels/world1/welcome_antarctica.stl:104 msgid "" "-Fire Flower\n" "!images/powerups/fireflower/fire_flower-0.png\n" "#The fire flower gives Tux the ability to shoot fireballs." msgstr "-Feuerblume\n!images/powerups/fireflower/fire_flower-0.png\n#Die Feuerblume verleiht Tux die Möglichkeit, Feuerbälle zu werfen." -#: data/levels/world1/welcome_antarctica.stl:105 +#: data/levels/world1/welcome_antarctica.stl:111 msgid "" "-Tux Doll\n" "!images/powerups/1up/1up.png\n" "#The Tux doll gives Tux 100 coins." msgstr "-Tux-Puppe\n!images/powerups/1up/1up.png\n#Die Tux-Puppe ist 100 Münzen auf einmal wert." -#: data/levels/world1/welcome_antarctica.stl:112 +#: data/levels/world1/welcome_antarctica.stl:118 msgid "" "-Secret Areas\n" "#Many levels contain secret areas behind what seems to be plain walls. Look for clues to find them." diff --git a/data/levels/world1/el.po b/data/levels/world1/el.po index af6afe26012..5fd8436f3d3 100644 --- a/data/levels/world1/el.po +++ b/data/levels/world1/el.po @@ -6,12 +6,12 @@ # IAN RODRÍGUEZ Lorenzo, 2022 # I will not tell you that , 2015 # Vangelis Nomikos , 2013-2014 -# Vangelis Skarmoutsos , 2016,2019 +# Vangelis Skarmoutsos (SkarmoutsosV) , 2016,2019 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 22:58+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Greek (http://app.transifex.com/arctic-games/supertux/language/el/)\n" @@ -34,7 +34,7 @@ msgstr "23η Airborne" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Βρήκες μια μυστική περιοχή!" @@ -61,10 +61,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "- Κρύσταλλοι\n#Αυτό το επίπεδο περιέχει τέσσερις έγχρωμους κρυστάλλους. Μπορείτε να τα βρείτε;\n#\n#Σημείωση: Αυτοί οι κρύσταλλοι δεν εξυπηρετούν κανένα σκοπό αυτή τη στιγμή, αλλά μπορεί να το κάνουν σε μελλοντική κυκλοφορία του παιχνιδιού." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Άδειο δωμάτιο του θρόνου" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Το Κάστρο του Nolok" diff --git a/data/levels/world1/eo.po b/data/levels/world1/eo.po index c550858f36d..12d71813197 100644 --- a/data/levels/world1/eo.po +++ b/data/levels/world1/eo.po @@ -6,7 +6,8 @@ # Benjamin Leduc , 2013 # vpzomtrrfrt , 2020 # Frist Lsat , 2016 -# Robin van der Vliet , 2015 +# Jorge Maldonado Ventura , 2022 +# Robin van der Vliet , 2015 # Rubén Leal Coba , 2013 # tellovishous , 2021 # Любомир Василев, 2016 @@ -14,10 +15,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-06-27 17:45+0000\n" -"Last-Translator: tellovishous \n" -"Language-Team: Esperanto (http://www.transifex.com/arctic-games/supertux/language/eo/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: Jorge Maldonado Ventura , 2022\n" +"Language-Team: Esperanto (http://app.transifex.com/arctic-games/supertux/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +38,7 @@ msgstr "La 23-a Aera Forto" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Vi trovis sekretejon!" @@ -50,7 +51,7 @@ msgid "" "-Air Flower\n" "!images/powerups/airflower/air_flower-0.png\n" "#The Air Flower gives Tux the ability to glide in the air for a few seconds, while holding the JUMP Key." -msgstr "-Aerfloro\n!images/powerups/airflower/air_flower-0.png\n#La Aerfloro donas al Tux la ebleco glisi en la aero dum kelkaj sekundoj, dum premi la SALTO klavo" +msgstr "-Aerfloro\n!images/powerups/airflower/air_flower-0.png\n#La Aerfloro donas al Tux la eblecon glisi en la aero dum kelkaj sekundoj, premante la SALTI-klavon." #: data/levels/world1/between_glaciers.stl:3 msgid "Between Two Glaciers" @@ -64,10 +65,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Kristaloj\n#Ĉi tiu nivelo enhavas kvar kolorajn kristalojn. Ĉu vi povas trovi ilin?\n#\n#Noto: Ĉi tiuj kristaloj ne havas celon nune, sed eble en estonta eldono de la ludo." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Malplena Tronĉambro" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "La Kastelo de Nolok" @@ -289,7 +286,7 @@ msgid "" "#Bonus blocks can contain coins, power-ups or special items to help you in your quest.\n" "#\n" "#Hit them from below to get at their contents." -msgstr "-Bonifika Blokoj\n!images/objects/bonus_block/full-0.png\n#Bonifika blokoj enhavas monerojn, bonaĵojn, aŭ specialajn elementojn por helpi vi.\n#\n#Batu tiun sube akiri sin." +msgstr "-Bonifikaj Blokoj\n!images/objects/bonus_block/full-0.png\n#Bonifikaj blokoj enhavas monerojn, plifortigaĵojn, aŭ specialajn elementojn por helpi vi en via serĉo.\n#\n#Batu ilin el sube por atingi iliajn enhavojn." #: data/levels/world1/welcome_antarctica.stl:83 msgid "" @@ -317,7 +314,7 @@ msgid "" "-Fire Flower\n" "!images/powerups/fireflower/fire_flower-0.png\n" "#The fire flower gives Tux the ability to shoot fireballs." -msgstr "-Fajra Floro\n!images/powerups/fireflower/fire_flower-0.png\n#La fajra floro donis al Tux la ebleco pafi fajrobulojn." +msgstr "-Fajra Floro\n!images/powerups/fireflower/fire_flower-0.png\n#La fajra floro donas al Tux la eblecon pafi fajrobulojn." #: data/levels/world1/welcome_antarctica.stl:111 msgid "" diff --git a/data/levels/world1/es.po b/data/levels/world1/es.po index de7d8c32d05..ac2a6567aab 100644 --- a/data/levels/world1/es.po +++ b/data/levels/world1/es.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 22:58+0000\n" "Last-Translator: Swyter , 2018,2021,2023\n" "Language-Team: Spanish (http://app.transifex.com/arctic-games/supertux/language/es/)\n" @@ -37,7 +37,7 @@ msgstr "La 23ª división aérea" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "¡Hallaste un área secreta!" @@ -64,10 +64,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Cristales\n\"En este nivel hay cuatro cristales de colores. ¿Los puedes encontrar?\n#\n#Nota: Estos cristales no tiene ninguna función ahora, pero pueden ser útiles en un próximo lanzamiento del juego." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Cuarto del Trono Vacío" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "El castillo de Nolok" diff --git a/data/levels/world1/es_AR.po b/data/levels/world1/es_AR.po index a294c8f8dc0..0ae91405b49 100644 --- a/data/levels/world1/es_AR.po +++ b/data/levels/world1/es_AR.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-09-25 01:10+0000\n" -"Last-Translator: Salomón Duarte \n" -"Language-Team: Spanish (Argentina) (http://www.transifex.com/arctic-games/supertux/language/es_AR/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: Salomón Duarte , 2021\n" +"Language-Team: Spanish (Argentina) (http://app.transifex.com/arctic-games/supertux/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_AR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/world1/23rd_airborne.stl:3 msgid "23rd Airborne" @@ -32,7 +32,7 @@ msgstr "Aerotransporte N°23" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "¡Encontraste un área secreta!" @@ -59,10 +59,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Cristales\n#Este nivel contiene cuatro cristales de colores. ¿podés encontrarlos?\n#\n#Aviso: Estos cristales no tienen ningún propósito por ahora, pero puede que lo tengan en un lanzamiento futuro del juego." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Cuarto del Trono Vacío" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "El Castillo de Nolok" diff --git a/data/levels/world1/et.po b/data/levels/world1/et.po index c8edca5e500..ad6aa658e63 100644 --- a/data/levels/world1/et.po +++ b/data/levels/world1/et.po @@ -1,260 +1,336 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. +# This file is distributed under the same license as the SuperTux package. # # Translators: +# Urmas Kvell, 2020,2022 +# Urmas Kvell, 2020 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-08-04 15:35+0200\n" -"PO-Revision-Date: 2016-05-09 09:26+0000\n" -"Last-Translator: Benjamin Leduc \n" -"Language-Team: Estonian (http://www.transifex.com/arctic-games/supertux/language/et/)\n" +"Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: Urmas Kvell, 2020,2022\n" +"Language-Team: Estonian (http://app.transifex.com/arctic-games/supertux/language/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: data/levels/world1/01 - Welcome to Antarctica.stl:3 -msgid "Welcome to Antarctica" -msgstr "Teretulemast Antarktikasse" +#: data/levels/world1/23rd_airborne.stl:3 +msgid "23rd Airborne" +msgstr "Lumise tipuga kihv" + +#: data/levels/world1/23rd_airborne.stl:598 +#: data/levels/world1/between_glaciers.stl:855 +#: data/levels/world1/between_glaciers.stl:863 +#: data/levels/world1/crystal_mine.stl:1535 +#: data/levels/world1/crystal_mine.stl:1543 +#: data/levels/world1/frosted_fields.stl:188 +#: data/levels/world1/path_in_the_clouds.stl:348 +#: data/levels/world1/path_in_the_clouds.stl:1126 +#: data/levels/world1/shattered_bridge.stl:628 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 +msgid "You found a secret area!" +msgstr "Sa leidsid salakambri!" + +#: data/levels/world1/above_arctic_skies.stl:3 +msgid "Above the Arctic Skies" +msgstr "Tuule mäng mägiraja teraval harjal" -#: data/levels/world1/01 - Welcome to Antarctica.stl:63 +#: data/levels/world1/above_arctic_skies.stl:162 msgid "" -"-Bonus Blocks\n" -"!images/objects/bonus_block/full-0.png\n" -"#Bonus blocks can contain coins, power-ups or special items to help you in your quest.\n" -"#\n" -"#Hit them from below to get at their contents." -msgstr "" +"-Air Flower\n" +"!images/powerups/airflower/air_flower-0.png\n" +"#The Air Flower gives Tux the ability to glide in the air for a few seconds, while holding the JUMP Key." +msgstr "-Tuulelill\n!images/powerups/airflower/air_flower-0.png\n#Tuulelill annab Tux'ile oskuse lühikeseks ajaks lennata. Selleks kasuta hüppamise nuppu." -#: data/levels/world1/01 - Welcome to Antarctica.stl:72 -msgid "" -"-Eggs\n" -"!images/powerups/egg/egg.png\n" -"#The egg makes Tux grow larger. Tux can then smash wooden blocks with his head." -msgstr "" +#: data/levels/world1/between_glaciers.stl:3 +msgid "Between Two Glaciers" +msgstr "Liustiku sügavad jää-ääred" -#: data/levels/world1/01 - Welcome to Antarctica.stl:79 +#: data/levels/world1/between_glaciers.stl:108 msgid "" -"-Checkpoints\n" -"!images/objects/resetpoints/bell-m.png\n" -"#Activate the checkpoint. If you die, you can retry the level from here. Every time you retry from a checkpoint, you will lose 10 percent of your coins (at least 25 coins)." -msgstr "" +"-Crystals\n" +"#This level contains four coloured crystals. Can you find them?\n" +"#\n" +"#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." +msgstr "-Kristallid\n#Sellel tasandil on neli värvilist kristalli. Kas sa leiad kõik neli?\n#\n#PS: Mängu läbimiseks ei ole kristalle vaja." -#: data/levels/world1/01 - Welcome to Antarctica.stl:86 -msgid "" -"-Running\n" -"!images/tiles/signs/run.png\n" -"#The path in front of you is blocked. Gain some speed before jumping to pass over the blocks." -msgstr "" +#: data/levels/world1/castle_of_nolok.stl:3 +msgid "The Castle of Nolok" +msgstr "Noloki talveloss" -#: data/levels/world1/01 - Welcome to Antarctica.stl:93 -msgid "" -"-Fire Flower\n" -"!images/powerups/fireflower/fire_flower-0.png\n" -"#The fire flower gives Tux the ability to shoot fireballs." -msgstr "" +#: data/levels/world1/crystal_mine.stl:3 +msgid "The Crystal Mine" +msgstr "Kristallikaevandus" -#: data/levels/world1/01 - Welcome to Antarctica.stl:100 -msgid "" -"-Tux Doll\n" -"!images/powerups/1up/1up.png\n" -"#The Tux doll gives Tux 100 coins." -msgstr "" +#: data/levels/world1/crystal_mine.stl:686 +msgid "#You have to activate two switches to open this door." +msgstr "#Sa pead vajutama kahte lülitit, et seda ust avada." -#: data/levels/world1/01 - Welcome to Antarctica.stl:107 -msgid "" -"-Secret Areas\n" -"#Many levels contain secret areas behind what seems to be plain walls. Look for clues to find them." -msgstr "" +#: data/levels/world1/end_of_tunnel.stl:3 +msgid "End of the Tunnel" +msgstr "Hõbedane koidukiir tunneli lõpus" -#: data/levels/world1/02 - The Journey Begins.stl:3 -msgid "The Journey Begins" -msgstr "Seiklus algab" +#: data/levels/world1/entrance_cave.stl:3 +msgid "Entrance to the Cave" +msgstr "Koopasuu pimeduse lahte" -#: data/levels/world1/03 - Via Nostalgica.stl:3 -msgid "Via Nostalgica" -msgstr "Via Nostalgica" +#: data/levels/world1/fork_in_the_road.stl:3 +msgid "A Fork in the Road" +msgstr "Kinnituisanud teelahe" -#: data/levels/world1/04 - Tobgle Road.stl:3 -msgid "Tobgle Road" -msgstr "Tobgle'i tee" +#: data/levels/world1/fork_in_the_road.stl:84 +msgid "" +"-Switches\n" +"!images/objects/switch/switch-0.png\n" +"!images/objects/pushbutton/pushbutton-0.png\n" +"#Switches can be used to do all manner of things. Press the UP key to use a switch.\n" +"#There are also buttons that you can press by jumping on them." +msgstr "-Lüliti\n!images/objects/switch/switch-0.png\n!images/objects/pushbutton/pushbutton-0.png\n#Lüliteid saab kasutada erinevateks tegevusteks. Lüliti kasutamiseks vajuta ÜLES nuppu.\n#Mängus on ka nupud, mille vajutamiseks tuleb neile peale hüpata.." -#: data/levels/world1/05 - The Somewhat Smaller Bath.stl:3 -msgid "The Somewhat Smaller Bath" -msgstr "Mõnevõrra väiksem vann" +#: data/levels/world1/fork_in_the_road.stl:93 +msgid "" +"-Trampolines\n" +"!images/objects/trampoline/trampoline2-0.png\n" +"#Trampolines allow Tux to jump to new heights. Hold down the JUMP key while bouncing on the trampoline to launch extra high." +msgstr "-Hüppelaud\n!images/objects/trampoline/trampoline2-0.png\n#Hüppelauad aitavad Tux'il hüpata. Kõrgemale lendamiseks hoia hüppelaual põrgates all hüppamise nuppu." -#: data/levels/world1/06 - The Frosted Fields.stl:3 -msgid "The Frosted Fields" -msgstr "Härmatise Väljad" +#: data/levels/world1/fork_in_the_road.stl:100 +msgid "" +"-Climbing\n" +"#Tux can climb! Press the UP key to start climbing. Press the ACTION key or jump to let go." +msgstr "-Tux oskab ronida!\n# Vajuta ÜLES nuppu, et alustada ronimist. Lahti laskmiseks vajuta tegevuse nuppu või hüppa." -#: data/levels/world1/07 - Oh No More Snowballs.stl:3 -msgid "Oh no! More Snowballs!" -msgstr "Oo ei! Veel lumepalle!" +#: data/levels/world1/fork_in_the_road.stl:106 +msgid "" +"-Secret Exits\n" +"#Some level can have multiple exits. They are mostly hidden, so keep an eye out for them.\n" +"#Maybe they lead you to something special." +msgstr "-Salajane väljapääs\n#Mõnel tasandil on ka salajane väljapääs. Hoia silmad lahti ja sa võid ühe üles leida.\n#Võib-olla nad viivad su erilisse kohta." -#: data/levels/world1/08 - Stone Cold.stl:3 -msgid "Stone Cold" -msgstr "Jääkülm" +#: data/levels/world1/frosted_fields.stl:3 +msgid "The Frosted Fields" +msgstr "Jäätunud tuisuvaalad" -#: data/levels/world1/09 - Grumbels Sense of Snow.stl:3 -msgid "Grumbel's Sense of Snow" -msgstr "Grumbel'i lumemeel" +#: data/levels/world1/frozen_bridge.stl:3 +msgid "Over the Frozen Bridge" +msgstr "Väänlev kitsas jääsild" -#: data/levels/world1/10 - 23rd Airborne.stl:3 -msgid "23rd Airborne" -msgstr "23. Õhujõud" +#: data/levels/world1/ice_in_the_hole.stl:3 +msgid "Ice in the Hole" +msgstr "Reetlik jääauk" -#: data/levels/world1/11 - Night Chill.stl:3 -msgid "Night Chill" -msgstr "Öine kõledus" +#: data/levels/world1/icy_valley.stl:3 +msgid "Icy Valley" +msgstr "Sügav varjuline org" -#: data/levels/world1/12 - Into the Stars.stl:3 +#: data/levels/world1/into_stars.stl:3 msgid "Into the Stars" -msgstr "Tähtede poole" +msgstr "Tähise põhjakaare all" -#: data/levels/world1/13 - Above the Arctic Skies.stl:3 -msgid "Above the Arctic Skies" -msgstr "Arktiliste taevaste kohal" - -#: data/levels/world1/14 - Entrance to the Cave.stl:3 -msgid "Entrance to the Cave" -msgstr "Sissepääs Koopasse" +#: data/levels/world1/intro.stl:3 +msgid "Picnic With Penny" +msgstr "Kena talvehommik Penniga" -#: data/levels/world1/15 - Under the Ice.stl:3 -msgid "Under the Ice" -msgstr "Jää all" +#: data/levels/world1/journey_begins.stl:3 +msgid "The Journey Begins" +msgstr "Krudisev lumekoorik" -#: data/levels/world1/16 - Living in a Fridge.stl:3 +#: data/levels/world1/living_inside_fridge.stl:3 msgid "Living in a Fridge" -msgstr "Elamine külmikus" +msgstr "Lõikamine läbi hange" -#: data/levels/world1/17 - Or is it just me.stl:3 -msgid "'...or is it just me?'" -msgstr "'...või tundub see ainult mulle nii?'" +#: data/levels/world1/miyamoto_monument.stl:3 +msgid "Miyamoto Monument" +msgstr "Jääskulptuur Miyamoto'le" -#: data/levels/world1/18 - Ice in the Hole.stl:3 -msgid "Ice in the Hole" -msgstr "Jää augus" +#: data/levels/world1/more_snowballs.stl:3 +msgid "Oh No! More Snowballs!" +msgstr "Paks kohev lumevaip" -#: data/levels/world1/19 - Miyamoto Monument.stl:3 -msgid "Miyamoto Monument" -msgstr "Miyamoto monument" +#: data/levels/world1/night_chill.stl:3 +msgid "Night Chill" +msgstr "Mägede tuhmid piirjooned" -#: data/levels/world1/20 - End of the Tunnel.stl:3 -msgid "End of the Tunnel" -msgstr "Tunneli lõpp" +#: data/levels/world1/or_just_me.stl:3 +msgid "...Or Is It Just Me?" +msgstr "Lumehelbe saladuslik puudutus" -#: data/levels/world1/21 - A Path in the Clouds.stl:3 +#: data/levels/world1/path_in_the_clouds.stl:3 msgid "A Path in the Clouds" -msgstr "Teekond pilvedes" +msgstr "Mägede ja taeva piiril" -#: data/levels/world1/22 - A Mysterious House of Ice.stl:3 -msgid "A Mysterious House of Ice" -msgstr "Kummaline Jäämaja" +#: data/levels/world1/scripts_castle_cutscene.txt:2 +msgid "Tux had reached the end of the castle." +msgstr "Tux kiirustas treppidest üles lossi kõrgeimasse vangitorni," -#: data/levels/world1/23 - The Escape.stl:3 -msgid "The Escape" -msgstr "Pääsemine" +#: data/levels/world1/scripts_castle_cutscene.txt:3 +msgid "But to his surprise all he could find was a letter." +msgstr "kuid teda ootas ees vaid üks kortsutatud kiri torni aknalaual." -#: data/levels/world1/24 - The Shattered Bridge.stl:3 -msgid "The Shattered Bridge" -msgstr "Purustatud sild" +#: data/levels/world1/scripts_castle_cutscene.txt:4 +msgid "" +"A letter from Penny telling Tux that Nolok has taken her to a far forest." +msgstr "\"Mu armas Tux, ma kuulsin pealt Noloki kurja plaani...\"" -#: data/levels/world1/25 - Arctic Ruins.stl:3 -msgid "Arctic Ruins" -msgstr "Arktilised Varemed" +#: data/levels/world1/scripts_castle_cutscene.txt:5 +msgid "" +"Unsure about what Nolok was doing to her, Tux became worried about his " +"beloved Penny." +msgstr "\"Ta viib mu siit ära kaugele metsamaale oma suvelossi. Päästa mind! Sinu Penny\"" -#: data/levels/world1/26 - The Castle of Nolok.stl:3 -msgid "The Castle of Nolok" -msgstr "Nolok'i Kindlus" +#: data/levels/world1/scripts_castle_cutscene.txt:6 +msgid "Until suddenly..." +msgstr "Ent äkitselt..." -#: data/levels/world1/27 - No More Mr Ice Guy.stl:3 -msgid "No More Mr Ice Guy" -msgstr "Hüvasti Hr. Jäämees" +#: data/levels/world1/scripts_intro.txt:2 +msgid "Somewhere at the shores of Antarctica..." +msgstr "Kaugel Antarktikas oli järjekordne imekaunis talvehommik..." -#: data/levels/world1/Fork_in_the_Road.stl:3 -msgid "A Fork in the Road" -msgstr "Harutee" +#: data/levels/world1/scripts_intro.txt:3 +msgid "Tux the penguin was going to meet his friend, Penny, for a picnic." +msgstr "Pingviin Tux oli kutsunud oma armsa Penny piknikule." + +#: data/levels/world1/scripts_intro.txt:4 +msgid "Tux woke up, dizzy, to find that Penny was missing!" +msgstr "Endal pea veel pööritas, hakkas Tux hõikuma Pennyt." -#: data/levels/world1/Fork_in_the_Road.stl:353 +#: data/levels/world1/scripts_intro.txt:5 +msgid "Tux was starting to become worried. He then saw a letter, and it read:" +msgstr "Kuid ta hõiked jäid vastuseta, seejärel märkas kirja ümbrikus..." + +#: data/levels/world1/scripts_intro.txt:6 msgid "" -"-Switches\n" -"!images/objects/switch/left-0.png\n" -"!images/objects/switch/switch-0.png\n" -"!images/objects/switch/right-0.png\n" -"#Switches can be used to do all manner of things. Press the UP key to use switches. This one activates the lift to your right." -msgstr "" +"\"Tux, I have kidnapped your beloved Penny and have taken her to my " +"fortress.\"" +msgstr "\"Tux, Mina röövisin su armsama, Penny.\"" + +#: data/levels/world1/scripts_intro.txt:7 +msgid "\"The path to my fortress is littered with my minions.\"" +msgstr "\"Ta on lukustatud mu lossi kõige kõrgemasse vangitorni,\"" + +#: data/levels/world1/scripts_intro.txt:8 +msgid "\"You don't have a chance of saving her! Signed, Nolok.\"" +msgstr "\"kuhu ta peab jääma kõikide aegade lõpuni! Allakirjutanu, Nolok\"" -#: data/levels/world1/Fork_in_the_Road.stl:362 +#: data/levels/world1/scripts_intro.txt:9 msgid "" -"-Trampolines\n" -"!images/objects/trampoline/trampoline2-0.png\n" -"#Trampolines allow Tux to jump to new heights. Hold down the jump key while bouncing on the trampoline to launch extra high." -msgstr "" +"Realizing the trouble Penny could be in, Tux became determined to save her." +msgstr "Kauguses võis silmata kurja valitseja Noloki talvelossi," -#: data/levels/world1/Fork_in_the_Road.stl:369 +#: data/levels/world1/scripts_intro.txt:10 msgid "" -"- Climbing\n" -"# Tux can climb! Press the UP key to start climbing. Press the ACTION key or jump to let go." -msgstr "" +"Then, Tux saw Nolok's castle in the distance and set off to rescue Penny!" +msgstr "kuid teekond sinna oli täis jäiseid ohti ja Noloki kurje käsilasi." -#: data/levels/world1/bonus.stl:3 -msgid "Bonus Level" -msgstr "Boonustasand" +#: data/levels/world1/scripts_yeti_cutscene.txt:2 +msgid "Exhausted from his long walk, Tux decided to take a little break." +msgstr "Noloki talveloss kindlalt silme ees otsustas Tux hinge puhata ja ennast kosutada." -#: data/levels/world1/intro.stl:3 -msgid "Picnic With Penny" -msgstr "Piknik Penny'ga" +#: data/levels/world1/scripts_yeti_cutscene.txt:3 +msgid "But then, all of a sudden he heard a loud roar from a distance." +msgstr "Kuid ühtäkki kostus kaugusest vali möire!" -#: data/levels/world1/scripts_intro.txt:2 +#: data/levels/world1/scripts_yeti_cutscene.txt:4 +msgid "A yeti seems to have observed him from afar." +msgstr "See ei olnud jääkaru või morsk, vaid eemalt jälitas teda üksik jeti." + +#: data/levels/world1/scripts_yeti_cutscene.txt:5 msgid "" -"Somewhere at the shores\n" -"of Antarctica..." -msgstr "" +"Concerned by the yeti's sudden retreat, Tux decided to continue his journey," +" ..." +msgstr "Tundes muret Jeti ootamatu lahkumise pärast, otsustas Tux oma rännakut jätkata, ..." -#: data/levels/world1/scripts_intro.txt:4 -msgid "Tux: Hello Penny" -msgstr "" +#: data/levels/world1/scripts_yeti_cutscene.txt:6 +msgid "...while secretly hoping not to run into the yeti again, by any means." +msgstr "...sisimas lootes jetiga enam mitte kohtuda. Ükskõik mis ka teekond ei tooks." -#: data/levels/world1/scripts_intro.txt:5 -msgid "Penny: Hey Tux" -msgstr "" +#: data/levels/world1/shattered_bridge.stl:3 +msgid "The Shattered Bridge" +msgstr "Habras jäätunud sild" -#: data/levels/world1/scripts_intro.txt:6 -msgid "Tux: Check out my dance moves." -msgstr "" +#: data/levels/world1/somewhat_smaller_bath.stl:3 +msgid "The Somewhat Smaller Bath" +msgstr "Üüratu igilumi" -#: data/levels/world1/scripts_intro.txt:7 -msgid "Tux: Oww... my head..." -msgstr "" +#: data/levels/world1/stone_cold.stl:3 +msgid "Stone Cold" +msgstr "Mägede jäine hingus" -#: data/levels/world1/scripts_intro.txt:8 -msgid "Tux: Wait!" -msgstr "" +#: data/levels/world1/under_the_ice.stl:3 +msgid "Under the Ice" +msgstr "Allpool jääkoorikut" -#: data/levels/world1/scripts_intro.txt:9 -msgid "Tux: Penny!" -msgstr "" +#: data/levels/world1/via_nostalgica.stl:3 +msgid "Via Nostalgica" +msgstr "Petlikult tuttav teerada" -#: data/levels/world1/scripts_intro.txt:10 -msgid "Tux: Where are you, Penny?!" -msgstr "" +#: data/levels/world1/welcome_antarctica.stl:3 +msgid "Welcome to Antarctica" +msgstr "Ettevalmistused rännaku ohtudeks" -#: data/levels/world1/scripts_intro.txt:11 -msgid "Tux: Oh no..." -msgstr "" +#: data/levels/world1/welcome_antarctica.stl:74 +msgid "" +"-Bonus Blocks\n" +"!images/objects/bonus_block/full-0.png\n" +"#Bonus blocks can contain coins, power-ups or special items to help you in your quest.\n" +"#\n" +"#Hit them from below to get at their contents." +msgstr "-Boonusplokid\n!images/objects/bonus_block/full-0.png\n#Boonusplokid võivad sisaldada kuldmünte, power-up'e või eriesemeid, mis sind aitavad.\n#\n#Müksa neid alt poolt, et saada nende sisu." -#: data/levels/world1/scripts_intro.txt:12 -msgid "Tux: Don't worry, Penny, I'll rescue you!" -msgstr "" +#: data/levels/world1/welcome_antarctica.stl:83 +msgid "" +"-Eggs\n" +"!images/powerups/egg/egg-shade.png\n" +"#The egg makes Tux grow larger. Tux can then smash wooden blocks with his head." +msgstr "-Muna\n!images/powerups/egg/egg-shade.png\n#Muna paneb Tux'i kasvama, siis saab Tux peaga lõhkuda puidust kaste." + +#: data/levels/world1/welcome_antarctica.stl:90 +msgid "" +"-Checkpoints\n" +"!images/objects/resetpoints/bell-m.png\n" +"#Activate the checkpoint. If you die, you can retry the level from here. Every time you retry from a checkpoint, you will lose 10 percent of your coins (at least 25 coins)." +msgstr "-Kelluke\n!images/objects/resetpoints/bell-m.png\n#Tilista kellukest, et hiljem hätta jäädes mängu siit jätkata. Kuid siit uuesti alustades kaotad sa osa oma kuldmüntidest." + +#: data/levels/world1/welcome_antarctica.stl:97 +msgid "" +"-Running\n" +"!images/tiles/signs/run.png\n" +"#The path in front of you is blocked. Gain some speed before jumping to pass over the blocks." +msgstr "-Võta hoogu!\n!images/tiles/signs/run.png\n#Eespool on kõrge tõke. Proovi jooksu pealt hüpates sellest üle saada." + +#: data/levels/world1/welcome_antarctica.stl:104 +msgid "" +"-Fire Flower\n" +"!images/powerups/fireflower/fire_flower-0.png\n" +"#The fire flower gives Tux the ability to shoot fireballs." +msgstr "-Tulilill\n!images/powerups/fireflower/fire_flower-0.png\n#Tulilill annab Tux'ile oskuse tulistada välja tulepalle." + +#: data/levels/world1/welcome_antarctica.stl:111 +msgid "" +"-Tux Doll\n" +"!images/powerups/1up/1up.png\n" +"#The Tux doll gives Tux 100 coins." +msgstr "-Nuku-Tux\n!images/powerups/1up/1up.png\n#Püüa nukk kinni, et saada 100 kuldmünti." + +#: data/levels/world1/welcome_antarctica.stl:118 +msgid "" +"-Secret Areas\n" +"#Many levels contain secret areas behind what seems to be plain walls. Look for clues to find them." +msgstr "-Salakambrid\n#Mõnes kohas on jäiste seinte sees peidus salakamber, kust võib leida varandust." #: data/levels/world1/worldmap.stwm:3 -msgid "Icyisland" -msgstr "Jäine saar" +msgid "Icy Island" +msgstr "Suur ja paljas põhjapoolne saar" + +#: data/levels/world1/yeti_boss.stl:3 +msgid "No More Mr. Ice Guy" +msgstr "Lumes ennast leidnud" -#: data/levels/world1/worldmap.stwm:37 -msgid "You Found a Secret Area!" -msgstr "Sa leidsid salakoha!" +#: data/levels/world1/yeti_cutscene.stl:3 +msgid "A Yeti in the Distance" +msgstr "Jeti penikoorma kauguses" diff --git a/data/levels/world1/eu.po b/data/levels/world1/eu.po index e24ddb23b3b..8b5699ab207 100644 --- a/data/levels/world1/eu.po +++ b/data/levels/world1/eu.po @@ -4,16 +4,16 @@ # # Translators: # Bingen Galartza Iparragirre , 2016 -# Mielanjel Iraeta , 2018-2019 +# Mielanjel Iraeta , 2018-2019 # Urtzi Odriozola , 2017 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2019-11-24 01:44+0100\n" -"PO-Revision-Date: 2019-11-24 17:28+0000\n" -"Last-Translator: Mielanjel Iraeta \n" -"Language-Team: Basque (http://www.transifex.com/arctic-games/supertux/language/eu/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: Mielanjel Iraeta , 2018-2019\n" +"Language-Team: Basque (http://app.transifex.com/arctic-games/supertux/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,16 +24,16 @@ msgstr "" msgid "23rd Airborne" msgstr "23. Aire-garraioa" -#: data/levels/world1/23rd_airborne.stl:355 -#: data/levels/world1/between_glaciers.stl:615 -#: data/levels/world1/between_glaciers.stl:623 -#: data/levels/world1/crystal_mine.stl:1150 -#: data/levels/world1/crystal_mine.stl:1158 +#: data/levels/world1/23rd_airborne.stl:598 +#: data/levels/world1/between_glaciers.stl:855 +#: data/levels/world1/between_glaciers.stl:863 +#: data/levels/world1/crystal_mine.stl:1535 +#: data/levels/world1/crystal_mine.stl:1543 #: data/levels/world1/frosted_fields.stl:188 #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 -#: data/levels/world1/shattered_bridge.stl:269 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:200 +#: data/levels/world1/shattered_bridge.stl:628 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Eremu ezkutu bat aurkitu duzu!" @@ -41,7 +41,7 @@ msgstr "Eremu ezkutu bat aurkitu duzu!" msgid "Above the Arctic Skies" msgstr "Artikoko zeruen gainetik" -#: data/levels/world1/above_arctic_skies.stl:152 +#: data/levels/world1/above_arctic_skies.stl:162 msgid "" "-Air Flower\n" "!images/powerups/airflower/air_flower-0.png\n" @@ -52,7 +52,7 @@ msgstr "-Air Flower\n!images/powerups/airflower/air_flower-0.png\n#Haize Loreak msgid "Between Two Glaciers" msgstr "Bi glaziarren artean" -#: data/levels/world1/between_glaciers.stl:104 +#: data/levels/world1/between_glaciers.stl:108 msgid "" "-Crystals\n" "#This level contains four coloured crystals. Can you find them?\n" @@ -60,10 +60,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "- Kristalak\n\"Maila honetan koloretako lau kristal daude. Aurkituko dituzu?\n#\n#Oharra: kristal horiek ez dute inolako funtziorik orain, baina baliagarriak izan daitezke jokoaren hurrengo bertsio batean." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Tronu hutsaren gela" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Noloken gaztelua" @@ -72,7 +68,7 @@ msgstr "Noloken gaztelua" msgid "The Crystal Mine" msgstr "Kristal meategia" -#: data/levels/world1/crystal_mine.stl:608 +#: data/levels/world1/crystal_mine.stl:686 msgid "#You have to activate two switches to open this door." msgstr "#Bi etengailu aktibatu behar dituzu ate hau irekitzeko." @@ -278,7 +274,7 @@ msgstr "Nostalgian barrena" msgid "Welcome to Antarctica" msgstr "Ongi etorri Antartikara" -#: data/levels/world1/welcome_antarctica.stl:68 +#: data/levels/world1/welcome_antarctica.stl:74 msgid "" "-Bonus Blocks\n" "!images/objects/bonus_block/full-0.png\n" @@ -287,42 +283,42 @@ msgid "" "#Hit them from below to get at their contents." msgstr "- Sari-blokeak\n!images/objects/bonus_block/full-0.png\n#Sari-blokeek bidean lagunduko dizuten txanponak, botereak edo objektu bereziak izan ditzakete.\n#\n#Kolpatu azpialdetik saria lortzeko." -#: data/levels/world1/welcome_antarctica.stl:77 +#: data/levels/world1/welcome_antarctica.stl:83 msgid "" "-Eggs\n" "!images/powerups/egg/egg-shade.png\n" "#The egg makes Tux grow larger. Tux can then smash wooden blocks with his head." msgstr "- Arrautzak\n! Images/powerups/egg/egg-shade.png\n#arrautzek Tux hazten dute. Gero Tuxek bere buruarekin egurrezko blokeak suntsitu ahal izango ditu." -#: data/levels/world1/welcome_antarctica.stl:84 +#: data/levels/world1/welcome_antarctica.stl:90 msgid "" "-Checkpoints\n" "!images/objects/resetpoints/bell-m.png\n" "#Activate the checkpoint. If you die, you can retry the level from here. Every time you retry from a checkpoint, you will lose 10 percent of your coins (at least 25 coins)." msgstr "- Kontrol-puntuak\n!images/objects/resetpoints/bell-m.png\n#Aktibatu kontrol-puntua. Hiltzen bazara, bertan birsortuko zara. Saiakera bakoitzeko, zure txanponen % 10 galduko duzu (gutxienez 25 txanpon)." -#: data/levels/world1/welcome_antarctica.stl:91 +#: data/levels/world1/welcome_antarctica.stl:97 msgid "" "-Running\n" "!images/tiles/signs/run.png\n" "#The path in front of you is blocked. Gain some speed before jumping to pass over the blocks." msgstr "- Egin korrika\n!images/tiles/signs/run.png\n#Bidea itxita dago. Abiadura pixka bat beharko duzu blokeen gainetik salto egiteko." -#: data/levels/world1/welcome_antarctica.stl:98 +#: data/levels/world1/welcome_antarctica.stl:104 msgid "" "-Fire Flower\n" "!images/powerups/fireflower/fire_flower-0.png\n" "#The fire flower gives Tux the ability to shoot fireballs." msgstr "- Suzko lorea\n!images/powerups/fireflower/fire_flower-0.png\n#Suzko bolak jaurtitzeko gaitasuna ematen dio Tuxi." -#: data/levels/world1/welcome_antarctica.stl:105 +#: data/levels/world1/welcome_antarctica.stl:111 msgid "" "-Tux Doll\n" "!images/powerups/1up/1up.png\n" "#The Tux doll gives Tux 100 coins." msgstr "- Tux panpina\n!images/powerups/1up/1up.png\nTux panpinak 100 txanpon ematen dizkio Tuxi." -#: data/levels/world1/welcome_antarctica.stl:112 +#: data/levels/world1/welcome_antarctica.stl:118 msgid "" "-Secret Areas\n" "#Many levels contain secret areas behind what seems to be plain walls. Look for clues to find them." diff --git a/data/levels/world1/fi.po b/data/levels/world1/fi.po index 2fcd1e900c5..c47f2578bf3 100644 --- a/data/levels/world1/fi.po +++ b/data/levels/world1/fi.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Jaakoppi Horila , 2016,2018,2020 +# Jaakoppi Horila , 2016,2018,2020,2022 # , 2004 # tingberg , 2013-2014 # Lauri Ojansivu , 2014 @@ -11,10 +11,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2020-04-13 17:25+0200\n" -"PO-Revision-Date: 2020-02-10 12:38+0000\n" -"Last-Translator: Jaakoppi Horila \n" -"Language-Team: Finnish (http://www.transifex.com/arctic-games/supertux/language/fi/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: Jaakoppi Horila , 2016,2018,2020,2022\n" +"Language-Team: Finnish (http://app.transifex.com/arctic-games/supertux/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -25,16 +25,16 @@ msgstr "" msgid "23rd Airborne" msgstr "Lento 23" -#: data/levels/world1/23rd_airborne.stl:355 -#: data/levels/world1/between_glaciers.stl:615 -#: data/levels/world1/between_glaciers.stl:623 -#: data/levels/world1/crystal_mine.stl:1150 -#: data/levels/world1/crystal_mine.stl:1158 +#: data/levels/world1/23rd_airborne.stl:598 +#: data/levels/world1/between_glaciers.stl:855 +#: data/levels/world1/between_glaciers.stl:863 +#: data/levels/world1/crystal_mine.stl:1535 +#: data/levels/world1/crystal_mine.stl:1543 #: data/levels/world1/frosted_fields.stl:188 #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 -#: data/levels/world1/shattered_bridge.stl:269 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:200 +#: data/levels/world1/shattered_bridge.stl:628 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Löysit salaisen paikan!" @@ -42,7 +42,7 @@ msgstr "Löysit salaisen paikan!" msgid "Above the Arctic Skies" msgstr "Arktisten taivaiden yllä" -#: data/levels/world1/above_arctic_skies.stl:152 +#: data/levels/world1/above_arctic_skies.stl:162 msgid "" "-Air Flower\n" "!images/powerups/airflower/air_flower-0.png\n" @@ -53,7 +53,7 @@ msgstr "-Ilmakukka\n!images/powerups/airflower/air_flower-0.png\n#Ilmakukka anta msgid "Between Two Glaciers" msgstr "Kahden jäätikön välissä" -#: data/levels/world1/between_glaciers.stl:104 +#: data/levels/world1/between_glaciers.stl:108 msgid "" "-Crystals\n" "#This level contains four coloured crystals. Can you find them?\n" @@ -61,10 +61,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Kristallit\n#Tässä tasossa on neljä värillistä kristallia. Pystytkö löytämään ne?\n#\n#Huom: Nämä kristallit eivät tee mitään tällä hetkellä, mutta ne saattavat pelin myöhemmissä versioissa." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Tyhjä valtaistuinsali" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Nolokin linna" @@ -73,7 +69,7 @@ msgstr "Nolokin linna" msgid "The Crystal Mine" msgstr "Kristallikaivos" -#: data/levels/world1/crystal_mine.stl:608 +#: data/levels/world1/crystal_mine.stl:686 msgid "#You have to activate two switches to open this door." msgstr "#Tämän oven avaamiseen täytyy aktivoida kaksi vipua." @@ -103,7 +99,7 @@ msgid "" "-Trampolines\n" "!images/objects/trampoline/trampoline2-0.png\n" "#Trampolines allow Tux to jump to new heights. Hold down the JUMP key while bouncing on the trampoline to launch extra high." -msgstr "-Trampoliinit\n!images/objects/trampoline/trampoline2-0.png\n#Trampoliinit mahdollistavat hypyt uusiin korkeuksiin. Pidä hyppynäppäintä pohjassa hypätäksesi vielä korkeammalle." +msgstr "-Trampoliinit\n!images/objects/trampoline/trampoline2-0.png\n#Trampoliinit mahdollistavat hypyt uusiin korkeuksiin. Pidä hyppynäppäintä pohjassa trampoliinin päällä hypätäksesi vielä korkeammalle." #: data/levels/world1/fork_in_the_road.stl:100 msgid "" @@ -116,7 +112,7 @@ msgid "" "-Secret Exits\n" "#Some level can have multiple exits. They are mostly hidden, so keep an eye out for them.\n" "#Maybe they lead you to something special." -msgstr "-Salaiset maalit\n#Joissain tasoissa voi olla useampi maali. Ne ovat enimmäkseen piilossa, joten etsi niitä tarkasti.\n#Ehkä ne voivat johtaa jonnekin erityiseen." +msgstr "-Salaiset maalit\n#Joissain kentissä voi olla useampi maali. Ne ovat enimmäkseen piilossa, joten etsi niitä tarkasti.\n#Ne voivat jopa johtaa erityisiin paikkoihin." #: data/levels/world1/frosted_fields.stl:3 msgid "The Frosted Fields" @@ -124,7 +120,7 @@ msgstr "Jäiset kentät" #: data/levels/world1/frozen_bridge.stl:3 msgid "Over the Frozen Bridge" -msgstr "Jäätynyt silta" +msgstr "Jäätyneen sillan ylitys" #: data/levels/world1/ice_in_the_hole.stl:3 msgid "Ice in the Hole" @@ -187,7 +183,7 @@ msgstr "Kirje Pennyltä Tuxille, jossa hän kertoi Nolokin siirtäneen hänet ka msgid "" "Unsure about what Nolok was doing to her, Tux became worried about his " "beloved Penny." -msgstr "Epävarmana siitä, mitä Nolok tekisi hänelle, Tux huolestui rakkaasta Pennystään." +msgstr "Epävarmana Nolokin suunnitelmista hänelle, Tux huolestui rakkaasta Pennystään." #: data/levels/world1/scripts_castle_cutscene.txt:6 msgid "Until suddenly..." @@ -221,12 +217,12 @@ msgstr "\"Reitti linnoitukselleni on täynnä kätyreitäni.\"" #: data/levels/world1/scripts_intro.txt:8 msgid "\"You don't have a chance of saving her! Signed, Nolok.\"" -msgstr "\"Hänen pelastamistaan ei edes kannata yrittää! Terveisin, Nolok.\"" +msgstr "\"Et taatusti pysty pelastamaan häntä! Terveisin, Nolok.\"" #: data/levels/world1/scripts_intro.txt:9 msgid "" "Realizing the trouble Penny could be in, Tux became determined to save her." -msgstr "Tajutessaan sen, kuinka pahasti Penny voi olla pulassa, Tux tiesi, että hänen täytyisi pelastaa hänet." +msgstr "Tajuttuaan, kuinka pahassa pulassa Penny voi olla, Tux tiesi, että hänen täytyisi pelastaa hänet." #: data/levels/world1/scripts_intro.txt:10 msgid "" @@ -239,7 +235,7 @@ msgstr "Väsyneenä pitkästä kävelymatkasta, Tux päätti pitää lyhyen tauo #: data/levels/world1/scripts_yeti_cutscene.txt:3 msgid "But then, all of a sudden he heard a loud roar from a distance." -msgstr "Mutta sitten hän yhtäkkiä kuuli kovan karjaisun kaukaa." +msgstr "Mutta sitten hän yhtäkkiä kuuli kaukaisen, kovan karjaisun." #: data/levels/world1/scripts_yeti_cutscene.txt:4 msgid "A yeti seems to have observed him from afar." @@ -253,7 +249,7 @@ msgstr "Huolestuneena lumimiehen äkillisestä perääntymisestä, Tux päätti #: data/levels/world1/scripts_yeti_cutscene.txt:6 msgid "...while secretly hoping not to run into the yeti again, by any means." -msgstr "...salaa toivoen, ettei hän törmäisi lumimieheen uudelleen." +msgstr "...salaa toivoen, ettei hän törmäisi häneen uudelleen." #: data/levels/world1/shattered_bridge.stl:3 msgid "The Shattered Bridge" @@ -279,7 +275,7 @@ msgstr "Via Nostalgica" msgid "Welcome to Antarctica" msgstr "Tervetuloa Etelämantereelle" -#: data/levels/world1/welcome_antarctica.stl:68 +#: data/levels/world1/welcome_antarctica.stl:74 msgid "" "-Bonus Blocks\n" "!images/objects/bonus_block/full-0.png\n" @@ -288,46 +284,46 @@ msgid "" "#Hit them from below to get at their contents." msgstr "-Bonuslaatikot\n!images/objects/bonus_block/full-0.png\n#Bonuslaatikoissa voi olla kolikoita, lisävoimia tai erikoisesineitä, jotka voivat auttaa sinua.\n#\n#Saadaksesi niiden sisällön, iske niitä alapuolelta." -#: data/levels/world1/welcome_antarctica.stl:77 +#: data/levels/world1/welcome_antarctica.stl:83 msgid "" "-Eggs\n" "!images/powerups/egg/egg-shade.png\n" "#The egg makes Tux grow larger. Tux can then smash wooden blocks with his head." msgstr "-Munat\n!images/powerups/egg/egg-shade.png\n#Muna tekee Tuxista suuremman, jolloin hän voi rikkoa puulaatikoita päällään." -#: data/levels/world1/welcome_antarctica.stl:84 +#: data/levels/world1/welcome_antarctica.stl:90 msgid "" "-Checkpoints\n" "!images/objects/resetpoints/bell-m.png\n" "#Activate the checkpoint. If you die, you can retry the level from here. Every time you retry from a checkpoint, you will lose 10 percent of your coins (at least 25 coins)." msgstr "-Välietapit\n!images/objects/resetpoints/bell-m.png\n#Aktivoi välietappi. Jos kuolet, voit jatkaa kenttää tästä. Joka kerta kun jatkat välietapilta, menetät 10% kolikoistasi (ainakin 25 kolikkoa)." -#: data/levels/world1/welcome_antarctica.stl:91 +#: data/levels/world1/welcome_antarctica.stl:97 msgid "" "-Running\n" "!images/tiles/signs/run.png\n" "#The path in front of you is blocked. Gain some speed before jumping to pass over the blocks." msgstr "-Juokseminen\n!images/tiles/signs/run.png\n#Tie edessäsi on tukossa. Kerää vauhtia ennen kuin hyppäät, niin pääset esteen yli." -#: data/levels/world1/welcome_antarctica.stl:98 +#: data/levels/world1/welcome_antarctica.stl:104 msgid "" "-Fire Flower\n" "!images/powerups/fireflower/fire_flower-0.png\n" "#The fire flower gives Tux the ability to shoot fireballs." msgstr "-Tulikukka\n!images/powerups/fireflower/fire_flower-0.png\n#Tulikukka antaa Tuxille kyvyn ampua tulipalloja toimintanäppäimestä." -#: data/levels/world1/welcome_antarctica.stl:105 +#: data/levels/world1/welcome_antarctica.stl:111 msgid "" "-Tux Doll\n" "!images/powerups/1up/1up.png\n" "#The Tux doll gives Tux 100 coins." msgstr "-Pingviininukke\n!images/powerups/1up/1up.png\n#Pingviininukke antaa Tuxille 100 kolikkoa." -#: data/levels/world1/welcome_antarctica.stl:112 +#: data/levels/world1/welcome_antarctica.stl:118 msgid "" "-Secret Areas\n" "#Many levels contain secret areas behind what seems to be plain walls. Look for clues to find them." -msgstr "-Salaiset paikat\n#Monissa kentissä on salaisia alueita näennäisten seinien takana. Etsi vihjeitä niiden löytämiseen." +msgstr "-Salaiset paikat\n#Monissa kentissä on salaisia paikkoja näennäisten seinien takana. Etsi vihjeitä niiden löytämiseen." #: data/levels/world1/worldmap.stwm:3 msgid "Icy Island" diff --git a/data/levels/world1/fr.po b/data/levels/world1/fr.po index 6d54ed6a9be..78d1e475d90 100644 --- a/data/levels/world1/fr.po +++ b/data/levels/world1/fr.po @@ -16,30 +16,30 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2020-04-13 17:25+0200\n" -"PO-Revision-Date: 2021-03-04 09:10+0000\n" -"Last-Translator: Maxim Bernard \n" -"Language-Team: French (http://www.transifex.com/arctic-games/supertux/language/fr/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: Maxim Bernard , 2021\n" +"Language-Team: French (http://app.transifex.com/arctic-games/supertux/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/world1/23rd_airborne.stl:3 msgid "23rd Airborne" msgstr "23ème division aérienne" -#: data/levels/world1/23rd_airborne.stl:355 -#: data/levels/world1/between_glaciers.stl:615 -#: data/levels/world1/between_glaciers.stl:623 -#: data/levels/world1/crystal_mine.stl:1150 -#: data/levels/world1/crystal_mine.stl:1158 +#: data/levels/world1/23rd_airborne.stl:598 +#: data/levels/world1/between_glaciers.stl:855 +#: data/levels/world1/between_glaciers.stl:863 +#: data/levels/world1/crystal_mine.stl:1535 +#: data/levels/world1/crystal_mine.stl:1543 #: data/levels/world1/frosted_fields.stl:188 #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 -#: data/levels/world1/shattered_bridge.stl:269 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:200 +#: data/levels/world1/shattered_bridge.stl:628 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Tu as trouvé un passage secret !" @@ -47,7 +47,7 @@ msgstr "Tu as trouvé un passage secret !" msgid "Above the Arctic Skies" msgstr "Au-delà des Cieux Arctiques" -#: data/levels/world1/above_arctic_skies.stl:152 +#: data/levels/world1/above_arctic_skies.stl:162 msgid "" "-Air Flower\n" "!images/powerups/airflower/air_flower-0.png\n" @@ -58,7 +58,7 @@ msgstr "-Fleurs d'Air\n!images/powerups/airflower/air_flower-0.png\n#La Fleur d' msgid "Between Two Glaciers" msgstr "Entre Deux Glaciers" -#: data/levels/world1/between_glaciers.stl:104 +#: data/levels/world1/between_glaciers.stl:108 msgid "" "-Crystals\n" "#This level contains four coloured crystals. Can you find them?\n" @@ -66,10 +66,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Cristaux\n#Ce niveau contient quatre cristaux colorés. Peux-tu les trouver?\n#\n#Remarque : ils ne servent à rien pour l'instant mais serviront peut-être dans un évolution future du jeu." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Salle du Trône Vide" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Le Château de Nolok" @@ -78,7 +74,7 @@ msgstr "Le Château de Nolok" msgid "The Crystal Mine" msgstr "La Mine de Cristaux" -#: data/levels/world1/crystal_mine.stl:608 +#: data/levels/world1/crystal_mine.stl:686 msgid "#You have to activate two switches to open this door." msgstr "#Tu dois activer deux interrupteurs pour ouvrir la porte" @@ -284,7 +280,7 @@ msgstr "Via Nostalgica" msgid "Welcome to Antarctica" msgstr "Bienvenue en Antarctique" -#: data/levels/world1/welcome_antarctica.stl:68 +#: data/levels/world1/welcome_antarctica.stl:74 msgid "" "-Bonus Blocks\n" "!images/objects/bonus_block/full-0.png\n" @@ -293,42 +289,42 @@ msgid "" "#Hit them from below to get at their contents." msgstr "-Bloc bonus\n!images/objects/bonus_block/full-0.png\n#Les blocs bonus peuvent contenir des améliorations ou des objets spéciaux pour vous aider dans votre quête.\n#\n#Frappez les par dessous pour récupérer leur contenu." -#: data/levels/world1/welcome_antarctica.stl:77 +#: data/levels/world1/welcome_antarctica.stl:83 msgid "" "-Eggs\n" "!images/powerups/egg/egg-shade.png\n" "#The egg makes Tux grow larger. Tux can then smash wooden blocks with his head." msgstr "-Œufs\n!images/powerups/egg/egg-shade.png\n#Les œufs permettent à Tux de grandir. Tux peut alors casser les caisses en bois avec sa tête." -#: data/levels/world1/welcome_antarctica.stl:84 +#: data/levels/world1/welcome_antarctica.stl:90 msgid "" "-Checkpoints\n" "!images/objects/resetpoints/bell-m.png\n" "#Activate the checkpoint. If you die, you can retry the level from here. Every time you retry from a checkpoint, you will lose 10 percent of your coins (at least 25 coins)." msgstr "-Points de contrôle\n!images/objects/resetpoints/bell-m.png\n#Active un point de contrôle. Si vous mourez, vous pouvez ré-essayer le niveau depuis là. À chaque essai depuis un point de contrôle vous perdrez 10 pour cent des vos pièces (au moins 25 pièces). " -#: data/levels/world1/welcome_antarctica.stl:91 +#: data/levels/world1/welcome_antarctica.stl:97 msgid "" "-Running\n" "!images/tiles/signs/run.png\n" "#The path in front of you is blocked. Gain some speed before jumping to pass over the blocks." msgstr "-Running\n!images/tiles/signs/run.png\n#Votre route est barrée ! Accélérez avant de sauter pour sauter au dessus du mur." -#: data/levels/world1/welcome_antarctica.stl:98 +#: data/levels/world1/welcome_antarctica.stl:104 msgid "" "-Fire Flower\n" "!images/powerups/fireflower/fire_flower-0.png\n" "#The fire flower gives Tux the ability to shoot fireballs." msgstr "-Fleurs de feu\n!images/powerups/fireflower/fire_flower-0.png\n#La fleur de feu donne à Tux le pouvoir de cracher des boules de feu." -#: data/levels/world1/welcome_antarctica.stl:105 +#: data/levels/world1/welcome_antarctica.stl:111 msgid "" "-Tux Doll\n" "!images/powerups/1up/1up.png\n" "#The Tux doll gives Tux 100 coins." msgstr "-MiniTux\n!images/powerups/1up/1up.png\n#Attrapper un miniTux rapporte 100 pièces." -#: data/levels/world1/welcome_antarctica.stl:112 +#: data/levels/world1/welcome_antarctica.stl:118 msgid "" "-Secret Areas\n" "#Many levels contain secret areas behind what seems to be plain walls. Look for clues to find them." diff --git a/data/levels/world1/fr_CA.po b/data/levels/world1/fr_CA.po index bac8dbd5713..83655da374c 100644 --- a/data/levels/world1/fr_CA.po +++ b/data/levels/world1/fr_CA.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 22:58+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: French (Canada) (http://app.transifex.com/arctic-games/supertux/language/fr_CA/)\n" @@ -33,7 +33,7 @@ msgstr "23e unité Aérienne" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Vous avez trouvé une zone secrète!" @@ -60,10 +60,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Cristaux\n#Ce niveau contient quatre cristaux colorés. Pouvez-vous les trouver?\n#\n#Remarque : Ces cristaux ne servent à rien pour le moment, mais ils le seront peut-être dans une future version du jeu." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Salle du trône vide" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Le Château de Nolok" diff --git a/data/levels/world1/gd.po b/data/levels/world1/gd.po index 0473593d6b1..bf74801d20b 100644 --- a/data/levels/world1/gd.po +++ b/data/levels/world1/gd.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2019-11-24 01:44+0100\n" -"PO-Revision-Date: 2019-12-12 17:46+0000\n" -"Last-Translator: GunChleoc\n" -"Language-Team: Gaelic, Scottish (http://www.transifex.com/arctic-games/supertux/language/gd/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: GunChleoc, 2016,2019\n" +"Language-Team: Gaelic, Scottish (http://app.transifex.com/arctic-games/supertux/language/gd/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,16 +24,16 @@ msgstr "" msgid "23rd Airborne" msgstr "Feachd-adhair" -#: data/levels/world1/23rd_airborne.stl:355 -#: data/levels/world1/between_glaciers.stl:615 -#: data/levels/world1/between_glaciers.stl:623 -#: data/levels/world1/crystal_mine.stl:1150 -#: data/levels/world1/crystal_mine.stl:1158 +#: data/levels/world1/23rd_airborne.stl:598 +#: data/levels/world1/between_glaciers.stl:855 +#: data/levels/world1/between_glaciers.stl:863 +#: data/levels/world1/crystal_mine.stl:1535 +#: data/levels/world1/crystal_mine.stl:1543 #: data/levels/world1/frosted_fields.stl:188 #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 -#: data/levels/world1/shattered_bridge.stl:269 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:200 +#: data/levels/world1/shattered_bridge.stl:628 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Lorg thu raon dìomhair!" @@ -41,7 +41,7 @@ msgstr "Lorg thu raon dìomhair!" msgid "Above the Arctic Skies" msgstr "Os cionn speuran na h-Artaig" -#: data/levels/world1/above_arctic_skies.stl:152 +#: data/levels/world1/above_arctic_skies.stl:162 msgid "" "-Air Flower\n" "!images/powerups/airflower/air_flower-0.png\n" @@ -52,7 +52,7 @@ msgstr "-Dìthean adhair\n!images/powerups/airflower/air_flower-0.png\n#Bheir d msgid "Between Two Glaciers" msgstr "Eadar dà eigh-shruth" -#: data/levels/world1/between_glaciers.stl:104 +#: data/levels/world1/between_glaciers.stl:108 msgid "" "-Crystals\n" "#This level contains four coloured crystals. Can you find them?\n" @@ -60,10 +60,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Criostalan\n#Tha ceithir criostalan dathte san leibheil seo. AN lorg thu iad?\n#\n#An aire: Chan eil na criostalan gu feum dhut aig an àm seo ach 's dòcha gun dèan ann an tionndadh ri teachd dhen gheama." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Seòmar cathrach falamh" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Caisteal Nolok" @@ -72,7 +68,7 @@ msgstr "Caisteal Nolok" msgid "The Crystal Mine" msgstr "Mèinn nan criostal" -#: data/levels/world1/crystal_mine.stl:608 +#: data/levels/world1/crystal_mine.stl:686 msgid "#You have to activate two switches to open this door." msgstr "#Feumaidh tu dà shuidse a ghnìomhachadh airson an doras seo fhosgladh." @@ -278,7 +274,7 @@ msgstr "An uair a bha siud" msgid "Welcome to Antarctica" msgstr "Fàilte dhan Antartaig" -#: data/levels/world1/welcome_antarctica.stl:68 +#: data/levels/world1/welcome_antarctica.stl:74 msgid "" "-Bonus Blocks\n" "!images/objects/bonus_block/full-0.png\n" @@ -287,42 +283,42 @@ msgid "" "#Hit them from below to get at their contents." msgstr "-Blocaichean duaise\n!images/objects/bonus_block/full-0.png\n#Faodaidh buinn, cumhachdan no nithean sònraichte a bhith ann am bloca gus do chuideachadh le d' obair.\n#\n#Buail ri am bonn gus na tha 'nam broinn fhaighinn." -#: data/levels/world1/welcome_antarctica.stl:77 +#: data/levels/world1/welcome_antarctica.stl:83 msgid "" "-Eggs\n" "!images/powerups/egg/egg-shade.png\n" "#The egg makes Tux grow larger. Tux can then smash wooden blocks with his head." msgstr "-Uighean\n!images/powerups/egg/egg-shade.png\n#Bheir an t-ugh fàs air Tux. 'S urrainn dha Tux blocaichean fiodha a phronnadh le a cheann an uairsin." -#: data/levels/world1/welcome_antarctica.stl:84 +#: data/levels/world1/welcome_antarctica.stl:90 msgid "" "-Checkpoints\n" "!images/objects/resetpoints/bell-m.png\n" "#Activate the checkpoint. If you die, you can retry the level from here. Every time you retry from a checkpoint, you will lose 10 percent of your coins (at least 25 coins)." msgstr "-Ionadan sàbhalaidh\n!images/objects/resetpoints/bell-m.png\n#Gnìomhaich an t-ionad sàbhalaidh. Ma gheibh thu bàs, 's urrainn dhut an leibheil fheuchainn a-rithist on a siud. Gach turas a dh'fheuchas tu a-rithist o ionad sàbhalaidh, caillidh tu 10 às a' cheud dhe na buinn agad (25 bonn air a' char as lugha)." -#: data/levels/world1/welcome_antarctica.stl:91 +#: data/levels/world1/welcome_antarctica.stl:97 msgid "" "-Running\n" "!images/tiles/signs/run.png\n" "#The path in front of you is blocked. Gain some speed before jumping to pass over the blocks." msgstr "-Ruith\n!images/tiles/signs/run.png\n#Tha an t-slighe romhad bacte. Luathaich mus leum thu gus faighinn thar nam blocaichean." -#: data/levels/world1/welcome_antarctica.stl:98 +#: data/levels/world1/welcome_antarctica.stl:104 msgid "" "-Fire Flower\n" "!images/powerups/fireflower/fire_flower-0.png\n" "#The fire flower gives Tux the ability to shoot fireballs." msgstr "-Dìthean teine\n!images/powerups/fireflower/fire_flower-0.png\n#'S urrainn dha Tux bàlaichean teine a losgadh nuair a bhios dìthean teine aige." -#: data/levels/world1/welcome_antarctica.stl:105 +#: data/levels/world1/welcome_antarctica.stl:111 msgid "" "-Tux Doll\n" "!images/powerups/1up/1up.png\n" "#The Tux doll gives Tux 100 coins." msgstr "-Doileag Tux\n!images/powerups/1up/1up.png\n#Bheir doileag Tux 100 bonn dha Tux." -#: data/levels/world1/welcome_antarctica.stl:112 +#: data/levels/world1/welcome_antarctica.stl:118 msgid "" "-Secret Areas\n" "#Many levels contain secret areas behind what seems to be plain walls. Look for clues to find them." diff --git a/data/levels/world1/gl.po b/data/levels/world1/gl.po index 433a8c292c9..c898d6fd226 100644 --- a/data/levels/world1/gl.po +++ b/data/levels/world1/gl.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# xanvieiro , 2019-2020 +# Xan Vieiro , 2019-2020 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2020-04-13 17:25+0200\n" -"PO-Revision-Date: 2020-03-27 13:47+0000\n" -"Last-Translator: xanvieiro \n" -"Language-Team: Galician (http://www.transifex.com/arctic-games/supertux/language/gl/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: Xan Vieiro , 2019-2020\n" +"Language-Team: Galician (http://app.transifex.com/arctic-games/supertux/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,16 +22,16 @@ msgstr "" msgid "23rd Airborne" msgstr "23ª Aerotransportada" -#: data/levels/world1/23rd_airborne.stl:355 -#: data/levels/world1/between_glaciers.stl:615 -#: data/levels/world1/between_glaciers.stl:623 -#: data/levels/world1/crystal_mine.stl:1150 -#: data/levels/world1/crystal_mine.stl:1158 +#: data/levels/world1/23rd_airborne.stl:598 +#: data/levels/world1/between_glaciers.stl:855 +#: data/levels/world1/between_glaciers.stl:863 +#: data/levels/world1/crystal_mine.stl:1535 +#: data/levels/world1/crystal_mine.stl:1543 #: data/levels/world1/frosted_fields.stl:188 #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 -#: data/levels/world1/shattered_bridge.stl:269 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:200 +#: data/levels/world1/shattered_bridge.stl:628 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Atopaches unha área secreta!" @@ -39,7 +39,7 @@ msgstr "Atopaches unha área secreta!" msgid "Above the Arctic Skies" msgstr "Sobre os Ceos Árticos" -#: data/levels/world1/above_arctic_skies.stl:152 +#: data/levels/world1/above_arctic_skies.stl:162 msgid "" "-Air Flower\n" "!images/powerups/airflower/air_flower-0.png\n" @@ -50,7 +50,7 @@ msgstr "-Flor Aérea\n!images/powerups/airflower/air_flower-0.png\n#A Flor Aére msgid "Between Two Glaciers" msgstr "Entre Dous Glaciares" -#: data/levels/world1/between_glaciers.stl:104 +#: data/levels/world1/between_glaciers.stl:108 msgid "" "-Crystals\n" "#This level contains four coloured crystals. Can you find them?\n" @@ -58,10 +58,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Cristais\n#Este nivel contén catro cristais de cor. Podes atopalos?\n#\n#Nota: Estes cristais non teñen ningún propósito polo momento pero poderían telo nunha versión futura do xogo." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Cuarto do Trono Baleiro" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "O Castelo de Nolok" @@ -70,7 +66,7 @@ msgstr "O Castelo de Nolok" msgid "The Crystal Mine" msgstr "A Mina de Cristal" -#: data/levels/world1/crystal_mine.stl:608 +#: data/levels/world1/crystal_mine.stl:686 msgid "#You have to activate two switches to open this door." msgstr "#Tes que activar dous interruptores para abrir esta porta." @@ -276,7 +272,7 @@ msgstr "Vía Nostálxica" msgid "Welcome to Antarctica" msgstr "Benvida á Antártida" -#: data/levels/world1/welcome_antarctica.stl:68 +#: data/levels/world1/welcome_antarctica.stl:74 msgid "" "-Bonus Blocks\n" "!images/objects/bonus_block/full-0.png\n" @@ -285,42 +281,42 @@ msgid "" "#Hit them from below to get at their contents." msgstr "-Bloques de Bono\n!images/objects/bonus_block/full-0.png\n#Os bloques de bono poden conter moedas, elementos especiais ou emerxentes para axudarche na túa misión..\n#\n#Bate neles dende abaixo para obter os seus contidos." -#: data/levels/world1/welcome_antarctica.stl:77 +#: data/levels/world1/welcome_antarctica.stl:83 msgid "" "-Eggs\n" "!images/powerups/egg/egg-shade.png\n" "#The egg makes Tux grow larger. Tux can then smash wooden blocks with his head." msgstr "-Ovos\n!images/powerups/egg/egg-shade.png\n#O ovo fai que Tux medre máis grande. Entón, Tux pode esmagar bloques de madeira coa súa cabeza." -#: data/levels/world1/welcome_antarctica.stl:84 +#: data/levels/world1/welcome_antarctica.stl:90 msgid "" "-Checkpoints\n" "!images/objects/resetpoints/bell-m.png\n" "#Activate the checkpoint. If you die, you can retry the level from here. Every time you retry from a checkpoint, you will lose 10 percent of your coins (at least 25 coins)." msgstr "-Punto de rescate\n!images/objects/resetpoints/bell-m.png\n#Activa o punto de rescate. Se morres, podes retomar o nivel dende aquí. Cada vez que reinicies dende un punto de rescate, perderás o 10 por cento das túas moedas (polo menos 25 moedas)." -#: data/levels/world1/welcome_antarctica.stl:91 +#: data/levels/world1/welcome_antarctica.stl:97 msgid "" "-Running\n" "!images/tiles/signs/run.png\n" "#The path in front of you is blocked. Gain some speed before jumping to pass over the blocks." msgstr "-Correr\n!images/tiles/signs/run.png\n#O camiño diante túa está bloqueado. Gaña algunha velocidade antes de saltar para sobrepasar os bloques." -#: data/levels/world1/welcome_antarctica.stl:98 +#: data/levels/world1/welcome_antarctica.stl:104 msgid "" "-Fire Flower\n" "!images/powerups/fireflower/fire_flower-0.png\n" "#The fire flower gives Tux the ability to shoot fireballs." msgstr "-Flor de Lume\n!images/powerups/fireflower/fire_flower-0.png\n#A flor de lume dálle a Tux a habilidade de disparar bólas de lume." -#: data/levels/world1/welcome_antarctica.stl:105 +#: data/levels/world1/welcome_antarctica.stl:111 msgid "" "-Tux Doll\n" "!images/powerups/1up/1up.png\n" "#The Tux doll gives Tux 100 coins." msgstr "-Boneca Tux\n!images/powerups/1up/1up.png\n#A boneca Tux dálle a Tux 100 modedas." -#: data/levels/world1/welcome_antarctica.stl:112 +#: data/levels/world1/welcome_antarctica.stl:118 msgid "" "-Secret Areas\n" "#Many levels contain secret areas behind what seems to be plain walls. Look for clues to find them." diff --git a/data/levels/world1/he.po b/data/levels/world1/he.po index f328de885e2..9481a85ddac 100644 --- a/data/levels/world1/he.po +++ b/data/levels/world1/he.po @@ -3,22 +3,23 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Omer I.S. , 2020-2021 -# Omer I.S. , 2021 -# Omer I.S. , 2020 +# IAN RODRÍGUEZ Lorenzo, 2022 +# 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e , 2020-2022 +# 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e , 2021 +# 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e , 2020 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-06-12 18:32+0000\n" -"Last-Translator: Omer I.S. \n" -"Language-Team: Hebrew (http://www.transifex.com/arctic-games/supertux/language/he/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" +"Language-Team: Hebrew (http://app.transifex.com/arctic-games/supertux/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: he\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" +"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n" #: data/levels/world1/23rd_airborne.stl:3 msgid "23rd Airborne" @@ -33,7 +34,7 @@ msgstr "המוטס ה־23" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "מצאת אזור סודי!" @@ -60,10 +61,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-קריסטלים\n#בשלב הזה כלולים ארבעה קריסטלים צבעוניים. את/ה יכול/ה למצוא אותם?\n#\n#הערה: קריסטלים אלו לא משרתים אף מטרה בזה הרגע אך אולי יהיו בגרסה עתידית של המשחק." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "הטירה של נולוק" @@ -202,11 +199,11 @@ msgstr "טַקס הפינגווין הלך להיפגש עם חברתו, פני, #: data/levels/world1/scripts_intro.txt:4 msgid "Tux woke up, dizzy, to find that Penny was missing!" -msgstr "טַקס התעורר, מסוחרר, וגילה שפני איננה!" +msgstr "טַקס התעורר, מסוחרר, כדי לגלות שפני איננה!" #: data/levels/world1/scripts_intro.txt:5 msgid "Tux was starting to become worried. He then saw a letter, and it read:" -msgstr "טַקס התחיל להיות מודאג. אז הוא ראה פתק, והתחיל לקרוא:" +msgstr "טַקס החל להיות מודאג. לאחר מכן הוא ראה פתק, והתחיל לקרוא:" #: data/levels/world1/scripts_intro.txt:6 msgid "" @@ -216,7 +213,7 @@ msgstr "\"טַקס, חטפתי את פני אהובתך והבאתי אותה ל #: data/levels/world1/scripts_intro.txt:7 msgid "\"The path to my fortress is littered with my minions.\"" -msgstr "\"הדרך למבצר מוגנת במשרתים שלי.\"" +msgstr "\"כדי להגיע למבצר שלי יהיה עליך לעבור את המשרתים שלי.\"" #: data/levels/world1/scripts_intro.txt:8 msgid "\"You don't have a chance of saving her! Signed, Nolok.\"" @@ -225,12 +222,12 @@ msgstr "\"אין לך סיכוי להציל אותה! על החתום, נולו #: data/levels/world1/scripts_intro.txt:9 msgid "" "Realizing the trouble Penny could be in, Tux became determined to save her." -msgstr "טַקס הבין באיזו צרה פני עלולה להסתבך, אך היה נחוש להצילה." +msgstr "טַקס מבין באיזו צרה פני עלולה להסתבך, אך נחוש להצילה." #: data/levels/world1/scripts_intro.txt:10 msgid "" "Then, Tux saw Nolok's castle in the distance and set off to rescue Penny!" -msgstr "לאחר מכן, טַקס ראה את הטירה של נולוק מרחוק ויצא לחלץ את פני!" +msgstr "ואז, טַקס ראה מרחוק את הטירה של נולוק ויצא להציל את פני!" #: data/levels/world1/scripts_yeti_cutscene.txt:2 msgid "Exhausted from his long walk, Tux decided to take a little break." @@ -248,11 +245,11 @@ msgstr "נראה כי יטי צפה בו מרחוק." msgid "" "Concerned by the yeti's sudden retreat, Tux decided to continue his journey," " ..." -msgstr "" +msgstr "מודאג מהנסיגה הפתאומית של האיטי, טוקס החליט להמשיך במסעו, ..." #: data/levels/world1/scripts_yeti_cutscene.txt:6 msgid "...while secretly hoping not to run into the yeti again, by any means." -msgstr "" +msgstr "... תוך תקווה בסתר לא להיתקל שוב ב-yiti, בשום אופן." #: data/levels/world1/shattered_bridge.stl:3 msgid "The Shattered Bridge" @@ -326,7 +323,7 @@ msgstr "-בובת טַקס\n!images/powerups/1up/1up.png\n#בובת טַקס נ msgid "" "-Secret Areas\n" "#Many levels contain secret areas behind what seems to be plain walls. Look for clues to find them." -msgstr "" +msgstr "אזורים סודיים\n#רמות רבות מכילות אזורים סודיים מאחורי מה שנראה כקירות פשוטים. חפש רמזים כדי למצוא אותם." #: data/levels/world1/worldmap.stwm:3 msgid "Icy Island" diff --git a/data/levels/world1/hr.po b/data/levels/world1/hr.po index 3e2d7e83704..745ab8ebd52 100644 --- a/data/levels/world1/hr.po +++ b/data/levels/world1/hr.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 22:58+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Croatian (http://app.transifex.com/arctic-games/supertux/language/hr/)\n" @@ -32,7 +32,7 @@ msgstr "23. zračnodesantna" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Pronašli ste novu tajnu!" @@ -59,10 +59,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Kristali\n#Ova razina sadrži četiri kristala u boji. Možete li ih pronaći?\n#\n#Napomena: ovi kristali trenutno nemaju nikakvu svrhu, ali bi mogli biti u budućem izdanju igre." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Prazna prijestolna soba" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Nolok Dvorac" diff --git a/data/levels/world1/hu.po b/data/levels/world1/hu.po index e0f3f969b3c..40794af249c 100644 --- a/data/levels/world1/hu.po +++ b/data/levels/world1/hu.po @@ -18,10 +18,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2020-05-14 20:48+0000\n" -"Last-Translator: Kristóf Kófiás \n" -"Language-Team: Hungarian (http://www.transifex.com/arctic-games/supertux/language/hu/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: Kristóf Kófiás , 2014,2020\n" +"Language-Team: Hungarian (http://app.transifex.com/arctic-games/supertux/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -41,7 +41,7 @@ msgstr "23. Repülős század" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Megtaláltad a titkos helységet!" @@ -68,10 +68,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Kristályok\n#Ezen a pályán négy színes kristály található. Meg tudod találni őket?\n#\n#Megjegyzés: Ezek a kristályok nem szolgálnak semmire ebben a pillanatban, de a játék egy jövőbeni kiadásában lehet, hogy lesz céljuk." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Üres Trónterem" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Nolok Vára" diff --git a/data/levels/world1/hy.po b/data/levels/world1/hy.po index 142b7a68f12..b8738a06bc1 100644 --- a/data/levels/world1/hy.po +++ b/data/levels/world1/hy.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 22:58+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Armenian (http://app.transifex.com/arctic-games/supertux/language/hy/)\n" @@ -31,7 +31,7 @@ msgstr "23-րդ օդադեսանտ" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Դուք գտել եք գաղտնի տարածք:" @@ -58,10 +58,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "- Բյուրեղներ\n#Այս մակարդակը պարունակում է չորս գունավոր բյուրեղներ։ Կարող եք գտնել դրանք:\n#\n#Նշում. Այս բյուրեղներն այս պահին որևէ նպատակի չեն ծառայում, բայց դրանք կարող են ծառայել խաղի ապագա թողարկումում." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Դատարկ գահի սենյակ" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Նոլոկ ամրոցը" diff --git a/data/levels/world1/id.po b/data/levels/world1/id.po index 9924e8f852c..1a2ab6bec4e 100644 --- a/data/levels/world1/id.po +++ b/data/levels/world1/id.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# CRS.ECHO51 , 2022 -# CRS.ECHO51 , 2017 +# Chris , 2022 +# Chris , 2017 # Christian Elbrianno Yoga, 2017 # IAN RODRÍGUEZ Lorenzo, 2023 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 22:58+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Indonesian (http://app.transifex.com/arctic-games/supertux/language/id/)\n" @@ -34,7 +34,7 @@ msgstr "Penerbangan ke-23" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Kamu menemukan area rahasia!" @@ -61,10 +61,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Kristal\n#Level ini memiliki empat kristal berwarna. Bisakah kamu menemukannya?\n#\n#Catatan: Kristal itu tidak memiliki tujuan apapun saat ini, tetapi pada rilis gim berikutnya mungkin akan berguna." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Ruang Tahta Kosong" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Kastil Nolok" diff --git a/data/levels/world1/is.po b/data/levels/world1/is.po index 96878cfe654..364155feff7 100644 --- a/data/levels/world1/is.po +++ b/data/levels/world1/is.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 22:58+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Icelandic (http://app.transifex.com/arctic-games/supertux/language/is/)\n" @@ -31,7 +31,7 @@ msgstr "23. loftborinn" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Þú fannst leynisvæði!" @@ -58,10 +58,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Kristallar\n#Þetta stig inniheldur fjóra litaða kristalla. Geturðu fundið þá?\n#\n#Athugið: Þessir kristallar þjóna engum tilgangi í augnablikinu en þeir gætu gert það í framtíðarútgáfu leiksins." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Tómt hásætisherbergi" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Kastalinn í Nolok" diff --git a/data/levels/world1/it.po b/data/levels/world1/it.po index 84c6237d48b..7211e639783 100644 --- a/data/levels/world1/it.po +++ b/data/levels/world1/it.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 22:58+0000\n" "Last-Translator: Mario Rossi, 2022\n" "Language-Team: Italian (http://app.transifex.com/arctic-games/supertux/language/it/)\n" @@ -37,7 +37,7 @@ msgstr "23esima Aviotrasportata" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Hai trovato un'area segreta!" @@ -64,10 +64,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Cristalli\n#Questo livello contiene quattro cristalli colorati. Riuscirai a trovarli?\n#\n#Nota: questi cristalli, al momento, non hanno nessuno scopo ai fini del gioco, ma in una futura versione del gioco potrebbero averlo." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "La vuota sala del Trono" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Il Castello di Nolok" diff --git a/data/levels/world1/ja.po b/data/levels/world1/ja.po index a5e728344a3..4b61d6e4af7 100644 --- a/data/levels/world1/ja.po +++ b/data/levels/world1/ja.po @@ -6,19 +6,19 @@ # 515ce455fbf38ec9585626e8d26b6324_7a9a6ef, 2017 # Ryo Nakano, 2018-2021 # b1e11c107ebf1f339ff7adfc86b9dbe0_2e3e89d, 2016 -# Sugahara Masayuki , 2016 +# Masayuki Sugahara , 2016 # Sanshiro sumita, 2015-2016 # Sanshiro sumita, 2015 # Ubuntu Jackson , 2020 -# 堀 風羽 , 2016 +# 0ea743a388003249c3a27027490eb004_eb62725 <93be5fa112647d5d896be9f7b3c2eda8_426397>, 2016 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2020-04-13 17:25+0200\n" -"PO-Revision-Date: 2021-02-19 06:12+0000\n" -"Last-Translator: Ryo Nakano\n" -"Language-Team: Japanese (http://www.transifex.com/arctic-games/supertux/language/ja/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: Ryo Nakano, 2018-2021\n" +"Language-Team: Japanese (http://app.transifex.com/arctic-games/supertux/language/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -29,16 +29,16 @@ msgstr "" msgid "23rd Airborne" msgstr "第23空挺団" -#: data/levels/world1/23rd_airborne.stl:355 -#: data/levels/world1/between_glaciers.stl:615 -#: data/levels/world1/between_glaciers.stl:623 -#: data/levels/world1/crystal_mine.stl:1150 -#: data/levels/world1/crystal_mine.stl:1158 +#: data/levels/world1/23rd_airborne.stl:598 +#: data/levels/world1/between_glaciers.stl:855 +#: data/levels/world1/between_glaciers.stl:863 +#: data/levels/world1/crystal_mine.stl:1535 +#: data/levels/world1/crystal_mine.stl:1543 #: data/levels/world1/frosted_fields.stl:188 #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 -#: data/levels/world1/shattered_bridge.stl:269 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:200 +#: data/levels/world1/shattered_bridge.stl:628 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "秘密の場所を見つけました!" @@ -46,7 +46,7 @@ msgstr "秘密の場所を見つけました!" msgid "Above the Arctic Skies" msgstr "極寒の空の上" -#: data/levels/world1/above_arctic_skies.stl:152 +#: data/levels/world1/above_arctic_skies.stl:162 msgid "" "-Air Flower\n" "!images/powerups/airflower/air_flower-0.png\n" @@ -57,7 +57,7 @@ msgstr "-エアーフラワー\n!images/powerups/airflower/air_flower-0.png\n# msgid "Between Two Glaciers" msgstr "氷壁に囲まれるペンギン" -#: data/levels/world1/between_glaciers.stl:104 +#: data/levels/world1/between_glaciers.stl:108 msgid "" "-Crystals\n" "#This level contains four coloured crystals. Can you find them?\n" @@ -65,10 +65,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-クリスタル\n#このステージには4つのカラークリスタルがあります。見つけられますか?\n#\n#注意: 現時点では、クリスタルは特に意味を持ちませんが、ゲームの今後のリリースでは意味を持つ可能性があります。" -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "誰もいない王座の間" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Nolokの城" @@ -77,7 +73,7 @@ msgstr "Nolokの城" msgid "The Crystal Mine" msgstr "クリスタルの鉱山" -#: data/levels/world1/crystal_mine.stl:608 +#: data/levels/world1/crystal_mine.stl:686 msgid "#You have to activate two switches to open this door." msgstr "#このドアを開くには、2つのスイッチを切り替える必要があります。" @@ -283,7 +279,7 @@ msgstr "ノスタルジカを経由して" msgid "Welcome to Antarctica" msgstr "南極へようこそ" -#: data/levels/world1/welcome_antarctica.stl:68 +#: data/levels/world1/welcome_antarctica.stl:74 msgid "" "-Bonus Blocks\n" "!images/objects/bonus_block/full-0.png\n" @@ -292,42 +288,42 @@ msgid "" "#Hit them from below to get at their contents." msgstr "-ボーナスブロック\n!images/objects/bonus_block/full-0.png\n#ボーナスブロックには、冒険を助けるコインやパワーアップアイテム、特別なアイテムが入っていることがあります。\n#\n#中身を取るには、ブロックをジャンプして叩いてください。" -#: data/levels/world1/welcome_antarctica.stl:77 +#: data/levels/world1/welcome_antarctica.stl:83 msgid "" "-Eggs\n" "!images/powerups/egg/egg-shade.png\n" "#The egg makes Tux grow larger. Tux can then smash wooden blocks with his head." msgstr "-タマゴ\n!images/powerups/egg/egg-shade.png\n#タマゴを取ると、タックスの体が大きくなります。大きくなったタックスは、木のブロックを壊せるようになります。" -#: data/levels/world1/welcome_antarctica.stl:84 +#: data/levels/world1/welcome_antarctica.stl:90 msgid "" "-Checkpoints\n" "!images/objects/resetpoints/bell-m.png\n" "#Activate the checkpoint. If you die, you can retry the level from here. Every time you retry from a checkpoint, you will lose 10 percent of your coins (at least 25 coins)." msgstr "-チェックポイント\n!images/objects/resetpoints/bell-m.png\n#これに触れると、チェックポイントを追加します。タックスが死んだ場合、ここからレベルを再開できます。ただし、持っているコインの10%以上 (最低でも25枚) を失います。" -#: data/levels/world1/welcome_antarctica.stl:91 +#: data/levels/world1/welcome_antarctica.stl:97 msgid "" "-Running\n" "!images/tiles/signs/run.png\n" "#The path in front of you is blocked. Gain some speed before jumping to pass over the blocks." msgstr "-走って!\n!images/tiles/signs/run.png\n#行く手が塞がれています。ブロックを超えるには、ジャンプする前にスピードをつけてください。" -#: data/levels/world1/welcome_antarctica.stl:98 +#: data/levels/world1/welcome_antarctica.stl:104 msgid "" "-Fire Flower\n" "!images/powerups/fireflower/fire_flower-0.png\n" "#The fire flower gives Tux the ability to shoot fireballs." msgstr "-ファイアフラワー\n!images/powerups/fireflower/fire_flower-0.png\n#ファイアフラワーを取ると、タックスはファイアボールを打てるようになります。" -#: data/levels/world1/welcome_antarctica.stl:105 +#: data/levels/world1/welcome_antarctica.stl:111 msgid "" "-Tux Doll\n" "!images/powerups/1up/1up.png\n" "#The Tux doll gives Tux 100 coins." msgstr "-Tuxの人形\n!images/powerups/1up/1up.png\n#これを取ると、コインを100枚獲得できます。" -#: data/levels/world1/welcome_antarctica.stl:112 +#: data/levels/world1/welcome_antarctica.stl:118 msgid "" "-Secret Areas\n" "#Many levels contain secret areas behind what seems to be plain walls. Look for clues to find them." diff --git a/data/levels/world1/ko.po b/data/levels/world1/ko.po index 20a6dbc8e89..2ead787cf00 100644 --- a/data/levels/world1/ko.po +++ b/data/levels/world1/ko.po @@ -3,16 +3,19 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: +# Go Nam Hyeon , 2021 +# Junghee Lee , 2022 +# Junghee Lee , 2022 # Myeongjin , 2016-2017,2019,2021 # Roland Kim , 2014-2015 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2020-04-13 17:25+0200\n" -"PO-Revision-Date: 2021-05-02 19:10+0000\n" -"Last-Translator: Myeongjin \n" -"Language-Team: Korean (http://www.transifex.com/arctic-games/supertux/language/ko/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: Junghee Lee , 2022\n" +"Language-Team: Korean (http://app.transifex.com/arctic-games/supertux/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -23,24 +26,24 @@ msgstr "" msgid "23rd Airborne" msgstr "하늘23번길" -#: data/levels/world1/23rd_airborne.stl:355 -#: data/levels/world1/between_glaciers.stl:615 -#: data/levels/world1/between_glaciers.stl:623 -#: data/levels/world1/crystal_mine.stl:1150 -#: data/levels/world1/crystal_mine.stl:1158 +#: data/levels/world1/23rd_airborne.stl:598 +#: data/levels/world1/between_glaciers.stl:855 +#: data/levels/world1/between_glaciers.stl:863 +#: data/levels/world1/crystal_mine.stl:1535 +#: data/levels/world1/crystal_mine.stl:1543 #: data/levels/world1/frosted_fields.stl:188 #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 -#: data/levels/world1/shattered_bridge.stl:269 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:200 +#: data/levels/world1/shattered_bridge.stl:628 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" -msgstr "숨겨진 구역을 찾았습니다!" +msgstr "비밀공간 구역을 찾았어요!" #: data/levels/world1/above_arctic_skies.stl:3 msgid "Above the Arctic Skies" msgstr "북극 하늘을 향해" -#: data/levels/world1/above_arctic_skies.stl:152 +#: data/levels/world1/above_arctic_skies.stl:162 msgid "" "-Air Flower\n" "!images/powerups/airflower/air_flower-0.png\n" @@ -51,7 +54,7 @@ msgstr "-공기 꽃\n!images/powerups/airflower/air_flower-0.png\n#공기 꽃은 msgid "Between Two Glaciers" msgstr "두 빙하 사이" -#: data/levels/world1/between_glaciers.stl:104 +#: data/levels/world1/between_glaciers.stl:108 msgid "" "-Crystals\n" "#This level contains four coloured crystals. Can you find them?\n" @@ -59,10 +62,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-크리스탈\n#이 레벨에는 네 가지 색상의 크리스탈이 들어 있습니다. 이들을 찾을 수 있나요?\n#\n#참고: 이러한 크리스탈은 현재로서는 어떠한 목적으로도 주어지지 않지만 향후 게임 출시 때 포함될 수 있습니다." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "빈 왕좌 방" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "놀록의 성" @@ -71,7 +70,7 @@ msgstr "놀록의 성" msgid "The Crystal Mine" msgstr "크리스탈 광산" -#: data/levels/world1/crystal_mine.stl:608 +#: data/levels/world1/crystal_mine.stl:686 msgid "#You have to activate two switches to open this door." msgstr "#이 문을 열려면 스위치 두 개를 작동시켜야 합니다." @@ -114,7 +113,7 @@ msgid "" "-Secret Exits\n" "#Some level can have multiple exits. They are mostly hidden, so keep an eye out for them.\n" "#Maybe they lead you to something special." -msgstr "-숨겨진 출구\n#일부 레벨에는 여러 출구가 있을 수 있습니다. 대부분 숨겨져 있으므로, 출구들을 지켜봐 주세요.\n#어쩌면 특별한 무언가로 이끌어 줄 수 있습니다." +msgstr "-비밀공간 출구\n#일부 레벨에는 여러 출구가 있을 수 있습니다. 대부분 숨겨져 있으므로, 출구들을 지켜봐 주세요.\n#어쩌면 특별한 무언가로 이끌어 줄 수 있습니다." #: data/levels/world1/frosted_fields.stl:3 msgid "The Frosted Fields" @@ -126,7 +125,7 @@ msgstr "언 다리를 건너" #: data/levels/world1/ice_in_the_hole.stl:3 msgid "Ice in the Hole" -msgstr "크레바스" +msgstr "크레바스를 조심해" #: data/levels/world1/icy_valley.stl:3 msgid "Icy Valley" @@ -142,7 +141,7 @@ msgstr "페니와 소풍을" #: data/levels/world1/journey_begins.stl:3 msgid "The Journey Begins" -msgstr "여정의 시작" +msgstr "여정이 시작됩니다" #: data/levels/world1/living_inside_fridge.stl:3 msgid "Living in a Fridge" @@ -185,7 +184,7 @@ msgstr "페니가 턱스에게 놀록이 페니를 먼 숲으로 데려갔다고 msgid "" "Unsure about what Nolok was doing to her, Tux became worried about his " "beloved Penny." -msgstr "놀록이 페니에게 무엇을 했는지 확신이 서지 않는 턱스는 그가 사랑하는 페니를 걱정했습니다." +msgstr "놀록이 페니에게 무슨 짓을 했는지 알 수 없었기에, 턱스는 사랑하는 페니가 걱정이 되었습니다." #: data/levels/world1/scripts_castle_cutscene.txt:6 msgid "Until suddenly..." @@ -197,61 +196,61 @@ msgstr "남극의 어느 해안가에서..." #: data/levels/world1/scripts_intro.txt:3 msgid "Tux the penguin was going to meet his friend, Penny, for a picnic." -msgstr "펭귄 턱스는 턱스의 친구인 페니를 만나 소풍을 가려고 했습니다." +msgstr "펭귄 턱스는 친구 페니를 만나 소풍을 가려고 했습니다." #: data/levels/world1/scripts_intro.txt:4 msgid "Tux woke up, dizzy, to find that Penny was missing!" -msgstr "어지러운 턱스가 실종된 페니를 찾기 위해 일어났습니다." +msgstr "턱스는 깨어났고 너무 당황스러웠습니다. 페니가 없어졌다는걸 알았거든요!" #: data/levels/world1/scripts_intro.txt:5 msgid "Tux was starting to become worried. He then saw a letter, and it read:" -msgstr "" +msgstr "턱스는 걱정이 되기 시작했습니다. 곧 발견한 편지에는 이런 말이 적혀있었습니다:" #: data/levels/world1/scripts_intro.txt:6 msgid "" "\"Tux, I have kidnapped your beloved Penny and have taken her to my " "fortress.\"" -msgstr "" +msgstr "\"턱스, 내가 페니를 납치했다. 너의 사랑하는 페니를 내 요새로 데려갔지\"" #: data/levels/world1/scripts_intro.txt:7 msgid "\"The path to my fortress is littered with my minions.\"" -msgstr "" +msgstr "\"내 요새로 가는 길에는 내 쫄다구들이 깔려있어\"" #: data/levels/world1/scripts_intro.txt:8 msgid "\"You don't have a chance of saving her! Signed, Nolok.\"" -msgstr "" +msgstr "\"넌 그녀를 구할 기회가 없단거야! 그러니 단념하길 바랄게. - 놀록\"" #: data/levels/world1/scripts_intro.txt:9 msgid "" "Realizing the trouble Penny could be in, Tux became determined to save her." -msgstr "" +msgstr "페니가 곤경에 처할 수 있다는 것을 깨달은 턱스는 그녀를 구하기로 결심했습니다." #: data/levels/world1/scripts_intro.txt:10 msgid "" "Then, Tux saw Nolok's castle in the distance and set off to rescue Penny!" -msgstr "" +msgstr "곧이어, 턱스는 멀찍이 서있는 놀록의 성을 바라보며 페니를 구하기 위해 출발했습니다!" #: data/levels/world1/scripts_yeti_cutscene.txt:2 msgid "Exhausted from his long walk, Tux decided to take a little break." -msgstr "" +msgstr "오랜 걸음으로 지친 턱스는 잠시 휴식을 취하기로 했습니다." #: data/levels/world1/scripts_yeti_cutscene.txt:3 msgid "But then, all of a sudden he heard a loud roar from a distance." -msgstr "" +msgstr "그런데 갑자기 멀리서 큰 굉음이 들려왔습니다." #: data/levels/world1/scripts_yeti_cutscene.txt:4 msgid "A yeti seems to have observed him from afar." -msgstr "" +msgstr "설인이 멀리서 그를 지켜본 것 같습니다." #: data/levels/world1/scripts_yeti_cutscene.txt:5 msgid "" "Concerned by the yeti's sudden retreat, Tux decided to continue his journey," " ..." -msgstr "" +msgstr "설인의 갑작스러운 뒷걸음질에 턱스는 우려스러웠지만 여행을 계속하기로 결심하고..." #: data/levels/world1/scripts_yeti_cutscene.txt:6 msgid "...while secretly hoping not to run into the yeti again, by any means." -msgstr "" +msgstr "...그저 설인과 다시 마주치지 않기를 과묵하게 바랐습니다." #: data/levels/world1/shattered_bridge.stl:3 msgid "The Shattered Bridge" @@ -275,66 +274,66 @@ msgstr "환상 속에서" #: data/levels/world1/welcome_antarctica.stl:3 msgid "Welcome to Antarctica" -msgstr "어서 와, 남극은 처음이지?" +msgstr "남극에 오신 것을 환영합니다" -#: data/levels/world1/welcome_antarctica.stl:68 +#: data/levels/world1/welcome_antarctica.stl:74 msgid "" "-Bonus Blocks\n" "!images/objects/bonus_block/full-0.png\n" "#Bonus blocks can contain coins, power-ups or special items to help you in your quest.\n" "#\n" "#Hit them from below to get at their contents." -msgstr "-보너스 상자\n!images/objects/bonus_block/full-0.png\n#보너스 상자에는 당신이 퀘스트를 수행하는 데 도움을 주는 코인, 파워업이나 특별한 아이템이 들어 있습니다.\n#\n#아이템을 얻으려면 아래에서 상자를 위로 치세요." +msgstr "-보너스 블록\n!images/objects/bonus_block/full-0.png\n#보너스 블록에는 당신이 퀘스트를 수행하는 데 도움을 주는 동전, 파워업이나 특별한 아이템이 들어 있습니다.\n#\n#아이템을 얻으려면 아래에서 상자를 위로 치세요." -#: data/levels/world1/welcome_antarctica.stl:77 +#: data/levels/world1/welcome_antarctica.stl:83 msgid "" "-Eggs\n" "!images/powerups/egg/egg-shade.png\n" "#The egg makes Tux grow larger. Tux can then smash wooden blocks with his head." msgstr "-알\n!images/powerups/egg/egg-shade.png\n#알은 턱스를 더 크게 해 줍니다. 턱스는 머리로 나무 상자를 깰 수 있습니다." -#: data/levels/world1/welcome_antarctica.stl:84 +#: data/levels/world1/welcome_antarctica.stl:90 msgid "" "-Checkpoints\n" "!images/objects/resetpoints/bell-m.png\n" "#Activate the checkpoint. If you die, you can retry the level from here. Every time you retry from a checkpoint, you will lose 10 percent of your coins (at least 25 coins)." -msgstr "-체크포인트\n!images/objects/resetpoints/bell-m.png\n#체크포인트를 활성화합니다. 죽으면, 여기에서 레벨을 다시 시작할 수 있습니다. 체크포인트에서 다시 시작할 때매다, (최소 25코인 정도로) 10퍼센트의 코인을 소비합니다." +msgstr "-체크포인트\n!images/objects/resetpoints/bell-m.png\n#체크포인트를활성화합니다. 죽으면 여기에서 레벨을 다시 시도할 수 있습니다. 체크포인트에서 재시도할 때마다 동전의 10%(최소 25개)를 잃게 됩니다." -#: data/levels/world1/welcome_antarctica.stl:91 +#: data/levels/world1/welcome_antarctica.stl:97 msgid "" "-Running\n" "!images/tiles/signs/run.png\n" "#The path in front of you is blocked. Gain some speed before jumping to pass over the blocks." msgstr "-달리기\n!images/tiles/signs/run.png\n#당신 앞에 길을 막고 있습니다. 상자들을 넘으려면 점프하기 전에 더 멀리 달려서 속도를 더 얻어야 합니다." -#: data/levels/world1/welcome_antarctica.stl:98 +#: data/levels/world1/welcome_antarctica.stl:104 msgid "" "-Fire Flower\n" "!images/powerups/fireflower/fire_flower-0.png\n" "#The fire flower gives Tux the ability to shoot fireballs." -msgstr "-불 꽃\n!images/powerups/fireflower/fire_flower-0.png\n#불 꽃은 턱스가 불을 발사할 수 있도록 해 줍니다." +msgstr "-불의 꽃\n!images/powerups/fireflower/fire_flower-0.png\n#불의 꽃은 턱스가 불을 발사할 수 있도록 해 줍니다." -#: data/levels/world1/welcome_antarctica.stl:105 +#: data/levels/world1/welcome_antarctica.stl:111 msgid "" "-Tux Doll\n" "!images/powerups/1up/1up.png\n" "#The Tux doll gives Tux 100 coins." -msgstr "-턱스 인형\n!images/powerups/1up/1up.png\n#턱스 인형은 턱스에게 100코인을 얻습니다." +msgstr "-턱스 인형\n!images/powerups/1up/1up.png\n#턱스 인형은 턱스에게 100개의 동전을 줍니다." -#: data/levels/world1/welcome_antarctica.stl:112 +#: data/levels/world1/welcome_antarctica.stl:118 msgid "" "-Secret Areas\n" "#Many levels contain secret areas behind what seems to be plain walls. Look for clues to find them." -msgstr "-숨겨진 구역\n#많은 레벨들은 일반 벽처럼 보이는 숨겨진 구역들이 있습니다. 잘 찾아보세요." +msgstr "-비밀공간 구역\n#많은 레벨들은 일반 벽처럼 보이는 비밀공간 구역들이 있습니다. 잘 찾아보세요." #: data/levels/world1/worldmap.stwm:3 msgid "Icy Island" -msgstr "얼음 성" +msgstr "얼음성" #: data/levels/world1/yeti_boss.stl:3 msgid "No More Mr. Ice Guy" -msgstr "더 이상 아이스 가이 군은 없어" +msgstr "이제 미스터 아이스가이는 없어" #: data/levels/world1/yeti_cutscene.stl:3 msgid "A Yeti in the Distance" -msgstr "멀리 있는 예티" +msgstr "멀리 있는 설인" diff --git a/data/levels/world1/messages.pot b/data/levels/world1/messages.pot index b14f3aa626f..b5bc88cb940 100644 --- a/data/levels/world1/messages.pot +++ b/data/levels/world1/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: SuperTux v0.6.2-963-gb4a1b149f\n" +"Project-Id-Version: SuperTux v0.6.3-1080-g2e08c1b7f\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -30,7 +30,7 @@ msgstr "" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "" @@ -59,10 +59,6 @@ msgid "" "will in a future release of the game." msgstr "" -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "" diff --git a/data/levels/world1/ms_MY.po b/data/levels/world1/ms_MY.po index 0e2ce465189..674ac88a50c 100644 --- a/data/levels/world1/ms_MY.po +++ b/data/levels/world1/ms_MY.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-06-16 04:03+0000\n" -"Last-Translator: abuyop \n" -"Language-Team: Malay (Malaysia) (http://www.transifex.com/arctic-games/supertux/language/ms_MY/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: abuyop , 2018,2021\n" +"Language-Team: Malay (Malaysia) (http://app.transifex.com/arctic-games/supertux/language/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -31,7 +31,7 @@ msgstr "Penerbangan ke-23" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Anda telah menemui satu tempat rahsia!" @@ -58,10 +58,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Hablur\n#Aras ini mengandungi empat hablur berwarna. Dapatkah anda menemuinya?\n#\n#Petua: Hablur-hablur ini tidak memberi apa-apa kelebihan tetapi ia mungkin dapat mendedahkan keluaran permainan akan datang." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Balai Takhta Kosong" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Istana Nolok" diff --git a/data/levels/world1/nb.po b/data/levels/world1/nb.po index 59553e744d6..80c546e0d39 100644 --- a/data/levels/world1/nb.po +++ b/data/levels/world1/nb.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 22:58+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Norwegian Bokmål (http://app.transifex.com/arctic-games/supertux/language/nb/)\n" @@ -33,7 +33,7 @@ msgstr "Uro i lufta" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Du fant en hemmelig plass!" @@ -60,10 +60,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Krystaller\n#Dette nivået inneholder fire fargede krystaller. Kan du finne dem?\n#\n#Merk: Disse krystallene tjener ingen hensikt for øyeblikket, men de kan gjøre det i en fremtidig utgivelse av spillet." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Tomt tronsal" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Noloks borg" diff --git a/data/levels/world1/nl.po b/data/levels/world1/nl.po index aedf5500304..5928bf1d673 100644 --- a/data/levels/world1/nl.po +++ b/data/levels/world1/nl.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Heimen Stoffels , 2015-2016,2018-2019 +# Heimen Stoffels , 2015-2016,2018-2019 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2019-11-24 01:44+0100\n" -"PO-Revision-Date: 2019-11-25 12:39+0000\n" -"Last-Translator: Heimen Stoffels \n" -"Language-Team: Dutch (http://www.transifex.com/arctic-games/supertux/language/nl/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: Heimen Stoffels , 2015-2016,2018-2019\n" +"Language-Team: Dutch (http://app.transifex.com/arctic-games/supertux/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,16 +22,16 @@ msgstr "" msgid "23rd Airborne" msgstr "23e keer in de lucht" -#: data/levels/world1/23rd_airborne.stl:355 -#: data/levels/world1/between_glaciers.stl:615 -#: data/levels/world1/between_glaciers.stl:623 -#: data/levels/world1/crystal_mine.stl:1150 -#: data/levels/world1/crystal_mine.stl:1158 +#: data/levels/world1/23rd_airborne.stl:598 +#: data/levels/world1/between_glaciers.stl:855 +#: data/levels/world1/between_glaciers.stl:863 +#: data/levels/world1/crystal_mine.stl:1535 +#: data/levels/world1/crystal_mine.stl:1543 #: data/levels/world1/frosted_fields.stl:188 #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 -#: data/levels/world1/shattered_bridge.stl:269 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:200 +#: data/levels/world1/shattered_bridge.stl:628 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Je hebt een geheim gebied gevonden!" @@ -39,7 +39,7 @@ msgstr "Je hebt een geheim gebied gevonden!" msgid "Above the Arctic Skies" msgstr "Boven de arctische luchten" -#: data/levels/world1/above_arctic_skies.stl:152 +#: data/levels/world1/above_arctic_skies.stl:162 msgid "" "-Air Flower\n" "!images/powerups/airflower/air_flower-0.png\n" @@ -50,7 +50,7 @@ msgstr "-Luchtbloem\n!images/powerups/airflower/air_flower-0.png\n#De luchtbloem msgid "Between Two Glaciers" msgstr "Tussen twee gletsjers" -#: data/levels/world1/between_glaciers.stl:104 +#: data/levels/world1/between_glaciers.stl:108 msgid "" "-Crystals\n" "#This level contains four coloured crystals. Can you find them?\n" @@ -58,10 +58,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Kristallen\n#Dit level bevat vier gekleurde kristallen. Kun je ze allemaal vinden?\n#\n#Let op: deze kristallen zijn nu nog niet bruikbaar, maar worden dat in de toekomst mogelijk wél." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Lege troonkamer" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Nolok's kasteel" @@ -70,7 +66,7 @@ msgstr "Nolok's kasteel" msgid "The Crystal Mine" msgstr "De kristalmijn" -#: data/levels/world1/crystal_mine.stl:608 +#: data/levels/world1/crystal_mine.stl:686 msgid "#You have to activate two switches to open this door." msgstr "#Je moet twee schakelaars omzetten om deze deur te kunnen openen." @@ -276,7 +272,7 @@ msgstr "Via Nostalgica" msgid "Welcome to Antarctica" msgstr "Welkom op Antarctica" -#: data/levels/world1/welcome_antarctica.stl:68 +#: data/levels/world1/welcome_antarctica.stl:74 msgid "" "-Bonus Blocks\n" "!images/objects/bonus_block/full-0.png\n" @@ -285,42 +281,42 @@ msgid "" "#Hit them from below to get at their contents." msgstr "-Bonusblokken\n!images/objects/bonus_block/full-0.png\n#Bonusblokken kunnen munten bevatten, maar ook bonusitems of speciale items die je helpen bij de opdracht.\n#\n#Ga onder ze staan en spring recht omhoog, tegen ze aan, om ze te openen." -#: data/levels/world1/welcome_antarctica.stl:77 +#: data/levels/world1/welcome_antarctica.stl:83 msgid "" "-Eggs\n" "!images/powerups/egg/egg-shade.png\n" "#The egg makes Tux grow larger. Tux can then smash wooden blocks with his head." msgstr "-Eieren\n!images/powerups/egg/egg-shade.png\n#Eieren zorgen ervoor dat Tux groeit. Daardoor Tux houten blokken kapot maken met zijn kop." -#: data/levels/world1/welcome_antarctica.stl:84 +#: data/levels/world1/welcome_antarctica.stl:90 msgid "" "-Checkpoints\n" "!images/objects/resetpoints/bell-m.png\n" "#Activate the checkpoint. If you die, you can retry the level from here. Every time you retry from a checkpoint, you will lose 10 percent of your coins (at least 25 coins)." msgstr "-Herstelpunten\n!images/objects/resetpoints/bell-m.png\n#Activeer het herstelpunt. Als je sterft, dan begint het level vanaf hier i.p.v. vanaf het begin. Elke keer dat je terugkeert naar een herstelpunt, verlies je 10 procent van je munten (minimaal 25 munten)." -#: data/levels/world1/welcome_antarctica.stl:91 +#: data/levels/world1/welcome_antarctica.stl:97 msgid "" "-Running\n" "!images/tiles/signs/run.png\n" "#The path in front of you is blocked. Gain some speed before jumping to pass over the blocks." msgstr "-Rennen\n!images/tiles/signs/run.png\n#Het pad is geblokkeerd. Maak wat snelheid en spring vlak voor de blokken; je springt er dan overheen." -#: data/levels/world1/welcome_antarctica.stl:98 +#: data/levels/world1/welcome_antarctica.stl:104 msgid "" "-Fire Flower\n" "!images/powerups/fireflower/fire_flower-0.png\n" "#The fire flower gives Tux the ability to shoot fireballs." msgstr "-Vuurbloem\n!images/powerups/fireflower/fire_flower-0.png\n#De vuurbloem zorgt ervoor dat Tux vuurballen kan schieten." -#: data/levels/world1/welcome_antarctica.stl:105 +#: data/levels/world1/welcome_antarctica.stl:111 msgid "" "-Tux Doll\n" "!images/powerups/1up/1up.png\n" "#The Tux doll gives Tux 100 coins." msgstr "-Tux-pop\n!images/powerups/1up/1up.png\n#De Tux-pop voorziet Tux van 100 munten." -#: data/levels/world1/welcome_antarctica.stl:112 +#: data/levels/world1/welcome_antarctica.stl:118 msgid "" "-Secret Areas\n" "#Many levels contain secret areas behind what seems to be plain walls. Look for clues to find them." diff --git a/data/levels/world1/nn.po b/data/levels/world1/nn.po index 21ecca8d354..6b14ff9d6e0 100644 --- a/data/levels/world1/nn.po +++ b/data/levels/world1/nn.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2020-04-13 17:25+0200\n" -"PO-Revision-Date: 2020-04-19 12:28+0000\n" -"Last-Translator: Karl Ove Hufthammer \n" -"Language-Team: Norwegian Nynorsk (http://www.transifex.com/arctic-games/supertux/language/nn/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: Karl Ove Hufthammer , 2004,2006-2007,2013-2016,2018-2020\n" +"Language-Team: Norwegian Nynorsk (http://app.transifex.com/arctic-games/supertux/language/nn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,16 +22,16 @@ msgstr "" msgid "23rd Airborne" msgstr "Uro i lufta" -#: data/levels/world1/23rd_airborne.stl:355 -#: data/levels/world1/between_glaciers.stl:615 -#: data/levels/world1/between_glaciers.stl:623 -#: data/levels/world1/crystal_mine.stl:1150 -#: data/levels/world1/crystal_mine.stl:1158 +#: data/levels/world1/23rd_airborne.stl:598 +#: data/levels/world1/between_glaciers.stl:855 +#: data/levels/world1/between_glaciers.stl:863 +#: data/levels/world1/crystal_mine.stl:1535 +#: data/levels/world1/crystal_mine.stl:1543 #: data/levels/world1/frosted_fields.stl:188 #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 -#: data/levels/world1/shattered_bridge.stl:269 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:200 +#: data/levels/world1/shattered_bridge.stl:628 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Du fann ein hemmeleg plass!" @@ -39,7 +39,7 @@ msgstr "Du fann ein hemmeleg plass!" msgid "Above the Arctic Skies" msgstr "Over skyene" -#: data/levels/world1/above_arctic_skies.stl:152 +#: data/levels/world1/above_arctic_skies.stl:162 msgid "" "-Air Flower\n" "!images/powerups/airflower/air_flower-0.png\n" @@ -50,7 +50,7 @@ msgstr "-Luftblome\n!images/powerups/airflower/air_flower-0.png\n#Med luftblomen msgid "Between Two Glaciers" msgstr "Mellom to brear" -#: data/levels/world1/between_glaciers.stl:104 +#: data/levels/world1/between_glaciers.stl:108 msgid "" "-Crystals\n" "#This level contains four coloured crystals. Can you find them?\n" @@ -58,10 +58,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Krystallar\n#Dette brettet inneheld fire farga krystallar. Klarar du å finna alle?\n#\n#Merk: Krystallane spelar førebels ikkje noka rolle, men vil kanskje gjera det i ein framtidig versjon av spelet." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Tom tronsal" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Borga til Nolok" @@ -70,7 +66,7 @@ msgstr "Borga til Nolok" msgid "The Crystal Mine" msgstr "Krystallgruva" -#: data/levels/world1/crystal_mine.stl:608 +#: data/levels/world1/crystal_mine.stl:686 msgid "#You have to activate two switches to open this door." msgstr "#Du må slå på to brytarar for å opna døra." @@ -276,7 +272,7 @@ msgstr "Nostalgi" msgid "Welcome to Antarctica" msgstr "Velkommen til Sørpolen" -#: data/levels/world1/welcome_antarctica.stl:68 +#: data/levels/world1/welcome_antarctica.stl:74 msgid "" "-Bonus Blocks\n" "!images/objects/bonus_block/full-0.png\n" @@ -285,42 +281,42 @@ msgid "" "#Hit them from below to get at their contents." msgstr "-Bonusblokker\n!images/objects/bonus_block/full-0.png\n#Bonusblokker inneheld myntar, spesialevner eller spesielle gjenstandar som hjelper deg vidare.\n#\n#Knus blokkene nedanfrå for å få tak i det dei inneheld." -#: data/levels/world1/welcome_antarctica.stl:77 +#: data/levels/world1/welcome_antarctica.stl:83 msgid "" "-Eggs\n" "!images/powerups/egg/egg-shade.png\n" "#The egg makes Tux grow larger. Tux can then smash wooden blocks with his head." msgstr "-Egg\n!images/powerups/egg/egg-shade.png\n#Egget får deg til å veksa deg større. Du kan då knusa trekassar med hovudet." -#: data/levels/world1/welcome_antarctica.stl:84 +#: data/levels/world1/welcome_antarctica.stl:90 msgid "" "-Checkpoints\n" "!images/objects/resetpoints/bell-m.png\n" "#Activate the checkpoint. If you die, you can retry the level from here. Every time you retry from a checkpoint, you will lose 10 percent of your coins (at least 25 coins)." msgstr "-Bjølle\n!images/objects/resetpoints/bell-m.png\n#Ring med bjølla. Når du døyr, vil du gjenoppstå på bjølleplassen. Men du mistar 10 % av myntane dine (minst 25 myntar)." -#: data/levels/world1/welcome_antarctica.stl:91 +#: data/levels/world1/welcome_antarctica.stl:97 msgid "" "-Running\n" "!images/tiles/signs/run.png\n" "#The path in front of you is blocked. Gain some speed before jumping to pass over the blocks." msgstr "-Springing\n!images/tiles/signs/run.png\n#Vegen framfor deg er stengd. Du må springa fort for å klara å hoppa over hindera." -#: data/levels/world1/welcome_antarctica.stl:98 +#: data/levels/world1/welcome_antarctica.stl:104 msgid "" "-Fire Flower\n" "!images/powerups/fireflower/fire_flower-0.png\n" "#The fire flower gives Tux the ability to shoot fireballs." msgstr "-Eldblome\n!images/powerups/fireflower/fire_flower-0.png\n#Eldblomen gjev deg evna til å skyta eldkuler." -#: data/levels/world1/welcome_antarctica.stl:105 +#: data/levels/world1/welcome_antarctica.stl:111 msgid "" "-Tux Doll\n" "!images/powerups/1up/1up.png\n" "#The Tux doll gives Tux 100 coins." msgstr "-Tux-dokke\n!images/powerups/1up/1up.png\n#Tux-dokka gjev deg 100 myntar." -#: data/levels/world1/welcome_antarctica.stl:112 +#: data/levels/world1/welcome_antarctica.stl:118 msgid "" "-Secret Areas\n" "#Many levels contain secret areas behind what seems to be plain walls. Look for clues to find them." diff --git a/data/levels/world1/pl.po b/data/levels/world1/pl.po index 11c7b76c69e..cb552bf9245 100644 --- a/data/levels/world1/pl.po +++ b/data/levels/world1/pl.po @@ -4,28 +4,35 @@ # # Translators: # Arkadiusz Chojnicki , 2019 +# Benjamin Leduc , 2015 # Grzegorz Szymaszek , 2021 # Krzysztof Szeląg, 2015 # Krzysztof Szeląg, 2016,2018 -# Krzysztof Szeląg, 2015-2016,2018 +# Krzysztof Szeląg, 2015-2016,2018-2019 # Łukasz Hryniuk, 2013 # Łukasz Hryniuk, 2013 # Łukasz Hryniuk, 2013 # mkkot , 2014 # Marcin Kralka , 2014 -# mkkot , 2014-2015 +# Marcin S , 2016,2019 +# mkkot , 2013-2015 # Paweł Talar , 2013 # Paweł Talar , 2013 # Rob PlayZ, 2021 -# Zwatotem , 2019-2020 +# Alina Gobarov, 2021 +# Seba D. , 2020 +# Simon Kornowski , 2013 +# Tomasz Dądela, 2022 +# Ziemowit Zabawa, 2022 +# Grzegorz Przybylski , 2019-2020 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 22:41+0000\n" -"Last-Translator: Rob PlayZ\n" -"Language-Team: Polish (http://www.transifex.com/arctic-games/supertux/language/pl/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: Ziemowit Zabawa, 2022\n" +"Language-Team: Polish (http://app.transifex.com/arctic-games/supertux/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -45,7 +52,7 @@ msgstr "23. brygada powietrzna" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Znalazłeś sekretne miejsce!" @@ -70,11 +77,7 @@ msgid "" "#This level contains four coloured crystals. Can you find them?\n" "#\n" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." -msgstr "-Kryształy\n#Ten poziam zawiera cztery kolorowe kryształy. Czy jesteś w stanie je znaleźć?\n#\nUwaga: Te kryształy nie mają na razie żadnego przeznaczenia, ale mogą je mieć w przyszłych wydaniach gry." - -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Pusta sala tronowa" +msgstr "-Kryształy\n#Ten poziom zawiera cztery kolorowe kryształy. Czy jesteś w stanie je znaleźć?\n#\nUwaga: Te kryształy nie mają na razie żadnego przeznaczenia, ale mogą je mieć w przyszłych wydaniach gry." #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" @@ -86,7 +89,7 @@ msgstr "Kryształowa kopalnia" #: data/levels/world1/crystal_mine.stl:686 msgid "#You have to activate two switches to open this door." -msgstr "#Musisz atkywować dwie dźwignie aby otworzyć te drzwi." +msgstr "#Musisz aktywować dwie dźwignie, aby otworzyć te drzwi." #: data/levels/world1/end_of_tunnel.stl:3 msgid "End of the Tunnel" @@ -114,7 +117,7 @@ msgid "" "-Trampolines\n" "!images/objects/trampoline/trampoline2-0.png\n" "#Trampolines allow Tux to jump to new heights. Hold down the JUMP key while bouncing on the trampoline to launch extra high." -msgstr "-Trampoliny\n!images/objects/trampoline/trampoline2-0.png\n#Trampoliny pozwalają Tuksowi skakać jeszcze wyżej. Naciśnij klawisz SKOKU podczas odbijania się od trampoliny, by skoczyć bardzo wysoko." +msgstr "-Trampoliny\n!images/objects/trampoline/trampoline2-0.png\n#Trampoliny pozwalają Tuxowi skakać jeszcze wyżej. Naciśnij klawisz SKOKU podczas odbijania się od trampoliny, by skoczyć bardzo wysoko." #: data/levels/world1/fork_in_the_road.stl:100 msgid "" @@ -175,7 +178,7 @@ msgstr "Nocny luz" #: data/levels/world1/or_just_me.stl:3 msgid "...Or Is It Just Me?" -msgstr "'... czy to tylko ja?'" +msgstr "…czy to tylko ja?" #: data/levels/world1/path_in_the_clouds.stl:3 msgid "A Path in the Clouds" @@ -198,15 +201,15 @@ msgstr "List od Penny mówiący Tuxowi, że Nolok zabrał ją do odległego lasu msgid "" "Unsure about what Nolok was doing to her, Tux became worried about his " "beloved Penny." -msgstr "Tux, niepewny, co Nolok chce z nią zrobić zmartwił się o swą ukochaną Penny." +msgstr "Tux, niepewny, co Nolok chce z nią zrobić, zmartwił się o swą ukochaną Penny." #: data/levels/world1/scripts_castle_cutscene.txt:6 msgid "Until suddenly..." -msgstr "Aż nagle..." +msgstr "Aż nagle…" #: data/levels/world1/scripts_intro.txt:2 msgid "Somewhere at the shores of Antarctica..." -msgstr "Gdzieś u wybrzeży Antarktydy ..." +msgstr "Gdzieś u wybrzeży Antarktydy…" #: data/levels/world1/scripts_intro.txt:3 msgid "Tux the penguin was going to meet his friend, Penny, for a picnic." @@ -228,7 +231,7 @@ msgstr "\"Tuxie, porwałem twą ukochaną Penny i zabrałem ją do swojej fortec #: data/levels/world1/scripts_intro.txt:7 msgid "\"The path to my fortress is littered with my minions.\"" -msgstr "\"Droga do fortecy jest zasłana moimi minionami\"" +msgstr "\"Droga do fortecy jest zasłana moimi minionami.\"" #: data/levels/world1/scripts_intro.txt:8 msgid "\"You don't have a chance of saving her! Signed, Nolok.\"" @@ -246,7 +249,7 @@ msgstr "Wtedy, Tux zauważył zamek Noloka w oddali i wyruszył na ratunek Penny #: data/levels/world1/scripts_yeti_cutscene.txt:2 msgid "Exhausted from his long walk, Tux decided to take a little break." -msgstr "Zmęczony długą podróżą, Tux zdecydowł chwilę odpocząć." +msgstr "Zmęczony długą podróżą, Tux zdecydował chwilę odpocząć." #: data/levels/world1/scripts_yeti_cutscene.txt:3 msgid "But then, all of a sudden he heard a loud roar from a distance." @@ -264,7 +267,7 @@ msgstr "Zaniepokojony nagłym odwrotem Yeti, Tux postanowił kontynuować podró #: data/levels/world1/scripts_yeti_cutscene.txt:6 msgid "...while secretly hoping not to run into the yeti again, by any means." -msgstr "... podskakując ostrożnie, aby w żadnym razie nie natknąć się na Yeti ponownie." +msgstr "…po cichu licząc na to, że za wszelką cenę nie natknie się na Yeti ponownie." #: data/levels/world1/shattered_bridge.stl:3 msgid "The Shattered Bridge" @@ -276,7 +279,7 @@ msgstr "Lekki prysznic" #: data/levels/world1/stone_cold.stl:3 msgid "Stone Cold" -msgstr "Zimny kamień" +msgstr "Zimny jak kamień" #: data/levels/world1/under_the_ice.stl:3 msgid "Under the Ice" @@ -304,7 +307,7 @@ msgid "" "-Eggs\n" "!images/powerups/egg/egg-shade.png\n" "#The egg makes Tux grow larger. Tux can then smash wooden blocks with his head." -msgstr "-Jajka\n!images/powerups/egg/egg-shade.png\n#Jajka uczynią Tuksa większym. Tux może wtedy niszczyć drewniane bloki swoją głową." +msgstr "-Jajka\n!images/powerups/egg/egg-shade.png\n#Jajka uczynią Tuxa większym. Tux może wtedy niszczyć drewniane bloki swoją głową." #: data/levels/world1/welcome_antarctica.stl:90 msgid "" @@ -325,14 +328,14 @@ msgid "" "-Fire Flower\n" "!images/powerups/fireflower/fire_flower-0.png\n" "#The fire flower gives Tux the ability to shoot fireballs." -msgstr "-Ognisty kwiat\n!images/powerups/fireflower/fire_flower-0.png\n# Ognisty Kwiat daje Tuksowi możliwość strzelania ognistymi kulami." +msgstr "-Ognisty kwiat\n!images/powerups/fireflower/fire_flower-0.png\n# Ognisty Kwiat daje Tuxowi możliwość strzelania ognistymi kulami." #: data/levels/world1/welcome_antarctica.stl:111 msgid "" "-Tux Doll\n" "!images/powerups/1up/1up.png\n" "#The Tux doll gives Tux 100 coins." -msgstr "-Awatar Tuksa\n!images/powerups/1up/1up.png\n#Awatar daje Tuksowi 100 monet." +msgstr "-Awatar Tuxa\n!images/powerups/1up/1up.png\n#Awatar daje Tuxowi 100 monet." #: data/levels/world1/welcome_antarctica.stl:118 msgid "" diff --git a/data/levels/world1/pt.po b/data/levels/world1/pt.po index 1216d52ef2a..f657510bf2d 100644 --- a/data/levels/world1/pt.po +++ b/data/levels/world1/pt.po @@ -6,6 +6,7 @@ # André Pinheiro , 2021 # Daniela Ferraz , 2013 # João Frade <100nome.portugal@gmail.com>, 2023 +# lecalam, 2024 # Rui , 2016,2018 # Tiago Correia , 2019 # Rui , 2016 @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 22:58+0000\n" -"Last-Translator: João Frade <100nome.portugal@gmail.com>, 2023\n" +"Last-Translator: lecalam, 2024\n" "Language-Team: Portuguese (http://app.transifex.com/arctic-games/supertux/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,7 +38,7 @@ msgstr "23º Aerotransporte" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Descobriste uma área secreta!" @@ -50,7 +51,7 @@ msgid "" "-Air Flower\n" "!images/powerups/airflower/air_flower-0.png\n" "#The Air Flower gives Tux the ability to glide in the air for a few seconds, while holding the JUMP Key." -msgstr "Flor-de-Ar\n!images/powerups/airflower/air_flower-0.png\n#A flor-de-Ar dá ao Tux o poder de deslizar no ar durante alguns segundos, enquanto premida a tecla de SALTAR." +msgstr "Flor-de-Ar\n!images/powerups/airflower/air_flower-0.png\n#A Flor-de-Ar dá ao Tux o poder de deslizar no ar durante alguns segundos, enquanto for premida a tecla de SALTAR." #: data/levels/world1/between_glaciers.stl:3 msgid "Between Two Glaciers" @@ -64,10 +65,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Cristais\n#Este nível contem quatro cristais coloridos. Consegues encontrá-los?\n#\n#Nota: estes cristais não servem nenhum propósito de momento, mas podem servir num futuro lançamento do jogo." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Sala do Trono Vazia" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "O Castelo de Nolok" @@ -99,7 +96,7 @@ msgid "" "!images/objects/pushbutton/pushbutton-0.png\n" "#Switches can be used to do all manner of things. Press the UP key to use a switch.\n" "#There are also buttons that you can press by jumping on them." -msgstr "-Interruptores\n!images/objects/switch/switch-0.png\n!images/objects/pushbutton/pushbutton-0.png\n#Interruptores podem ser utilizados em muitos casos. Prime a tecla SUBIR para utilizar o interruptor.\n#Há também botões que podes premir saltando sobre eles." +msgstr "-Interruptores\n!images/objects/switch/switch-0.png\n!images/objects/pushbutton/pushbutton-0.png\n#Os interruptores podem ser utilizados em muitos casos. Prime a tecla SUBIR para utilizar o interruptor.\n#Há também botões que podes premir saltando sobre eles." #: data/levels/world1/fork_in_the_road.stl:93 msgid "" @@ -112,14 +109,14 @@ msgstr "-Trampolins\n!images/objects/trampoline/trampoline2-0.png\n#Os trampolin msgid "" "-Climbing\n" "#Tux can climb! Press the UP key to start climbing. Press the ACTION key or jump to let go." -msgstr "-Subir Escadas\n#O Tux pode subir escadas! Prime a tecla SETA CIMA para começar a subir a escada. Prime a tecla AÇÃO ou salta para sair da escada." +msgstr "-Subir escadas\n#O Tux pode subir escadas! Prime a tecla SETA CIMA para começar a subir a escada. Prime a tecla AÇÃO ou salta para sair da escada." #: data/levels/world1/fork_in_the_road.stl:106 msgid "" "-Secret Exits\n" "#Some level can have multiple exits. They are mostly hidden, so keep an eye out for them.\n" "#Maybe they lead you to something special." -msgstr "-Saídas Secretas\n#Alguns níveis possuem múltiplas saídas. Estão na sua maioria escondidas, por isso atenta nelas.\n#Talvez te conduzam a algo especial." +msgstr "-Saídas secretas\n#Alguns níveis podem ter várias saídas. A maior parte das vezes estão escondidas, por isso fica atento.\n#Talvez te conduzam a algo especial." #: data/levels/world1/frosted_fields.stl:3 msgid "The Frosted Fields" @@ -190,7 +187,7 @@ msgstr "Uma carta de Penny contando a Tux que Nolok a levara para uma longínqua msgid "" "Unsure about what Nolok was doing to her, Tux became worried about his " "beloved Penny." -msgstr "Incerto sobre as ações de Nolok sobre Penny, Tux ficou preocupado com a sua amada." +msgstr "Sem saber o que Nolok lhe estava a fazer, Tux ficou preocupado com a sua amada Penny." #: data/levels/world1/scripts_castle_cutscene.txt:6 msgid "Until suddenly..." @@ -289,7 +286,7 @@ msgid "" "#Bonus blocks can contain coins, power-ups or special items to help you in your quest.\n" "#\n" "#Hit them from below to get at their contents." -msgstr "-Blocos de Bónus\n!images/objects/bonus_block/full-0.png\n#Os blocos de bónus podem conter moedas, poderes especiais ou outros itens para te ajudar na viagem.\n#\n#Dá uma cabeçada neles para obteres o que está dentro deles." +msgstr "-Blocos de bónus\n!images/objects/bonus_block/full-0.png\n#Os blocos de bónus podem conter moedas, poderes especiais ou outros itens para te ajudar na viagem.\n#\n#Dá uma cabeçada neles para obteres o que está dentro deles." #: data/levels/world1/welcome_antarctica.stl:83 msgid "" @@ -303,7 +300,7 @@ msgid "" "-Checkpoints\n" "!images/objects/resetpoints/bell-m.png\n" "#Activate the checkpoint. If you die, you can retry the level from here. Every time you retry from a checkpoint, you will lose 10 percent of your coins (at least 25 coins)." -msgstr "-Pontos de Controlo\n!images/objects/resetpoints/bell-m.png\n#Ativa o Ponto de Controlo. Se morreres, podes tentar começar o nível a partir daqui. Todas as vezes que começares a partir de um ponto de controlo, perdes 10 por cento das moedas (pelo menos 25 moedas)." +msgstr "-Pontos de controlo\n!images/objects/resetpoints/bell-m.png\n#Ativa o ponto de controlo. Se morreres, podes tentar começar o nível a partir daqui. Todas as vezes que começares a partir de um ponto de controlo, perdes 10 por cento das moedas (pelo menos 25 moedas)." #: data/levels/world1/welcome_antarctica.stl:97 msgid "" @@ -317,7 +314,7 @@ msgid "" "-Fire Flower\n" "!images/powerups/fireflower/fire_flower-0.png\n" "#The fire flower gives Tux the ability to shoot fireballs." -msgstr "-Flor-de-Fogo\n!images/powerups/fireflower/fire_flower-0.png\n#A flor-de-fogo dá ao Tux o poder de atirar bolas de fogo com a tecla de Ação." +msgstr "-Flor-de-Fogo\n!images/powerups/fireflower/fire_flower-0.png\n#A Flor-de-Fogo dá ao Tux o poder de atirar bolas de fogo com a tecla de Ação." #: data/levels/world1/welcome_antarctica.stl:111 msgid "" @@ -330,7 +327,7 @@ msgstr "-Boneco do Tux\n!images/powerups/1up/1up.png\n#O boneco do Tux dá ao Tu msgid "" "-Secret Areas\n" "#Many levels contain secret areas behind what seems to be plain walls. Look for clues to find them." -msgstr "-Áreas Secretas\n#Muitos níveis têm áreas secretas escondidas atrás do que parece uma simples parede. Está atento às pistas para as encontrar." +msgstr "-Áreas secretas\n#Muitos níveis têm áreas secretas escondidas atrás do que parece uma simples parede. Está atento às pistas para as encontrar." #: data/levels/world1/worldmap.stwm:3 msgid "Icy Island" diff --git a/data/levels/world1/pt_BR.po b/data/levels/world1/pt_BR.po index 49d31dadee6..1f196342dd4 100644 --- a/data/levels/world1/pt_BR.po +++ b/data/levels/world1/pt_BR.po @@ -3,44 +3,46 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Jesusalva Jesusalva , 2014 +# Anyone Anonymous, 2022 +# Jesusaves , 2014 # Daniela Ferraz , 2013 # Filipe Oliveira , 2013 +# Fúlvio Alves , 2023 # Herval Ribeiro , 2006 -# Jesusalva Jesusalva , 2020 -# Jesusalva Jesusalva , 2018 +# Jesusaves , 2020 +# Jesusaves , 2018 # Joel Gil Leon , 2013 -# Jesusalva Jesusalva , 2015 +# Jesusaves , 2015 # Rui , 2016 # Victor Gonçalves , 2015 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2020-04-13 17:25+0200\n" -"PO-Revision-Date: 2020-08-06 18:34+0000\n" -"Last-Translator: Jesusalva Jesusalva \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/arctic-games/supertux/language/pt_BR/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: Fúlvio Alves , 2023\n" +"Language-Team: Portuguese (Brazil) (http://app.transifex.com/arctic-games/supertux/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/world1/23rd_airborne.stl:3 msgid "23rd Airborne" -msgstr "23 Aerotransportado" +msgstr "23º Aerotransportado" -#: data/levels/world1/23rd_airborne.stl:355 -#: data/levels/world1/between_glaciers.stl:615 -#: data/levels/world1/between_glaciers.stl:623 -#: data/levels/world1/crystal_mine.stl:1150 -#: data/levels/world1/crystal_mine.stl:1158 +#: data/levels/world1/23rd_airborne.stl:598 +#: data/levels/world1/between_glaciers.stl:855 +#: data/levels/world1/between_glaciers.stl:863 +#: data/levels/world1/crystal_mine.stl:1535 +#: data/levels/world1/crystal_mine.stl:1543 #: data/levels/world1/frosted_fields.stl:188 #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 -#: data/levels/world1/shattered_bridge.stl:269 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:200 +#: data/levels/world1/shattered_bridge.stl:628 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Você achou uma área secreta!" @@ -48,7 +50,7 @@ msgstr "Você achou uma área secreta!" msgid "Above the Arctic Skies" msgstr "Sobre os Céus do Ártico" -#: data/levels/world1/above_arctic_skies.stl:152 +#: data/levels/world1/above_arctic_skies.stl:162 msgid "" "-Air Flower\n" "!images/powerups/airflower/air_flower-0.png\n" @@ -59,7 +61,7 @@ msgstr "-Flor de Ar\n!images/powerups/airflower/air_flower-0.png\n#A flor de ar msgid "Between Two Glaciers" msgstr "Entre Duas Geleiras" -#: data/levels/world1/between_glaciers.stl:104 +#: data/levels/world1/between_glaciers.stl:108 msgid "" "-Crystals\n" "#This level contains four coloured crystals. Can you find them?\n" @@ -67,10 +69,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Cristais\n#Esse nível possui quatro cristais coloridos. Você consegue encontrá-los?\n#\n#Nota: Esses cristais não possuem função nenhuma no momento, mas eles podem ter em uma versão futura do jogo." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Sala do Trono Vazia" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "O Castelo de Nolok" @@ -79,7 +77,7 @@ msgstr "O Castelo de Nolok" msgid "The Crystal Mine" msgstr "A Mina de Cristais" -#: data/levels/world1/crystal_mine.stl:608 +#: data/levels/world1/crystal_mine.stl:686 msgid "#You have to activate two switches to open this door." msgstr "#Você tem que ativar dois interruptores para abrir esta porta." @@ -182,7 +180,7 @@ msgstr "Tux tinha chegado ao fim do castelo." #: data/levels/world1/scripts_castle_cutscene.txt:3 msgid "But to his surprise all he could find was a letter." -msgstr "Mas para sua surpresa, tudo que ele conseguiu encontrar foi uma carta." +msgstr "Mas, para sua surpresa, tudo que ele conseguiu encontrar foi uma carta." #: data/levels/world1/scripts_castle_cutscene.txt:4 msgid "" @@ -193,7 +191,7 @@ msgstr "Uma carta de Penny dizendo a Tux que Nolok tinha a levado para uma flore msgid "" "Unsure about what Nolok was doing to her, Tux became worried about his " "beloved Penny." -msgstr "Incerto sobre o que Nolok estava fazendo a ela, Tux ficou preocupado sobre sua amada Penny." +msgstr "Incerto sobre o que Nolok estava fazendo a ela, Tux ficou preocupado com sua amada Penny." #: data/levels/world1/scripts_castle_cutscene.txt:6 msgid "Until suddenly..." @@ -249,7 +247,7 @@ msgstr "Mas então, de repente, ele ouviu um grande rugido à distância." #: data/levels/world1/scripts_yeti_cutscene.txt:4 msgid "A yeti seems to have observed him from afar." -msgstr "Um yeti parece ter observado ele à distância." +msgstr "Um yeti parece tê-lo observado de longe." #: data/levels/world1/scripts_yeti_cutscene.txt:5 msgid "" @@ -285,7 +283,7 @@ msgstr "Via Nostálgica" msgid "Welcome to Antarctica" msgstr "Bem-vindo à Antártida" -#: data/levels/world1/welcome_antarctica.stl:68 +#: data/levels/world1/welcome_antarctica.stl:74 msgid "" "-Bonus Blocks\n" "!images/objects/bonus_block/full-0.png\n" @@ -294,42 +292,42 @@ msgid "" "#Hit them from below to get at their contents." msgstr "-Blocos Bônus\n!images/objects/bonus_block/full-0.png\n#Blocos Bônus podem conter moedas, poderes, ou itens especiais que lhe ajudarão em sua busca\n#Atinja-os por baixo para obter seus conteúdos." -#: data/levels/world1/welcome_antarctica.stl:77 +#: data/levels/world1/welcome_antarctica.stl:83 msgid "" "-Eggs\n" "!images/powerups/egg/egg-shade.png\n" "#The egg makes Tux grow larger. Tux can then smash wooden blocks with his head." msgstr "-Ovos\n!images/powerups/egg/egg-shade.png\n#Os ovos fazem o Tux crescer. Tux, então, poderá quebrar os blocos de madeira com a cabeça." -#: data/levels/world1/welcome_antarctica.stl:84 +#: data/levels/world1/welcome_antarctica.stl:90 msgid "" "-Checkpoints\n" "!images/objects/resetpoints/bell-m.png\n" "#Activate the checkpoint. If you die, you can retry the level from here. Every time you retry from a checkpoint, you will lose 10 percent of your coins (at least 25 coins)." -msgstr "-Checkpoints\n!images/objects/resetpoints/bell-m.png\n#Ativa o checkpoint. Se você morrer, você pode continuar a fase daqui, porém irá perder 10 por cento de suas moedas, num mínimo de 25 moedas." +msgstr "-Checkpoints\n!images/objects/resetpoints/bell-m.png\n#Ativa o checkpoint. Se você morrer, poderá continuar o nível daqui, porém irá perder 10 por cento de suas moedas (ao menos 25 moedas)." -#: data/levels/world1/welcome_antarctica.stl:91 +#: data/levels/world1/welcome_antarctica.stl:97 msgid "" "-Running\n" "!images/tiles/signs/run.png\n" "#The path in front of you is blocked. Gain some speed before jumping to pass over the blocks." msgstr "-Correndo\n!images/tiles/signs/run.png\n#A passagem à sua frente está bloqueada. Ganhe um pouco de velocidade antes de pular por cima dos blocos." -#: data/levels/world1/welcome_antarctica.stl:98 +#: data/levels/world1/welcome_antarctica.stl:104 msgid "" "-Fire Flower\n" "!images/powerups/fireflower/fire_flower-0.png\n" "#The fire flower gives Tux the ability to shoot fireballs." msgstr "-Flor de Fogo\n!images/powerups/fireflower/fire_flower-0.png\n#A flor de fogo dá ao Tux o poder de atirar bolas de fogo." -#: data/levels/world1/welcome_antarctica.stl:105 +#: data/levels/world1/welcome_antarctica.stl:111 msgid "" "-Tux Doll\n" "!images/powerups/1up/1up.png\n" "#The Tux doll gives Tux 100 coins." msgstr "- Boneco do Tux\n!images/powerups/1up/1up.png\n#O boneco do Tux dá ao Tux 100 moedas." -#: data/levels/world1/welcome_antarctica.stl:112 +#: data/levels/world1/welcome_antarctica.stl:118 msgid "" "-Secret Areas\n" "#Many levels contain secret areas behind what seems to be plain walls. Look for clues to find them." @@ -341,7 +339,7 @@ msgstr "Ilha Congelada" #: data/levels/world1/yeti_boss.stl:3 msgid "No More Mr. Ice Guy" -msgstr "Acabou Senhor Gelo" +msgstr "Acabou, Senhor Gelo" #: data/levels/world1/yeti_cutscene.stl:3 msgid "A Yeti in the Distance" diff --git a/data/levels/world1/ro.po b/data/levels/world1/ro.po index 1210c122532..e60fdc81e1e 100644 --- a/data/levels/world1/ro.po +++ b/data/levels/world1/ro.po @@ -4,16 +4,16 @@ # # Translators: # IAN RODRÍGUEZ Lorenzo, 2023 -# Ioan Moldovan , 2019 +# Ioan Moldovan , 2019,2023 # Nicolae Crefelean, 2015-2016 # Razvan , 2007 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 22:58+0000\n" -"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" +"Last-Translator: Ioan Moldovan , 2019,2023\n" "Language-Team: Romanian (http://app.transifex.com/arctic-games/supertux/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,7 +34,7 @@ msgstr "A 23-a companie de zbor" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Ai găsit o zonă secretă!" @@ -47,7 +47,7 @@ msgid "" "-Air Flower\n" "!images/powerups/airflower/air_flower-0.png\n" "#The Air Flower gives Tux the ability to glide in the air for a few seconds, while holding the JUMP Key." -msgstr "- Floarea de aer\n!images/powerups/airflower/air_flower-0.png\n#Floarea de aer îi oferă lui Tux capacitatea de a aluneca în aer timp de câteva secunde, în timp ce țineți apăsată tasta JUMP." +msgstr "- Floarea de aer\n!images/powerups/airflower/air_flower-0.png\n#Floarea de aer îi oferă lui Tux capacitatea de a plana în aer timp de câteva secunde, în timp ce țineți apăsată tasta JUMP." #: data/levels/world1/between_glaciers.stl:3 msgid "Between Two Glaciers" @@ -59,11 +59,7 @@ msgid "" "#This level contains four coloured crystals. Can you find them?\n" "#\n" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." -msgstr "- Cristale\n#Acest nivel conține patru cristale colorate. Le poți găsi?\n#\n#Notă: Aceste cristale nu servesc niciunui scop în acest moment, dar s-ar putea să o facă într-o lansare viitoare a jocului." - -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Camera tronului părăsit" +msgstr "- Cristale\n#Acest nivel conține patru cristale colorate. Oare le poți găsi?\n#\n#Notă: Aceste cristale nu servesc niciunui scop în acest moment, dar s-ar putea să o facă într-o lansare viitoare a jocului." #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" @@ -75,7 +71,7 @@ msgstr "Mina de cristal" #: data/levels/world1/crystal_mine.stl:686 msgid "#You have to activate two switches to open this door." -msgstr "#Trebuie să activați două întrerupătoare pentru a deschide această ușă." +msgstr "#Trebuie să activezi două întrerupătoare pentru a deschide această ușă." #: data/levels/world1/end_of_tunnel.stl:3 msgid "End of the Tunnel" @@ -103,7 +99,7 @@ msgid "" "-Trampolines\n" "!images/objects/trampoline/trampoline2-0.png\n" "#Trampolines allow Tux to jump to new heights. Hold down the JUMP key while bouncing on the trampoline to launch extra high." -msgstr "-Trambuline\n!images/objects/trampoline/trampoline2-0.png\n#Trambulinele îi permit lui Tux să sară la noi culmi. Țineți apăsată tasta JUMP în timp ce săriți pe trambulină pentru a lansa foarte sus." +msgstr "-Trambuline\n!images/objects/trampoline/trampoline2-0.png\n#Trambulinele îi permit lui Tux să sară la noi culmi. Țineți apăsată tasta JUMP în timp ce săriți pe trambulină pentru a fi lansat mai sus." #: data/levels/world1/fork_in_the_road.stl:100 msgid "" @@ -172,7 +168,7 @@ msgstr "O cale în nori" #: data/levels/world1/scripts_castle_cutscene.txt:2 msgid "Tux had reached the end of the castle." -msgstr "Tux ajunsese la capătul castelului." +msgstr "Tux a ajuns la capătul castelului." #: data/levels/world1/scripts_castle_cutscene.txt:3 msgid "But to his surprise all he could find was a letter." @@ -181,13 +177,13 @@ msgstr "Dar, spre surprinderea lui, tot ce a găsit a fost o scrisoare." #: data/levels/world1/scripts_castle_cutscene.txt:4 msgid "" "A letter from Penny telling Tux that Nolok has taken her to a far forest." -msgstr "O scrisoare de la Penny în care îi spune lui Tux că Nolok a dus-o într-o pădure îndepărtată." +msgstr "O scrisoare de la Penny pentru Tux, în care scrie că Nolok a dus-o într-o pădure îndepărtată." #: data/levels/world1/scripts_castle_cutscene.txt:5 msgid "" "Unsure about what Nolok was doing to her, Tux became worried about his " "beloved Penny." -msgstr "Nesigur de ce i-a făcut Nolok, Tux a devenit îngrijorat de iubita lui Penny." +msgstr "Temându-se de ce i-ar putea face Nolok, Tux a devenit îngrijorat pentru draga sa Penny." #: data/levels/world1/scripts_castle_cutscene.txt:6 msgid "Until suddenly..." @@ -203,21 +199,21 @@ msgstr "Pinguinul Tux urma să se întâlnească cu prietena lui, Penny, la un p #: data/levels/world1/scripts_intro.txt:4 msgid "Tux woke up, dizzy, to find that Penny was missing!" -msgstr "Tux s-a trezit, amețit, să constate că Penny a dispărut!" +msgstr "Tux și-a revenit, amețit, și a văzut că Penny a dispărut!" #: data/levels/world1/scripts_intro.txt:5 msgid "Tux was starting to become worried. He then saw a letter, and it read:" -msgstr "Tux începea să devină îngrijorat. Apoi a văzut o scrisoare și scria:" +msgstr "Tux începuse să devină îngrijorat. Apoi a văzut o scrisoare în care scria:" #: data/levels/world1/scripts_intro.txt:6 msgid "" "\"Tux, I have kidnapped your beloved Penny and have taken her to my " "fortress.\"" -msgstr "\"Tux, am răpit-o pe iubita ta Penny și am dus-o în fortăreața mea.\"" +msgstr "\"Tux, am răpit-o pe draga ta Penny și am dus-o în fortăreața mea.\"" #: data/levels/world1/scripts_intro.txt:7 msgid "\"The path to my fortress is littered with my minions.\"" -msgstr "„Calea către cetatea mea este plină de slujitorii mei”." +msgstr "„Calea spre fortăreața mea este păzită de minionii mei”." #: data/levels/world1/scripts_intro.txt:8 msgid "\"You don't have a chance of saving her! Signed, Nolok.\"" diff --git a/data/levels/world1/ru.po b/data/levels/world1/ru.po index 966dbe346c8..1389d2cdc75 100644 --- a/data/levels/world1/ru.po +++ b/data/levels/world1/ru.po @@ -3,21 +3,22 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Andrei Stepanov , 2018-2019,2021 +# Andrei Stepanov, 2018-2019,2021-2022,2024 # Artem Krosheninnikov , 2013,2015 # Dmitry Anikonov , 2016 # Dmitry , 2013 # Savsish , 2016 -# Translator TRA, 2021 +# 85e8e9a0e917e081842b0894245d15cc_1e402b3, 2021 +# Темак, 2022 # Dmitry Anikonov , 2015 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-20 13:57+0000\n" -"Last-Translator: Andrei Stepanov \n" -"Language-Team: Russian (http://www.transifex.com/arctic-games/supertux/language/ru/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: Andrei Stepanov, 2018-2019,2021-2022,2024\n" +"Language-Team: Russian (http://app.transifex.com/arctic-games/supertux/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +38,7 @@ msgstr "23-й воздушно-десантный" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Вы нашли тайник!" @@ -64,10 +65,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Кристаллы\n#На уровне лежат кристаллы. Сможете их найти?\n#\n#Примечание: на данный момент от этих кристаллов нет никакой пользы, но это может поменяться в будущих версиях игры." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Пустой тронный зал" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Замок Нолока" @@ -78,11 +75,11 @@ msgstr "Кристальная шахта" #: data/levels/world1/crystal_mine.stl:686 msgid "#You have to activate two switches to open this door." -msgstr "#Вы должны активировать два переключателя, чтобы открыть эту дверь." +msgstr "#Вы должны задействовать два переключателя, чтобы открыть эту дверь." #: data/levels/world1/end_of_tunnel.stl:3 msgid "End of the Tunnel" -msgstr "Конец туннеля" +msgstr "Конец прохода" #: data/levels/world1/entrance_cave.stl:3 msgid "Entrance to the Cave" @@ -119,7 +116,7 @@ msgid "" "-Secret Exits\n" "#Some level can have multiple exits. They are mostly hidden, so keep an eye out for them.\n" "#Maybe they lead you to something special." -msgstr "-Секретные выходы\n#У некоторых уровней может быть несколько выходов. Обычно они хорошо спрятаны, так что присматривайтесь.\n#Они могут привести к чему-то особенному." +msgstr "-Тайные выходы\n#У некоторых уровней может быть несколько выходов. Обычно они хорошо спрятаны, так что присматривайтесь.\n#Они могут привести к чему-то особенному." #: data/levels/world1/frosted_fields.stl:3 msgid "The Frosted Fields" @@ -155,7 +152,7 @@ msgstr "Жизнь в холодильнике" #: data/levels/world1/miyamoto_monument.stl:3 msgid "Miyamoto Monument" -msgstr "Монумент Миямото" +msgstr "Памятник Миямото" #: data/levels/world1/more_snowballs.stl:3 msgid "Oh No! More Snowballs!" @@ -202,11 +199,11 @@ msgstr "Где-то у берегов Антарктиды…" #: data/levels/world1/scripts_intro.txt:3 msgid "Tux the penguin was going to meet his friend, Penny, for a picnic." -msgstr "Пингвин Такс собирался на встречу со своей подругой Пенни для пикника." +msgstr "Пингвин Такс собрался устроить пикник вместе со своей подругой Пенни." #: data/levels/world1/scripts_intro.txt:4 msgid "Tux woke up, dizzy, to find that Penny was missing!" -msgstr "Проснувшись в головокружении, Такс обнаружил, что Пенни пропала!" +msgstr "Очнувшись от оглушения, Такс обнаружил пропажу Пенни!" #: data/levels/world1/scripts_intro.txt:5 msgid "Tux was starting to become worried. He then saw a letter, and it read:" @@ -216,15 +213,15 @@ msgstr "Такс забеспокоился. Затем он увидел пис msgid "" "\"Tux, I have kidnapped your beloved Penny and have taken her to my " "fortress.\"" -msgstr "\"Такс, я похитил твою любимую Пенни и увёз её в свою крепость.\"" +msgstr "«Такс, я похитил твою любимую Пенни и увёз её в свою крепость.»" #: data/levels/world1/scripts_intro.txt:7 msgid "\"The path to my fortress is littered with my minions.\"" -msgstr "\"Путь к крепости усеян моими приспешниками.\"" +msgstr "«Путь к крепости усеян моими приспешниками.»" #: data/levels/world1/scripts_intro.txt:8 msgid "\"You don't have a chance of saving her! Signed, Nolok.\"" -msgstr "\"У тебя нет и шанса спасти её! Подпись: Нолок.\"" +msgstr "«Не пытайся спасти её! Подпись: Нолок.»" #: data/levels/world1/scripts_intro.txt:9 msgid "" @@ -246,17 +243,17 @@ msgstr "Но вдруг он услышал далёкий оглушитель #: data/levels/world1/scripts_yeti_cutscene.txt:4 msgid "A yeti seems to have observed him from afar." -msgstr "Йети, кажется, наблюдал за ним издалека." +msgstr "Снежный человек, кажется, наблюдал за ним издалека." #: data/levels/world1/scripts_yeti_cutscene.txt:5 msgid "" "Concerned by the yeti's sudden retreat, Tux decided to continue his journey," " ..." -msgstr "Обеспокоенный внезапным отступлением йети, Такс решил продолжить свой путь…" +msgstr "Обеспокоенный внезапным отступлением снежного человека, Такс решил продолжить свой путь…" #: data/levels/world1/scripts_yeti_cutscene.txt:6 msgid "...while secretly hoping not to run into the yeti again, by any means." -msgstr "..хотя втайне надеялся, что ни в коем случае больше не столкнётся с йети." +msgstr "..хотя втайне надеялся, что ни в коем случае больше не столкнётся со снежным человеком." #: data/levels/world1/shattered_bridge.stl:3 msgid "The Shattered Bridge" @@ -264,7 +261,7 @@ msgstr "Разбитый мост" #: data/levels/world1/somewhat_smaller_bath.stl:3 msgid "The Somewhat Smaller Bath" -msgstr "Немного меньший бассейн" +msgstr "Весьма небольшая купальня" #: data/levels/world1/stone_cold.stl:3 msgid "Stone Cold" @@ -276,7 +273,7 @@ msgstr "Подо льдом" #: data/levels/world1/via_nostalgica.stl:3 msgid "Via Nostalgica" -msgstr "Через ностальгию" +msgstr "Через счастливую тоску" #: data/levels/world1/welcome_antarctica.stl:3 msgid "Welcome to Antarctica" @@ -289,7 +286,7 @@ msgid "" "#Bonus blocks can contain coins, power-ups or special items to help you in your quest.\n" "#\n" "#Hit them from below to get at their contents." -msgstr "-Бонусные блоки\n!images/objects/bonus_block/full-0.png\n#Бонусные блоки могут содержать монеты, бонусы или иные полезные предметы для выполнения квеста.\n#\n#Ударьте их снизу, чтобы достать содержимое." +msgstr "-Бонусные блоки\n!images/objects/bonus_block/full-0.png\n#Бонусные блоки могут содержать монеты, бонусы или иные полезные предметы для выполнения задания.\n#\n#Ударьте их снизу, чтобы достать содержимое." #: data/levels/world1/welcome_antarctica.stl:83 msgid "" @@ -303,14 +300,14 @@ msgid "" "-Checkpoints\n" "!images/objects/resetpoints/bell-m.png\n" "#Activate the checkpoint. If you die, you can retry the level from here. Every time you retry from a checkpoint, you will lose 10 percent of your coins (at least 25 coins)." -msgstr "-Контрольные точки\n!images/objects/resetpoints/bell-m.png\n#Активирована контрольная точка. Если вы умрёте, то сможете продолжить уровень отсюда. Каждый раз, когда вы начинаете с контрольной точки, вы теряете 10% своих монет (минимум 25 монет)." +msgstr "-Контрольные точки\n!images/objects/resetpoints/bell-m.png\n#Задействуйте контрольную точку. После гибели вы сможете продолжить уровень отсюда. Каждый раз, когда вы начинаете с контрольной точки, вы теряете 10% своих монет (от 25 монет)." #: data/levels/world1/welcome_antarctica.stl:97 msgid "" "-Running\n" "!images/tiles/signs/run.png\n" "#The path in front of you is blocked. Gain some speed before jumping to pass over the blocks." -msgstr "-Беги\n!images/tiles/signs/run.png\n#Путь впереди заблокирован. Разбегись прежде чем перепрыгивать через блоки" +msgstr "-Бег\n!images/tiles/signs/run.png\n#Путь впереди заблокирован. Разбегитесь и затем подпрыгните, чтобы преодолеть блоки." #: data/levels/world1/welcome_antarctica.stl:104 msgid "" @@ -324,13 +321,13 @@ msgid "" "-Tux Doll\n" "!images/powerups/1up/1up.png\n" "#The Tux doll gives Tux 100 coins." -msgstr "-Кукольный Такс\n!images/powerups/1up/1up.png\n#Даёт Таксу 100 монет." +msgstr "-Кукла Такс\n!images/powerups/1up/1up.png\n#Кукла даёт Таксу 100 монет." #: data/levels/world1/welcome_antarctica.stl:118 msgid "" "-Secret Areas\n" "#Many levels contain secret areas behind what seems to be plain walls. Look for clues to find them." -msgstr "-Тайники\n#На многих уровнях есть тайники, спрятанные за обычными стенами. Ищи подсказки, чтобы обнаружить их." +msgstr "-Тайники\n#На многих уровнях есть тайники, спрятанные за обычными стенами. Ищите подсказки, чтобы находить их." #: data/levels/world1/worldmap.stwm:3 msgid "Icy Island" @@ -338,8 +335,8 @@ msgstr "Ледяной остров" #: data/levels/world1/yeti_boss.stl:3 msgid "No More Mr. Ice Guy" -msgstr "Нет больше мистера Ледяного" +msgstr "Нет больше господина Ледяного" #: data/levels/world1/yeti_cutscene.stl:3 msgid "A Yeti in the Distance" -msgstr "Йети вдалеке" +msgstr "Снежный человек вдалеке" diff --git a/data/levels/world1/sk.po b/data/levels/world1/sk.po index ff24146de8e..a16c6bb40f6 100644 --- a/data/levels/world1/sk.po +++ b/data/levels/world1/sk.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: +# IAN RODRÍGUEZ Lorenzo, 2022 # Jose Riha , 2021 # c79a840bffc1621596a73d9f7d995b66_5f97bea <821296eb068acbf38f8fe02d322f4248_155187>, 2014 # MiroslavR , 2015-2016 @@ -11,10 +12,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-10-15 20:53+0000\n" -"Last-Translator: Jose Riha \n" -"Language-Team: Slovak (http://www.transifex.com/arctic-games/supertux/language/sk/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" +"Language-Team: Slovak (http://app.transifex.com/arctic-games/supertux/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +35,7 @@ msgstr "23. výsadková" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Našli ste tajné miesto!" @@ -61,10 +62,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Kryštály\n#Táto úroveň obsahuje štyri farebné kryštály. Dokážete ich nájsť?\n\n#Poznámka: V súčasnosti nemajú kryštály žiadnu funkciu, ale to sa môže zmeniť v ďalších verziách hry." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Prázdna miestnosť s trónmi" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Nolokov hrad" @@ -235,25 +232,25 @@ msgstr "Potom v diaľke zazrel Tux Nolokov zámok a vyrazil na záchranu Penny! #: data/levels/world1/scripts_yeti_cutscene.txt:2 msgid "Exhausted from his long walk, Tux decided to take a little break." -msgstr "" +msgstr "Tux, vyčerpaný z dlhej chôdze, sa rozhodol dať si malú prestávku." #: data/levels/world1/scripts_yeti_cutscene.txt:3 msgid "But then, all of a sudden he heard a loud roar from a distance." -msgstr "" +msgstr "Zrazu však z diaľky počul hlasný rev." #: data/levels/world1/scripts_yeti_cutscene.txt:4 msgid "A yeti seems to have observed him from afar." -msgstr "" +msgstr "Zdá sa, že ho z diaľky spozoroval yeti." #: data/levels/world1/scripts_yeti_cutscene.txt:5 msgid "" "Concerned by the yeti's sudden retreat, Tux decided to continue his journey," " ..." -msgstr "" +msgstr "Tux, znepokojený náhlym ústupom yetiho, sa Tux rozhodol pokračovať vo svojej ceste..." #: data/levels/world1/scripts_yeti_cutscene.txt:6 msgid "...while secretly hoping not to run into the yeti again, by any means." -msgstr "" +msgstr "...zatiaľ čo tajne dúfal, že už v žiadnom prípade nenarazím na yetiho." #: data/levels/world1/shattered_bridge.stl:3 msgid "The Shattered Bridge" @@ -293,7 +290,7 @@ msgid "" "-Eggs\n" "!images/powerups/egg/egg-shade.png\n" "#The egg makes Tux grow larger. Tux can then smash wooden blocks with his head." -msgstr "" +msgstr "-Vajcia\n!images/powerups/egg/egg-shade.png\n#Vajíčko robí Tuxa väčším. Tux potom môže hlavou rozbiť drevené bloky." #: data/levels/world1/welcome_antarctica.stl:90 msgid "" @@ -331,11 +328,11 @@ msgstr "-Tajné miesta\n#Mnohé úrovne ukrývajú za zdanlivo obyčajnými sten #: data/levels/world1/worldmap.stwm:3 msgid "Icy Island" -msgstr "" +msgstr "Ľadový ostrov" #: data/levels/world1/yeti_boss.stl:3 msgid "No More Mr. Ice Guy" -msgstr "" +msgstr "Už žiadny pán ľadový chlap" #: data/levels/world1/yeti_cutscene.stl:3 msgid "A Yeti in the Distance" diff --git a/data/levels/world1/sl.po b/data/levels/world1/sl.po index 468c7d5c7a2..5e716bb02ef 100644 --- a/data/levels/world1/sl.po +++ b/data/levels/world1/sl.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Gorazd Gorup , 2016 -# Gorazd Gorup , 2016,2018-2019,2022 +# Gorzy Gorup , 2016 +# Gorzy Gorup , 2016,2018-2019,2022 # Marko Burjek , 2005-2007 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 22:58+0000\n" -"Last-Translator: Gorazd Gorup , 2016,2018-2019,2022\n" +"Last-Translator: Gorzy Gorup , 2016,2018-2019,2022\n" "Language-Team: Slovenian (http://app.transifex.com/arctic-games/supertux/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,7 +33,7 @@ msgstr "Kdor visoko leta ..." #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Našel/a si skrito sobo!" @@ -60,10 +60,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Kristali\n#Ta stopnja vsebuje štiri obarvane kristale. Jih lahko najdeš?\n#\n#Pozor: Ti kristali zaenkrat še nimajo pravega pomena, vendar ga bodo morda imeli v prihodnjih različicah igre." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Prazna prestolna dvorana" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Nolokov grad" diff --git a/data/levels/world1/sq.po b/data/levels/world1/sq.po index 860a72f772d..a7bc573aad4 100644 --- a/data/levels/world1/sq.po +++ b/data/levels/world1/sq.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 22:58+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Albanian (http://app.transifex.com/arctic-games/supertux/language/sq/)\n" @@ -32,7 +32,7 @@ msgstr "23 Ajror" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Gjete një zonë sekrete!" @@ -59,10 +59,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Kristale\n#Ky nivel përmban katër kristale me ngjyra. Mund t'i gjeni ato?\n#\n#Shënim: Këto kristale nuk shërbejnë për ndonjë qëllim për momentin, por ato mund të shërbejnë në një version të ardhshëm të lojës." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Dhoma e Fronit Bosh" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Kështjella e Nolok" diff --git a/data/levels/world1/sv.po b/data/levels/world1/sv.po index 6e89c3a1aad..5a127a62f95 100644 --- a/data/levels/world1/sv.po +++ b/data/levels/world1/sv.po @@ -12,10 +12,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2020-04-13 17:25+0200\n" -"PO-Revision-Date: 2020-10-07 08:19+0000\n" -"Last-Translator: Sebastian Rasmussen \n" -"Language-Team: Swedish (http://www.transifex.com/arctic-games/supertux/language/sv/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: Sebastian Rasmussen , 2019-2020\n" +"Language-Team: Swedish (http://app.transifex.com/arctic-games/supertux/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -26,16 +26,16 @@ msgstr "" msgid "23rd Airborne" msgstr "23:e luftburna" -#: data/levels/world1/23rd_airborne.stl:355 -#: data/levels/world1/between_glaciers.stl:615 -#: data/levels/world1/between_glaciers.stl:623 -#: data/levels/world1/crystal_mine.stl:1150 -#: data/levels/world1/crystal_mine.stl:1158 +#: data/levels/world1/23rd_airborne.stl:598 +#: data/levels/world1/between_glaciers.stl:855 +#: data/levels/world1/between_glaciers.stl:863 +#: data/levels/world1/crystal_mine.stl:1535 +#: data/levels/world1/crystal_mine.stl:1543 #: data/levels/world1/frosted_fields.stl:188 #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 -#: data/levels/world1/shattered_bridge.stl:269 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:200 +#: data/levels/world1/shattered_bridge.stl:628 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Du har hittat ett hemligt område!" @@ -43,7 +43,7 @@ msgstr "Du har hittat ett hemligt område!" msgid "Above the Arctic Skies" msgstr "Över de arktiska skyarna" -#: data/levels/world1/above_arctic_skies.stl:152 +#: data/levels/world1/above_arctic_skies.stl:162 msgid "" "-Air Flower\n" "!images/powerups/airflower/air_flower-0.png\n" @@ -54,7 +54,7 @@ msgstr "-Luftblomma\n!images/powerups/airflower/air_flower-0.png\n#Luftblomman g msgid "Between Two Glaciers" msgstr "Mellan två glaciärer" -#: data/levels/world1/between_glaciers.stl:104 +#: data/levels/world1/between_glaciers.stl:108 msgid "" "-Crystals\n" "#This level contains four coloured crystals. Can you find them?\n" @@ -62,10 +62,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Kristaller\n#Denna nivå innehåller fyra färgsatta kristaller. Kan du hitta dem?\n#\n#Notera: Dessa kristaller tjänar för tillfället inget syfte, men det kan de komma att göra i en framtida version av spelet." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Tomt tronrum" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Noloks slott" @@ -74,7 +70,7 @@ msgstr "Noloks slott" msgid "The Crystal Mine" msgstr "Kristallgruvan" -#: data/levels/world1/crystal_mine.stl:608 +#: data/levels/world1/crystal_mine.stl:686 msgid "#You have to activate two switches to open this door." msgstr "#Du måste aktivera två brytare för att öppna denna dörr." @@ -280,7 +276,7 @@ msgstr "Via Nostalgica" msgid "Welcome to Antarctica" msgstr "Välkommen till Antarktis" -#: data/levels/world1/welcome_antarctica.stl:68 +#: data/levels/world1/welcome_antarctica.stl:74 msgid "" "-Bonus Blocks\n" "!images/objects/bonus_block/full-0.png\n" @@ -289,42 +285,42 @@ msgid "" "#Hit them from below to get at their contents." msgstr "-Bonusblock\n!images/objects/bonus_block/full-0.png\n#Bonusblock kan innehålla mynt, power-ups eller speciella föremål som hjälper dig i ditt uppdrag.\n#\n#Träffa dem från undersidan för att nå deras innehåll." -#: data/levels/world1/welcome_antarctica.stl:77 +#: data/levels/world1/welcome_antarctica.stl:83 msgid "" "-Eggs\n" "!images/powerups/egg/egg-shade.png\n" "#The egg makes Tux grow larger. Tux can then smash wooden blocks with his head." msgstr "-Ägg\n!images/powerups/egg/egg-shade.png\n#Ägget gör att Tux växer sig större. Tux kan därefter slå sönder träblock med sitt huvud." -#: data/levels/world1/welcome_antarctica.stl:84 +#: data/levels/world1/welcome_antarctica.stl:90 msgid "" "-Checkpoints\n" "!images/objects/resetpoints/bell-m.png\n" "#Activate the checkpoint. If you die, you can retry the level from here. Every time you retry from a checkpoint, you will lose 10 percent of your coins (at least 25 coins)." msgstr "-Kontrollstationer\n!images/objects/resetpoints/bell-m.png\n#Aktivera kontrollstationen. Om du dör kan du börja om banan härifrån. Varje gång du börjar om från en kontrollstation kommer du att förlora 10 procent av dina mynt (åtminstone 25 mynt)." -#: data/levels/world1/welcome_antarctica.stl:91 +#: data/levels/world1/welcome_antarctica.stl:97 msgid "" "-Running\n" "!images/tiles/signs/run.png\n" "#The path in front of you is blocked. Gain some speed before jumping to pass over the blocks." msgstr "-Springa\n!images/tiles/signs/run.png\n#Vägen framför dig är blockerad. Ta sats och få upp farten innan du hoppar över blocken." -#: data/levels/world1/welcome_antarctica.stl:98 +#: data/levels/world1/welcome_antarctica.stl:104 msgid "" "-Fire Flower\n" "!images/powerups/fireflower/fire_flower-0.png\n" "#The fire flower gives Tux the ability to shoot fireballs." msgstr "-Eldblomma\n!images/powerups/fireflower/fire_flower-0.png\n#Eldblomman ger Tux egenskapen att kunna skjuta eldbollar." -#: data/levels/world1/welcome_antarctica.stl:105 +#: data/levels/world1/welcome_antarctica.stl:111 msgid "" "-Tux Doll\n" "!images/powerups/1up/1up.png\n" "#The Tux doll gives Tux 100 coins." msgstr "-Tux-docka\n!images/powerups/1up/1up.png\n#Tux-dockan ger Tux 100 mynt." -#: data/levels/world1/welcome_antarctica.stl:112 +#: data/levels/world1/welcome_antarctica.stl:118 msgid "" "-Secret Areas\n" "#Many levels contain secret areas behind what seems to be plain walls. Look for clues to find them." diff --git a/data/levels/world1/te.po b/data/levels/world1/te.po index a928836cf00..8185f851131 100644 --- a/data/levels/world1/te.po +++ b/data/levels/world1/te.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 22:58+0000\n" "Last-Translator: Nanowarrior, 2022\n" "Language-Team: Telugu (http://app.transifex.com/arctic-games/supertux/language/te/)\n" @@ -31,7 +31,7 @@ msgstr "23వ వాయుమార్గం" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "మీరు ఒక రహస్య ప్రాంతాన్ని కనుగొన్నారు!" @@ -58,10 +58,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-స్ఫటికాలు\n#ఈ స్థాయిలో నాలుగు రంగుల స్ఫటికాలు ఉంటాయి. మీరు వాటిని కనుగొనగలరా?\n#\n#గమనిక: ఈ స్ఫటికాలు ప్రస్తుతానికి ఎటువంటి ప్రయోజనాన్ని అందించవు కానీ అవి ఆట యొక్క భవిష్యత్తు విడుదలలో ఉండవచ్చు." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "ఖాళీ సింహాసన గది" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "నోలోక్ కోట" diff --git a/data/levels/world1/tr.po b/data/levels/world1/tr.po index 89fb5ca2b36..64a7f9a2dc6 100644 --- a/data/levels/world1/tr.po +++ b/data/levels/world1/tr.po @@ -7,13 +7,13 @@ # mahmut özcan , 2015-2016 # IAN RODRÍGUEZ Lorenzo, 2022 # Tan Siret Akıncı , 2021 -# yakup , 2013-2014 +# 9d4282795e87ad099e39d98812f1a822_ade2f01 , 2013-2014 # Yusuf Özsoy , 2013 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 22:58+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Turkish (http://app.transifex.com/arctic-games/supertux/language/tr/)\n" @@ -36,7 +36,7 @@ msgstr "23. Havacı Birliği" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Sen gizli bir bölge buldun!" @@ -63,10 +63,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Kristaller\n#Bu seviye 4 farklı renkli kristal içeriyor. Onları bulabilir misin?\n#\n#Not: Bu kristaller mevcut durumda bir işe yaramaz lakin oyunun gelecek sürümlerinde işlev kazanabilir." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Boş Taht Odası" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Nolok'un Kalesi" diff --git a/data/levels/world1/tt.po b/data/levels/world1/tt.po index 8c3c57f9b3f..fbfae8e9a1c 100644 --- a/data/levels/world1/tt.po +++ b/data/levels/world1/tt.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 22:58+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Tatar (http://app.transifex.com/arctic-games/supertux/language/tt/)\n" @@ -32,7 +32,7 @@ msgstr "23-нче Бортчы" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Сез яшерен җирне таптыгыз!" @@ -59,10 +59,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Кристаллар\n# Бу дәрәҗәдә дүрт төсле кристалл бар. Сез аларны таба аласызмы?\n#\n# Искәрмә: Бу кристаллар хәзерге вакытта бернинди максатка хезмәт итми, ләкин алар киләчәктә уен чыгарылышында булырга мөмкин." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Буш тәхет бүлмәсе" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Нолок Сарае" diff --git a/data/levels/world1/uk.po b/data/levels/world1/uk.po index 21e5a9f8f04..917c8cb1668 100644 --- a/data/levels/world1/uk.po +++ b/data/levels/world1/uk.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 22:58+0000\n" "Last-Translator: Asemif official, 2023\n" "Language-Team: Ukrainian (http://app.transifex.com/arctic-games/supertux/language/uk/)\n" @@ -35,7 +35,7 @@ msgstr "23-тя десантна" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Ви знайшли сховок!" @@ -62,10 +62,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Кристали\n#Цей рівень містить чотири кольорові кристали. Ви можете їх знайти?\n#\n#Примітка: На даний момент ці кристали не служать жодній меті, але вони можуть бути в майбутньому випуску гри." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Порожній тронний зал" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Замок Нолок" diff --git a/data/levels/world1/uz.po b/data/levels/world1/uz.po index 510973da819..05eac7a866f 100644 --- a/data/levels/world1/uz.po +++ b/data/levels/world1/uz.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 22:58+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022-2023\n" "Language-Team: Uzbek (http://app.transifex.com/arctic-games/supertux/language/uz/)\n" @@ -32,7 +32,7 @@ msgstr "23-havo desant" #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 #: data/levels/world1/shattered_bridge.stl:628 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:188 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "Siz yashirin joy topdingiz!" @@ -59,10 +59,6 @@ msgid "" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." msgstr "-Kristallar\n#Bu daraja to'rtta rangli kristallni o'z ichiga oladi. Ularni topa olasizmi?\n#\n#Eslatma: Bu kristallar hozircha hech qanday maqsadga xizmat qilmaydi, lekin ular oʻyinning kelajakdagi versiyasida paydo boʻlishi mumkin." -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "Bo'sh taxt xonasi" - #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" msgstr "Nolok qal'asi" diff --git a/data/levels/world1/zh_CN.po b/data/levels/world1/zh_CN.po index c3ba488db50..9b04f91a024 100644 --- a/data/levels/world1/zh_CN.po +++ b/data/levels/world1/zh_CN.po @@ -3,19 +3,21 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: +# a73a47e368cc011d8f94528bd9d5d3f1_91fccdf <1b07f49e2a323989c85dd26d526f7bb9_871526>, 2020 # CodingJellyfish , 2020 # Liu Sizhuang , 2008 # a73a47e368cc011d8f94528bd9d5d3f1_91fccdf <1b07f49e2a323989c85dd26d526f7bb9_871526>, 2020 +# Wenbin Lv , 2024 # CodingJellyfish , 2019-2020 # 玉堂白鹤 , 2018 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2020-04-13 17:25+0200\n" -"PO-Revision-Date: 2020-12-27 12:38+0000\n" -"Last-Translator: a73a47e368cc011d8f94528bd9d5d3f1_91fccdf <1b07f49e2a323989c85dd26d526f7bb9_871526>\n" -"Language-Team: Chinese (China) (http://www.transifex.com/arctic-games/supertux/language/zh_CN/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 22:58+0000\n" +"Last-Translator: Wenbin Lv , 2024\n" +"Language-Team: Chinese (China) (http://app.transifex.com/arctic-games/supertux/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,18 +26,18 @@ msgstr "" #: data/levels/world1/23rd_airborne.stl:3 msgid "23rd Airborne" -msgstr "第23空降师" +msgstr "第 23 空降师" -#: data/levels/world1/23rd_airborne.stl:355 -#: data/levels/world1/between_glaciers.stl:615 -#: data/levels/world1/between_glaciers.stl:623 -#: data/levels/world1/crystal_mine.stl:1150 -#: data/levels/world1/crystal_mine.stl:1158 +#: data/levels/world1/23rd_airborne.stl:598 +#: data/levels/world1/between_glaciers.stl:855 +#: data/levels/world1/between_glaciers.stl:863 +#: data/levels/world1/crystal_mine.stl:1535 +#: data/levels/world1/crystal_mine.stl:1543 #: data/levels/world1/frosted_fields.stl:188 #: data/levels/world1/path_in_the_clouds.stl:348 #: data/levels/world1/path_in_the_clouds.stl:1126 -#: data/levels/world1/shattered_bridge.stl:269 -#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:200 +#: data/levels/world1/shattered_bridge.stl:628 +#: data/levels/world1/stone_cold.stl:397 data/levels/world1/worldmap.stwm:197 msgid "You found a secret area!" msgstr "你找到了一个秘密区域!" @@ -43,38 +45,34 @@ msgstr "你找到了一个秘密区域!" msgid "Above the Arctic Skies" msgstr "苍穹之上" -#: data/levels/world1/above_arctic_skies.stl:152 +#: data/levels/world1/above_arctic_skies.stl:162 msgid "" "-Air Flower\n" "!images/powerups/airflower/air_flower-0.png\n" "#The Air Flower gives Tux the ability to glide in the air for a few seconds, while holding the JUMP Key." -msgstr "- 空气花\n!images/powerups/airflower/air_flower-0.png\n#摘下这朵花后,Tux 能够在空中短暂停留,不过要按住“跳跃”键。" +msgstr "-空气花\n!images/powerups/airflower/air_flower-0.png\n#空气花给予 Tux 在空中滑翔数秒的能力,只需要按住“跳跃”键即可做到。" #: data/levels/world1/between_glaciers.stl:3 msgid "Between Two Glaciers" -msgstr "跨越冰川" +msgstr "冰川之间" -#: data/levels/world1/between_glaciers.stl:104 +#: data/levels/world1/between_glaciers.stl:108 msgid "" "-Crystals\n" "#This level contains four coloured crystals. Can you find them?\n" "#\n" "#Note: These crystals do not serve any purpose at the moment but they might will in a future release of the game." -msgstr "- 水晶\n#这关中有四个不同颜色的水晶。你能找到吗?\n#\n#注意:现在他们或许无用,不过这个情况将在更新后改变!" - -#: data/levels/world1/castle_cutscene.stl:3 -msgid "Empty Throne Room" -msgstr "寂寥的宫殿" +msgstr "-水晶\n#此关卡中有四个彩色水晶。你能找到它们吗?\n#\n#注意:这些水晶目前没有任何用途,但它们在游戏的未来版本中可能会发挥作用。" #: data/levels/world1/castle_of_nolok.stl:3 msgid "The Castle of Nolok" -msgstr "恶龙城堡" +msgstr "Nolok 的城堡" #: data/levels/world1/crystal_mine.stl:3 msgid "The Crystal Mine" msgstr "水晶矿洞" -#: data/levels/world1/crystal_mine.stl:608 +#: data/levels/world1/crystal_mine.stl:686 msgid "#You have to activate two switches to open this door." msgstr "#你在打开两个开关后才能打开这个门。" @@ -88,7 +86,7 @@ msgstr "洞穴入口" #: data/levels/world1/fork_in_the_road.stl:3 msgid "A Fork in the Road" -msgstr "岔路惊魂" +msgstr "岔路口的抉择" #: data/levels/world1/fork_in_the_road.stl:84 msgid "" @@ -97,27 +95,27 @@ msgid "" "!images/objects/pushbutton/pushbutton-0.png\n" "#Switches can be used to do all manner of things. Press the UP key to use a switch.\n" "#There are also buttons that you can press by jumping on them." -msgstr "- 开关\n!images/objects/switch/switch-0.png\n!images/objects/pushbutton/pushbutton-0.png\n#打开开关妙事多,按下“上”键就能做。\n#有时开关变按键,跳到上面事便妥。" +msgstr "-开关\n!images/objects/switch/switch-0.png\n!images/objects/pushbutton/pushbutton-0.png\n#开关可以用来做各种各样的事情。按“上”键可以使用开关。\n#有时你看到的可能是按钮。跳到按钮上就可以按下。" #: data/levels/world1/fork_in_the_road.stl:93 msgid "" "-Trampolines\n" "!images/objects/trampoline/trampoline2-0.png\n" "#Trampolines allow Tux to jump to new heights. Hold down the JUMP key while bouncing on the trampoline to launch extra high." -msgstr "- 蹦床\n!images/objects/trampoline/trampoline2-0.png\n#若想跳得高,蹦床必须要。在上按“跳跃”,高飞赛凤凰。" +msgstr "-蹦床\n!images/objects/trampoline/trampoline2-0.png\n#蹦床让 Tux 能够跳到前所未有的高度。在蹦床上弹跳时按住“跳跃”键还可以弹得更高。" #: data/levels/world1/fork_in_the_road.stl:100 msgid "" "-Climbing\n" "#Tux can climb! Press the UP key to start climbing. Press the ACTION key or jump to let go." -msgstr "- 爬梯子\n#这只企鹅比你想象中灵巧得多呢!按下“上”键可以让他爬上梯子,按下动作键或者跳跃能让他放手。" +msgstr "-爬梯子\n#这只企鹅比你想象中灵巧得多呢!按“上”键可以让他爬上梯子,按“动作”键或者跳跃能让他放手。" #: data/levels/world1/fork_in_the_road.stl:106 msgid "" "-Secret Exits\n" "#Some level can have multiple exits. They are mostly hidden, so keep an eye out for them.\n" "#Maybe they lead you to something special." -msgstr "- 秘密出口\n#有些关卡有多个出口。它们不知隐藏在哪里,所以我们最好多注意。\n#他们或许能让你到达一些特殊的地方。" +msgstr "-秘密出口\n#有些关卡有多个出口。它们大多是隐藏的,所以需要多加留意。\n#它们或许能让你到达一些特殊的地方。" #: data/levels/world1/frosted_fields.stl:3 msgid "The Frosted Fields" @@ -125,7 +123,7 @@ msgstr "霜冻田野" #: data/levels/world1/frozen_bridge.stl:3 msgid "Over the Frozen Bridge" -msgstr "冰雕桥上" +msgstr "冰封桥上" #: data/levels/world1/ice_in_the_hole.stl:3 msgid "Ice in the Hole" @@ -133,7 +131,7 @@ msgstr "洞中的冰" #: data/levels/world1/icy_valley.stl:3 msgid "Icy Valley" -msgstr "寒冰之谷" +msgstr "寒冰峡谷" #: data/levels/world1/into_stars.stl:3 msgid "Into the Stars" @@ -157,19 +155,19 @@ msgstr "宫本大师之碑" #: data/levels/world1/more_snowballs.stl:3 msgid "Oh No! More Snowballs!" -msgstr "雪怪风波" +msgstr "雪球风波" #: data/levels/world1/night_chill.stl:3 msgid "Night Chill" -msgstr "寒冷的夜晚" +msgstr "漫漫寒夜" #: data/levels/world1/or_just_me.stl:3 msgid "...Or Is It Just Me?" -msgstr "不知所措" +msgstr "……只有我是这样吗?" #: data/levels/world1/path_in_the_clouds.stl:3 msgid "A Path in the Clouds" -msgstr "云中小路" +msgstr "云中小径" #: data/levels/world1/scripts_castle_cutscene.txt:2 msgid "Tux had reached the end of the castle." @@ -177,18 +175,18 @@ msgstr "Tux 终于来到了城堡的尽头。" #: data/levels/world1/scripts_castle_cutscene.txt:3 msgid "But to his surprise all he could find was a letter." -msgstr "他翻遍了城堡,却只找到一片小小的信封。" +msgstr "令他意想不到的是,他翻遍了城堡,却只找到了一封信。" #: data/levels/world1/scripts_castle_cutscene.txt:4 msgid "" "A letter from Penny telling Tux that Nolok has taken her to a far forest." -msgstr "那封信写着 Penny 被带到了浩瀚林海之中,上面还散发着她淡淡的香气。 " +msgstr "Penny 在信中向 Tux 求救,说她被 Nolok 带到了一个遥远的森林。" #: data/levels/world1/scripts_castle_cutscene.txt:5 msgid "" "Unsure about what Nolok was doing to her, Tux became worried about his " "beloved Penny." -msgstr "想到 Nolok 对他一生所爱之人的虐待,Tux 心中汹涌着不安。" +msgstr "Tux 无从知晓 Nolok 对他心爱的 Penny 做了些什么,他的心中汹涌着不安。" #: data/levels/world1/scripts_castle_cutscene.txt:6 msgid "Until suddenly..." @@ -196,7 +194,7 @@ msgstr "直到突然……" #: data/levels/world1/scripts_intro.txt:2 msgid "Somewhere at the shores of Antarctica..." -msgstr "在很远很远的地方,有一片冰和雪的银色大陆……" +msgstr "在遥远的南极洲海岸的某个地方……" #: data/levels/world1/scripts_intro.txt:3 msgid "Tux the penguin was going to meet his friend, Penny, for a picnic." @@ -214,11 +212,11 @@ msgstr "Tux 心急如焚。他四处寻找,却只发现了一封信,上面 msgid "" "\"Tux, I have kidnapped your beloved Penny and have taken her to my " "fortress.\"" -msgstr "“可怜的 Tux 啊!你亲爱的 Penny 现在已经成为了我的瓮中之鳖。”" +msgstr "“可怜的 Tux 啊!你心爱的 Penny 现在已经成为了我的瓮中之鳖。”" #: data/levels/world1/scripts_intro.txt:7 msgid "\"The path to my fortress is littered with my minions.\"" -msgstr "“她在我的城堡里,而去那里的途中布满了我的兵卒。”" +msgstr "“她在我的城堡里,而去那里的道路上布满了我的兵卒。”" #: data/levels/world1/scripts_intro.txt:8 msgid "\"You don't have a chance of saving her! Signed, Nolok.\"" @@ -227,7 +225,7 @@ msgstr "“救她是不可能的,你就不要异想天开了!署名,Nolok #: data/levels/world1/scripts_intro.txt:9 msgid "" "Realizing the trouble Penny could be in, Tux became determined to save her." -msgstr "想到刀山火海之中她痛苦的脸庞,Tux 决定启程去拯救她。" +msgstr "想到 Penny 可能遭受的痛苦,Tux 决定启程去拯救她。" #: data/levels/world1/scripts_intro.txt:10 msgid "" @@ -236,29 +234,29 @@ msgstr "他抬头一看,城堡在远方的云雾中若隐若现。一场伟大 #: data/levels/world1/scripts_yeti_cutscene.txt:2 msgid "Exhausted from his long walk, Tux decided to take a little break." -msgstr "Tux 已经筋疲力尽了,于是他决定小憩一下。" +msgstr "经过长途跋涉,Tux 已经筋疲力尽了,于是他决定小憩一下。" #: data/levels/world1/scripts_yeti_cutscene.txt:3 msgid "But then, all of a sudden he heard a loud roar from a distance." -msgstr "突然,他听见了远方可怕的咆哮声。" +msgstr "但就在此时,突然,他听到远方传来一声咆哮。" #: data/levels/world1/scripts_yeti_cutscene.txt:4 msgid "A yeti seems to have observed him from afar." -msgstr "想必雪大王已经开始跟踪他了。" +msgstr "雪大王似乎正在远处观察着他。" #: data/levels/world1/scripts_yeti_cutscene.txt:5 msgid "" "Concerned by the yeti's sudden retreat, Tux decided to continue his journey," " ..." -msgstr "虽然雪大王撤退地有些不合常理,Tux 还是继续了他的冒险。" +msgstr "雪大王的突然撤退让 Tux 感到有些不安,所以他决定继续他的旅程。…" #: data/levels/world1/scripts_yeti_cutscene.txt:6 msgid "...while secretly hoping not to run into the yeti again, by any means." -msgstr "……与此同时,他偷偷的希望,千万不要被这家伙盯上啊!" +msgstr "…与此同时,他偷偷地想着,千万不要再遇到雪大王了。" #: data/levels/world1/shattered_bridge.stl:3 msgid "The Shattered Bridge" -msgstr "粉碎的桥" +msgstr "破碎的桥" #: data/levels/world1/somewhat_smaller_bath.stl:3 msgid "The Somewhat Smaller Bath" @@ -266,11 +264,11 @@ msgstr "水池有点小" #: data/levels/world1/stone_cold.stl:3 msgid "Stone Cold" -msgstr "冰冷的石头" +msgstr "冰冷如石" #: data/levels/world1/under_the_ice.stl:3 msgid "Under the Ice" -msgstr "冰面下方" +msgstr "寒冰之下" #: data/levels/world1/via_nostalgica.stl:3 msgid "Via Nostalgica" @@ -278,57 +276,57 @@ msgstr "怀旧地带" #: data/levels/world1/welcome_antarctica.stl:3 msgid "Welcome to Antarctica" -msgstr "欢迎来到南极" +msgstr "欢迎来到南极洲" -#: data/levels/world1/welcome_antarctica.stl:68 +#: data/levels/world1/welcome_antarctica.stl:74 msgid "" "-Bonus Blocks\n" "!images/objects/bonus_block/full-0.png\n" "#Bonus blocks can contain coins, power-ups or special items to help you in your quest.\n" "#\n" "#Hit them from below to get at their contents." -msgstr "- 奖励砖块\n!images/objects/bonus_block/full-0.png\n#把它顶开,惊喜自来!这小小的奖励砖块中可能包含金币,道具或者你想要的特殊物品。\n#\n#从下方撞击它可以得到这些奖励。" +msgstr "-奖励方块\n!images/objects/bonus_block/full-0.png\n#奖励方块中可能包含金币、能力提升道具或者特殊物品。它们对你的旅途大有帮助。\n#\n#从下方撞击它们可以得到这些奖励。" -#: data/levels/world1/welcome_antarctica.stl:77 +#: data/levels/world1/welcome_antarctica.stl:83 msgid "" "-Eggs\n" "!images/powerups/egg/egg-shade.png\n" "#The egg makes Tux grow larger. Tux can then smash wooden blocks with his head." -msgstr "- 蛋\n!images/powerups/egg/egg-shade.png\n#蛋会让 Tux 长高,然后 Tux 就可以撞碎木块了!" +msgstr "-蛋\n!images/powerups/egg/egg-shade.png\n#蛋会让 Tux 长高,然后 Tux 就可以用头撞碎木块了!" -#: data/levels/world1/welcome_antarctica.stl:84 +#: data/levels/world1/welcome_antarctica.stl:90 msgid "" "-Checkpoints\n" "!images/objects/resetpoints/bell-m.png\n" "#Activate the checkpoint. If you die, you can retry the level from here. Every time you retry from a checkpoint, you will lose 10 percent of your coins (at least 25 coins)." -msgstr "- 检查点\n!images/objects/resetpoints/bell-m.png\n#当你激活检查点后,如果你在冒险途中出了意外,你可以从这里重试关卡。不过,你将失去10%的硬币(至少25个)。" +msgstr "-检查点\n!images/objects/resetpoints/bell-m.png\n#激活这个检查点吧!之后,如果你在冒险途中出了意外,你可以从这里重试关卡。不过,每重试一次,你将失去 10% 的硬币(至少 25 个)。" -#: data/levels/world1/welcome_antarctica.stl:91 +#: data/levels/world1/welcome_antarctica.stl:97 msgid "" "-Running\n" "!images/tiles/signs/run.png\n" "#The path in front of you is blocked. Gain some speed before jumping to pass over the blocks." -msgstr "- 助跑\n!images/tiles/signs/run.png\n#哦不,前方的道路被封住了!不过跳跃前加速就可以越过这些砖块哦。" +msgstr "-助跑\n!images/tiles/signs/run.png\n#哦不,前方的道路被封住了!不过,先助跑再起跳,就可以越过这些障碍物哦。" -#: data/levels/world1/welcome_antarctica.stl:98 +#: data/levels/world1/welcome_antarctica.stl:104 msgid "" "-Fire Flower\n" "!images/powerups/fireflower/fire_flower-0.png\n" "#The fire flower gives Tux the ability to shoot fireballs." -msgstr "- 火焰花\n!images/powerups/fireflower/fire_flower-0.png\n#摘下这朵神圣的火焰花吧!它将赐予 Tux 发射火球的能力。" +msgstr "-火焰花\n!images/powerups/fireflower/fire_flower-0.png\n#摘下这朵神圣的火焰花吧!它将赐予 Tux 发射火球的能力。" -#: data/levels/world1/welcome_antarctica.stl:105 +#: data/levels/world1/welcome_antarctica.stl:111 msgid "" "-Tux Doll\n" "!images/powerups/1up/1up.png\n" "#The Tux doll gives Tux 100 coins." -msgstr "- 企鹅娃娃\n!images/powerups/1up/1up.png\n#这娃娃似乎很值钱,它会给予 Tux 100 金币。" +msgstr "-Tux 娃娃\n!images/powerups/1up/1up.png\n#这娃娃似乎很值钱,它会给予 Tux 100 金币。" -#: data/levels/world1/welcome_antarctica.stl:112 +#: data/levels/world1/welcome_antarctica.stl:118 msgid "" "-Secret Areas\n" "#Many levels contain secret areas behind what seems to be plain walls. Look for clues to find them." -msgstr "- 秘密区域\n#很多墙壁看似普通,实则暗藏玄机。如果你细心寻找,它们背后的金银珠宝就属于你。" +msgstr "-秘密区域\n#很多关卡包含秘密区域。有些墙壁看似普通,其实背后别有洞天。试着寻找这些秘密区域存在的蛛丝马迹吧。" #: data/levels/world1/worldmap.stwm:3 msgid "Icy Island" @@ -336,7 +334,7 @@ msgstr "冰封岛" #: data/levels/world1/yeti_boss.stl:3 msgid "No More Mr. Ice Guy" -msgstr "再见,冰块" +msgstr "再见,冰块先生" #: data/levels/world1/yeti_cutscene.stl:3 msgid "A Yeti in the Distance" diff --git a/data/levels/world2/ar.po b/data/levels/world2/ar.po index e99a484e46c..ed0c26ca355 100644 --- a/data/levels/world2/ar.po +++ b/data/levels/world2/ar.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:00+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022-2023\n" "Language-Team: Arabic (http://app.transifex.com/arctic-games/supertux/language/ar/)\n" @@ -37,8 +37,8 @@ msgstr "الآثار القديمة" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "لقد وجدتَ منطقة سرية!" @@ -90,7 +90,7 @@ msgstr "تحديات شجرة الأشباح" msgid "Ghouls' Lair" msgstr "عرين الغول" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -104,13 +104,13 @@ msgstr "الذهاب تحت الأرض" msgid "I Spy With My Little Eye" msgstr "أنا جاسوس مع عيني قليلا" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-انا اتجسس\n#ستعمل هذه الأشياء على تنشيط أشياء مثل الأنظمة الأساسية عندما يكون Tux في بصرهم." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "تلميح: استخدم القواقع لكسر الكتل!" @@ -122,7 +122,7 @@ msgstr "مثل ورقة في الريح" msgid "Lost Village" msgstr "القرية المفقودة" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "# لا تنسى أن تضغط على المفتاح!" @@ -162,10 +162,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-زهرة الأرض\n!images/powerups/earthflower/earth_flower-1.png\n#تمنح زهرة الأرض Tux القدرة على التحول إلى حجر بالضغط على مفتاح ACTION ومفتاح DOWN في نفس الوقت.\n#هذا لا يعمل اثناء القفز او السقوط!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "مشهد البرج" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "برج الأشباح" @@ -186,7 +182,7 @@ msgstr "-كائنات محمولة:\n!images/objects/rock/rock.png\n#Tux يمك msgid "Tux' Own Horror Show" msgstr "عرض الرعب الخاص Tux" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -215,6 +211,6 @@ msgstr "جذور خشبية" msgid "Rooted Forest" msgstr "غابة متجذرة" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "يتبع..." diff --git a/data/levels/world2/az.po b/data/levels/world2/az.po index 38c85656854..a0158d497bd 100644 --- a/data/levels/world2/az.po +++ b/data/levels/world2/az.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:00+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Azerbaijani (http://app.transifex.com/arctic-games/supertux/language/az/)\n" @@ -36,8 +36,8 @@ msgstr "Qədim xarabalıqlar" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Gizli bir sahə tapdınız!" @@ -89,7 +89,7 @@ msgstr "Xəyal ağacının çətinlikləri" msgid "Ghouls' Lair" msgstr "Vəhşicəsinə Yuva" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -103,13 +103,13 @@ msgstr "Yeraltı Gediş" msgid "I Spy With My Little Eye" msgstr "Kiçik Gözümlə Casusluq edirəm" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Ispy\n#Ispylar, Tux onların göz önündə olduğu zaman platformalar kimi şeyləri aktivləşdirəcək." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "İpucu: Blokları qırmaq üçün ilbizlərdən istifadə edin!" @@ -121,7 +121,7 @@ msgstr "Küləkdə yarpaq kimi" msgid "Lost Village" msgstr "İtirilmiş Kənd" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "# Düyməni basmağı unutmayın!" @@ -161,10 +161,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "- Yer çiçəyi\n!images/powerups/earthflower/earth_flower-1.png\n#Torpaq çiçəyi Tux-a ACTION Key və AŞAĞI düyməsini eyni anda basaraq daşa çevrilmək imkanı verir.\n#Bu, tullanarkən və ya yıxılarkən işləmir!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Qüllənin kəsişmə səhnəsi" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Kabuslar Qülləsi" @@ -185,7 +181,7 @@ msgstr "- Portativ obyektlər:\n!images/objects/rock/rock.png\n#Tux müəyyən msgid "Tux' Own Horror Show" msgstr "Tux'un Öz Dəhşət Şousu" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -214,6 +210,6 @@ msgstr "Taxta köklər" msgid "Rooted Forest" msgstr "Köklü Meşə" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Ardı var..." diff --git a/data/levels/world2/bg.po b/data/levels/world2/bg.po index eff89dd604e..0d822206512 100644 --- a/data/levels/world2/bg.po +++ b/data/levels/world2/bg.po @@ -6,15 +6,15 @@ # Любомир Василев, 2015-2016 # Vankata 453, 2021 # Любомир Василев, 2016,2018-2019 -# Любомир Василев, 2020-2021 +# Любомир Василев, 2020-2021,2024 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-18 19:43+0000\n" -"Last-Translator: Любомир Василев\n" -"Language-Team: Bulgarian (http://www.transifex.com/arctic-games/supertux/language/bg/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:00+0000\n" +"Last-Translator: Любомир Василев, 2020-2021,2024\n" +"Language-Team: Bulgarian (http://app.transifex.com/arctic-games/supertux/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -39,8 +39,8 @@ msgstr "Древни останки" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Ти откри тайно място!" @@ -92,7 +92,7 @@ msgstr "Предизвикателствата на призрачното дъ msgid "Ghouls' Lair" msgstr "Леговището на таласъма" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -106,13 +106,13 @@ msgstr "Слизане под земята" msgid "I Spy With My Little Eye" msgstr "Виждам всичко" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Шпионче\n#Шпиончетата активират различни неща, като например платформи, когато Тъкс влезе в полезрението им." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Съвет: Използвай охлюви, за да чупиш блокчета!" @@ -124,7 +124,7 @@ msgstr "Като лист на вятъра" msgid "Lost Village" msgstr "Изгубеното село" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Не забравяй да натиснеш превключвателя!" @@ -164,10 +164,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Земно цвете\n!images/powerups/earthflower/earth_flower-1.png\n#Земното цвете дава на Тъкс способността да се превръща в камък, като натиснеш едновременно бутона за ДЕЙСТВИЕ и бутона НАДОЛУ.\n#Това не работи при скачане или падане!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Сцена в кулата" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Кулата на духовете" @@ -188,11 +184,11 @@ msgstr "-Подвижни предмети:\n!images/objects/rock/rock.png\n#Т msgid "Tux' Own Horror Show" msgstr "Шоуто на ужасите на Тъкс" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." -msgstr "#Светлинките са малки, дразнещи духчета, които те пренасят на различни, обикновено опасни места." +msgstr "#Светлинките са малки, дразнещи духчета, които те пренасят на различни, често опасни места." #: data/levels/world2/walking_leaves.stl:3 msgid "Walking Leaves" @@ -217,6 +213,6 @@ msgstr "Дървесни корени" msgid "Rooted Forest" msgstr "Вкоренената гора" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Следва продължение…" diff --git a/data/levels/world2/ca.po b/data/levels/world2/ca.po index ff2d82aaa02..291c367713a 100644 --- a/data/levels/world2/ca.po +++ b/data/levels/world2/ca.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:00+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Catalan (http://app.transifex.com/arctic-games/supertux/language/ca/)\n" @@ -40,8 +40,8 @@ msgstr "Ruïnes antigues" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Has trobat una àrea secreta!" @@ -93,7 +93,7 @@ msgstr "Els reptes de Ghosttree" msgid "Ghouls' Lair" msgstr "Cau dels Ghouls" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -107,13 +107,13 @@ msgstr "Sota terra" msgid "I Spy With My Little Eye" msgstr "Espio amb el meu ull petit" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Espío\n#Los espíos activaràn coses com ara plataformes sempre que Tux estigui a la seva vista." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Pista: utilitza cargols per trencar blocs!" @@ -125,7 +125,7 @@ msgstr "Com una fulla al vent" msgid "Lost Village" msgstr "Poble Perdut" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#No t'oblidis de prémer l'interruptor!" @@ -165,10 +165,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "- Flor de la Terra\n!images/powerups/earthflower/earth_flower-1.png\n#La flor de la terra dóna a Tux la capacitat de convertir-se en pedra prement la tecla ACCIÓ i la tecla BAIX al mateix temps.\n#Això no funciona mentre salta o cau!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Escena de la torre" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Torre dels fantasmes" @@ -189,7 +185,7 @@ msgstr "- Objectes portàtils:\n!images/objects/rock/rock.png\n#Tux pot recollir msgid "Tux' Own Horror Show" msgstr "Espectacle de terror propi de Tux" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -218,6 +214,6 @@ msgstr "Arrels de fusta" msgid "Rooted Forest" msgstr "Bosc arrelat" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Continuarà..." diff --git a/data/levels/world2/cs.po b/data/levels/world2/cs.po index 08edbbd238a..a92280f6272 100644 --- a/data/levels/world2/cs.po +++ b/data/levels/world2/cs.po @@ -14,10 +14,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-21 16:41+0000\n" -"Last-Translator: Jiří Paleček \n" -"Language-Team: Czech (http://www.transifex.com/arctic-games/supertux/language/cs/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:00+0000\n" +"Last-Translator: Jiří Paleček , 2021\n" +"Language-Team: Czech (http://app.transifex.com/arctic-games/supertux/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -42,8 +42,8 @@ msgstr "Prastaré ruiny" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Našel jsi tajnou skrýš!" @@ -95,7 +95,7 @@ msgstr "Výzvy stromu duchů" msgid "Ghouls' Lair" msgstr "Doupě démonů" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -109,13 +109,13 @@ msgstr "Jde se do podzemí" msgid "I Spy With My Little Eye" msgstr "Před pikolou za pikolou" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Čidlo\n#Čidla aktivují věci (jako třeba plošiny), kdykoliv spatří Tuxe." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Tip: Použij šneky pro rozbití bloků!" @@ -127,7 +127,7 @@ msgstr "Jako list ve větru" msgid "Lost Village" msgstr "Ztracená vesnice" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Nezapomeň zatáhnout za páčku!" @@ -167,10 +167,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Zemní květina\n!images/powerups/earthflower/earth_flower-1.png\n#Zemní květina umožní Tuxovi zkamenět stisknutím kláves AKCE a DOLŮ současně, pokud je zrovna na zemi." -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Věžní předělová scéna" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Věž duchů" @@ -191,7 +187,7 @@ msgstr "-Přenosné objekty:\n!images/objects/rock/rock.png\n#Tux umí zvednout msgid "Tux' Own Horror Show" msgstr "Tuxova vlastní hororová show" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -220,6 +216,6 @@ msgstr "Dřevěné kořeny" msgid "Rooted Forest" msgstr "Vzrostlý les" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Pokračování příště..." diff --git a/data/levels/world2/da.po b/data/levels/world2/da.po index e12a0232336..7def156479f 100644 --- a/data/levels/world2/da.po +++ b/data/levels/world2/da.po @@ -4,14 +4,15 @@ # # Translators: # Joe Hansen , 2015-2016,2018-2019,2021 +# Lars Lyngby , 2022 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 21:21+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Danish (http://www.transifex.com/arctic-games/supertux/language/da/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:00+0000\n" +"Last-Translator: Lars Lyngby , 2022\n" +"Language-Team: Danish (http://app.transifex.com/arctic-games/supertux/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,8 +37,8 @@ msgstr "Historiske ruiner" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Du har fundet et hemmeligt område" @@ -89,7 +90,7 @@ msgstr "Ghostrees udfordringer" msgid "Ghouls' Lair" msgstr "Den onde ånds hule" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -103,13 +104,13 @@ msgstr "At gå under jorden" msgid "I Spy With My Little Eye" msgstr "Jeg spionerer med mit lille øje" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Ispy\n#Ispy'er vil aktivere ting såsom platforme når Tux er i syne." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Tip: Brug snegle til at bryde blokke!" @@ -121,7 +122,7 @@ msgstr "Som et blad i vinden" msgid "Lost Village" msgstr "Forladt landsby" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Glem ikke at trykke på kontakten!" @@ -161,10 +162,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Jordblomst\n!images/powerups/earthflower/earth_flower-1.png\n#Jordblomsten giver Tux mulighed for at blive til sten ved at holde tasten ACTION og DOWN nede på samme tid.\n#Dette fungerer ikke samtidig med hop eller fald!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Tårnmellemscene" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Spøgelsernes tårn" @@ -185,11 +182,11 @@ msgstr "-Flytbare objekter:\n!images/objects/rock/rock.png\n#Tux kan samle beste msgid "Tux' Own Horror Show" msgstr "Tux' eget gysershow" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." -msgstr "" +msgstr "#Lygtemænd er små, irriterende spøgelser, som transporterer dig til forskellige, ofte farlige, steder." #: data/levels/world2/walking_leaves.stl:3 msgid "Walking Leaves" @@ -212,8 +209,8 @@ msgstr "Trærødder" #: data/levels/world2/worldmap.stwm:3 msgid "Rooted Forest" -msgstr "" +msgstr "Rodfæstet skov" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Fortsættes ..." diff --git a/data/levels/world2/de.po b/data/levels/world2/de.po index 5199974a82c..a7e69d494ec 100644 --- a/data/levels/world2/de.po +++ b/data/levels/world2/de.po @@ -4,7 +4,7 @@ # # Translators: # 9b2cdc846e52fab1172fd1fff9d4eef3_46ef530, 2013 -# Wuzzy , 2015 +# Wuzzy , 2015 # Benjamin Leduc , 2013 # Ettore Atalan , 2015 # FabianF, 2020 @@ -16,15 +16,15 @@ # Ondřej Hošek , 2013 # Tobias Markus , 2015-2016 # Tobias Markus , 2018-2019 -# Wuzzy , 2015 +# Wuzzy , 2015 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 03:56+0000\n" -"Last-Translator: Wuzzy \n" -"Language-Team: German (http://www.transifex.com/arctic-games/supertux/language/de/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:00+0000\n" +"Last-Translator: Wuzzy , 2015\n" +"Language-Team: German (http://app.transifex.com/arctic-games/supertux/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -49,8 +49,8 @@ msgstr "Antike Ruinen" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Du hast ein Versteck gefunden!" @@ -102,7 +102,7 @@ msgstr "Die Herausforderungen des Geisterbaums" msgid "Ghouls' Lair" msgstr "Schlupfwinkel des Ghuls" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -116,13 +116,13 @@ msgstr "Abwärts gehen" msgid "I Spy With My Little Eye" msgstr "Ich sehe was, was du nicht siehst" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Ispy\n#Ispys aktivieren Dinge wie Plattformen, sobald sich Tux in deren Blickfeld befindet." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Tipp: Benutze Schnecken, um Blöcke zu zerbrechen!" @@ -134,7 +134,7 @@ msgstr "Wie ein Blatt im Wind" msgid "Lost Village" msgstr "Verlorenes Dorf" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Vergiss nicht, den Schalter zu betätigen!" @@ -174,10 +174,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Erdblume\n!images/powerups/earthflower/earth_flower-1.png\n#Die Erdblume gibt Tux die Fähigkeit, sich in Stein zu verwandeln, indem die AKTIONS-Taste und die UNTEN-Taste gleichzeitig gedrückt werden.\n#Das funktioniert nicht beim Springen oder Fallen!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Turm-Zwischensequenz" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Geisterturm" @@ -198,7 +194,7 @@ msgstr "-Bewegliche Objekte:\n!images/objects/rock/rock.png\n#Tux kann einige Ob msgid "Tux' Own Horror Show" msgstr "Tux' eigene Horrorshow" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -227,6 +223,6 @@ msgstr "Hölzerne Wurzeln" msgid "Rooted Forest" msgstr "Verwurzelter Wald" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Fortsetzung folgt ..." diff --git a/data/levels/world2/el.po b/data/levels/world2/el.po index cae8c02b696..a037712a03c 100644 --- a/data/levels/world2/el.po +++ b/data/levels/world2/el.po @@ -5,12 +5,12 @@ # Translators: # IAN RODRÍGUEZ Lorenzo, 2022 # Vangelis Nomikos , 2013-2014 -# Vangelis Skarmoutsos , 2016,2019 +# Vangelis Skarmoutsos (SkarmoutsosV) , 2016,2019 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:00+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Greek (http://app.transifex.com/arctic-games/supertux/language/el/)\n" @@ -38,8 +38,8 @@ msgstr "Αρχαία ερείπια" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Βρήκες μια μυστική περιοχή!" @@ -91,7 +91,7 @@ msgstr "Οι προκλήσεις του Ghosttree" msgid "Ghouls' Lair" msgstr "Φωλιά καλικάντζαρων" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -105,13 +105,13 @@ msgstr "Πηγαίνοντας Υπόγεια" msgid "I Spy With My Little Eye" msgstr "Κατασκοπεύω με το μικρό μου μάτι" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Εγώ κατασκοπεύω\n#Εγώ κατασκοπεύω θα ενεργοποιεί πράγματα όπως πλατφόρμες όποτε το Tux είναι στο μάτι τους." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Συμβουλή: Χρησιμοποιήστε σαλιγκάρια για να σπάσετε μπλοκ!" @@ -123,7 +123,7 @@ msgstr "Σαν φύλλο στον άνεμο" msgid "Lost Village" msgstr "Χαμένο Χωριό" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Μην ξεχάσετε να πατήσετε τον διακόπτη!" @@ -163,10 +163,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "- Λουλούδι της Γης\n!images/powerups/earthflower/earth_flower-1.png\n#Το λουλούδι της γης δίνει στον Tux τη δυνατότητα να μετατραπεί σε πέτρα πατώντας ταυτόχρονα το πλήκτρο ACTION και το πλήκτρο DOWN.\n#Αυτό δεν λειτουργεί όταν πηδάτε ή πέφτετε!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Σκηνή κοπής πύργου" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Πύργος των Φαντασμάτων" @@ -187,7 +183,7 @@ msgstr "-Φορητά αντικείμενα:\n!images/objects/rock/rock.png\nΤ msgid "Tux' Own Horror Show" msgstr "Σόου τρόμου Τοξ" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -216,6 +212,6 @@ msgstr "Ξύλινες Ρίζες" msgid "Rooted Forest" msgstr "Ριζωμένο δάσος" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Συνεχίζεται..." diff --git a/data/levels/world2/eo.po b/data/levels/world2/eo.po index dc6771ac343..36bccd71449 100644 --- a/data/levels/world2/eo.po +++ b/data/levels/world2/eo.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:00+0000\n" "Last-Translator: tellovishous , 2020-2021,2023\n" "Language-Team: Esperanto (http://app.transifex.com/arctic-games/supertux/language/eo/)\n" @@ -39,8 +39,8 @@ msgstr "Antikvaj Ruinoj" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Vi trovis sekretejon!" @@ -92,7 +92,7 @@ msgstr "Defioj de Fantomarbo" msgid "Ghouls' Lair" msgstr "Nesto de Ĥuloj" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -106,13 +106,13 @@ msgstr "Iras Subtere" msgid "I Spy With My Little Eye" msgstr "Mi Ekvidas Per Mia Malgranda Okulo" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Ispy\n#Ispy aktivigos objektojn kiel bazojn dum Tux estas en sia vido." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Konsileto: Uzu limakoj por rompi blokojn!" @@ -124,7 +124,7 @@ msgstr "Kiel folio en la Vento" msgid "Lost Village" msgstr "Perdita Vilaĝo" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Ne forgesu premi la ŝaltilon!" @@ -164,10 +164,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Terfloro\n!images/powerups/earthflower/earth_flower-1.png\n#La terfloro ebligas Tux fariĝi ŝtonon premante la AGO klavon kaj la SUBEN klavon samtempe.\n#Ĉi tiu ne funkcias dum saltado aŭ falado!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Filmeto de Turo" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Turo de Fantomoj" @@ -188,7 +184,7 @@ msgstr "-Porteblaj Objektoj:\n!images/objects/rock/rock.png\n#Tux povas preni iu msgid "Tux' Own Horror Show" msgstr "Propra Teruro Teatraĵo de Tux" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -217,6 +213,6 @@ msgstr "Lignaj Radikoj" msgid "Rooted Forest" msgstr "Radikita Arbaro" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Daŭrigota..." diff --git a/data/levels/world2/es.po b/data/levels/world2/es.po index 3f328eeb3a2..b663b294ca8 100644 --- a/data/levels/world2/es.po +++ b/data/levels/world2/es.po @@ -15,15 +15,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 23:07+0000\n" -"Last-Translator: Swyter \n" -"Language-Team: Spanish (http://www.transifex.com/arctic-games/supertux/language/es/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:00+0000\n" +"Last-Translator: Swyter , 2018,2021\n" +"Language-Team: Spanish (http://app.transifex.com/arctic-games/supertux/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/world2/ancient_ruins.stl:3 msgid "Ancient Ruins" @@ -43,8 +43,8 @@ msgstr "Ruinas Antiguas" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "¡Hallaste un área secreta!" @@ -96,7 +96,7 @@ msgstr "Desafíos del Árbol Fantasma" msgid "Ghouls' Lair" msgstr "La Guarida del Demonio Necrófago" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -110,13 +110,13 @@ msgstr "Yendo Bajo Tierra" msgid "I Spy With My Little Eye" msgstr "Veo, Veo" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Ispy\n#Los Ispys activarán objetos como plataformas cada vez que Tux está a la vista." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Pista: ¡Usa caracoles para romper bloques!" @@ -128,7 +128,7 @@ msgstr "Como una hoja en el Viento" msgid "Lost Village" msgstr "Aldea perdida" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#¡No olvides tocar el interruptor!" @@ -168,10 +168,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "- Flor de Tierra\n!images/powerups/earthflower/earth_flower-1.png\n# La flor de tierra le permite a Tux convertirse en piedra al presionar las teclas ACCIÓN y ABAJO al mismo tiempo.\n#¡Esta habilidad no funciona al saltar o caer!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Escena cortada de la Torre" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Torre de Fantasmas" @@ -192,7 +188,7 @@ msgstr "-Objetos portátiles\n!images/objects/rock/rock.png\n#Tux puede agarrar msgid "Tux' Own Horror Show" msgstr "El Show del Horrow Propio de Tux" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -221,6 +217,6 @@ msgstr "Raíces de Madera" msgid "Rooted Forest" msgstr "El bosque enraizado" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Continuará..." diff --git a/data/levels/world2/es_AR.po b/data/levels/world2/es_AR.po index dea2bdabe60..c1cb1bc8057 100644 --- a/data/levels/world2/es_AR.po +++ b/data/levels/world2/es_AR.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 21:21+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Spanish (Argentina) (http://www.transifex.com/arctic-games/supertux/language/es_AR/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:00+0000\n" +"Last-Translator: Salomón Duarte , 2021\n" +"Language-Team: Spanish (Argentina) (http://app.transifex.com/arctic-games/supertux/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_AR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/world2/ancient_ruins.stl:3 msgid "Ancient Ruins" @@ -36,8 +36,8 @@ msgstr "Ruinas Antiguas" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "¡Encontraste un área secreta!" @@ -89,7 +89,7 @@ msgstr "Desafíos del Árbol Fantasma" msgid "Ghouls' Lair" msgstr "La guarida del demonio Necrófago" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -103,13 +103,13 @@ msgstr "Yendo bajo tierra" msgid "I Spy With My Little Eye" msgstr "Veo, Veo" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Ispy\n#Los Ispy se activan cosas como plataformas cuando Tux este a su vista." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Pista: Usa los caracoles para romper bloques!" @@ -121,7 +121,7 @@ msgstr "Como una hoja en el Viento" msgid "Lost Village" msgstr "Aldea Perdida" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#No te olvides de apretar el interruptor!" @@ -161,10 +161,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Flor de Tierra\n!images/powerups/earthflower/earth_flower-1.png\n#La Flor de Tierra le da la capacidad a Tux de convertirse en piedra presionando la tecla ACCION y ABAJO al mismo tiempo.\n#¡Eso no funciona cuando saltas o cuando te estas cayendo!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Cinemática de la Torre" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Torre de Fantasmas" @@ -185,11 +181,11 @@ msgstr "-Objetos Portables\n!images/objects/rock/rock.png\n#Tux puede agarrar ci msgid "Tux' Own Horror Show" msgstr "El Show de Horror propio de Tux" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." -msgstr "" +msgstr "#Los Poltergeist son pequeños y molestos fantasmitas, que te teletransportaran a lugares diferentes, a menudo, peligrosos." #: data/levels/world2/walking_leaves.stl:3 msgid "Walking Leaves" @@ -212,8 +208,8 @@ msgstr "Raíces de Madera" #: data/levels/world2/worldmap.stwm:3 msgid "Rooted Forest" -msgstr "" +msgstr "El bosque putrefacto" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Continuará..." diff --git a/data/levels/world2/et.po b/data/levels/world2/et.po index 4df3073eb54..53e8b71921f 100644 --- a/data/levels/world2/et.po +++ b/data/levels/world2/et.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:00+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Estonian (http://app.transifex.com/arctic-games/supertux/language/et/)\n" @@ -39,8 +39,8 @@ msgstr "Iidsed varemed" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Sa leidsid salakambri!" @@ -92,7 +92,7 @@ msgstr "Kummituspuu väljakutsed" msgid "Ghouls' Lair" msgstr "Ghouls pesa" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -106,13 +106,13 @@ msgstr "Maa alla minek" msgid "I Spy With My Little Eye" msgstr "Ma luuran oma väikese silmaga" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Maluura\n#Maluuran aktiveerib selliseid asju nagu platvormid alati, kui Tux on nende vaateväljas." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Vihje: Kasuta kastide lõhkumiseks tigusid." @@ -124,7 +124,7 @@ msgstr "Nagu leht tuules" msgid "Lost Village" msgstr "Kadunud küla" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Vajuta lülitit!" @@ -164,10 +164,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "- Maa lill\n!images/powerups/earthflower/earth_flower-1.png\n#Maa lill annab Tuxile võimaluse muutuda kiviks, vajutades korraga TEGUTSEMIST ja ALLA klahvi.\n#See ei tööta hüpates ega kukkudes!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Torni stseen" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Kummituste torn" @@ -188,7 +184,7 @@ msgstr "- Kaasaskantavad objektid:\n!images/objects/rock/rock.png\n#Tux suudab t msgid "Tux' Own Horror Show" msgstr "Tuxi enda õudussaade" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -217,6 +213,6 @@ msgstr "Puidust juured" msgid "Rooted Forest" msgstr "Juurdunud mets" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Jätkub..." diff --git a/data/levels/world2/eu.po b/data/levels/world2/eu.po index 06329c02e1e..9dd2ddf599c 100644 --- a/data/levels/world2/eu.po +++ b/data/levels/world2/eu.po @@ -5,13 +5,13 @@ # Translators: # Bingen Galartza Iparragirre , 2017 # IAN RODRÍGUEZ Lorenzo, 2023 -# Mielanjel Iraeta , 2018-2020 +# Mielanjel Iraeta , 2018-2020 # Urtzi Odriozola , 2017 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:00+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Basque (http://app.transifex.com/arctic-games/supertux/language/eu/)\n" @@ -39,8 +39,8 @@ msgstr "Hondakin zaharrak" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Eremu ezkutu bat aurkitu duzu!" @@ -92,7 +92,7 @@ msgstr "Zuhaitz mamuaren erronkak" msgid "Ghouls' Lair" msgstr "Deabru Nekrofagoaren gordelekua" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -106,13 +106,13 @@ msgstr "Lur azpian barrena" msgid "I Spy With My Little Eye" msgstr "Ikusi makusi" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Ipsy\n#Ispysek plataforma moduko objektuak aktibatuko dituzte Tux begi bistan dagoen bakoitzean." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Pista: barraskiloak erabili blokeak hausteko!" @@ -124,7 +124,7 @@ msgstr "Hostoa haizean bezala" msgid "Lost Village" msgstr "Herrixka galdua" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Ez ahaztu etengailua ukitzea!" @@ -164,10 +164,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "- Lur-lorea\n! Images/powerups/earthflower/earth_flower-1.png\n#Lurreko loreak Tux-i harri bihurtzen uzten dio EKINTZA tekla eta behera aldi berean sakatzean.\n#Trebetasun honek ez du funtzionatzen salto egitean edo erortzean!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Dorrearen eszena moztua" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Mamuen dorrea" @@ -188,7 +184,7 @@ msgstr "- Objektu eramangarriak\n! Images/objects/rock/rock.png\n#Tux-ek objektu msgid "Tux' Own Horror Show" msgstr "Tuxen berezko Horrow Show-a" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -217,6 +213,6 @@ msgstr "Egur sustraiak" msgid "Rooted Forest" msgstr "Sustraitutako Basoa" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Jarraituko du..." diff --git a/data/levels/world2/fi.po b/data/levels/world2/fi.po index 23a27bd54a1..d57297bff72 100644 --- a/data/levels/world2/fi.po +++ b/data/levels/world2/fi.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Jaakoppi Horila , 2016,2018-2021 +# Jaakoppi Horila , 2016,2018-2023 # Oi Suomi On! , 2020 # Lauri Ojansivu , 2015 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 16:28+0000\n" -"Last-Translator: Jaakoppi Horila \n" -"Language-Team: Finnish (http://www.transifex.com/arctic-games/supertux/language/fi/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:00+0000\n" +"Last-Translator: Jaakoppi Horila , 2016,2018-2023\n" +"Language-Team: Finnish (http://app.transifex.com/arctic-games/supertux/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -38,14 +38,14 @@ msgstr "Muinaiset rauniot" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Löysit salaisen paikan!" #: data/levels/world2/beside_bushes.stl:3 msgid "Beside the Bushes" -msgstr "Pensaiden ohessa" +msgstr "Läpi pensaiden" #: data/levels/world2/bouncy_coils.stl:3 msgid "Bouncy Coils" @@ -81,7 +81,7 @@ msgstr "Mitä tapahtuu?" #: data/levels/world2/ghostly_misery.stl:3 msgid "Ghostly Misery" -msgstr "Kummittelevaa piinaa" +msgstr "Kärsimystä kummituksilta" #: data/levels/world2/ghosttrees_challenges.stl:3 msgid "Ghosttree's Challenges" @@ -91,11 +91,11 @@ msgstr "Kummituspuun haasteet" msgid "Ghouls' Lair" msgstr "Aaveiden kammio" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." -msgstr "#Lyhtyjä käytetään taikapalikoiden kiinteäksi muuttamiseen, että niiden päällä voisi kävellä." +msgstr "#Lyhdyillä voidaan muuttaa taikapalikoita kiinteiksi, että niiden päällä voisi kävellä." #: data/levels/world2/going_underground.stl:3 msgid "Going Underground" @@ -103,15 +103,15 @@ msgstr "Maan alle" #: data/levels/world2/i_spy_with_my_little_eye.stl:3 msgid "I Spy With My Little Eye" -msgstr "Pieni silmä näkee kaiken" +msgstr "Isoveli valvoo" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Silmäilijä\n#Silmäilijät aktivoivat asioita kuten alustoja, jos Tux on sellaisen näkökentällä." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Vihje: Käytä etanoita palikkojen rikkomiseen!" @@ -123,7 +123,7 @@ msgstr "Kuin lehti tuulessa" msgid "Lost Village" msgstr "Kadonnut kylä" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Muista vääntää vivusta!" @@ -137,7 +137,7 @@ msgstr "Pöllöjen paluu" #: data/levels/world2/owls_skydive_commando.stl:3 msgid "Owls' Skydive Commando" -msgstr "Teini-ikäiset laskuvarjokommandopöllöt" +msgstr "Kommandopöllöjen ilmaisku" #: data/levels/world2/penguin_grow_trees.stl:3 msgid "Penguins don't grow on Trees" @@ -163,10 +163,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Maakukka\n!images/powerups/earthflower/earth_flower-1.png\n#Maakukka antaa Tuxille kyvyn muuttua kiveksi pitämällä toimintanäppäintä ja ALAS-näppäintä pohjassa samanaikaisesti.\n#Tämä ei toimi hypätessä tai pudotessa!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Tornin välikohtaus" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Kummitusten torni" @@ -187,7 +183,7 @@ msgstr "-Kannettavat esineet:\n!images/objects/rock/rock.png\n#Tux voi poimia ma msgid "Tux' Own Horror Show" msgstr "Tuxin pahin painajainen" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -214,8 +210,8 @@ msgstr "Puiset juuret" #: data/levels/world2/worldmap.stwm:3 msgid "Rooted Forest" -msgstr "Puiden juuret" +msgstr "Juurimetsä" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Jatkuu..." diff --git a/data/levels/world2/fr.po b/data/levels/world2/fr.po index b620c1b35d5..3f4d2c78e65 100644 --- a/data/levels/world2/fr.po +++ b/data/levels/world2/fr.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# a a, 2021 +# Semphris , 2021 # Benjamin Leduc , 2013,2016 # MCMic, 2015 # mol1 , 2013,2015 @@ -17,15 +17,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 00:33+0000\n" -"Last-Translator: a a\n" -"Language-Team: French (http://www.transifex.com/arctic-games/supertux/language/fr/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:00+0000\n" +"Last-Translator: Semphris , 2021\n" +"Language-Team: French (http://app.transifex.com/arctic-games/supertux/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/world2/ancient_ruins.stl:3 msgid "Ancient Ruins" @@ -45,8 +45,8 @@ msgstr "Ruines Oubliées" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Vous avez trouvé un passage secret" @@ -98,7 +98,7 @@ msgstr "Les Défis des Fantômes" msgid "Ghouls' Lair" msgstr "Chez la Goule" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -112,13 +112,13 @@ msgstr "Lâcher la Proie pour l'Ombre" msgid "I Spy With My Little Eye" msgstr "J'Espionne Avec Mon Petit Œil" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Espion\n#Les Espions activent des objets tels que les plateformes quand ils voient Tux." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Conseil : Utilise les escargots pour casser les blocs!" @@ -130,7 +130,7 @@ msgstr "Comme une feuille au Vent" msgid "Lost Village" msgstr "Village Perdu" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#N'oublie pas de frapper l'interrupteur!" @@ -170,10 +170,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Fleur de Terre\n!images/powerups/earthflower/earth_flower-0.png\n#La Fleur de Terre donne à Tux le pouvoir de se trasformer en pierre en maintenant ACTION et BAS appuyées simultanément." -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Cinématique de la Tour" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Tour Des Fantômes" @@ -194,7 +190,7 @@ msgstr "-Objets Portables:\n!images/objects/rock/rock.png\n#Tux peut prendre cer msgid "Tux' Own Horror Show" msgstr "Le Spectacle d'Horreur de Tux" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -223,6 +219,6 @@ msgstr "Racines Boisées" msgid "Rooted Forest" msgstr "Forêt des racines" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "À suivre..." diff --git a/data/levels/world2/fr_CA.po b/data/levels/world2/fr_CA.po index 8bf1bdf8fe9..fa014627be0 100644 --- a/data/levels/world2/fr_CA.po +++ b/data/levels/world2/fr_CA.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:00+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: French (Canada) (http://app.transifex.com/arctic-games/supertux/language/fr_CA/)\n" @@ -36,8 +36,8 @@ msgstr "Ruines antiques" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Vous avez trouvé une zone secrète!" @@ -89,7 +89,7 @@ msgstr "Les Défis des Fantômes" msgid "Ghouls' Lair" msgstr "Chez la Goule" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -103,13 +103,13 @@ msgstr "Aller sous terre" msgid "I Spy With My Little Eye" msgstr "J'Espionne Avec Mon Petit Œil" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Espion\n#Les Espions activent des objets tels que les plateformes quand ils voient Tux." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Astuce: utilisez des escargots pour casser des blocs!" @@ -121,7 +121,7 @@ msgstr "Comme une feuille dans le vent" msgid "Lost Village" msgstr "Village perdu" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#N'oubliez pas d'appuyer sur l'interrupteur!" @@ -161,10 +161,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Fleur de Terre\n!images/powerups/earthflower/earth_flower-0.png\n#La Fleur de Terre donne à Tux le pouvoir de se trasformer en pierre en maintenant ACTION et BAS appuyées simultanément." -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Cinématique de la Tour" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Tour Des Fantômes" @@ -185,7 +181,7 @@ msgstr "-Objets Portables:\n!images/objects/rock/rock.png\n#Tux peut prendre cer msgid "Tux' Own Horror Show" msgstr "Le Spectacle d'Horreur de Tux" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -214,6 +210,6 @@ msgstr "Racines Boisées" msgid "Rooted Forest" msgstr "Forêt des racines" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "À suivre..." diff --git a/data/levels/world2/gd.po b/data/levels/world2/gd.po index 1eb0b56213e..0ad267a7167 100644 --- a/data/levels/world2/gd.po +++ b/data/levels/world2/gd.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-17 20:52+0000\n" -"Last-Translator: GunChleoc\n" -"Language-Team: Gaelic, Scottish (http://www.transifex.com/arctic-games/supertux/language/gd/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:00+0000\n" +"Last-Translator: GunChleoc, 2016,2019\n" +"Language-Team: Gaelic, Scottish (http://app.transifex.com/arctic-games/supertux/language/gd/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -38,8 +38,8 @@ msgstr "Làrach àrsaidh" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Lorg thu raon dìomhair!" @@ -91,7 +91,7 @@ msgstr "Dùbhlain craoibh thaibhse" msgid "Ghouls' Lair" msgstr "Taigh gùil" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -105,13 +105,13 @@ msgstr "Fon talamh" msgid "I Spy With My Little Eye" msgstr "Gu sealladh sealbh ort!" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Sùil-bhrathaidh\n#Gnìomhaichidh sùilean-brathaidh nithean mar ùrlaran uair sam bith a chì iad Tux." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Gliocas: Cleachd seilcheagan airson blocaichean a bhriseadh!" @@ -123,7 +123,7 @@ msgstr "Mar duilleach sa ghaoth" msgid "Lost Village" msgstr "Baile caillte" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Na dìochuimhnich gum buail thu air an t-suidse!" @@ -163,10 +163,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Dìthean ùire\n!images/powerups/earthflower/earth_flower-1.png\n#Bheir dìthean ùire comas dha Tux ach an dèid e na chlach 's tu a' brùthadh air an iuchair GNÌOMHA 's an iuchair SÌOS aig an aon àm.\n#Chan obraich seo fhad 's a bhios tu a' leum no a' tuiteam!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Sealladh sgeòil an tùir" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Tùr nan taibhsean" @@ -187,7 +183,7 @@ msgstr "-Nithean so-ghiùlan:\n!images/objects/rock/rock.png\n#'S urrainn dha Tu msgid "Tux' Own Horror Show" msgstr "Dealbh-chluich oillteil Tux" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -216,6 +212,6 @@ msgstr "Freumhan fiodha" msgid "Rooted Forest" msgstr "Coille fhreumhta" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Ri leantainn..." diff --git a/data/levels/world2/gl.po b/data/levels/world2/gl.po index 933e27984aa..e2c00ce0d30 100644 --- a/data/levels/world2/gl.po +++ b/data/levels/world2/gl.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# xanvieiro , 2019-2020 +# Xan Vieiro , 2019-2021 +# Xan Vieiro , 2021 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 21:21+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Galician (http://www.transifex.com/arctic-games/supertux/language/gl/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:00+0000\n" +"Last-Translator: Xan Vieiro , 2021\n" +"Language-Team: Galician (http://app.transifex.com/arctic-games/supertux/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,8 +37,8 @@ msgstr "Ruínas Antigas" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Atopaches unha área secreta!" @@ -89,7 +90,7 @@ msgstr "Os Desafíos da Árbore Pantasma" msgid "Ghouls' Lair" msgstr "O Agocho do Demo" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -103,13 +104,13 @@ msgstr "Baixo Terra" msgid "I Spy With My Little Eye" msgstr "Vexo, vexo.." -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Semáforos\n#Os semáforos activarán cousas coma plataformas cando Tux as teña á vista." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Consello: Utiliza os caracois para romper os bloques!" @@ -121,7 +122,7 @@ msgstr "Coma unha folla no Vento" msgid "Lost Village" msgstr "Aldea Perdida" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Non esquezas darlle ó interruptor!" @@ -161,10 +162,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Flor de Terra\n!images/powerups/earthflower/earth_flower-1.png\n#A flor de terra dálle a Tux a capacidade de converterse nunha pedra premendo a Tecla de ACCIÓN e a tecla ABAIXO ó mesmo tempo.\n#Isto non funciona nin ó saltar nin ó caer!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Secuencia da Torre" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "A Torre Das Pantasmas" @@ -185,11 +182,11 @@ msgstr "-Obxectos Portátiles:\n!images/objects/rock/rock.png\n#Tux pode coller msgid "Tux' Own Horror Show" msgstr "O Arrepiante Propio Show de Tux" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." -msgstr "" +msgstr "#Os Asubía-bólas son pequenos, pantasmas molestóns, que te levan a diferentes, con frecuencia perigosos, lugares." #: data/levels/world2/walking_leaves.stl:3 msgid "Walking Leaves" @@ -212,8 +209,8 @@ msgstr "Raíces de Madeira" #: data/levels/world2/worldmap.stwm:3 msgid "Rooted Forest" -msgstr "" +msgstr "O Bosque con Raizame" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Continuará..." diff --git a/data/levels/world2/he.po b/data/levels/world2/he.po index 7ba9e1fbecf..51bf724b097 100644 --- a/data/levels/world2/he.po +++ b/data/levels/world2/he.po @@ -3,22 +3,23 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Omer I.S. , 2020-2021 -# Omer I.S. , 2021 -# Omer I.S. , 2020 +# IAN RODRÍGUEZ Lorenzo, 2022 +# 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e , 2020-2021 +# 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e , 2021 +# 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e , 2020 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 21:21+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Hebrew (http://www.transifex.com/arctic-games/supertux/language/he/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:00+0000\n" +"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" +"Language-Team: Hebrew (http://app.transifex.com/arctic-games/supertux/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: he\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" +"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n" #: data/levels/world2/ancient_ruins.stl:3 msgid "Ancient Ruins" @@ -38,8 +39,8 @@ msgstr "חורבות עתיקות" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "מצאת אזור סודי!" @@ -91,7 +92,7 @@ msgstr "אתגר עץ הרוחות" msgid "Ghouls' Lair" msgstr "מאורת השדים" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -105,13 +106,13 @@ msgstr "יורדים למטה" msgid "I Spy With My Little Eye" msgstr "אני רואה עם עיני הקטנה" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-עין קטנה\n#העיניים הקטנות יפעילו דברים כמו פלטפורמות כאשר טַקס יהיה בטווח ראייתן." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "רמז: אפשר להשתמש בשבלולים כדי לשבור תיבות!" @@ -123,7 +124,7 @@ msgstr "כמו עלה ברוח" msgid "Lost Village" msgstr "הכפר האבוד" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#לא לשכוח להפעיל את המתג!" @@ -137,7 +138,7 @@ msgstr "שוב הינשופים..." #: data/levels/world2/owls_skydive_commando.stl:3 msgid "Owls' Skydive Commando" -msgstr "" +msgstr "קומנדו צניחה חופשית של ינשופים" #: data/levels/world2/penguin_grow_trees.stl:3 msgid "Penguins don't grow on Trees" @@ -145,7 +146,7 @@ msgstr "פינגווינים לא גדלים על עצים" #: data/levels/world2/shocking.stl:3 msgid "Shocking" -msgstr "" +msgstr "מְזַעזֵעַ" #: data/levels/world2/the_forest_is_rotting.stl:3 msgid "The Forest Is Rotting" @@ -163,10 +164,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-פרח ארץ\n!images/powerups/earthflower/earth_flower-1.png\n#פרח הארץ נותן לטַקס את היכולת להפוך לאבן על ידי לחיצה על מקש הפעולה ועל מקש החץ כלפי מטה בו זמנית.\n#זה לא עובד במהלך קפיצה או נפילה!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "סצנת המגדל" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "מגדל הרוחות" @@ -187,11 +184,11 @@ msgstr "-אובייקטים ניידים:\n!images/objects/rock/rock.png\n#טַ msgid "Tux' Own Horror Show" msgstr "מופע האימה של טַקס" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." -msgstr "" +msgstr "#ערבות חוכמה הן רוחות קטנות ומעצבנות, שמשגרות אותך למקומות אחרים, לרוב מסוכנים." #: data/levels/world2/walking_leaves.stl:3 msgid "Walking Leaves" @@ -214,8 +211,8 @@ msgstr "שורשי עץ" #: data/levels/world2/worldmap.stwm:3 msgid "Rooted Forest" -msgstr "" +msgstr "יער שורשי" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "ההמשך יבוא..." diff --git a/data/levels/world2/hr.po b/data/levels/world2/hr.po index 2516651db64..cb4aaa7456b 100644 --- a/data/levels/world2/hr.po +++ b/data/levels/world2/hr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:00+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Croatian (http://app.transifex.com/arctic-games/supertux/language/hr/)\n" @@ -36,8 +36,8 @@ msgstr "Drevne ruševine" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Pronašli ste novu tajnu!" @@ -89,7 +89,7 @@ msgstr "Ghosttreejevi izazovi" msgid "Ghouls' Lair" msgstr "Ghoul jazbina" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -103,13 +103,13 @@ msgstr "Odlazak u podzemlje" msgid "I Spy With My Little Eye" msgstr "Špijuniram svojim malim okom" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Ispy\n#Ispys će aktivirati stvari poput platformi kad god im je Tux u vidokrugu." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Savjet: Koristite puževe za razbijanje blokova!" @@ -121,7 +121,7 @@ msgstr "Kao list na vjetru" msgid "Lost Village" msgstr "Izgubljeno selo" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Ne zaboravite pritisnuti prekidač!" @@ -161,10 +161,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "- Zemaljski cvijet\n!images/powerups/earthflower/earth_flower-1.png\n#Zemljani cvijet daje Tuxu mogućnost da se pretvori u kamen istovremenim pritiskom tipke ACTION i tipke DOWN.\n#Ovo ne radi dok skačete ili padate!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Cutscena tornja" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Kula duhova" @@ -185,7 +181,7 @@ msgstr "- Prijenosni objekti:\n!slike/predmeti/stijena/stijena.png\n#Tux može p msgid "Tux' Own Horror Show" msgstr "Tuxov vlastiti horor show" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -214,6 +210,6 @@ msgstr "Drveni korijeni" msgid "Rooted Forest" msgstr "Ukorijenjena šuma" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Nastavit će se..." diff --git a/data/levels/world2/hu.po b/data/levels/world2/hu.po index e2c28318a00..9bc937ce554 100644 --- a/data/levels/world2/hu.po +++ b/data/levels/world2/hu.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: +# IAN RODRÍGUEZ Lorenzo, 2022 # Balázs Úr, 2018 # Levente Krisztián Büte , 2014 # D. J. S. , 2012 @@ -18,10 +19,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 21:21+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Hungarian (http://www.transifex.com/arctic-games/supertux/language/hu/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:00+0000\n" +"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" +"Language-Team: Hungarian (http://app.transifex.com/arctic-games/supertux/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -46,8 +47,8 @@ msgstr "Ősi Romok" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Megtaláltad a titkos helységet!" @@ -99,7 +100,7 @@ msgstr "A Szellemfa Kihívásai" msgid "Ghouls' Lair" msgstr "A Hullarabló Odúja" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -113,13 +114,13 @@ msgstr "Úton a Föld Alá" msgid "I Spy With My Little Eye" msgstr "Látok Valamit a Kis Szememmel" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Ispy\n#Az Ispys aktiválni fog olyan dolgokat, mint a platformok, amikor Tux látja őket." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Tipp: Használd a csigákat hogy széttörd a blokkokat!" @@ -131,7 +132,7 @@ msgstr "Mint egy levél a Szélben" msgid "Lost Village" msgstr "Elveszett Falu" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Ne felejtsd el meghúzni a kapcsolót!" @@ -171,10 +172,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Földvirág\n!images/powerups/earthflower/earth_flower-1.png\n#A földvirág segítségével Tux kővé változhat, ha egyszerre megnyomja az AKCIÓ és a LEFELE billentyűket.\n#Nem működik ugrás és esés közben." -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Torony Jelenet" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Szellemek Tornya" @@ -195,11 +192,11 @@ msgstr "-Hordozható Elemek:\n!images/objects/rock/rock.png\n#Tux fel tud emelni msgid "Tux' Own Horror Show" msgstr "Tux Saját Horror Műsora" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." -msgstr "" +msgstr "#A fűzfa-lidércek kicsi, bosszantó szellemek, amelyek különféle, gyakran veszélyes helyekre szállítanak." #: data/levels/world2/walking_leaves.stl:3 msgid "Walking Leaves" @@ -222,8 +219,8 @@ msgstr "Fagyökerek" #: data/levels/world2/worldmap.stwm:3 msgid "Rooted Forest" -msgstr "" +msgstr "Gyökerezett erdő" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Folytatjuk…" diff --git a/data/levels/world2/hy.po b/data/levels/world2/hy.po index efa65b907c9..65675cb8729 100644 --- a/data/levels/world2/hy.po +++ b/data/levels/world2/hy.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:00+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Armenian (http://app.transifex.com/arctic-games/supertux/language/hy/)\n" @@ -36,8 +36,8 @@ msgstr "Հնագույն ավերակներ" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Դուք գտել եք գաղտնի տարածք:" @@ -89,7 +89,7 @@ msgstr "Ghosttree-ի մարտահրավերները" msgid "Ghouls' Lair" msgstr "Գուլերի որջ" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -103,13 +103,13 @@ msgstr "Անցնել ընդհատակ" msgid "I Spy With My Little Eye" msgstr "Ես լրտեսում եմ իմ փոքրիկ աչքով" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Իսպի\n#Սրանք կակտիվացնեն այնպիսի բաներ, ինչպիսիք են հարթակները, երբ Tux-ը լինի նրանց տեսադաշտում:" -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Հուշում. Օգտագործեք խխունջներ՝ բլոկները կոտրելու համար:" @@ -121,7 +121,7 @@ msgstr "Ինչպես տերևը քամու մեջ" msgid "Lost Village" msgstr "Կորած գյուղ" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Մի մոռացեք սեղմել անջատիչը:" @@ -161,10 +161,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "- Երկրի ծաղիկ\n!images/powerups/earthflower/earth_flower-1.png\n#Երկրի ծաղիկը Թաքսին տալիս է քարի վերածվելու ունակություն՝ միաժամանակ սեղմելով ACTION և DOWN ստեղները։\n#Սա չի աշխատում ցատկելիս կամ ընկնելիս:" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Աշտարակի կտրվածքի տեսարան" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Ուրվականների աշտարակ" @@ -185,7 +181,7 @@ msgstr "- Դյուրակիր օբյեկտներ.\n!images/objects/rock/rock.png\ msgid "Tux' Own Horror Show" msgstr "Թաքսի սեփական սարսափ շոու" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -214,6 +210,6 @@ msgstr "Փայտե արմատներ" msgid "Rooted Forest" msgstr "Արմատավորված անտառ" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Շարունակելի..." diff --git a/data/levels/world2/id.po b/data/levels/world2/id.po index 5743c38c1e1..e4017a66ce8 100644 --- a/data/levels/world2/id.po +++ b/data/levels/world2/id.po @@ -3,16 +3,18 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Christian Elbrianno, 2017 +# Chris , 2022 +# Chris , 2017 # Christian Elbrianno Yoga, 2017 +# Triyan W. Nugroho , 2022 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 21:21+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Indonesian (http://www.transifex.com/arctic-games/supertux/language/id/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:00+0000\n" +"Last-Translator: Triyan W. Nugroho , 2022\n" +"Language-Team: Indonesian (http://app.transifex.com/arctic-games/supertux/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,8 +39,8 @@ msgstr "Reruntuhan Kuno" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Kamu menemukan area rahasia!" @@ -90,7 +92,7 @@ msgstr "Tantangan Pohon Hantu" msgid "Ghouls' Lair" msgstr "Sarang Setan" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -104,13 +106,13 @@ msgstr "Ke Bawah Tanah" msgid "I Spy With My Little Eye" msgstr "Aku Memata-matai dengan Mata Kecilku" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Ispy\n#Ispy akan mengaktifkan benda seperti platform ketika Tux berada dalam jangkauan penglihatan mereka." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Petunjuk: Gunakan siput untuk memecahkan blok!" @@ -122,7 +124,7 @@ msgstr "Seperti Daun yang Tertiup Angin" msgid "Lost Village" msgstr "Kampung yang Hilang" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Jangan lupa untuk memukul saklar!" @@ -162,10 +164,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Bunga Tanah\n!images/powerups/earthflower/earth_flower-1.png\n#Bunga tanah memberikan Tux kemampuan untuk berubah menjadi batu dengan menekan tombol AKSI dan BAWAH pada saat yang bersamaan.\n#Bunga ini tidak bekerja ketika melompat atau terjatuh!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Adegan Terpotong di Menara" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Menara Hantu" @@ -186,11 +184,11 @@ msgstr "-Objek Portabel:\n!images/objects/rock/rock.png\n#Tux bisa mengambil beb msgid "Tux' Own Horror Show" msgstr "Pertunjukan Horor Tux" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." -msgstr "" +msgstr "#Will o' Wisps adalah hantu kecil yang menjengkelkan, yang mengantarkanmu ke berbagai tempat, yang terkadang berbahaya." #: data/levels/world2/walking_leaves.stl:3 msgid "Walking Leaves" @@ -213,8 +211,8 @@ msgstr "Akar Kayu" #: data/levels/world2/worldmap.stwm:3 msgid "Rooted Forest" -msgstr "" +msgstr "Hutan Akar" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Bersambung..." diff --git a/data/levels/world2/is.po b/data/levels/world2/is.po index f67411b7ff0..29fccc0ba23 100644 --- a/data/levels/world2/is.po +++ b/data/levels/world2/is.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:00+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Icelandic (http://app.transifex.com/arctic-games/supertux/language/is/)\n" @@ -36,8 +36,8 @@ msgstr "Fornar rústir" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Þú fannst leynisvæði!" @@ -89,7 +89,7 @@ msgstr "Ghosttree áskoranir" msgid "Ghouls' Lair" msgstr "Gúllar Lair" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -103,13 +103,13 @@ msgstr "Að fara neðanjarðar" msgid "I Spy With My Little Eye" msgstr "Ég njósna með litla auganu" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "Ég njósna\n#Ispys mun virkja hluti eins og palla hvenær sem Tux er í augsýn þeirra." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Ábending: Notaðu snigla til að brjóta kubba!" @@ -121,7 +121,7 @@ msgstr "Eins og lauf í vindinum" msgid "Lost Village" msgstr "Týndur Þorp" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Ekki gleyma að ýta á rofann!" @@ -161,10 +161,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Jarðarblóm\n!images/powerups/earthflower/earth_flower-1.png\n#Jarðblómið gefur Tux möguleika á að breytast í stein með því að ýta á ACTION takkann og NIÐUR takkann á sama tíma.\n#Þetta virkar ekki þegar þú hoppar eða dettur!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Tower Cutscene" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Draugar Turn" @@ -185,7 +181,7 @@ msgstr "-Færanlegir hlutir:\n!images/objects/rock/rock.png\n#Tux getur tekið u msgid "Tux' Own Horror Show" msgstr "Eigin hryllingsþáttur Tux" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -214,6 +210,6 @@ msgstr "Trérætur" msgid "Rooted Forest" msgstr "Rótaður skógur" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Framhald..." diff --git a/data/levels/world2/it.po b/data/levels/world2/it.po index 1b0a49ff6a7..d24864a0bae 100644 --- a/data/levels/world2/it.po +++ b/data/levels/world2/it.po @@ -3,6 +3,8 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: +# A-TNT DC, 2021 +# A-TNT DC, 2021 # Gianfranco Del Borrello , 2016 # Am1g0 , 2014 # Ioma Taani, 2019-2020 @@ -14,15 +16,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 21:21+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Italian (http://www.transifex.com/arctic-games/supertux/language/it/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:00+0000\n" +"Last-Translator: A-TNT DC, 2021\n" +"Language-Team: Italian (http://app.transifex.com/arctic-games/supertux/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/world2/ancient_ruins.stl:3 msgid "Ancient Ruins" @@ -42,8 +44,8 @@ msgstr "Antiche rovine" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Hai trovato un'area segreta!" @@ -95,7 +97,7 @@ msgstr "Le sfide di Fantasmalbero" msgid "Ghouls' Lair" msgstr "La tana del Gula" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -109,13 +111,13 @@ msgstr "Passaggio Sotterraneo" msgid "I Spy With My Little Eye" msgstr "Io spioccio col mio picchio occhio" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-IoSpio\n#Gli IoSpio attiveranno cose come piattaforme ogni volta che Tux è a vista." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Suggerimento: usa le lumache per rompere i blocchi!" @@ -127,7 +129,7 @@ msgstr "Come una foglia nel vento" msgid "Lost Village" msgstr "Il Villaggio perduto" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Non dimenticare di attivare l'interruttore!" @@ -167,10 +169,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Fiore della Terra\n!images/powerups/earthflower/earth_flower-1.png\n#Il Fiore della Terra dà a Tux l'abilità di trasformarsi in pietra mentre si tengono premuti il tasto AZIONE ed il tasto GIÙ contemporaneamente.\n#Non funziona mentre si sta saltando o se si sta cadendo!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Cutscene della Torre" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Torre dei Fantasmi" @@ -191,11 +189,11 @@ msgstr "-Oggetti Trasportabili:\n!images/objects/rock/rock.png\n#Tux ha la possi msgid "Tux' Own Horror Show" msgstr "La storia horror di Tux" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." -msgstr "" +msgstr "#I Fuochi fatui sono fantasmi piccoli e fastidiosi, che ti trasportano in luoghi diversi, spesso pericolosi." #: data/levels/world2/walking_leaves.stl:3 msgid "Walking Leaves" @@ -218,8 +216,8 @@ msgstr "Radici Legnose" #: data/levels/world2/worldmap.stwm:3 msgid "Rooted Forest" -msgstr "" +msgstr "Foresta radicata" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Da continuare..." diff --git a/data/levels/world2/ja.po b/data/levels/world2/ja.po index ae5985e381d..ea9908d6a1e 100644 --- a/data/levels/world2/ja.po +++ b/data/levels/world2/ja.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:00+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Japanese (http://app.transifex.com/arctic-games/supertux/language/ja/)\n" @@ -42,8 +42,8 @@ msgstr "さびれた廃墟" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "秘密の場所を見つけました!" @@ -95,7 +95,7 @@ msgstr "Ghosttreeの挑戦" msgid "Ghouls' Lair" msgstr "グールの巣窟" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -109,13 +109,13 @@ msgstr "地下に向かって" msgid "I Spy With My Little Eye" msgstr "小さな目で探検する" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Ispy\n#Ispyは、Tuxが範囲内に入るとプラットフォームなどの物体を有効化します。" -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "ヒント:蝸牛を使ってブロックを壊す!" @@ -127,7 +127,7 @@ msgstr "風の中の葉のように" msgid "Lost Village" msgstr "失われた村" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#スイッチを切り替えるのをお忘れなく!" @@ -167,10 +167,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-アースフラワー\n!images/powerups/earthflower/earth_flower-1.png\n#アースフラワーをとると、アクションキーと下キーを同時に押した際に、Tuxが石に変身します。\n#ただし、ジャンプ中や落下中は使えません。" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "塔のカットシーン" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "幽霊の城" @@ -191,7 +187,7 @@ msgstr "-運べる物体:\n!images/objects/rock/rock.png\n#Tuxはある特定の msgid "Tux' Own Horror Show" msgstr "Tuxのホラーショー" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -220,6 +216,6 @@ msgstr "木の根っこ" msgid "Rooted Forest" msgstr "根づく森" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "続く…" diff --git a/data/levels/world2/ko.po b/data/levels/world2/ko.po index 6e7a152ca13..92a90e3c7e4 100644 --- a/data/levels/world2/ko.po +++ b/data/levels/world2/ko.po @@ -4,15 +4,15 @@ # # Translators: # IAN RODRÍGUEZ Lorenzo, 2022 -# JungHee Lee , 2022 -# JungHee Lee , 2022 +# Junghee Lee , 2022 +# Junghee Lee , 2022 # Myeongjin , 2016-2017,2019,2021 # Youngjun, Choi, 2022 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:00+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Korean (http://app.transifex.com/arctic-games/supertux/language/ko/)\n" @@ -40,8 +40,8 @@ msgstr "고대 유적" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "비밀공간 구역을 찾았어요!" @@ -93,7 +93,7 @@ msgstr "유령나무의 도전" msgid "Ghouls' Lair" msgstr "구울의 은신처" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -107,13 +107,13 @@ msgstr "지하로 가는 중" msgid "I Spy With My Little Eye" msgstr "나는 작은 눈으로 감시해요" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-이스파이\n#이스파이 는 Tux가 시야에 들어올 때마다 플랫폼과 같은 것을 활성화합니다." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "힌트: 블록을 깨려면 달팽이를 사용하세요!" @@ -125,7 +125,7 @@ msgstr "바람 속의 나뭇잎처럼" msgid "Lost Village" msgstr "잃어버린 마을" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#스위치를 치는 걸 잊지 마세요!" @@ -165,10 +165,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-흙 꽃\n!images/powerups/earthflower/earth_flower-1.png\n#흙 꽃은 턱스에게 액션 키와 아래 방향키를 동시에 누르면 돌로 변하는 능력을 줍니다.\n#점프나 낙하 중에는 작동하지 않습니다!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "타워 절단현장" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "유령의 탑" @@ -189,7 +185,7 @@ msgstr "-휴대용 물건:\n!images/objects/rock/rock.png\n#턱스는 특정 물 msgid "Tux' Own Horror Show" msgstr "턱스 자신만의 호러 쇼" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -218,6 +214,6 @@ msgstr "나무 뿌리" msgid "Rooted Forest" msgstr "뿌리깊은 숲" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "다음에 계속..." diff --git a/data/levels/world2/messages.pot b/data/levels/world2/messages.pot index 9719e677f27..f0f3925c40b 100644 --- a/data/levels/world2/messages.pot +++ b/data/levels/world2/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: SuperTux v0.6.2-963-gb4a1b149f\n" +"Project-Id-Version: SuperTux v0.6.3-1080-g2e08c1b7f\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -35,7 +35,7 @@ msgstr "" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "" @@ -87,7 +87,7 @@ msgstr "" msgid "Ghouls' Lair" msgstr "" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -101,13 +101,13 @@ msgstr "" msgid "I Spy With My Little Eye" msgstr "" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "" -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "" @@ -119,7 +119,7 @@ msgstr "" msgid "Lost Village" msgstr "" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "" @@ -160,10 +160,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "" @@ -185,7 +181,7 @@ msgstr "" msgid "Tux' Own Horror Show" msgstr "" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different, " "often dangerous places." @@ -214,6 +210,6 @@ msgstr "" msgid "Rooted Forest" msgstr "" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "" diff --git a/data/levels/world2/ml.po b/data/levels/world2/ml.po index ef42cb0c13d..b343b69d12a 100644 --- a/data/levels/world2/ml.po +++ b/data/levels/world2/ml.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Adharsh 01 , 2019 +# Adharsh P S , 2019 # Adithyan S S , 2020 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 21:21+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Malayalam (http://www.transifex.com/arctic-games/supertux/language/ml/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:00+0000\n" +"Last-Translator: Adithyan S S , 2020\n" +"Language-Team: Malayalam (http://app.transifex.com/arctic-games/supertux/language/ml/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,8 +37,8 @@ msgstr "പുരാതന അവശിഷ്ടങ്ങൾ" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "നിങ്ങൾ ഒരു സ്വകാര്യ സ്ഥലം കണ്ടുപിടിച്ചിരിക്കുന്നു !" @@ -90,7 +90,7 @@ msgstr "ഗോസ്റ്റ്ട്രീയുടെ വെല്ലുവ msgid "Ghouls' Lair" msgstr "ഗൗളിന്റെ നുണയൻ" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -104,13 +104,13 @@ msgstr "ഭൂമിക്കടിയിൽ" msgid "I Spy With My Little Eye" msgstr "ഞാൻ എന്റെ ചെറിയ കണ്ണുകൊണ്ട് ചാരപ്പണി ചെയ്യുന്നു" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-ഇസ്പി\n#ടക്സിനെ കാണുമ്പോഴെല്ലാം പ്ലാറ്റ്ഫോമുകൾ പോലുള്ള കാര്യങ്ങൾ ഇസ്പികൾ സജീവമാക്കും." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "സൂചന: ബ്ലോക്കുകൾ തകർക്കാൻ ഒച്ചുകൾ ഉപയോഗിക്കുക!" @@ -122,7 +122,7 @@ msgstr "കാറ്റിലെ ഒരു ഇല പോലെ" msgid "Lost Village" msgstr "നഷ്ടപ്പെട്ട ഗ്രാമം" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#സ്വിച്ച് അമർത്താൻ മറക്കരുത് !" @@ -162,10 +162,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-എർത്ത് ഫ്ലവർ\n!images/powerups/earthflower/earth_flower-1.png\n#ഒരേ സമയം ACTION കീയും DOWN കീയും അമർത്തി കല്ലായി മാറാനുള്ള കഴിവ് എർത്ത് ഫ്ലവർ നൽകുന്നു.\n#ചാടുമ്പോഴും വീഴുമ്പോഴും ഇത് പ്രവർത്തിക്കുന്നില്ല!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "പ്രേതങ്ങളുടെ ഗോപുരം" @@ -186,7 +182,7 @@ msgstr "-പോർട്ടബിൾ ഒബ്‌ജക്റ്റുകൾ:\n! msgid "Tux' Own Horror Show" msgstr "ടക്സിന്റെ സ്വന്തം പേടിപ്പിക്കുന്ന കളി" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -215,6 +211,6 @@ msgstr "" msgid "Rooted Forest" msgstr "" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "തുടരും..." diff --git a/data/levels/world2/ms_MY.po b/data/levels/world2/ms_MY.po index c9afd1517e0..a1bd6524f36 100644 --- a/data/levels/world2/ms_MY.po +++ b/data/levels/world2/ms_MY.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# abuyop , 2021 +# abuyop , 2021-2022 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 21:21+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Malay (Malaysia) (http://www.transifex.com/arctic-games/supertux/language/ms_MY/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:00+0000\n" +"Last-Translator: abuyop , 2021-2022\n" +"Language-Team: Malay (Malaysia) (http://app.transifex.com/arctic-games/supertux/language/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,8 +36,8 @@ msgstr "Puing Purba" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Anda telah menemui satu tempat rahsia!" @@ -89,7 +89,7 @@ msgstr "Cabaran Pohon Berhantu" msgid "Ghouls' Lair" msgstr "Sarang Ghoul" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -103,13 +103,13 @@ msgstr "Pergi ke Bawah Tanah" msgid "I Spy With My Little Eye" msgstr "Saya Menyelidik Dengan Mata Kecil Saya" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Ispy\n#Ispys akan aktifkan benda seperti platform apabila si Tux di hadapan mereka." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Petua: Guna siput untuk pecahkan blok!" @@ -121,7 +121,7 @@ msgstr "Seperti daun berterbangan di Udara" msgid "Lost Village" msgstr "Kampung Sesat" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Jangan lupa tekan suis!" @@ -161,10 +161,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Bunga Bumi\n!images/powerups/earthflower/earth_flower-1.png\n#Bunga bumi memberi Tux keupayaan menjadi batu dengan menekan Kekunci AKSI dan Kekunci BAWAH secara serentak.\n#Tindakan ini tidak berfungsi jika melompat atau terjatuh!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Petikan Adegan Menara" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Menara Hantu" @@ -185,11 +181,11 @@ msgstr "-Objek Mudah Alih:\n!images/objects/rock/rock.png\n#Tux boleh membawa ob msgid "Tux' Own Horror Show" msgstr "Rancangan Seram Tux" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." -msgstr "" +msgstr "#Will o' Wisps ialah hantu kecil yang menjengkelkan, ia mengalih kedudukan anda ke tempat lain, biasanya tempat merbahaya." #: data/levels/world2/walking_leaves.stl:3 msgid "Walking Leaves" @@ -212,8 +208,8 @@ msgstr "Akar Kayu" #: data/levels/world2/worldmap.stwm:3 msgid "Rooted Forest" -msgstr "" +msgstr "Hutan Berakar" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Bersambung..." diff --git a/data/levels/world2/nb.po b/data/levels/world2/nb.po index de8f06a3000..cf946157206 100644 --- a/data/levels/world2/nb.po +++ b/data/levels/world2/nb.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:00+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Norwegian Bokmål (http://app.transifex.com/arctic-games/supertux/language/nb/)\n" @@ -38,8 +38,8 @@ msgstr "Gamle ruiner" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Du fant en hemmelig plass!" @@ -91,7 +91,7 @@ msgstr "Ghosttrees utfordringer" msgid "Ghouls' Lair" msgstr "Ghouls hule" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -105,13 +105,13 @@ msgstr "Til underverdenen" msgid "I Spy With My Little Eye" msgstr "Jeg spionerer med mitt lille øye" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Jeg spionerer\n#Spionerer vil aktivere ting som plattformer når Tux er i synet deres." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Hint: Bruk snegler for å bryte blokker!" @@ -123,7 +123,7 @@ msgstr "Som et blad i vinden" msgid "Lost Village" msgstr "Lost Village" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Ikke glem å trykke på bryteren!" @@ -163,10 +163,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Jordblomst\n!images/powerups/earthflower/earth_flower-1.png\n#Jordblomsten kan bli til stein ved å trykke på handlingstasten og ned-tasten samtidig.\n#Dette fungerer ikke mens du hopper eller faller!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Tower Cutscene" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Tower Of Ghosts" @@ -187,7 +183,7 @@ msgstr "- Bærbare gjenstander:\n!images/objects/rock/rock.png\n#Tux kan plukke msgid "Tux' Own Horror Show" msgstr "Super Tux Super Spooky Show" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -216,6 +212,6 @@ msgstr "Tre røtter" msgid "Rooted Forest" msgstr "Rotfestet skog" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Fortsettelse følger..." diff --git a/data/levels/world2/nl.po b/data/levels/world2/nl.po index e2996b31253..79b5e10bf41 100644 --- a/data/levels/world2/nl.po +++ b/data/levels/world2/nl.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 12:50+0000\n" -"Last-Translator: Heimen Stoffels \n" -"Language-Team: Dutch (http://www.transifex.com/arctic-games/supertux/language/nl/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:00+0000\n" +"Last-Translator: Heimen Stoffels , 2021\n" +"Language-Team: Dutch (http://app.transifex.com/arctic-games/supertux/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -38,8 +38,8 @@ msgstr "Eeuwenoude ruïnes" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Je hebt een geheim gebied gevonden!" @@ -91,7 +91,7 @@ msgstr "Uitdagingen van de spookboom" msgid "Ghouls' Lair" msgstr "Geestenverblijf" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -105,13 +105,13 @@ msgstr "Ondergronds gaan" msgid "I Spy With My Little Eye" msgstr "Ik zie, ik zie wat jij niet ziet" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Bespeurders\n#Bespeurders activeren dingen als platformen zodra Tux er dichtbij is." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Tip: gebruik slakken om ijsblokken te breken!" @@ -123,7 +123,7 @@ msgstr "Als een blad in de wind" msgid "Lost Village" msgstr "Verloren gewaand dorp" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Vergeet niet de schakelaar om te zetten!" @@ -163,10 +163,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Aardbloem\n!images/powerups/earthflower/earth_flower-1.png\n#De aardbloem zorgt ervoor dat Tux in steen kan veranderen door de actietoets en pijltje omlaag gelijktijdig in te drukken.\n#Dit werkt niet tijdens springen of vallen!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Toren-overgangsscène" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Spooktoren" @@ -187,7 +183,7 @@ msgstr "-Draagbare objecten:\n!images/objects/rock/rock.png\n#Tux kan bepaalde o msgid "Tux' Own Horror Show" msgstr "Tux' eigen horrorshow" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -216,6 +212,6 @@ msgstr "Houten wortels" msgid "Rooted Forest" msgstr "Boomwortelbos" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Wordt vervolgd..." diff --git a/data/levels/world2/nn.po b/data/levels/world2/nn.po index 048dba3f232..b6658b8fae5 100644 --- a/data/levels/world2/nn.po +++ b/data/levels/world2/nn.po @@ -3,16 +3,17 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: +# IAN RODRÍGUEZ Lorenzo, 2022 # Karl Ove Hufthammer , 2006-2007,2013-2016,2018-2020 # Karl Ove Hufthammer , 2015 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 21:21+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Norwegian Nynorsk (http://www.transifex.com/arctic-games/supertux/language/nn/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:00+0000\n" +"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" +"Language-Team: Norwegian Nynorsk (http://app.transifex.com/arctic-games/supertux/language/nn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,8 +38,8 @@ msgstr "Eldgamle ruinar" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Du fann ein hemmeleg plass!" @@ -90,7 +91,7 @@ msgstr "Spøkjelsestreets utfordringar" msgid "Ghouls' Lair" msgstr "Leiren til liketarane" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -104,13 +105,13 @@ msgstr "Til underverda" msgid "I Spy With My Little Eye" msgstr "Spionauget ser deg" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Spionauga\n#Spionauga startar ulike ting, som plattformer, når dei kan sjå Tux." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Hint: Bruk sniglar for å knusa blokker!" @@ -122,7 +123,7 @@ msgstr "Som lauv i vinden" msgid "Lost Village" msgstr "Den fortapte landsbyen" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Gløym ikkje å slå på brytaren!" @@ -162,10 +163,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Jordblome\n!images/powerups/earthflower/earth_flower-1.png\n#Med jordblomen kan du gjera deg til stein ved å halda inne handlings- og nedtasten samtidig.\n#Dette verkar ikkje når du hoppar eller fell!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Tårnscene" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Spøkjelsestårnet" @@ -186,11 +183,11 @@ msgstr "-Flyttbare gjenstandar:\n!images/objects/rock/rock.png\n#Nokre gjenstand msgid "Tux' Own Horror Show" msgstr "Tux sitt skrekkabinett" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." -msgstr "" +msgstr "#Will o' Wisps er små, irriterende spøkelser, som transporterer deg til forskjellige, ofte farlige steder." #: data/levels/world2/walking_leaves.stl:3 msgid "Walking Leaves" @@ -213,8 +210,8 @@ msgstr "Trerøter" #: data/levels/world2/worldmap.stwm:3 msgid "Rooted Forest" -msgstr "" +msgstr "Rotfestet skog" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Framhald følgjer …" diff --git a/data/levels/world2/pl.po b/data/levels/world2/pl.po index cf61d1a1c81..1aeeefb9475 100644 --- a/data/levels/world2/pl.po +++ b/data/levels/world2/pl.po @@ -6,6 +6,8 @@ # Arkadiusz Chojnicki , 2019 # Krzysztof Szeląg, 2015-2016,2018 # Krzysztof Szeląg, 2019 +# Krzysztof Szeląg, 2019 +# Łukasz Hryniuk, 2013 # Łukasz Hryniuk, 2013 # Łukasz Hryniuk, 2013 # mkkot , 2014 @@ -13,15 +15,18 @@ # Paweł Talar , 2013 # Paweł Talar , 2013 # Rob PlayZ, 2021 -# Zwatotem , 2019-2021 +# Alina Gobarov, 2021 +# Tomasz Dądela, 2022 +# Ziemowit Zabawa, 2022 +# Grzegorz Przybylski , 2019-2021 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 22:41+0000\n" -"Last-Translator: Rob PlayZ\n" -"Language-Team: Polish (http://www.transifex.com/arctic-games/supertux/language/pl/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:00+0000\n" +"Last-Translator: Ziemowit Zabawa, 2022\n" +"Language-Team: Polish (http://app.transifex.com/arctic-games/supertux/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -46,8 +51,8 @@ msgstr "Starożytne ruiny" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Znalazłeś sekretne miejsce!" @@ -77,7 +82,7 @@ msgstr "Znajdź większą rybę!" #: data/levels/world2/find_big_fish.stl:1058 msgid "-A big fish... for you." -msgstr "-Duża ryba... dla ciebie." +msgstr "-Duża ryba… dla ciebie." #: data/levels/world2/forest_intro.stl:3 msgid "A New Location" @@ -97,13 +102,13 @@ msgstr "Wyzwania Drzewa Duchów" #: data/levels/world2/ghouls_lair.stl:3 msgid "Ghouls' Lair" -msgstr "Kłamca Ghoul" +msgstr "Jaskinia ghouli" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." -msgstr "#Lampy są używane po to, aby zmaterializować magiczne klocki. Wtedy wówczas możesz po nich chodzić." +msgstr "#Lampy są używane po to, aby zmaterializować magiczne klocki. Wówczas możesz po nich chodzić." #: data/levels/world2/going_underground.stl:3 msgid "Going Underground" @@ -113,13 +118,13 @@ msgstr "Zejście pod ziemię" msgid "I Spy With My Little Eye" msgstr "Podglądam swym małym okiem" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." -msgstr "-Podglądacz\n#Podglądacze będą aktrywować mechanizmy, na przykład platformy, kiedy Tux będzie w ich zasięgu wzroku." +msgstr "-Podglądacz\n#Podglądacze aktywują mechanizmy, takie jak platformy, gdy Tux jest w zasięgu ich wzroku." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Podpowiedź: Używaj ślimaków, żeby niszczyć klocki!" @@ -131,7 +136,7 @@ msgstr "Jak liść na wietrze" msgid "Lost Village" msgstr "Zaginiona wioska" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Nie zapomnij o przełączniku!" @@ -141,7 +146,7 @@ msgstr "Zatęchłe groty" #: data/levels/world2/owls_again.stl:3 msgid "The Owls again..." -msgstr "Znów te sowy..." +msgstr "Znów te sowy…" #: data/levels/world2/owls_skydive_commando.stl:3 msgid "Owls' Skydive Commando" @@ -171,10 +176,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Kwiat ziemi\n!images/powerups/earthflower/earth_flower-1.png\n#Kwiat ziemi umożliwia Tuxowi zamiany w kamień przy jednoczesnym naciśnięciu klawiszy AKCJI oraz W DÓŁ.\n#Nie zadziała to podczas skoku lub spadania!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Scena na Wieży" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Wieża duchów" @@ -195,7 +196,7 @@ msgstr "-Obiekty przenośne\n!images/objects/rock/rock.png\n#Tux może podnosić msgid "Tux' Own Horror Show" msgstr "Prywatne Show Horrorów Tuxa" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -224,6 +225,6 @@ msgstr "Korzenie drzew" msgid "Rooted Forest" msgstr "Korzenny las" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Ciąg dalszy nastąpi..." diff --git a/data/levels/world2/pt.po b/data/levels/world2/pt.po index 54e13de8b0a..2494a6e40c0 100644 --- a/data/levels/world2/pt.po +++ b/data/levels/world2/pt.po @@ -7,6 +7,7 @@ # Dani , 2013 # Hugo Carvalho , 2021 # João Frade <100nome.portugal@gmail.com>, 2023 +# lecalam, 2024 # Rui , 2016,2018 # Tiago Correia , 2019 # Rui , 2016 @@ -15,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:00+0000\n" -"Last-Translator: João Frade <100nome.portugal@gmail.com>, 2023\n" +"Last-Translator: lecalam, 2024\n" "Language-Team: Portuguese (http://app.transifex.com/arctic-games/supertux/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,8 +44,8 @@ msgstr "Velhas Ruínas" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Descobriste uma área secreta!" @@ -96,11 +97,11 @@ msgstr "Os Desafios de Ghosttree" msgid "Ghouls' Lair" msgstr "Covil de Ghouls" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." -msgstr "#Lanternas são usadas para tornar sólidos os blocos mágicos, para que consigas andar sobre eles." +msgstr "#As lanternas são usadas para tornar sólidos os blocos mágicos, para que consigas andar sobre eles." #: data/levels/world2/going_underground.stl:3 msgid "Going Underground" @@ -110,13 +111,13 @@ msgstr "Pelo Subterrâneo" msgid "I Spy With My Little Eye" msgstr "Eu Espio Com o Meu Olhinho" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Ispy\n#Ispys vão ativar coisas, como por exemplo plataformas, sempre que o Tux estiver no seu campo de visão." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Dica: usa caracóis para partir blocos!" @@ -128,7 +129,7 @@ msgstr "Como uma folha no Vento" msgid "Lost Village" msgstr "Vila Perdida" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Não te esqueças de carregar no interruptor!" @@ -166,11 +167,7 @@ msgid "" "!images/powerups/earthflower/earth_flower-1.png\n" "#The earth flower gives Tux the ability to turn into stone by pressing the ACTION Key and the DOWN Key at the same time.\n" "#This does not work while jumping or falling!" -msgstr "-Flor-de-Terra\n!images/powerups/earthflower/earth_flower-1.png\n#A flor-de-Terra dá ao Tux o poder de se tornar em pedra ao premir a tecla AÇÃO e SETA BAIXO ao mesmo tempo.\n#Isto não funciona quando saltas ou cais!" - -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Cutscene da Torre" +msgstr "-Flor-de-Terra\n!images/powerups/earthflower/earth_flower-1.png\n#A flor-de-Terra dá ao Tux o poder de se transformar em pedra ao premir a tecla AÇÃO e SETA BAIXO ao mesmo tempo.\n#Isto não funciona quando saltas ou cais!" #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" @@ -186,17 +183,17 @@ msgid "" "!images/objects/rock/rock.png\n" "#Tux can pick up certain objects and carry them around.\n" "#Press the ACTION key to grab an object and hold it pressed as long as you want to carry the object. Release the ACTION key to drop the object." -msgstr "-Objetos Portáteis:\n!images/objects/rock/rock.png\n#O Tux pode segurar certos objetos e transportá-los.\n#Prime a tecla AÇÃO para apanhar um objeto e segura-a premida durante o tempo que desejes que o transporte. Solta a tecla AÇÃO para largar o objeto." +msgstr "-Objetos Portáteis:\n!images/objects/rock/rock.png\n#O Tux pode segurar certos objetos e transportá-los.\n#Prime a tecla AÇÃO para agarrar um objeto e mantém-na premida durante o tempo que quiseres transportar o objeto. Solta a tecla AÇÃO para largar o objeto." #: data/levels/world2/tux_own_horror_show.stl:3 msgid "Tux' Own Horror Show" msgstr "O Espétaculo de Terror do Tux" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." -msgstr "#Will o'Wisps são fantasmas pequenos e irritantes que te transportam para sítios diferentes, normalmente sítios perigosos." +msgstr "#As Chama Perseguidoras são fantasmas pequenos e irritantes que te transportam para sítios diferentes, normalmente sítios perigosos." #: data/levels/world2/walking_leaves.stl:3 msgid "Walking Leaves" @@ -221,6 +218,6 @@ msgstr "Raízes de Madeira" msgid "Rooted Forest" msgstr "Floresta Enraizada" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Continua..." diff --git a/data/levels/world2/pt_BR.po b/data/levels/world2/pt_BR.po index 198d52e85ea..a68c886e31a 100644 --- a/data/levels/world2/pt_BR.po +++ b/data/levels/world2/pt_BR.po @@ -18,15 +18,15 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 03:00+0000\n" -"Last-Translator: Jesusaves \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/arctic-games/supertux/language/pt_BR/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:00+0000\n" +"Last-Translator: Jesusaves , 2021\n" +"Language-Team: Portuguese (Brazil) (http://app.transifex.com/arctic-games/supertux/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: data/levels/world2/ancient_ruins.stl:3 msgid "Ancient Ruins" @@ -46,8 +46,8 @@ msgstr "Ruínas Ancestrais" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Você achou uma área secreta!" @@ -99,7 +99,7 @@ msgstr "Desafios das Árvores Fantasmas" msgid "Ghouls' Lair" msgstr "Covil dos Carniçais" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -113,13 +113,13 @@ msgstr "Indo ao Subterrâneo" msgid "I Spy With My Little Eye" msgstr "Eu Vejo Com Meu Pequeno Olhinho" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Olho Espião\n#Olhos Espiões irão ativar coisas como plataformas sempre que Tux estiver em suas linhas de visão." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Dica: Use caracóis para quebrar blocos!" @@ -131,7 +131,7 @@ msgstr "Como uma folha no Vento" msgid "Lost Village" msgstr "Vila Perdida" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Não se esqueça de acertar o interruptor!" @@ -171,10 +171,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Flor de Terra\n!images/powerups/earthflower/earth_flower-1.png\n#A flor de terra dará ao Tux a habilidade de petrificar ao apertar a tecla de AÇÃO e BAIXO ao mesmo tempo.\n#Isso não funciona enquanto estiver pulando ou caindo!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Cena da Torre" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Torre Dos Fantasmas" @@ -195,7 +191,7 @@ msgstr "-Objetos Portáteis:\n!images/objects/rock/rock.png\n#Tux pode pegar cer msgid "Tux' Own Horror Show" msgstr "O Próprio Show De Horrores Do Tux" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -224,6 +220,6 @@ msgstr "Raízes de Madeira" msgid "Rooted Forest" msgstr "Floresta Enraizada" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Continua..." diff --git a/data/levels/world2/ro.po b/data/levels/world2/ro.po index accc5f7f2b9..8f96b6a712e 100644 --- a/data/levels/world2/ro.po +++ b/data/levels/world2/ro.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:00+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Romanian (http://app.transifex.com/arctic-games/supertux/language/ro/)\n" @@ -38,8 +38,8 @@ msgstr "Ruine antice" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Ai găsit o zonă secretă!" @@ -91,7 +91,7 @@ msgstr "Provocări ale arborele fantomă" msgid "Ghouls' Lair" msgstr "Bârlogul de la Ghoul" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -105,13 +105,13 @@ msgstr "Mergem în subteran" msgid "I Spy With My Little Eye" msgstr "Spionez cu ochiul meu mic" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Spionez\n#Ele se activează lucruri precum platformele ori de câte ori Tux este în vizorul lor." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Sugestie: Folosește melci pentru a sparge blocurile!" @@ -123,7 +123,7 @@ msgstr "Ca o frunză în vânt" msgid "Lost Village" msgstr "Satul Pierdut" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Nu uitați să apăsați comutatorul!" @@ -163,10 +163,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "- Floarea Pământului\n!images/powerups/earthflower/earth_flower-1.png\n#Floarea de pământ îi oferă lui Tux capacitatea de a se transforma în piatră apăsând în același timp tasta ACȚIUNE și tasta JOS.\n#Acest lucru nu funcționează în timp ce săriți sau cădeți!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Turnul Cutscene" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Turnul Fantomelor" @@ -187,7 +183,7 @@ msgstr "-Obiecte portabile:\n!images/objects/rock/rock.png\n#Tux poate ridica an msgid "Tux' Own Horror Show" msgstr "Spectacolul de groază al lui Tux" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -216,6 +212,6 @@ msgstr "Rădăcini de lemn" msgid "Rooted Forest" msgstr "Pădurea înrădăcinată" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Va urma..." diff --git a/data/levels/world2/ru.po b/data/levels/world2/ru.po index d86f3fad5a9..8297d75e7f0 100644 --- a/data/levels/world2/ru.po +++ b/data/levels/world2/ru.po @@ -3,21 +3,22 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Andrei Stepanov , 2018-2021 +# Andrei Stepanov, 2018-2021 # Artem Krosheninnikov , 2013 # Benjamin Leduc , 2013 # Dmitry Anikonov , 2016 # Dmitry , 2013 # Dmitry , 2013 +# Темак, 2022 # Dmitry Anikonov , 2013,2015 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-20 13:30+0000\n" -"Last-Translator: Andrei Stepanov \n" -"Language-Team: Russian (http://www.transifex.com/arctic-games/supertux/language/ru/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:00+0000\n" +"Last-Translator: Темак, 2022\n" +"Language-Team: Russian (http://app.transifex.com/arctic-games/supertux/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -42,8 +43,8 @@ msgstr "Древние руины" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Вы нашли тайник!" @@ -95,11 +96,11 @@ msgstr "Трудности призрачного дерева" msgid "Ghouls' Lair" msgstr "Логово упырей" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." -msgstr "#Фонари помогут сделать магические блоки твёрдыми, так что вы сможете ходить по ним" +msgstr "#Светильники помогут сделать волшебные блоки твёрдыми, так что вы сможете ходить по ним" #: data/levels/world2/going_underground.stl:3 msgid "Going Underground" @@ -109,13 +110,13 @@ msgstr "Спускаться в подземелье" msgid "I Spy With My Little Eye" msgstr "Я иду искать" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." -msgstr "-Глазок\n#Глазок активирует объекты, такие как платформы, всякий раз, когда Такс находится в их поле зрения." +msgstr "-Глазок\n#Глазок задействует объекты, такие как платформы, всякий раз, когда Такс находится в их поле зрения." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Подсказка: используйте улиток, чтобы разбить блоки!" @@ -127,7 +128,7 @@ msgstr "Как листок на ветру" msgid "Lost Village" msgstr "Затерянная деревня" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Не забудьте ударить по переключателю!" @@ -167,10 +168,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Земляной цветок\n!images/powerups/earthflower/earth_flower-1.png\n#Воздушный цветок даёт Таксу возможность обращаться в камень при нажатии сочетания кнопок ДЕЙСТВИЯ и ВНИЗ.\n#Это не работает в прыжке или при падении." -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Заставка башни" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Башня призраков" @@ -185,13 +182,13 @@ msgid "" "!images/objects/rock/rock.png\n" "#Tux can pick up certain objects and carry them around.\n" "#Press the ACTION key to grab an object and hold it pressed as long as you want to carry the object. Release the ACTION key to drop the object." -msgstr "-Переносные объекты:\n!images/objects/rock/rock.png\n#Такс может подбирать некоторые объекты и носить их с собой.\n#Нажмите кнопку ДЕЙСТВИЯ, чтобы поднять предмет и держать его пока зажата эта кнопка. Отожмите кнопку ДЕЙСТВИЯ, чтобы отпустить объект." +msgstr "-Переносные предметы:\n!images/objects/rock/rock.png\n#Такс может подбирать некоторые предметы и носить их с собой.\n#Нажмите кнопку ДЕЙСТВИЯ, чтобы поднять предмет и держать его пока зажата эта кнопка. Отпустите кнопку ДЕЙСТВИЯ, чтобы отпустить предмет." #: data/levels/world2/tux_own_horror_show.stl:3 msgid "Tux' Own Horror Show" -msgstr "Авторское шоу ужасов Такса" +msgstr "Представление ужасов Такса" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -220,6 +217,6 @@ msgstr "Деревянные корни" msgid "Rooted Forest" msgstr "Корневой лес" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Продолжение следует…" diff --git a/data/levels/world2/sk.po b/data/levels/world2/sk.po index a62b0867387..fe23836849e 100644 --- a/data/levels/world2/sk.po +++ b/data/levels/world2/sk.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:00+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Slovak (http://app.transifex.com/arctic-games/supertux/language/sk/)\n" @@ -40,8 +40,8 @@ msgstr "Starobylé ruiny" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Našli ste tajné miesto!" @@ -93,7 +93,7 @@ msgstr "Výzvy Ghosttree" msgid "Ghouls' Lair" msgstr "Lair Ghouls" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -107,13 +107,13 @@ msgstr "Kurz: Podzemie" msgid "I Spy With My Little Eye" msgstr "Špehovam svojím malým okom" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Špehujem\n#Špehujem aktivuje veci ako platformy, kedykoľvek je Tux v ich očiach." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Tip: Použite slimáky na rozbitie blokov!" @@ -125,7 +125,7 @@ msgstr "Ako list vo vetre" msgid "Lost Village" msgstr "Stratená dedina" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Nezabudnite aktivovať prepínač!" @@ -165,10 +165,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "- Zemský kvet\n!images/powerups/earthflower/earth_flower-1.png\n#Kvet zeme dáva Tuxovi schopnosť premeniť sa na kameň súčasným stlačením klávesy AKCIA a DOLE.\n#Toto nefunguje pri skákaní alebo páde!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Cutscéna veže" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Veža duchov" @@ -189,7 +185,7 @@ msgstr "-Prenosné predmety:\n!images/objects/rock/rock.png\n#Tux dokáže zdvih msgid "Tux' Own Horror Show" msgstr "Tuxova vlastná hororová šou" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -218,6 +214,6 @@ msgstr "Drevené korene" msgid "Rooted Forest" msgstr "Zakorenený les" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Pokračovanie nabudúce..." diff --git a/data/levels/world2/sl.po b/data/levels/world2/sl.po index 151b3e6dfbe..c53c955b27c 100644 --- a/data/levels/world2/sl.po +++ b/data/levels/world2/sl.po @@ -4,16 +4,16 @@ # # Translators: # Gorzy Gorup , 2016 -# Gorzy Gorup , 2016,2018-2020 +# Gorzy Gorup , 2016,2018-2020,2022 # Marko Burjek , 2005-2007 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 21:21+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Slovenian (http://www.transifex.com/arctic-games/supertux/language/sl/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:00+0000\n" +"Last-Translator: Gorzy Gorup , 2016,2018-2020,2022\n" +"Language-Team: Slovenian (http://app.transifex.com/arctic-games/supertux/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -38,10 +38,10 @@ msgstr "Starodavne razvaline" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" -msgstr "Našel/a si skrito območje!" +msgstr "Našel/a si skrito sobo!" #: data/levels/world2/beside_bushes.stl:3 msgid "Beside the Bushes" @@ -49,15 +49,15 @@ msgstr "Poleg grmičevja" #: data/levels/world2/bouncy_coils.stl:3 msgid "Bouncy Coils" -msgstr "Prožne spirale" +msgstr "Prožne tuljave" #: data/levels/world2/bye_bye_forest.stl:3 msgid "Bye Bye Forest" -msgstr "Zbogomlesje" +msgstr "Poslovilni gozd" #: data/levels/world2/crumbling_path.stl:3 msgid "Crumbling Path" -msgstr "Krušeča se steza" +msgstr "Razpadajoča steza" #: data/levels/world2/darkness_awaits.stl:3 msgid "Darkness Awaits" @@ -69,7 +69,7 @@ msgstr "Poišči večjo ribo!" #: data/levels/world2/find_big_fish.stl:1058 msgid "-A big fish... for you." -msgstr "-Velika riba... zate." +msgstr "-Velika riba ... zate." #: data/levels/world2/forest_intro.stl:3 msgid "A New Location" @@ -85,13 +85,13 @@ msgstr "Groza in strah" #: data/levels/world2/ghosttrees_challenges.stl:3 msgid "Ghosttree's Challenges" -msgstr "Izzivi Duhčevega drevesa" +msgstr "Drevoduhčevi izzivi" #: data/levels/world2/ghouls_lair.stl:3 msgid "Ghouls' Lair" msgstr "Brlog prikazni" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -103,27 +103,27 @@ msgstr "Gremo v podzemlje" #: data/levels/world2/i_spy_with_my_little_eye.stl:3 msgid "I Spy With My Little Eye" -msgstr "Vidim nekaj, vidim nekaj" +msgstr "Če napnem oči, vidim ..." -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." -msgstr "-Nadležno oko\n#Nadležna očesa sprožijo stvari, kot so podlage, kadar vidijo Tuxa." +msgstr "-Nadležno oko\n#Nadležna očesa sprožijo npr. ploščadi, kadar vidijo Tuksa." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Namig: Za razbijanje kock uporabi polže!" #: data/levels/world2/leaf_wind.stl:3 msgid "Like a leaf in the Wind" -msgstr "Kakor list v vetriču" +msgstr "Kakor list v vetru" #: data/levels/world2/lost_village.stl:3 msgid "Lost Village" msgstr "Pozabljena vasica" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Ne pozabi potegniti vzvoda!" @@ -133,7 +133,7 @@ msgstr "Plesniva votlina" #: data/levels/world2/owls_again.stl:3 msgid "The Owls again..." -msgstr "Spet te sove..." +msgstr "Spet te sove ..." #: data/levels/world2/owls_skydive_commando.stl:3 msgid "Owls' Skydive Commando" @@ -161,11 +161,7 @@ msgid "" "!images/powerups/earthflower/earth_flower-1.png\n" "#The earth flower gives Tux the ability to turn into stone by pressing the ACTION Key and the DOWN Key at the same time.\n" "#This does not work while jumping or falling!" -msgstr "-Zemeljska roža\n!images/powerups/earthflower/earth_flower-1.png\n#Zemeljska roža omogoča Tuxu, da se spremeni v kamen z istočasnim pritiskom na tipko za dejanje in tipko dol.\n#Ne deluje med skakanjem ali padanjem!" - -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Igrani prizor v stolpu" +msgstr "-Zemeljska roža\n!images/powerups/earthflower/earth_flower-1.png\n#Zemeljska roža omogoča Tuksu, da se spremeni v kamen z istočasnim pritiskom na tipko za dejanje in tipko za \"dol\".\n#Ne deluje med skakanjem ali padanjem!" #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" @@ -173,7 +169,7 @@ msgstr "Stolp duhov" #: data/levels/world2/tux_builder.stl:3 msgid "Tux the Builder" -msgstr "Mojster Tux" +msgstr "Mojster Tuks" #: data/levels/world2/tux_builder.stl:77 msgid "" @@ -181,17 +177,17 @@ msgid "" "!images/objects/rock/rock.png\n" "#Tux can pick up certain objects and carry them around.\n" "#Press the ACTION key to grab an object and hold it pressed as long as you want to carry the object. Release the ACTION key to drop the object." -msgstr "-Prenosljivi predmeti:\n!images/objects/rock/rock.png\n#Tux lahko nekatere predmete pobere in jih nosi naokrog.\n#Pritisni tipko za dejanje, da pobereš predmet, in jo drži, dokler hočeš, da Tux predmet nosi. Ko tipko spustiš, bo Tux predmet izpustil." +msgstr "-Prenosljivi predmeti:\n!images/objects/rock/rock.png\n#Tuks lahko nekatere predmete pobere in jih ponese naokrog.\n#Pritisni tipko za dejanje, da pobereš predmet, in jo drži, dokler hočeš, da Tuks nosi predmet. Ko tipko spustiš, bo Tuks predmet izpustil." #: data/levels/world2/tux_own_horror_show.stl:3 msgid "Tux' Own Horror Show" -msgstr "Tuxova predstava strahu" +msgstr "Tuksova predstava groze" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." -msgstr "" +msgstr "#Blodeče lučke so drobni nadležni duhci, ki te prenesejo na druge, pogosto nevarne kraje." #: data/levels/world2/walking_leaves.stl:3 msgid "Walking Leaves" @@ -206,7 +202,7 @@ msgid "" "-Doors\n" "!images/objects/door/door-0.png\n" "#Tux can go through a door by pressing the UP key." -msgstr "-Vrata\n!images/objects/door/door-0.png\n#Tux lahko stopi skozi vrata s pritiskom na tipko za gor." +msgstr "-Vrata\n!images/objects/door/door-0.png\n#Tuks lahko stopi skozi vrata s pritiskom na tipko za \"gor\"." #: data/levels/world2/wooden_roots.stl:3 msgid "Wooden Roots" @@ -214,8 +210,8 @@ msgstr "Gozdne korenine" #: data/levels/world2/worldmap.stwm:3 msgid "Rooted Forest" -msgstr "" +msgstr "Zakoreninjen gozd" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." -msgstr "Se nadaljuje..." +msgstr "Se nadaljuje ..." diff --git a/data/levels/world2/sq.po b/data/levels/world2/sq.po index aad4e2e97fa..5b547c72ffc 100644 --- a/data/levels/world2/sq.po +++ b/data/levels/world2/sq.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:00+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Albanian (http://app.transifex.com/arctic-games/supertux/language/sq/)\n" @@ -37,8 +37,8 @@ msgstr "Rrënojat e lashta" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Gjete një zonë sekrete!" @@ -90,7 +90,7 @@ msgstr "Sfidat e Ghosttree" msgid "Ghouls' Lair" msgstr "Varri i Ghouls" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -104,13 +104,13 @@ msgstr "Rruga për Nëntokë" msgid "I Spy With My Little Eye" msgstr "Unë spiunoj me syrin tim të vogël" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Unë spiunoj\n#Spiunoje do të aktivizojë gjëra të tilla si platformat sa herë që Tux është në sy të tyre." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Këshillë: Përdorni kërmijtë për të thyer blloqe!" @@ -122,7 +122,7 @@ msgstr "Si një gjethe në erë" msgid "Lost Village" msgstr "Fshati i humbur" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Mos harroni të shtypni çelësin!" @@ -162,10 +162,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Lulja e Tokës\n!images/powerups/earthflower/earth_flower-1.png\n#Lulja e tokës i jep Tux-it mundësinë të shndërrohet në gur duke shtypur njëkohësisht tastin ACTION dhe tastin POSHT.\n#Kjo nuk funksionon gjatë kërcimit apo rënies!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Skena e prerjes së kullës" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Kulla e Fantazmave" @@ -186,7 +182,7 @@ msgstr "-Objekte portative:\n!images/objects/rock/rock.png\n#Tux mund të marrë msgid "Tux' Own Horror Show" msgstr "Shfaqje Horror Vetë Tux" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -215,6 +211,6 @@ msgstr "Rrënjët prej druri" msgid "Rooted Forest" msgstr "Pyll me rrënjë" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Vazhdon..." diff --git a/data/levels/world2/sv.po b/data/levels/world2/sv.po index 0f137dba9fc..0141dabba65 100644 --- a/data/levels/world2/sv.po +++ b/data/levels/world2/sv.po @@ -6,16 +6,16 @@ # Anders Jonsson , 2018 # Arvid Norlander , 2006-2010 # Kristoffer Grundström , 2014 -# Sebastian Rasmussen , 2019-2020 +# Sebastian Rasmussen , 2019-2021 # Sebastian Rasmussen , 2015-2016 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 21:21+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Swedish (http://www.transifex.com/arctic-games/supertux/language/sv/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:00+0000\n" +"Last-Translator: Sebastian Rasmussen , 2019-2021\n" +"Language-Team: Swedish (http://app.transifex.com/arctic-games/supertux/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -40,8 +40,8 @@ msgstr "Uråldriga ruiner" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Du har hittat ett hemligt område!" @@ -93,7 +93,7 @@ msgstr "Spökträdets utmaningar" msgid "Ghouls' Lair" msgstr "Den onde andens lya" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -107,13 +107,13 @@ msgstr "Gå ner i underjorden" msgid "I Spy With My Little Eye" msgstr "Jag ser med mitt lilla öga" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Ispy\n#Ispys kommer att aktivera saker så som plattformar närhelst Tux är inom deras sikte." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Tips: Använd sniglar för att bryta söner block!" @@ -125,7 +125,7 @@ msgstr "Som ett löv i vinden" msgid "Lost Village" msgstr "Den förlorade byn" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Glöm inte att slå på brytaren!" @@ -165,10 +165,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Jordblomma\n!images/powerups/earthflower/earth_flower-1.png\n#Jordblomman ger Tux förmågan att förvandras till tenom att samidigt trycka på ÅTGÄRDS-knappen och NER-knappen.\n#Detta fungerar inte under hopp eller då Tux faller!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Filmsekvensen i tornet" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Spökenas torn" @@ -189,11 +185,11 @@ msgstr "-Portabla objekt:\n!images/objects/rock/rock.png\n#Tux kan plocka upp vi msgid "Tux' Own Horror Show" msgstr "Tux egna skräckshow" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." -msgstr "" +msgstr "#Irrbloss är små, irriterande spöken som transporterar dig till olika, ofta farliga, platser." #: data/levels/world2/walking_leaves.stl:3 msgid "Walking Leaves" @@ -216,8 +212,8 @@ msgstr "Träiga rötter" #: data/levels/world2/worldmap.stwm:3 msgid "Rooted Forest" -msgstr "" +msgstr "Rotad skog" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Fortsättning följer..." diff --git a/data/levels/world2/te.po b/data/levels/world2/te.po index d1df30bbbbd..336c461abd2 100644 --- a/data/levels/world2/te.po +++ b/data/levels/world2/te.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:00+0000\n" "Last-Translator: Nanowarrior, 2022\n" "Language-Team: Telugu (http://app.transifex.com/arctic-games/supertux/language/te/)\n" @@ -36,8 +36,8 @@ msgstr "పురాతన శిధిలాలు" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "మీరు ఒక రహస్య ప్రాంతాన్ని కనుగొన్నారు!" @@ -89,7 +89,7 @@ msgstr "దెయ్యం చెట్టు యొక్క సవాళ్ల msgid "Ghouls' Lair" msgstr "పిశాచాల గుహ" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -103,13 +103,13 @@ msgstr "భూగర్భంలోకి వెళ్తూన్నా" msgid "I Spy With My Little Eye" msgstr "నేను నా చిన్న కన్నుతో గూఢచర్యం చేస్తున్నాను" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-ఇస్పి\n#ఇస్పిల దృష్టిలో టక్స్ ఉన్నప్పుడల్లా ప్లాట్‌ఫారమ్‌ల వంటి వాటిని సక్రియం చేస్తాయి." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "సూచన: దిమ్మెలను విచ్ఛిన్నం చేయడానికి నత్తలను ఉపయోగించు!" @@ -121,7 +121,7 @@ msgstr "గాలిలో ఆకు లాగా" msgid "Lost Village" msgstr "కోల్పోయిన గ్రామం" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#స్విచ్ కొట్టడం మర్చిపోవద్దు!" @@ -161,10 +161,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-భూమి పుష్పం\n!images/powerups/earthflower/earth_flower-1.png\n#భూమి పుష్పం టక్స్‌కి యాక్షన్ కీ మరియు డౌన్ కీని ఒకేసారి నొక్కడం ద్వారా రాయిగా మారే సామర్థ్యాన్ని అందిస్తుంది.\n#దూకుతున్నప్పుడు లేదా పడిపోయేటప్పుడు ఇది పని చేయదు!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "గోపురం కట్‌సీన్" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "దయ్యాల గోపురం" @@ -185,7 +181,7 @@ msgstr "-పోర్టబుల్ వస్తువులు:\n!images/objec msgid "Tux' Own Horror Show" msgstr "టక్స్' సొంత భయానక ప్రదర్శన" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -214,6 +210,6 @@ msgstr "చెక్క ఏర్లు" msgid "Rooted Forest" msgstr "పాతుకుపోయిన అడవి" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "కొనసాగుతుది..." diff --git a/data/levels/world2/tr.po b/data/levels/world2/tr.po index 2a9df1a99a3..2dfea0422cc 100644 --- a/data/levels/world2/tr.po +++ b/data/levels/world2/tr.po @@ -6,13 +6,13 @@ # Alkım Kaçmaz , 2013 # IAN RODRÍGUEZ Lorenzo, 2022 # mahmut özcan , 2020 -# yakup , 2013 +# 9d4282795e87ad099e39d98812f1a822_ade2f01 , 2013 # Yusuf Özsoy , 2013 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:00+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Turkish (http://app.transifex.com/arctic-games/supertux/language/tr/)\n" @@ -40,8 +40,8 @@ msgstr "Antik Kalıntılar" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Sen gizli bir bölge buldun!" @@ -93,7 +93,7 @@ msgstr "Ghosttree'nin Zorlukları" msgid "Ghouls' Lair" msgstr "Hortlakların İni" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -107,13 +107,13 @@ msgstr "Yeraltına Gidiş" msgid "I Spy With My Little Eye" msgstr "Kısık Gözlerimle Gözetliyorum" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Ben casusluk\n#Casusluk, Tux görüş açılarına geldiğinde platformlar gibi şeyleri etkinleştirir." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "İpucu: Blokları kırmak için salyangoz kullanın!" @@ -125,7 +125,7 @@ msgstr "Rüzgardaki bir yaprak gibi" msgid "Lost Village" msgstr "Kayıp Köy" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Anahtara basmayı unutmayın!" @@ -165,10 +165,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Toprak Çiçeği\n!images/powerups/earthflower/earth_flower-1.png\n#Toprak çiçeği, Tux'a EYLEM Tuşu ile AŞAĞI Tuşuna aynı anda basarak taşa dönüşme yeteneği verir.\n#Bu, zıplarken veya düşerken çalışmaz!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Kule Ara Sahnesi" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Hayaletler Kulesi" @@ -189,7 +185,7 @@ msgstr "-Taşınabilir Nesneler:\n!images/objects/rock/rock.png\n#Tux belirli ne msgid "Tux' Own Horror Show" msgstr "Tux'un Kendi Korku Şovu" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -218,6 +214,6 @@ msgstr "Odunsu Kökler" msgid "Rooted Forest" msgstr "Köklü Orman" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Devam edecek..." diff --git a/data/levels/world2/tt.po b/data/levels/world2/tt.po index 198b49ff9bc..d77c30b61c6 100644 --- a/data/levels/world2/tt.po +++ b/data/levels/world2/tt.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:00+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Tatar (http://app.transifex.com/arctic-games/supertux/language/tt/)\n" @@ -37,8 +37,8 @@ msgstr "Борынгы хәрабәләр" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Сез яшерен җирне таптыгыз!" @@ -90,7 +90,7 @@ msgstr "Ghosttree проблемалары" msgid "Ghouls' Lair" msgstr "Лаир Гульс" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -104,13 +104,13 @@ msgstr "Җир астына төшү" msgid "I Spy With My Little Eye" msgstr "Мин кечкенә күзем белән шпион" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Испи\n#Испис платформа кебек әйберләрне Tux күз алдында булганда активлаштырачак." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Киңәш: Блокларны сындыру өчен еланнар кулланыгыз!" @@ -122,7 +122,7 @@ msgstr "Галада яфрак кебек" msgid "Lost Village" msgstr "Серле авыл" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Күчергечне сугарга онытма!" @@ -162,10 +162,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "-Беренче чәчәк\n! рәсемнәр / куәтләр / җир чәчәге / җир_ чәчәк-1.png\n# Flowerир чәчәге Тукска бер үк вакытта ACTION ачкычын һәм DOWN ачкычын басып ташка әйләнү мөмкинлеген бирә.\n# Бу сикергәндә яки егылганда эшләми!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Башня Кутцен" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Арбалар манарасы" @@ -186,7 +182,7 @@ msgstr "-Портатив объектлар:\n! рәсемнәр / әйберл msgid "Tux' Own Horror Show" msgstr "Туксның үз куркыныч шоу" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -215,6 +211,6 @@ msgstr "Агач тамырлар" msgid "Rooted Forest" msgstr "Тамырлы урман" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Дәвамы бар..." diff --git a/data/levels/world2/uk.po b/data/levels/world2/uk.po index e0c385260a8..f45f1b4c847 100644 --- a/data/levels/world2/uk.po +++ b/data/levels/world2/uk.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:00+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2022\n" "Language-Team: Ukrainian (http://app.transifex.com/arctic-games/supertux/language/uk/)\n" @@ -38,8 +38,8 @@ msgstr "Античні руїни" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Ви знайшли сховок!" @@ -91,7 +91,7 @@ msgstr "Виклики Ghosttree" msgid "Ghouls' Lair" msgstr "Лігво упирів" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -105,13 +105,13 @@ msgstr "Спускання під землю" msgid "I Spy With My Little Eye" msgstr "Я шпигую своїм маленьким оком" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "Шпигую\n#Шпигую буде активувати такі речі, як платформи, коли Тукс буде в їхньому полі зору." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Підказка: використовуйте равликів, щоб розбивати блоки!" @@ -123,7 +123,7 @@ msgstr "Як листок на вітрі" msgid "Lost Village" msgstr "Загублене село" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Не забудьте натиснути перемикач!" @@ -163,10 +163,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "- Земляна квітка\n!images/powerups/earthflower/earth_flower-1.png\n#Земляна квітка дає Туксу здатність перетворюватися на камінь, натиснувши одночасно клавіші ДІЯ та ВНИЗ.\n#Це не працює під час стрибка чи падіння!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Вежа Катсцена" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Вежа Привидів" @@ -187,7 +183,7 @@ msgstr "-Портативні об'єкти:\n!images/objects/rock/rock.png\n#Tu msgid "Tux' Own Horror Show" msgstr "Власне шоу жахів Тукса" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -216,6 +212,6 @@ msgstr "Дерев'яні корені" msgid "Rooted Forest" msgstr "Вкорінений ліс" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Далі буде..." diff --git a/data/levels/world2/uz.po b/data/levels/world2/uz.po index c4069e1ed85..a518d063542 100644 --- a/data/levels/world2/uz.po +++ b/data/levels/world2/uz.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" "PO-Revision-Date: 2013-08-10 23:00+0000\n" "Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" "Language-Team: Uzbek (http://app.transifex.com/arctic-games/supertux/language/uz/)\n" @@ -36,8 +36,8 @@ msgstr "Qadimgi xarobalar" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" msgstr "Siz yashirin joy topdingiz!" @@ -89,7 +89,7 @@ msgstr "Arvoh daraxtining qiyinchiliklari" msgid "Ghouls' Lair" msgstr "Ghoullar uyi" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." @@ -103,13 +103,13 @@ msgstr "Yer ostiga borish" msgid "I Spy With My Little Eye" msgstr "Kichkina ko'zim bilan josuslik qilaman" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." msgstr "-Ayg'oqchi\n#Ayg'oqchilar har doim Tux ularning ko'z o'ngida bo'lganda platformalar kabi narsalarni faollashtiradi." -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" msgstr "Maslahat: Bloklarni sindirish uchun salyangozlardan foydalaning!" @@ -121,7 +121,7 @@ msgstr "Shamoldagi barg kabi" msgid "Lost Village" msgstr "Yo'qolgan qishloq" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#Kommutatorni bosishni unutmang!" @@ -161,10 +161,6 @@ msgid "" "#This does not work while jumping or falling!" msgstr "- Yer guli\n!images/powerups/earthflower/earth_flower-1.png\n#Yer guli Tuxga ACTION tugmachasini va DOWN tugmachasini bir vaqtda bosib toshga aylanish qobiliyatini beradi.\n#Bu sakrash yoki yiqilishda ishlamaydi!" -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "Minora kesik sahnasi" - #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" msgstr "Arvohlar minorasi" @@ -185,7 +181,7 @@ msgstr "- Portativ ob'ektlar:\n!images/objects/rock/rock.png\n#Tux ba'zi narsala msgid "Tux' Own Horror Show" msgstr "Tuxning o'ziga xos dahshatli shousi" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." @@ -214,6 +210,6 @@ msgstr "Yog'och ildizlar" msgid "Rooted Forest" msgstr "Ildizli o'rmon" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." msgstr "Davomi bor..." diff --git a/data/levels/world2/zh_CN.po b/data/levels/world2/zh_CN.po index 75ce281564a..1145bdaf23c 100644 --- a/data/levels/world2/zh_CN.po +++ b/data/levels/world2/zh_CN.po @@ -3,17 +3,20 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: +# a73a47e368cc011d8f94528bd9d5d3f1_91fccdf <1b07f49e2a323989c85dd26d526f7bb9_871526>, 2020 +# CodingJellyfish , 2018,2020 # Liu Sizhuang , 2008 # a73a47e368cc011d8f94528bd9d5d3f1_91fccdf <1b07f49e2a323989c85dd26d526f7bb9_871526>, 2020 +# Wenbin Lv , 2024 # CodingJellyfish , 2018,2020 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-12 21:21+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Chinese (China) (http://www.transifex.com/arctic-games/supertux/language/zh_CN/)\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: 2013-08-10 23:00+0000\n" +"Last-Translator: Wenbin Lv , 2024\n" +"Language-Team: Chinese (China) (http://app.transifex.com/arctic-games/supertux/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -38,10 +41,10 @@ msgstr "上古遗迹" #: data/levels/world2/penguin_grow_trees.stl:467 #: data/levels/world2/through_dark.stl:361 #: data/levels/world2/tux_builder.stl:384 -#: data/levels/world2/wooden_roots.stl:279 -#: data/levels/world2/worldmap.stwm:186 +#: data/levels/world2/wooden_roots.stl:285 +#: data/levels/world2/worldmap.stwm:191 msgid "You found a secret area!" -msgstr "你找到了一个秘密区域!" +msgstr "你找到了一个秘密区域!" #: data/levels/world2/beside_bushes.stl:3 msgid "Beside the Bushes" @@ -53,19 +56,19 @@ msgstr "弹簧" #: data/levels/world2/bye_bye_forest.stl:3 msgid "Bye Bye Forest" -msgstr "再见丛林" +msgstr "再见,森林" #: data/levels/world2/crumbling_path.stl:3 msgid "Crumbling Path" -msgstr "粉碎的道路" +msgstr "摇摇欲坠的道路" #: data/levels/world2/darkness_awaits.stl:3 msgid "Darkness Awaits" -msgstr "有约不来过夜半" +msgstr "黑暗将临" #: data/levels/world2/find_big_fish.stl:3 msgid "Find the Bigger Fish!" -msgstr "寻找大鱼!" +msgstr "寻找大鱼!" #: data/levels/world2/find_big_fish.stl:1058 msgid "-A big fish... for you." @@ -77,7 +80,7 @@ msgstr "新大陆" #: data/levels/world2/ghost_cutscene.stl:3 msgid "What is Happening?" -msgstr "怪事如云" +msgstr "什么情况?" #: data/levels/world2/ghostly_misery.stl:3 msgid "Ghostly Misery" @@ -85,35 +88,35 @@ msgstr "鬼魂之痛" #: data/levels/world2/ghosttrees_challenges.stl:3 msgid "Ghosttree's Challenges" -msgstr "大战鬼树" +msgstr "鬼魂之树的挑战" #: data/levels/world2/ghouls_lair.stl:3 msgid "Ghouls' Lair" -msgstr "鬼巢" +msgstr "食尸鬼的巢穴" -#: data/levels/world2/ghouls_lair.stl:849 +#: data/levels/world2/ghouls_lair.stl:859 msgid "" "#Lanterns are used to make magic blocks solid, so you're able to walk atop " "of them." -msgstr "" +msgstr "#灯笼可以让魔法方块变成固体,这样你就可以在它们上面行走。" #: data/levels/world2/going_underground.stl:3 msgid "Going Underground" -msgstr "到地下去" +msgstr "钻入地底" #: data/levels/world2/i_spy_with_my_little_eye.stl:3 msgid "I Spy With My Little Eye" -msgstr "红眼机关" +msgstr "窥探眼的小眼会窥探" -#: data/levels/world2/i_spy_with_my_little_eye.stl:221 +#: data/levels/world2/i_spy_with_my_little_eye.stl:218 msgid "" "-Ispy\n" "#Ispys will activate things like platforms whenever Tux is in their sight." -msgstr "" +msgstr "-窥探眼\n#只要 Tux 出现在窥探眼的视线中,它就会激活平台之类的东西。" -#: data/levels/world2/i_spy_with_my_little_eye.stl:595 +#: data/levels/world2/i_spy_with_my_little_eye.stl:674 msgid "Hint: Use snails to break blocks!" -msgstr "" +msgstr "提示:用蜗牛来打碎方块!" #: data/levels/world2/leaf_wind.stl:3 msgid "Like a leaf in the Wind" @@ -121,9 +124,9 @@ msgstr "孤蓬万里征" #: data/levels/world2/lost_village.stl:3 msgid "Lost Village" -msgstr "遗忘村庄" +msgstr "迷失的村庄" -#: data/levels/world2/lost_village.stl:187 +#: data/levels/world2/lost_village.stl:185 msgid "#Don't forget to hit the switch!" msgstr "#不要忘了打开开关!" @@ -133,11 +136,11 @@ msgstr "发霉的洞穴" #: data/levels/world2/owls_again.stl:3 msgid "The Owls again..." -msgstr "又来!猫头鹰风波" +msgstr "又是猫头鹰……" #: data/levels/world2/owls_skydive_commando.stl:3 msgid "Owls' Skydive Commando" -msgstr "猫头鹰的空降部队" +msgstr "猫头鹰的炸弹突击队" #: data/levels/world2/penguin_grow_trees.stl:3 msgid "Penguins don't grow on Trees" @@ -145,15 +148,15 @@ msgstr "企鹅不长在树上" #: data/levels/world2/shocking.stl:3 msgid "Shocking" -msgstr "震动" +msgstr "触目惊心" #: data/levels/world2/the_forest_is_rotting.stl:3 msgid "The Forest Is Rotting" -msgstr "森林在腐烂" +msgstr "腐坏的森林" #: data/levels/world2/through_dark.stl:3 msgid "Through the Dark" -msgstr "暗夜之行" +msgstr "穿越黑暗" #: data/levels/world2/through_dark.stl:96 msgid "" @@ -161,15 +164,11 @@ msgid "" "!images/powerups/earthflower/earth_flower-1.png\n" "#The earth flower gives Tux the ability to turn into stone by pressing the ACTION Key and the DOWN Key at the same time.\n" "#This does not work while jumping or falling!" -msgstr "- 土地花\n!images/powerups/earthflower/earth_flower-1.png\n#摘下这土地花后,同时按下动作键和向下方向键即可让 Tux 潜入土中。\n#在跳跃或摔落时无用!" - -#: data/levels/world2/tower_cutscene.stl:3 -msgid "Tower Cutscene" -msgstr "高塔过场动画" +msgstr "- 土地花\n!images/powerups/earthflower/earth_flower-1.png\n#摘下这土地花后,同时按下“动作”键和“下”键即可让 Tux 变成石头。\n#在跳跃或坠落时无法使用!" #: data/levels/world2/tower_of_ghosts.stl:3 msgid "Tower Of Ghosts" -msgstr "鬼魂宝塔" +msgstr "鬼魂之塔" #: data/levels/world2/tux_builder.stl:3 msgid "Tux the Builder" @@ -181,17 +180,17 @@ msgid "" "!images/objects/rock/rock.png\n" "#Tux can pick up certain objects and carry them around.\n" "#Press the ACTION key to grab an object and hold it pressed as long as you want to carry the object. Release the ACTION key to drop the object." -msgstr "" +msgstr "-可携带的物品:\n!images/objects/rock/rock.png\n#Tux 可以捡起某些物品并随身携带。\n#按下“动作”键抓起一个物品,按住它就可以一直携带该物品。松开“动作”键就可以放下物品。" #: data/levels/world2/tux_own_horror_show.stl:3 msgid "Tux' Own Horror Show" msgstr "疑神疑鬼" -#: data/levels/world2/tux_own_horror_show.stl:790 +#: data/levels/world2/tux_own_horror_show.stl:947 msgid "" "#Will o' Wisps are small, annoying ghosts, which transport you to different," " often dangerous places." -msgstr "" +msgstr "#鬼火是小而烦人的鬼魂,它们会把你传送到别的地方,通常会很危险。" #: data/levels/world2/walking_leaves.stl:3 msgid "Walking Leaves" @@ -206,7 +205,7 @@ msgid "" "-Doors\n" "!images/objects/door/door-0.png\n" "#Tux can go through a door by pressing the UP key." -msgstr "" +msgstr "-门\n!images/objects/door/door-0.png\n#按“上”键可以让 Tux 穿过门。" #: data/levels/world2/wooden_roots.stl:3 msgid "Wooden Roots" @@ -214,8 +213,8 @@ msgstr "树根" #: data/levels/world2/worldmap.stwm:3 msgid "Rooted Forest" -msgstr "" +msgstr "被扎根的森林" -#: data/levels/world2/worldmap.stwm:200 +#: data/levels/world2/worldmap.stwm:205 msgid "To be continued..." -msgstr "续" +msgstr "未完待续……" diff --git a/data/levels/world3/messages.pot b/data/levels/world3/messages.pot new file mode 100644 index 00000000000..68656f99d62 --- /dev/null +++ b/data/levels/world3/messages.pot @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the SuperTux package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: SuperTux v0.6.3-1080-g2e08c1b7f\n" +"Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/levels/world3/worldmap.stwm:3 +msgid "Tropical Paradise" +msgstr "" diff --git a/data/levels/world4/messages.pot b/data/levels/world4/messages.pot new file mode 100644 index 00000000000..424ccc5fa4c --- /dev/null +++ b/data/levels/world4/messages.pot @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the SuperTux package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: SuperTux v0.6.3-1080-g2e08c1b7f\n" +"Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" +"POT-Creation-Date: 2024-03-03 03:26+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/levels/world4/worldmap.stwm:3 +msgid "Mountain Peak" +msgstr "" diff --git a/data/locale/af_ZA.po b/data/locale/af_ZA.po index c52780c642d..0cc1e9fc726 100644 --- a/data/locale/af_ZA.po +++ b/data/locale/af_ZA.po @@ -1167,8 +1167,8 @@ msgstr "Onbekende voorwerp" #: src/supertux/command_line_arguments.cpp:74 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Gebrek: %s [OPSIES] [LEVEL-LEER]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Gebrek: {} [OPSIES] [LEVEL-LEER]" #: src/supertux/command_line_arguments.cpp:75 msgid "General Options:" @@ -1791,13 +1791,13 @@ msgstr "Verander grootte" #: src/supertux/menu/profile_menu.cpp:37 #, c-format -msgid "[Profile %s]" -msgstr "[Profiel %s]" +msgid "[Profile {}]" +msgstr "[Profiel {}]" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "Profile %s" -msgstr "Profiel %s" +msgid "Profile {}" +msgstr "Profiel {}" #: src/supertux/menu/editor_levelset_menu.cpp:59 #: src/supertux/menu/editor_new_levelset_menu.cpp:35 @@ -1825,8 +1825,8 @@ msgstr "Onbekende" #: src/supertux/menu/addon_menu.cpp:68 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" deur \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" deur \"{}\"" #: src/supertux/menu/addon_menu.cpp:126 msgid "No Add-ons installed" @@ -1838,13 +1838,13 @@ msgstr "Geen Add-ons gekry nie" #: src/supertux/menu/addon_menu.cpp:176 #, c-format -msgid "Install %s *NEW*" -msgstr "Installeer %s *NUUT*" +msgid "Install {} *NEW*" +msgstr "Installeer {} *NUUT*" #: src/supertux/menu/addon_menu.cpp:187 #, c-format -msgid "Install %s" -msgstr "Installeer %s" +msgid "Install {}" +msgstr "Installeer {}" #: src/supertux/menu/addon_menu.cpp:196 msgid "No new Add-ons found" @@ -1864,8 +1864,8 @@ msgstr "Laai Tans Add-Ons Repositorie Indeks af" #: src/supertux/menu/addon_menu.cpp:298 #, c-format -msgid "Downloading %s" -msgstr "Laai Tans af %s" +msgid "Downloading {}" +msgstr "Laai Tans af {}" #: src/supertux/menu/addon_menu.cpp:345 msgid "" @@ -2281,8 +2281,8 @@ msgstr "" #: src/supertux/levelintro.cpp:135 #, c-format -msgid "contributed by %s" -msgstr "bygedra deur %s" +msgid "contributed by {}" +msgstr "bygedra deur {}" #: src/supertux/levelintro.cpp:167 msgid "Badguys killed" diff --git a/data/locale/ar.po b/data/locale/ar.po index 5dbbec4e061..2405d6e1e6b 100644 --- a/data/locale/ar.po +++ b/data/locale/ar.po @@ -1768,8 +1768,8 @@ msgstr "اضغط على مفتاح Escape للتخطي" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "الاستخدام: %s [OPTIONS] [LEVELFILE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "الاستخدام: {} [OPTIONS] [LEVELFILE]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2496,13 +2496,13 @@ msgstr "تغيير الحجم" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[حساب تعريفي %s]" +msgid "[Profile {}]" +msgstr "[حساب تعريفي {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "حساب تعريفي %s" +msgid "Profile {}" +msgstr "حساب تعريفي {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2550,8 +2550,8 @@ msgstr "غير معروف" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" بواسطة \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" بواسطة \"{}\"" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2563,13 +2563,13 @@ msgstr "لا توجد إضافات" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "تثبيت %s * جديد *" +msgid "Install {} *NEW*" +msgstr "تثبيت {} * جديد *" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "تثبيت %s" +msgid "Install {}" +msgstr "تثبيت {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2589,8 +2589,8 @@ msgstr "تحميل فهرس مستودع الإضافات" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "جارى التحميل %s" +msgid "Downloading {}" +msgstr "جارى التحميل {}" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3103,8 +3103,8 @@ msgstr "لا يمكنك حذف المستوى الذي تقوم بتحريره!" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "أسهم بواسطة %s" +msgid "contributed by {}" +msgstr "أسهم بواسطة {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/az.po b/data/locale/az.po index 05308a9460f..01bd2351b77 100644 --- a/data/locale/az.po +++ b/data/locale/az.po @@ -1766,8 +1766,8 @@ msgstr "Keçmək üçün escape düyməsini basın" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "İstifadə: %s [OPTIONS] [LEVELFILE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "İstifadə: {} [OPTIONS] [LEVELFILE]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2490,13 +2490,13 @@ msgstr "Ölçü dəyişdirin" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[Profil %s]" +msgid "[Profile {}]" +msgstr "[Profil {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "Profil %s" +msgid "Profile {}" +msgstr "Profil {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2544,8 +2544,8 @@ msgstr "Naməlum" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" \"%s\" tərəfindən" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" \"{}\" tərəfindən" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2557,13 +2557,13 @@ msgstr "Əlavələr tapılmadı" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "*YENİ* Quraşdırın %s" +msgid "Install {} *NEW*" +msgstr "*YENİ* Quraşdırın {}" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Yüklemek %s" +msgid "Install {}" +msgstr "Yüklemek {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2583,8 +2583,8 @@ msgstr "Add-On repozitor indeksi endirilir" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "Endirilir %s" +msgid "Downloading {}" +msgstr "Endirilir {}" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3097,8 +3097,8 @@ msgstr "Redaktə etdiyiniz səviyyəni silə bilməzsiniz!" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "%s tərəfindən iştirak bulunuldu" +msgid "contributed by {}" +msgstr "{} tərəfindən iştirak bulunuldu" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/be.po b/data/locale/be.po index 290d9589b73..eb3dd516624 100644 --- a/data/locale/be.po +++ b/data/locale/be.po @@ -1060,8 +1060,8 @@ msgstr "" #: src/supertux/command_line_arguments.cpp:79 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Выкарыстанне: %s [ПАРАМЕТРЫ] [ФАЙЛ УЗРОЎНЯ]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Выкарыстанне: {} [ПАРАМЕТРЫ] [ФАЙЛ УЗРОЎНЯ]" #: src/supertux/command_line_arguments.cpp:80 msgid "General Options:" @@ -1242,8 +1242,8 @@ msgstr "" #: src/supertux/levelintro.cpp:120 #, c-format -msgid "contributed by %s" -msgstr "зрабілі ўнёсак: %s" +msgid "contributed by {}" +msgstr "зрабілі ўнёсак: {}" #: src/supertux/levelintro.cpp:141 src/supertux/statistics.cpp:119 msgid "Best Level Statistics" @@ -1283,8 +1283,8 @@ msgstr "Свет" #: src/supertux/menu/addon_menu.cpp:83 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" ад \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" ад \"{}\"" #: src/supertux/menu/addon_menu.cpp:139 msgid "Language packs" @@ -1320,13 +1320,13 @@ msgstr "Дадаткаў не знойдзена" #: src/supertux/menu/addon_menu.cpp:224 #, c-format -msgid "Install %s *NEW*" -msgstr "Усталяваць %s *НАВІНКА*" +msgid "Install {} *NEW*" +msgstr "Усталяваць {} *НАВІНКА*" #: src/supertux/menu/addon_menu.cpp:235 #, c-format -msgid "Install %s" -msgstr "Усталяваць %s" +msgid "Install {}" +msgstr "Усталяваць {}" #: src/supertux/menu/addon_menu.cpp:246 msgid "No new Language packs found" @@ -1365,8 +1365,8 @@ msgstr "Сцягванне індэксу рэпазітара дадаткаў" #: src/supertux/menu/addon_menu.cpp:361 #, c-format -msgid "Downloading %s" -msgstr "Сцягванне %s" +msgid "Downloading {}" +msgstr "Сцягванне {}" #: src/supertux/menu/addon_menu.cpp:408 msgid "" @@ -2027,13 +2027,13 @@ msgstr "Рэжым Раства" #: src/supertux/menu/profile_menu.cpp:37 #, c-format -msgid "[Profile %s]" -msgstr "[Профіль %s]" +msgid "[Profile {}]" +msgstr "[Профіль {}]" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "Profile %s" -msgstr "Профіль %s" +msgid "Profile {}" +msgstr "Профіль {}" #: src/supertux/menu/world_set_menu.cpp:41 msgid "Story Mode" diff --git a/data/locale/bg.po b/data/locale/bg.po index 62855d783fd..d24358bcf01 100644 --- a/data/locale/bg.po +++ b/data/locale/bg.po @@ -7,14 +7,14 @@ # Любомир Василев, 2015-2016 # Tony Ivanov , 2014 # Любомир Василев, 2016,2018-2020 -# Любомир Василев, 2021 +# Любомир Василев, 2021,2024 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-05-30 16:19+0200\n" "PO-Revision-Date: 2013-08-10 22:56+0000\n" -"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" +"Last-Translator: Любомир Василев, 2021,2024\n" "Language-Team: Bulgarian (http://app.transifex.com/arctic-games/supertux/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,124 +22,166 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/trigger/secretarea_trigger.cpp:53 src/trigger/secretarea_trigger.cpp:61 +#: src/trigger/secretarea_trigger.cpp:47 msgid "You found a secret area!" msgstr "Ти откри тайно място!" -#: src/trigger/secretarea_trigger.cpp:77 src/supertux/game_object.cpp:90 -#: src/supertux/menu/editor_sector_menu.cpp:34 -#: src/supertux/menu/editor_levelset_menu.cpp:58 +#: src/trigger/secretarea_trigger.cpp:55 src/supertux/game_object.cpp:115 +#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_levelset_menu.cpp:52 #: src/supertux/menu/editor_new_levelset_menu.cpp:34 +#: src/supertux/menu/profile_name_menu.cpp:39 #: src/supertux/menu/editor_level_menu.cpp:33 msgid "Name" msgstr "Име" -#: src/trigger/secretarea_trigger.cpp:78 +#: src/trigger/secretarea_trigger.cpp:56 msgid "Fade tilemap" msgstr "Избледняваща плочна карта" -#: src/trigger/secretarea_trigger.cpp:79 src/trigger/climbable.cpp:81 -#: src/object/infoblock.cpp:57 src/editor/worldmap_objects.cpp:172 -#: src/editor/worldmap_objects.cpp:270 +#: src/trigger/secretarea_trigger.cpp:57 src/trigger/climbable.cpp:59 +#: src/object/infoblock.cpp:76 src/worldmap/teleporter.cpp:49 +#: src/worldmap/special_tile.cpp:74 msgid "Message" msgstr "Съобщение" -#: src/trigger/secretarea_trigger.cpp:80 src/trigger/scripttrigger.cpp:75 -#: src/trigger/door.cpp:73 src/object/ispy.cpp:67 -#: src/object/bonus_block.cpp:207 src/object/bonus_block.cpp:211 -#: src/object/pushbutton.cpp:51 src/object/powerup.cpp:190 -#: src/editor/worldmap_objects.cpp:272 +#: src/trigger/secretarea_trigger.cpp:58 src/trigger/scripttrigger.cpp:51 +#: src/trigger/door.cpp:79 src/object/ispy.cpp:53 +#: src/object/bonus_block.cpp:264 src/object/bonus_block.cpp:268 +#: src/object/pushbutton.cpp:62 src/object/powerup.cpp:301 +#: src/worldmap/special_tile.cpp:76 msgid "Script" msgstr "Скрипт" -#: src/trigger/scripttrigger.cpp:76 src/object/pushbutton.hpp:31 +#: src/trigger/scripttrigger.cpp:52 src/object/pushbutton.hpp:32 msgid "Button" msgstr "Бутон" -#: src/trigger/scripttrigger.cpp:77 +#: src/trigger/scripttrigger.cpp:53 msgid "Oneshot" msgstr "Еднократно" -#: src/trigger/sequence_trigger.hpp:33 +#: src/trigger/sequence_trigger.hpp:31 msgid "Sequence Trigger" msgstr "Изпълнение на последователност" -#: src/trigger/door.cpp:74 src/badguy/willowisp.cpp:320 -#: src/supertux/menu/editor_sector_menu.cpp:32 -#: src/editor/layers_widget.cpp:342 -#: data//images/engine/editor/objects.stoi:321 +#: src/trigger/text_area.cpp:141 +msgid "Once" +msgstr "Веднъж" + +#: src/trigger/text_area.cpp:142 +msgid "Text change time" +msgstr "Време за промяна на текста" + +#: src/trigger/text_area.cpp:143 +msgid "Fade time" +msgstr "Време за избледняване" + +#: src/trigger/text_area.cpp:144 src/object/textscroller.cpp:353 +msgid "Anchor" +msgstr "Котва" + +#: src/trigger/text_area.cpp:148 +msgid "Anchor offset X" +msgstr "Отместване за котвата по X" + +#: src/trigger/text_area.cpp:149 +msgid "Anchor offset Y" +msgstr "Отместване за котвата по Y" + +#: src/trigger/text_area.cpp:150 +msgid "Texts" +msgstr "Текстове" + +#: src/trigger/door.cpp:80 src/badguy/willowisp.cpp:311 +#: src/worldmap/teleporter.cpp:47 data//images/engine/editor/objects.stoi:342 msgid "Sector" msgstr "Сектор" -#: src/trigger/door.cpp:75 src/editor/worldmap_objects.hpp:101 +#: src/trigger/door.cpp:81 src/worldmap/spawn_point.hpp:58 msgid "Spawn point" msgstr "Точка на раждане" -#: src/trigger/switch.cpp:61 src/object/block.cpp:224 src/object/torch.cpp:102 -#: src/object/moving_sprite.cpp:156 src/object/pneumatic_platform.cpp:146 -msgid "Sprite" -msgstr "Изображение" +#: src/trigger/door.cpp:82 +msgid "Locked?" +msgstr "Заключена?" + +#: src/trigger/door.cpp:83 +msgid "Lock Color" +msgstr "Цвят на ключалката" + +#: src/trigger/switch.cpp:62 src/object/ispy.cpp:54 src/object/bumper.cpp:53 +#: src/object/spotlight.cpp:106 src/object/pushbutton.cpp:61 +#: src/object/gradient.cpp:103 src/object/conveyor_belt.cpp:60 +#: src/badguy/badguy.cpp:1063 src/worldmap/spawn_point.cpp:79 +#: src/worldmap/special_tile.cpp:78 +msgid "Direction" +msgstr "Посока" -#: src/trigger/switch.cpp:62 +#: src/trigger/switch.cpp:65 msgid "Turn on script" msgstr "Скрипт при включване" -#: src/trigger/switch.cpp:63 +#: src/trigger/switch.cpp:66 msgid "Turn off script" msgstr "Скрипт при изключване" -#: src/trigger/scripttrigger.hpp:32 +#: src/trigger/scripttrigger.hpp:29 msgid "Script Trigger" msgstr "Изпълнение на скрипт" -#: src/trigger/sequence_trigger.cpp:75 +#: src/trigger/sequence_trigger.cpp:48 msgid "Sequence" msgstr "Последователност" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "end sequence" msgstr "край на последователността" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "stop Tux" msgstr "спиране на Тъкс" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "fireworks" msgstr "фойерверки" -#: src/trigger/sequence_trigger.cpp:80 +#: src/trigger/sequence_trigger.cpp:53 msgid "New worldmap spawnpoint" msgstr "Нова точка за прераждане на световната карта" -#: src/trigger/sequence_trigger.cpp:81 +#: src/trigger/sequence_trigger.cpp:54 msgid "Worldmap fade tilemap" msgstr "Избледняваща плочна карта за световната карта" -#: src/trigger/sequence_trigger.cpp:82 +#: src/trigger/sequence_trigger.cpp:55 #: src/object/custom_particle_system.cpp:430 #: src/object/custom_particle_system.cpp:465 msgid "Fade" msgstr "Преливане" -#: src/trigger/sequence_trigger.cpp:83 src/editor/particle_editor.cpp:161 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:161 msgid "Fade in" msgstr "Избледняване" -#: src/trigger/sequence_trigger.cpp:83 src/editor/particle_editor.cpp:167 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:167 #: src/editor/particle_editor.cpp:212 msgid "Fade out" msgstr "Появяване" -#: src/trigger/climbable.hpp:37 +#: src/trigger/climbable.hpp:46 msgid "Climbable" msgstr "Катеруемо" -#: src/trigger/door.hpp:34 +#: src/trigger/text_area.hpp:47 +msgid "Text Area" +msgstr "Текстова област" + +#: src/trigger/door.hpp:31 msgid "Door" msgstr "Врата" -#: src/trigger/switch.hpp:33 +#: src/trigger/switch.hpp:30 msgid "Switch" msgstr "Ключ" @@ -147,118 +189,194 @@ msgstr "Ключ" msgid "Secret Area" msgstr "Тайно място" -#: src/object/thunderstorm.hpp:40 +#: src/math/anchor_point.cpp:33 +msgid "Top Left" +msgstr "Горе вляво" + +#: src/math/anchor_point.cpp:34 +msgid "Top" +msgstr "Горе" + +#: src/math/anchor_point.cpp:35 +msgid "Top Right" +msgstr "Горе вдясно" + +#: src/math/anchor_point.cpp:36 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:38 +#: src/supertux/menu/joystick_menu.cpp:73 +msgid "Left" +msgstr "Наляво" + +#: src/math/anchor_point.cpp:37 +msgid "Middle" +msgstr "Център" + +#: src/math/anchor_point.cpp:38 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:39 +#: src/supertux/menu/joystick_menu.cpp:74 +msgid "Right" +msgstr "Надясно" + +#: src/math/anchor_point.cpp:39 +msgid "Bottom Left" +msgstr "Долу вляво" + +#: src/math/anchor_point.cpp:40 +msgid "Bottom" +msgstr "Долу" + +#: src/math/anchor_point.cpp:41 +msgid "Bottom Right" +msgstr "Долу вдясно" + +#: src/object/thunderstorm.hpp:44 msgid "Thunderstorm" msgstr "Гръмотевична буря" -#: src/object/cloud_particle_system.cpp:79 +#: src/object/cloud_particle_system.cpp:77 #: src/object/rain_particle_system.cpp:100 msgid "Intensity" msgstr "Сила" -#: src/object/custom_particle_system.hpp:45 +#: src/object/custom_particle_system.hpp:46 msgid "Custom Particles" msgstr "Персонализирани частици" -#: src/object/ispy.cpp:66 -msgid "Facing Down" -msgstr "Поглед надолу" - -#: src/object/ispy.cpp:68 src/object/spotlight.cpp:103 -#: src/object/gradient.cpp:137 src/badguy/willowisp.cpp:319 -#: src/badguy/badguy.cpp:848 src/editor/worldmap_objects.cpp:207 -#: src/editor/worldmap_objects.cpp:274 -msgid "Direction" -msgstr "Посока" - -#: src/object/particle_zone.hpp:39 +#: src/object/particle_zone.hpp:41 msgid "Particle zone" msgstr "Зона с частици" -#: src/object/path_gameobject.hpp:44 src/object/coin.cpp:301 -#: src/object/camera.cpp:224 src/object/platform.cpp:73 -#: src/object/path_gameobject.cpp:173 src/object/tilemap.cpp:246 -#: src/gui/menu_paths.cpp:52 src/badguy/willowisp.cpp:326 +#: src/object/path_gameobject.hpp:45 src/object/coin.cpp:324 +#: src/object/camera.cpp:168 src/object/platform.cpp:76 +#: src/object/path_gameobject.cpp:175 src/object/tilemap.cpp:284 +#: src/badguy/willowisp.cpp:317 msgid "Path" msgstr "Път" -#: src/object/decal.cpp:49 src/object/scripted_object.cpp:67 -#: src/object/particlesystem.cpp:65 src/object/background.cpp:183 -#: src/object/thunderstorm.cpp:68 src/object/tilemap.cpp:239 -#: src/object/gradient.cpp:135 -msgid "Z-pos" -msgstr "Позиция по Z" - -#: src/object/decal.cpp:50 src/object/scripted_object.cpp:70 -#: src/object/tilemap.cpp:228 +#: src/object/decal.cpp:48 src/object/scripted_object.cpp:70 +#: src/object/tilemap.cpp:266 msgid "Solid" msgstr "Плътен обект" -#: src/object/decal.cpp:51 src/supertux/menu/keyboard_menu.cpp:37 -#: src/supertux/menu/joystick_menu.cpp:74 +#: src/object/decal.cpp:49 src/supertux/menu/keyboard_menu.cpp:41 +#: src/supertux/menu/joystick_menu.cpp:76 msgid "Action" msgstr "Действие" -#: src/object/weak_block.hpp:35 +#: src/object/weak_block.hpp:36 msgid "Weak Tile" msgstr "Слабо блокче" -#: src/object/bumper.cpp:46 -msgid "Facing Left" -msgstr "Обърнато наляво" - -#: src/object/gradient.hpp:42 +#: src/object/gradient.hpp:43 msgid "Gradient" msgstr "Преливка" -#: src/object/tilemap.hpp:57 +#: src/object/tilemap.hpp:58 msgid "Tilemap" msgstr "Плочна карта" -#: src/object/circleplatform.hpp:32 +#: src/object/sound_object.cpp:69 src/object/ambient_sound.cpp:85 +#: src/object/sound_object.hpp:42 src/supertux/menu/options_menu.cpp:128 +#: data//credits.stxt:367 +msgid "Sound" +msgstr "Звук" + +#: src/object/sound_object.cpp:70 src/object/ambient_sound.cpp:87 +msgid "Volume" +msgstr "Сила на звука" + +#: src/object/conveyor_belt.hpp:39 +msgid "Conveyor Belt" +msgstr "Конвейерна лента" + +#: src/object/unstable_tile.cpp:70 src/object/weak_block.cpp:97 +#: src/badguy/flame.cpp:86 +msgid "Ice" +msgstr "Лед" + +#: src/object/unstable_tile.cpp:71 src/object/brick.hpp:34 +msgid "Brick" +msgstr "Тухла" + +#: src/object/unstable_tile.cpp:72 +msgid "Delayed" +msgstr "Забавено" + +#: src/object/circleplatform.hpp:35 msgid "Circular Platform" msgstr "Кръгла платформа" -#: src/object/brick.cpp:133 +#: src/object/brick.cpp:59 src/object/coin.cpp:69 +#: src/object/invisible_block.cpp:37 src/object/background.cpp:200 +#: src/object/tilemap.cpp:279 src/object/gradient.cpp:109 +#: src/badguy/viciousivy.cpp:44 src/badguy/snail.cpp:69 +#: src/badguy/smartball.cpp:34 src/badguy/bouncing_snowball.cpp:81 +#: src/badguy/kamikazesnowball.cpp:117 src/badguy/walkingleaf.cpp:35 +#: src/badguy/mrbomb.cpp:47 src/badguy/igel.cpp:188 src/badguy/snowball.cpp:40 +#: src/badguy/mrtree.cpp:50 src/badguy/mriceblock.cpp:62 +msgid "Normal" +msgstr "Нормално" + +#: src/object/brick.cpp:60 src/object/bonus_block.cpp:175 +#: src/object/coin.cpp:70 src/object/invisible_block.cpp:38 +msgid "Retro" +msgstr "Ретро" + +#: src/object/brick.cpp:166 msgid "Breakable" msgstr "Може да се чупи" -#: src/object/trampoline.cpp:136 src/object/rusty_trampoline.cpp:66 +#: src/object/trampoline.cpp:66 src/object/rusty_trampoline.cpp:66 msgid "Portable" msgstr "Подвижен" -#: src/object/spotlight.cpp:100 src/object/rain_particle_system.cpp:101 +#: src/object/trampoline.cpp:67 +msgid "Stationary" +msgstr "Неподвижен" + +#: src/object/key.hpp:38 +msgid "Key" +msgstr "Ключ" + +#: src/object/spotlight.cpp:102 src/object/particlesystem.cpp:64 +#: src/object/particle_zone.cpp:50 src/badguy/darttrap.cpp:149 +#: src/supertux/menu/addon_preview_menu.cpp:189 +msgid "Enabled" +msgstr "Включено" + +#: src/object/spotlight.cpp:103 src/object/rain_particle_system.cpp:101 msgid "Angle" msgstr "Ъгъл" -#: src/object/spotlight.cpp:101 src/object/magicblock.cpp:94 -#: src/object/candle.cpp:77 src/object/torch.cpp:104 -#: src/object/rublight.cpp:54 src/object/lantern.cpp:62 -#: src/object/ambient_light.cpp:131 src/badguy/willowisp.cpp:328 -#: src/badguy/walking_candle.cpp:82 +#: src/object/spotlight.cpp:104 src/object/magicblock.cpp:95 +#: src/object/candle.cpp:75 src/object/torch.cpp:96 src/object/rublight.cpp:55 +#: src/object/lantern.cpp:62 src/object/ambient_light.cpp:122 +#: src/object/key.cpp:192 src/badguy/willowisp.cpp:319 +#: src/badguy/walking_candle.cpp:91 msgid "Color" msgstr "Цвят" -#: src/object/spotlight.cpp:102 src/object/textscroller.cpp:350 -#: src/object/rain_particle_system.cpp:102 src/object/circleplatform.cpp:55 -#: src/badguy/flame.cpp:59 src/editor/node_marker.cpp:125 +#: src/object/spotlight.cpp:105 src/object/textscroller.cpp:350 +#: src/object/rain_particle_system.cpp:102 src/object/conveyor_belt.cpp:61 +#: src/object/circleplatform.cpp:58 src/badguy/flame.cpp:110 +#: src/editor/node_marker.cpp:125 msgid "Speed" msgstr "Скорост" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Clockwise" msgstr "По часовниковата стрелка" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Counter-clockwise" msgstr "Обратно на часовниковата стрелка" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Stopped" msgstr "Спряно" -#: src/object/spotlight.cpp:107 src/object/candle.cpp:78 -#: src/object/torch.cpp:103 +#: src/object/spotlight.cpp:110 src/object/lit_object.cpp:69 +#: src/object/candle.cpp:76 src/object/torch.cpp:95 msgid "Layer" msgstr "Слой" @@ -270,125 +388,171 @@ msgstr "Включена физика" msgid "Visible" msgstr "Видим" -#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:322 +#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:313 msgid "Hit script" msgstr "Скрипт за удряне" -#: src/object/custom_particle_system_file.cpp:50 +#: src/object/custom_particle_system_file.cpp:53 #: src/object/textscroller.cpp:348 src/object/music_object.cpp:109 #: src/supertux/menu/particle_editor_open.cpp:38 msgid "File" msgstr "Файл" -#: src/object/bonus_block.cpp:208 +#: src/object/bonus_block.cpp:154 +msgid "Only one custom object is allowed inside bonus blocks." +msgstr "В блокчетата с бонус може да се съдържа само по един персонализиран обект" + +#: src/object/bonus_block.cpp:172 +msgid "Blue" +msgstr "Синьо" + +#: src/object/bonus_block.cpp:173 +msgid "Orange" +msgstr "Оранжево" + +#: src/object/bonus_block.cpp:174 +msgid "Purple" +msgstr "Лилаво" + +#: src/object/bonus_block.cpp:265 src/supertux/menu/cheat_apply_menu.cpp:54 msgid "Count" msgstr "Брой удари" -#: src/object/bonus_block.cpp:209 +#: src/object/bonus_block.cpp:266 msgid "Content" msgstr "Съдържание" -#: src/object/bonus_block.cpp:210 src/object/coin.hpp:43 +#: src/object/bonus_block.cpp:267 src/object/coin.hpp:44 msgid "Coin" msgstr "Монета" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (fire flower)" msgstr "Растеж (огнено цвете)" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (ice flower)" msgstr "Растеж (ледено цвете)" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (air flower)" msgstr "Растеж (въздушно цвете)" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Growth (earth flower)" msgstr "Растеж (земно цвете)" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 +msgid "Growth (retro)" +msgstr "Растеж (ретро)" + +#: src/object/bonus_block.cpp:268 src/object/powerup.cpp:66 msgid "Star" msgstr "Звезда" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 +msgid "Star (retro)" +msgstr "Звезда (ретро)" + +#: src/object/bonus_block.cpp:268 msgid "Tux doll" msgstr "Кукла Тъкс" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Custom" msgstr "Персонализирано" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Light" msgstr "Светлина" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Light (On)" msgstr "Светлина (ВКЛ)" -#: src/object/bonus_block.cpp:212 src/object/trampoline.hpp:35 +#: src/object/bonus_block.cpp:269 src/object/trampoline.hpp:37 msgid "Trampoline" msgstr "Трамплин" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 +msgid "Portable trampoline" +msgstr "Подвижен трамплин" + +#: src/object/bonus_block.cpp:269 msgid "Coin rain" msgstr "Дъжд от монети" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 msgid "Coin explosion" msgstr "Експлозия от монети" -#: src/object/bonus_block.cpp:216 +#: src/object/bonus_block.cpp:269 src/object/rock.hpp:43 +msgid "Rock" +msgstr "Камък" + +#: src/object/bonus_block.cpp:269 +msgid "Potion" +msgstr "Отвара" + +#: src/object/bonus_block.cpp:275 msgid "Custom Content" msgstr "Персонализирано съдържание" -#: src/object/pneumatic_platform.hpp:62 +#: src/object/bonus_block.cpp:278 +msgid "Coin sprite" +msgstr "Изображение на монета" + +#: src/object/pneumatic_platform.hpp:65 msgid "Pneumatic Platform" msgstr "Пневматична платформа" -#: src/object/coin.cpp:303 src/object/tilemap.cpp:249 +#: src/object/coin.cpp:326 src/object/tilemap.cpp:287 msgid "Following path" msgstr "Следва път" -#: src/object/coin.cpp:306 src/object/camera.cpp:227 -#: src/object/platform.cpp:74 src/object/tilemap.cpp:252 +#: src/object/coin.cpp:329 src/object/camera.cpp:171 +#: src/object/platform.cpp:77 src/object/tilemap.cpp:290 msgid "Path Mode" msgstr "Режим на движение" -#: src/object/coin.cpp:307 src/object/camera.cpp:228 -#: src/object/platform.cpp:75 src/object/tilemap.cpp:253 -#: src/badguy/willowisp.cpp:331 +#: src/object/coin.cpp:330 src/object/camera.cpp:172 +#: src/object/platform.cpp:78 src/object/tilemap.cpp:291 +#: src/badguy/willowisp.cpp:322 msgid "Adapt Speed" msgstr "Напасване на скоростта" -#: src/object/coin.cpp:308 src/object/platform.cpp:77 -#: src/object/tilemap.cpp:247 src/badguy/willowisp.cpp:327 +#: src/object/coin.cpp:331 src/object/platform.cpp:81 +#: src/object/tilemap.cpp:285 src/badguy/willowisp.cpp:318 msgid "Starting Node" msgstr "Начален възел" -#: src/object/coin.cpp:311 src/object/coin.cpp:339 +#: src/object/coin.cpp:332 src/object/camera.cpp:173 +#: src/object/platform.cpp:82 src/object/tilemap.cpp:293 +#: src/badguy/willowisp.cpp:323 +msgid "Handle" +msgstr "Дръжка" + +#: src/object/coin.cpp:335 src/object/coin.cpp:371 msgid "Collect script" msgstr "Скрипт за вземане" -#: src/object/ghost_particle_system.hpp:36 +#: src/object/ghost_particle_system.hpp:37 msgid "Ghost Particles" msgstr "Призрачни частици" -#: src/object/camera.cpp:219 +#: src/object/camera.cpp:163 msgid "Mode" msgstr "Режим" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "normal" msgstr "нормален" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "manual" msgstr "ръчен" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "autoscroll" msgstr "авт. превъртане" @@ -404,32 +568,20 @@ msgstr "Отместване по X" msgid "Controllable" msgstr "Управляем" -#: src/object/textscroller.cpp:353 -msgid "Anchor" -msgstr "Котва" - -#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 -#: src/supertux/menu/keyboard_menu.cpp:34 -#: src/supertux/menu/joystick_menu.cpp:71 -msgid "Left" -msgstr "Наляво" - #: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 msgid "Center" msgstr "Центриране" -#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 -#: src/supertux/menu/keyboard_menu.cpp:35 -#: src/supertux/menu/joystick_menu.cpp:72 -msgid "Right" -msgstr "Надясно" - #: src/object/textscroller.cpp:357 msgid "Text Alignment" msgstr "Подравняване на текста" -#: src/object/spawnpoint.hpp:46 src/badguy/willowisp.cpp:321 -#: src/editor/worldmap_objects.cpp:171 +#: src/object/lit_object.hpp:40 +msgid "Lit object" +msgstr "Осветен обект" + +#: src/object/spawnpoint.hpp:48 src/badguy/willowisp.cpp:312 +#: src/worldmap/teleporter.cpp:48 msgid "Spawnpoint" msgstr "Точка на раждане" @@ -437,266 +589,339 @@ msgstr "Точка на раждане" msgid "Counter" msgstr "Брояч" -#: src/object/candle.hpp:36 +#: src/object/candle.hpp:37 msgid "Candle" msgstr "Свещ" -#: src/object/particlesystem.cpp:64 src/object/particle_zone.cpp:79 -#: src/badguy/darttrap.cpp:127 -msgid "Enabled" -msgstr "Включено" +#: src/object/particlesystem.cpp:65 src/object/background.cpp:184 +#: src/object/thunderstorm.cpp:76 src/object/tilemap.cpp:277 +#: src/object/gradient.cpp:101 src/object/moving_sprite.cpp:193 +msgid "Z-pos" +msgstr "Позиция по Z" -#: src/object/invisible_block.hpp:31 +#: src/object/invisible_block.hpp:30 msgid "Invisible Block" msgstr "Невидимо блокче" -#: src/object/snow_particle_system.hpp:35 +#: src/object/snow_particle_system.hpp:37 msgid "Snow Particles" msgstr "Показване на частици" -#: src/object/powerup.hpp:35 +#: src/object/powerup.hpp:40 msgid "Powerup" msgstr "Подсилка" -#: src/object/fallblock.hpp:39 +#: src/object/infoblock.cpp:78 +msgid "Front Color" +msgstr "Преден цвят" + +#: src/object/infoblock.cpp:80 +msgid "Back Color" +msgstr "Заден цвят" + +#: src/object/infoblock.cpp:82 +msgid "Roundness" +msgstr "Заобленост" + +#: src/object/infoblock.cpp:84 +msgid "Fade Transition" +msgstr "Избледняващ преход" + +#: src/object/fallblock.hpp:41 msgid "Falling Platform" msgstr "Падаща платформа" -#: src/object/level_time.hpp:55 +#: src/object/level_time.hpp:56 msgid "Time Limit" msgstr "Ограничение на времето" -#: src/object/ambient_sound.cpp:119 src/supertux/menu/options_menu.cpp:391 -#: data//credits.stxt:352 -msgid "Sound" -msgstr "Звук" - -#: src/object/ambient_sound.cpp:120 -msgid "Distance factor" -msgstr "Множ. на заглъхване извън радиуса" - -#: src/object/ambient_sound.cpp:121 -msgid "Distance bias" -msgstr "Радиус за 100% сила на звука" - -#: src/object/ambient_sound.cpp:122 -msgid "Volume" -msgstr "Сила на звука" +#: src/object/ambient_sound.cpp:86 +msgid "Radius (in tiles)" +msgstr "Радиус (в брой плочки)" #: src/object/torch.hpp:41 msgid "Torch" msgstr "Факла" -#: src/object/icecrusher.hpp:53 -msgid "Icecrusher" -msgstr "Ледоразбивач" - -#: src/object/rublight.hpp:33 +#: src/object/rublight.hpp:34 msgid "Rublight" -msgstr "Адаптер за светлина" +msgstr "" -#: src/object/background.hpp:43 +#: src/object/background.hpp:45 msgid "Background" msgstr "Фон" -#: src/object/firefly.hpp:36 +#: src/object/text_object.hpp:44 src/gui/menu_string_array.cpp:77 +msgid "Text" +msgstr "Текст" + +#: src/object/firefly.hpp:38 msgid "Checkpoint" msgstr "Контролна точка" -#: src/object/ambient_light.hpp:36 +#: src/object/ambient_light.hpp:37 msgid "Ambient Light" msgstr "Околна светлина" -#: src/object/lantern.hpp:37 +#: src/object/lantern.hpp:38 msgid "Lantern" msgstr "Фенер" -#: src/object/wind.hpp:40 +#: src/object/wind.hpp:43 msgid "Wind" msgstr "Вятър" -#: src/object/bicycle_platform.cpp:189 src/object/background.cpp:179 -#: src/object/pneumatic_platform.cpp:147 -#: src/supertux/menu/joystick_menu.cpp:170 src/supertux/moving_object.cpp:58 -#: src/editor/worldmap_objects.cpp:73 +#: src/object/bicycle_platform.cpp:203 src/object/background.cpp:180 +#: src/object/pneumatic_platform.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:65 +#: src/worldmap/worldmap_object.cpp:77 msgid "X" msgstr "X" -#: src/object/bicycle_platform.cpp:190 src/object/background.cpp:180 -#: src/object/pneumatic_platform.cpp:148 -#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:59 -#: src/editor/worldmap_objects.cpp:74 +#: src/object/bicycle_platform.cpp:204 src/object/background.cpp:181 +#: src/object/pneumatic_platform.cpp:163 +#: src/supertux/menu/joystick_menu.cpp:174 src/supertux/moving_object.cpp:66 +#: src/worldmap/worldmap_object.cpp:78 msgid "Y" msgstr "Y" -#: src/object/bicycle_platform.cpp:192 +#: src/object/bicycle_platform.cpp:206 msgid "Platforms" msgstr "Платформи" -#: src/object/bicycle_platform.cpp:193 src/object/circleplatform.cpp:54 -#: src/badguy/flame.cpp:58 src/badguy/rcrystallo.cpp:50 -#: src/badguy/crystallo.cpp:35 +#: src/object/bicycle_platform.cpp:207 src/object/circleplatform.cpp:57 +#: src/badguy/fish_swimming.cpp:76 src/badguy/flame.cpp:109 +#: src/badguy/rcrystallo.cpp:83 src/badguy/crystallo.cpp:50 msgid "Radius" msgstr "Радиус" -#: src/object/bicycle_platform.cpp:194 +#: src/object/bicycle_platform.cpp:208 msgid "Momentum change rate" msgstr "Скорост на промяна на импулса" -#: src/object/rain_particle_system.hpp:40 +#: src/object/rain_particle_system.hpp:41 msgid "Rain Particles" msgstr "Частици дъжд" -#: src/object/platform.hpp:45 +#: src/object/platform.hpp:46 msgid "Platform" msgstr "Платформа" -#: src/object/rock.hpp:42 -msgid "Rock" -msgstr "Камък" - -#: src/object/music_object.hpp:41 src/supertux/menu/options_menu.cpp:393 -#: data//credits.stxt:294 +#: src/object/music_object.hpp:42 src/supertux/menu/options_menu.cpp:130 +#: data//credits.stxt:309 msgid "Music" msgstr "Музика" -#: src/object/rusty_trampoline.hpp:39 +#: src/object/lit_object.cpp:68 +msgid "Light sprite" +msgstr "Светлинно изображение" + +#: src/object/lit_object.cpp:71 +msgid "Sprite starting action" +msgstr "Начално действие на изображението" + +#: src/object/lit_object.cpp:72 +msgid "Light sprite starting action" +msgstr "Начално действие на светлинното изображение" + +#: src/object/lit_object.cpp:74 +msgid "Light sprite offset X" +msgstr "Отместване на светлинното изображение по X" + +#: src/object/lit_object.cpp:75 +msgid "Light sprite offset Y" +msgstr "Отместване на светлинното изображение по Y" + +#: src/object/rusty_trampoline.hpp:40 msgid "Rusty Trampoline" msgstr "Ръждив трамплин" -#: src/object/particlesystem.hpp:57 +#: src/object/particlesystem.hpp:58 msgid "Particle system" msgstr "Система от частици" -#: src/object/candle.cpp:75 src/object/torch.cpp:101 +#: src/object/candle.cpp:73 src/object/torch.cpp:94 msgid "Burning" msgstr "Горяща" -#: src/object/candle.cpp:76 +#: src/object/candle.cpp:74 msgid "Flicker" msgstr "Мъждукаща" -#: src/object/text_array_object.hpp:50 +#: src/object/snow_particle_system.cpp:104 +msgid "Epsilon" +msgstr "Епсилон" + +#: src/object/snow_particle_system.cpp:105 +msgid "Spin Speed" +msgstr "Скорост на въртене" + +#: src/object/snow_particle_system.cpp:106 +msgid "State Length" +msgstr "Продължителност на състоянието" + +#: src/object/snow_particle_system.cpp:107 +msgid "Wind Speed" +msgstr "Скорост на вятъра" + +#: src/object/text_array_object.hpp:47 msgid "Text array" msgstr "Текстов масив" -#: src/object/infoblock.hpp:36 +#: src/object/infoblock.hpp:37 msgid "Info Block" msgstr "Информационно блокче" -#: src/object/powerup.cpp:191 +#: src/object/powerup.cpp:61 +msgid "Egg" +msgstr "Яйце" + +#: src/object/powerup.cpp:62 +msgid "Fire Flower" +msgstr "Огнено цвете" + +#: src/object/powerup.cpp:63 +msgid "Ice Flower" +msgstr "Ледено цвете" + +#: src/object/powerup.cpp:64 +msgid "Air Flower" +msgstr "Въздушно цвете" + +#: src/object/powerup.cpp:65 +msgid "Earth Flower" +msgstr "Земно цвете" + +#: src/object/powerup.cpp:67 +msgid "Tux Doll" +msgstr "Кукла Тъкс" + +#: src/object/powerup.cpp:68 +msgid "Flip Potion" +msgstr "Отвара за обръщане" + +#: src/object/powerup.cpp:69 +msgid "Mints" +msgstr "" + +#: src/object/powerup.cpp:70 +msgid "Coffee" +msgstr "Кафе" + +#: src/object/powerup.cpp:71 +msgid "Herring" +msgstr "Херинга" + +#: src/object/powerup.cpp:302 msgid "Disable gravity" msgstr "Изключване на гравитацията" -#: src/object/ambient_sound.hpp:62 +#: src/object/powerup.cpp:312 src/object/weak_block.cpp:266 +msgid "" +"Sprites no longer define the behaviour of the object.\n" +"Object types are used instead." +msgstr "Изображенията вече не определят поведението на обекта.\nВместо това се използва типът на обекта." + +#: src/object/ambient_sound.hpp:43 msgid "Ambient Sound" msgstr "Околен звук" -#: src/object/level_time.cpp:51 src/supertux/statistics.cpp:297 +#: src/object/level_time.cpp:52 src/supertux/statistics.cpp:297 #: src/editor/node_marker.cpp:124 msgid "Time" msgstr "Време" -#: src/object/hurting_platform.hpp:30 +#: src/object/hurting_platform.hpp:31 msgid "Hurting Platform" msgstr "Нараняваща платформа" -#: src/object/icecrusher.cpp:83 -msgid "Sideways" -msgstr "Настрани" - -#: src/object/background.cpp:182 +#: src/object/background.cpp:183 msgid "Fill" msgstr "Запълване" -#: src/object/background.cpp:184 +#: src/object/background.cpp:185 msgid "Alignment" msgstr "Подравняване" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 src/supertux/direction.cpp:61 msgid "none" msgstr "без" -#: src/object/background.cpp:185 src/editor/object_settings.cpp:119 +#: src/object/background.cpp:186 src/supertux/direction.cpp:63 msgid "left" msgstr "наляво" -#: src/object/background.cpp:185 src/editor/object_settings.cpp:119 +#: src/object/background.cpp:186 src/supertux/direction.cpp:65 msgid "right" msgstr "надясно" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 msgid "top" msgstr "горе" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 msgid "bottom" msgstr "долу" -#: src/object/background.cpp:188 +#: src/object/background.cpp:189 msgid "Scroll offset x" msgstr "Отместване за превъртането по X" -#: src/object/background.cpp:189 +#: src/object/background.cpp:190 msgid "Scroll offset y" msgstr "Отместване за превъртането по Y" -#: src/object/background.cpp:190 +#: src/object/background.cpp:191 msgid "Scroll speed x" msgstr "Скорост на превъртане по X" -#: src/object/background.cpp:191 +#: src/object/background.cpp:192 msgid "Scroll speed y" msgstr "Скорост на превъртане по Y" -#: src/object/background.cpp:192 +#: src/object/background.cpp:193 msgid "Parallax Speed x" msgstr "Скорост на превъртане по X" -#: src/object/background.cpp:193 +#: src/object/background.cpp:194 msgid "Parallax Speed y" msgstr "Скорост на превъртане по Y" -#: src/object/background.cpp:194 +#: src/object/background.cpp:195 msgid "Top image" msgstr "Горно изображение" -#: src/object/background.cpp:195 +#: src/object/background.cpp:196 msgid "Image" msgstr "Изображение" -#: src/object/background.cpp:196 +#: src/object/background.cpp:197 msgid "Bottom image" msgstr "Долно изображение" -#: src/object/background.cpp:197 +#: src/object/background.cpp:198 msgid "Colour" msgstr "Цвят" -#: src/object/background.cpp:198 src/object/tilemap.cpp:240 -#: src/object/gradient.cpp:142 +#: src/object/background.cpp:199 src/object/tilemap.cpp:278 +#: src/object/gradient.cpp:108 msgid "Draw target" msgstr "Изчертаване на целта" -#: src/object/background.cpp:199 src/object/tilemap.cpp:241 -#: src/object/gradient.cpp:143 -msgid "Normal" -msgstr "Нормално" - -#: src/object/background.cpp:199 src/object/tilemap.cpp:241 -#: src/object/gradient.cpp:143 +#: src/object/background.cpp:200 src/object/tilemap.cpp:279 +#: src/object/gradient.cpp:109 msgid "Lightmap" msgstr "Светлина" -#: src/object/shard.hpp:34 +#: src/object/shard.hpp:35 msgid "Shard" -msgstr "Чиреп" +msgstr "" -#: src/object/rublight.cpp:55 +#: src/object/rublight.cpp:56 msgid "Fading Speed" msgstr "Скорост на избледняване" -#: src/object/rublight.cpp:56 +#: src/object/rublight.cpp:57 msgid "Glowing Strength" msgstr "Сила на светене" @@ -732,20 +957,28 @@ msgstr "Действа на играча" msgid "Fancy Particles" msgstr "Частици във въздуха" -#: src/object/bicycle_platform.hpp:64 +#: src/object/bicycle_platform.hpp:67 msgid "Bicycle Platform" msgstr "Въртяща се платформа" -#: src/object/platform.cpp:76 src/object/thunderstorm.cpp:69 -#: src/object/tilemap.cpp:254 +#: src/object/platform.cpp:80 src/object/thunderstorm.cpp:77 +#: src/object/tilemap.cpp:292 src/object/conveyor_belt.cpp:62 msgid "Running" msgstr "Работещо" -#: src/object/rock.cpp:192 +#: src/object/rock.cpp:71 +msgid "Small" +msgstr "Малък" + +#: src/object/rock.cpp:72 +msgid "Large" +msgstr "Голям" + +#: src/object/rock.cpp:234 msgid "On-grab script" msgstr "Скрипт при хващане" -#: src/object/rock.cpp:193 +#: src/object/rock.cpp:235 msgid "On-ungrab script" msgstr "Скрипт при пускане" @@ -753,15 +986,15 @@ msgstr "Скрипт при пускане" msgid "Interactive particle system" msgstr "Интерактивна система от частици" -#: src/object/thunderstorm.cpp:70 +#: src/object/thunderstorm.cpp:78 msgid "Interval" msgstr "Интервал" -#: src/object/thunderstorm.cpp:71 +#: src/object/thunderstorm.cpp:79 msgid "Strike Script" msgstr "Скрипт при удар" -#: src/object/cloud_particle_system.hpp:41 +#: src/object/cloud_particle_system.hpp:42 msgid "Cloud Particles" msgstr "Облачни частици" @@ -773,7 +1006,7 @@ msgstr "Текстура" msgid "Amount" msgstr "Количество" -#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:56 +#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:59 #: src/editor/particle_editor.cpp:141 msgid "Delay" msgstr "Забавяне" @@ -792,10 +1025,11 @@ msgid "Birth mode" msgstr "Режим на създаване" #: src/object/custom_particle_system.cpp:430 -#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:149 -#: src/supertux/menu/keyboard_menu.cpp:58 -#: src/supertux/menu/joystick_menu.cpp:106 -#: src/supertux/menu/joystick_menu.cpp:213 src/editor/object_settings.cpp:131 +#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:115 +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/joystick_menu.cpp:108 +#: src/supertux/menu/joystick_menu.cpp:215 src/editor/object_settings.cpp:129 #: src/editor/particle_editor.cpp:162 src/editor/particle_editor.cpp:168 msgid "None" msgstr "Няма" @@ -809,162 +1043,162 @@ msgstr "Свиване" #: src/object/custom_particle_system.cpp:434 #: src/editor/particle_editor.cpp:172 msgid "Birth easing" -msgstr "Облекчаване на раждаемостта" +msgstr "" #: src/object/custom_particle_system.cpp:436 #: src/object/custom_particle_system.cpp:471 src/editor/node_marker.cpp:129 msgid "No easing" -msgstr "Без облекчаване" +msgstr "" #: src/object/custom_particle_system.cpp:437 #: src/object/custom_particle_system.cpp:472 src/editor/node_marker.cpp:130 msgid "Quad in" -msgstr "Четворна ин" +msgstr "" #: src/object/custom_particle_system.cpp:437 #: src/object/custom_particle_system.cpp:472 src/editor/node_marker.cpp:130 msgid "Quad out" -msgstr "Четворна навън" +msgstr "" #: src/object/custom_particle_system.cpp:437 #: src/object/custom_particle_system.cpp:472 src/editor/node_marker.cpp:130 msgid "Quad in/out" -msgstr "Четворна вход/изход" +msgstr "" #: src/object/custom_particle_system.cpp:438 #: src/object/custom_particle_system.cpp:473 src/editor/node_marker.cpp:131 msgid "Cubic in" -msgstr "Кубичен инч" +msgstr "" #: src/object/custom_particle_system.cpp:438 #: src/object/custom_particle_system.cpp:473 src/editor/node_marker.cpp:131 msgid "Cubic out" -msgstr "Кубичен аут" +msgstr "" #: src/object/custom_particle_system.cpp:438 #: src/object/custom_particle_system.cpp:473 src/editor/node_marker.cpp:131 msgid "Cubic in/out" -msgstr "Кубичен вход/изход" +msgstr "" #: src/object/custom_particle_system.cpp:439 #: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 msgid "Quart in" -msgstr "Литър ин" +msgstr "" #: src/object/custom_particle_system.cpp:439 #: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 msgid "Quart out" -msgstr "Литър навън" +msgstr "" #: src/object/custom_particle_system.cpp:439 #: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 msgid "Quart in/out" -msgstr "Литър в/вън" +msgstr "" #: src/object/custom_particle_system.cpp:440 #: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 msgid "Quint in" -msgstr "Куинт ин" +msgstr "" #: src/object/custom_particle_system.cpp:440 #: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 msgid "Quint out" -msgstr "Куинт навън" +msgstr "" #: src/object/custom_particle_system.cpp:440 #: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 msgid "Quint in/out" -msgstr "Куинт вход/изход" +msgstr "" #: src/object/custom_particle_system.cpp:441 #: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 msgid "Sine in" -msgstr "Синус в" +msgstr "" #: src/object/custom_particle_system.cpp:441 #: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 msgid "Sine out" -msgstr "Синус аут" +msgstr "" #: src/object/custom_particle_system.cpp:441 #: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 msgid "Sine in/out" -msgstr "Синус вход/изход" +msgstr "" #: src/object/custom_particle_system.cpp:442 #: src/object/custom_particle_system.cpp:477 src/editor/node_marker.cpp:135 msgid "Circular in" -msgstr "Кръгов в" +msgstr "" #: src/object/custom_particle_system.cpp:442 #: src/object/custom_particle_system.cpp:477 src/editor/node_marker.cpp:135 msgid "Circular out" -msgstr "Кръгъл навън" +msgstr "" #: src/object/custom_particle_system.cpp:442 #: src/object/custom_particle_system.cpp:477 src/editor/node_marker.cpp:135 msgid "Circular in/out" -msgstr "Кръгов вход/вън" +msgstr "" #: src/object/custom_particle_system.cpp:443 #: src/object/custom_particle_system.cpp:478 src/editor/node_marker.cpp:136 msgid "Exponential in" -msgstr "Експоненциален в" +msgstr "" #: src/object/custom_particle_system.cpp:443 #: src/object/custom_particle_system.cpp:478 src/editor/node_marker.cpp:136 msgid "Exponential out" -msgstr "Експоненциален аут" +msgstr "" #: src/object/custom_particle_system.cpp:443 #: src/object/custom_particle_system.cpp:478 src/editor/node_marker.cpp:136 msgid "Exponential in/out" -msgstr "Експоненциален вход/изход" +msgstr "" #: src/object/custom_particle_system.cpp:444 #: src/object/custom_particle_system.cpp:479 src/editor/node_marker.cpp:137 msgid "Elastic in" -msgstr "Еластичен в" +msgstr "" #: src/object/custom_particle_system.cpp:444 #: src/object/custom_particle_system.cpp:479 src/editor/node_marker.cpp:137 msgid "Elastic out" -msgstr "Еластичен навън" +msgstr "" #: src/object/custom_particle_system.cpp:444 #: src/object/custom_particle_system.cpp:479 src/editor/node_marker.cpp:137 msgid "Elastic in/out" -msgstr "Еластичен в/в" +msgstr "" #: src/object/custom_particle_system.cpp:445 #: src/object/custom_particle_system.cpp:480 src/editor/node_marker.cpp:138 msgid "Back in" -msgstr "Обратно в" +msgstr "" #: src/object/custom_particle_system.cpp:445 #: src/object/custom_particle_system.cpp:480 src/editor/node_marker.cpp:138 msgid "Back out" -msgstr "Обратно навън" +msgstr "" #: src/object/custom_particle_system.cpp:445 #: src/object/custom_particle_system.cpp:480 src/editor/node_marker.cpp:138 msgid "Back in/out" -msgstr "Обратно влизане/излизане" +msgstr "" #: src/object/custom_particle_system.cpp:446 #: src/object/custom_particle_system.cpp:481 src/editor/node_marker.cpp:139 msgid "Bounce in" -msgstr "Отскочи в" +msgstr "" #: src/object/custom_particle_system.cpp:446 #: src/object/custom_particle_system.cpp:481 src/editor/node_marker.cpp:139 msgid "Bounce out" -msgstr "Отскочи навън" +msgstr "" #: src/object/custom_particle_system.cpp:446 #: src/object/custom_particle_system.cpp:481 src/editor/node_marker.cpp:139 msgid "Bounce in/out" -msgstr "Отскачане навътре/навън" +msgstr "" #: src/object/custom_particle_system.cpp:462 msgid "Birth time" @@ -982,7 +1216,7 @@ msgstr "Режим на унищожаване" #: src/object/custom_particle_system.cpp:469 #: src/editor/particle_editor.cpp:173 msgid "Death easing" -msgstr "Облекчаване на смъртта" +msgstr "" #: src/object/custom_particle_system.cpp:497 msgid "Death time" @@ -1019,7 +1253,7 @@ msgstr "Триене по Y" #: src/object/custom_particle_system.cpp:507 #: src/editor/particle_editor.cpp:189 msgid "Feather factor" -msgstr "Фактор на перата" +msgstr "" #: src/object/custom_particle_system.cpp:508 msgid "Rotation" @@ -1124,597 +1358,916 @@ msgstr "Винаги" msgid "Cover screen" msgstr "Покриване на екрана" -#: src/object/ispy.hpp:33 +#: src/object/ispy.hpp:35 msgid "Ispy" msgstr "Шпионин" -#: src/object/skull_tile.hpp:32 -msgid "Skull Tile" -msgstr "Блокче с череп" - -#: src/object/particle_zone.cpp:80 +#: src/object/particle_zone.cpp:51 msgid "Particle Name" msgstr "Име на частицата" -#: src/object/particle_zone.cpp:81 -msgid "Zone Type" -msgstr "Вид на зоната" - -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:62 msgid "Spawn" msgstr "Създаване" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:63 msgid "Life zone" msgstr "Зона на живот" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:64 msgid "Life zone (clear)" msgstr "Зона на живот (с изчистване)" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:65 msgid "Kill particles" msgstr "Унищожаване на частиците" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:66 msgid "Clear particles" msgstr "Изчистване на частиците" -#: src/object/weak_block.cpp:211 -msgid "Linked" -msgstr "Свързано" +#: src/object/weak_block.cpp:98 +msgid "Hay" +msgstr "Сено" -#: src/object/decal.hpp:40 +#: src/object/decal.hpp:41 msgid "Decal" msgstr "Табела" -#: src/object/tilemap.cpp:229 +#: src/object/tilemap.cpp:267 msgid "Resize offset x" msgstr "Отместване за преоразмеряването по X" -#: src/object/tilemap.cpp:230 +#: src/object/tilemap.cpp:268 msgid "Resize offset y" msgstr "Отместване за преоразмеряването по Y" -#: src/object/tilemap.cpp:232 src/supertux/menu/editor_sector_menu.cpp:39 -#: src/editor/object_option.cpp:173 +#: src/object/tilemap.cpp:270 src/supertux/menu/editor_sector_menu.cpp:41 +#: src/editor/object_option.cpp:178 msgid "Width" msgstr "Ширина" -#: src/object/tilemap.cpp:233 src/supertux/menu/editor_sector_menu.cpp:40 -#: src/editor/object_option.cpp:174 +#: src/object/tilemap.cpp:271 src/supertux/menu/editor_sector_menu.cpp:42 +#: src/editor/object_option.cpp:179 msgid "Height" msgstr "Височина" -#: src/object/tilemap.cpp:235 +#: src/object/tilemap.cpp:273 msgid "Alpha" msgstr "Плътност" -#: src/object/tilemap.cpp:236 +#: src/object/tilemap.cpp:274 msgid "Speed x" msgstr "Скорост по x" -#: src/object/tilemap.cpp:237 +#: src/object/tilemap.cpp:275 msgid "Speed y" msgstr "Скорост по y" -#: src/object/tilemap.cpp:238 +#: src/object/tilemap.cpp:276 msgid "Tint" msgstr "Нюанс" -#: src/object/tilemap.cpp:257 src/supertux/menu/editor_tilegroup_menu.cpp:26 -#: src/editor/toolbox_widget.cpp:90 +#: src/object/tilemap.cpp:296 src/supertux/menu/editor_tilegroup_menu.cpp:26 +#: src/editor/toolbox_widget.cpp:98 msgid "Tiles" msgstr "Плочки" -#: src/object/gradient.cpp:128 -msgid "Left Colour" -msgstr "Ляв цвят" - -#: src/object/gradient.cpp:129 -msgid "Right Colour" -msgstr "Десен цвят" - -#: src/object/gradient.cpp:131 -msgid "Top Colour" -msgstr "Горен цвят" +#: src/object/gradient.cpp:98 +msgid "Primary Colour" +msgstr "Основен цвят" -#: src/object/gradient.cpp:132 -msgid "Bottom Colour" -msgstr "Долен цвят" +#: src/object/gradient.cpp:99 +msgid "Secondary Colour" +msgstr "Вторичен цвят" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Vertical" msgstr "Вертикална" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Horizontal" msgstr "Хоризонтална" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Vertical (whole sector)" msgstr "Вертикална (за целия сектор)" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Horizontal (whole sector)" msgstr "Хоризонтална (за целия сектор)" -#: src/object/gradient.cpp:148 +#: src/object/gradient.cpp:114 msgid "Blend mode" msgstr "Режим на смесване" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Blend" msgstr "Смесване" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Additive" msgstr "Добавяне" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Modulate" msgstr "Модулиране" -#: src/object/bumper.hpp:35 +#: src/object/bumper.hpp:38 msgid "Bumper" msgstr "Отблъскваща пружина" -#: src/object/unstable_tile.hpp:37 +#: src/object/conveyor_belt.cpp:63 +msgid "Length" +msgstr "Дължина" + +#: src/object/moving_sprite.cpp:192 src/object/pneumatic_platform.cpp:161 +msgid "Sprite" +msgstr "Изображение" + +#: src/object/unstable_tile.hpp:42 msgid "Unstable Tile" msgstr "Нестабилна плочка" -#: src/object/brick.hpp:31 -msgid "Brick" -msgstr "Тухла" +#: src/object/brick.hpp:70 +msgid "Heavy Brick" +msgstr "Тежка тухла" -#: src/object/invisible_wall.hpp:34 +#: src/object/invisible_wall.hpp:37 msgid "Invisible Wall" msgstr "Невидима стена" -#: src/object/spotlight.hpp:51 +#: src/object/spotlight.hpp:52 msgid "Spotlight" msgstr "Прожектор" -#: src/object/scripted_object.hpp:39 +#: src/object/scripted_object.hpp:40 msgid "Scripted Object" msgstr "Скриптиран обект" -#: src/object/custom_particle_system_file.hpp:39 +#: src/object/custom_particle_system_file.hpp:40 msgid "Custom Particles from file" msgstr "Персонализирани частици от файл" -#: src/object/coin.hpp:78 +#: src/object/coin.hpp:97 msgid "Heavy Coin" msgstr "Тежка монета" -#: src/object/bonus_block.hpp:56 +#: src/object/explosion.hpp:35 +msgid "Explosion" +msgstr "Експлозия" + +#: src/object/bonus_block.hpp:62 msgid "Bonus Block" msgstr "Блокче с бонус" -#: src/object/magicblock.hpp:41 +#: src/object/magicblock.hpp:42 msgid "Magic Tile" msgstr "Вълшебно блокче" -#: src/object/camera.hpp:67 +#: src/object/camera.hpp:61 msgid "Camera" msgstr "Камера" -#: src/object/textscroller.hpp:44 +#: src/object/textscroller.hpp:45 msgid "Text Scroller" msgstr "Превъртащ се текст" -#: src/gui/menu_badguy_select.cpp:94 -msgid "List of enemies" -msgstr "Списък от врагове" +#: src/gui/notification.cpp:57 +msgid "Click for more details." +msgstr "Щракни за повече подробности." + +#: src/gui/notification.cpp:150 +msgid "Do not show again" +msgstr "Да не се показва повече" + +#: src/gui/notification.cpp:157 src/supertux/menu/download_dialog.cpp:124 +msgid "Close" +msgstr "Затваряне" + +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#, c++-format +msgid "Selected item: {}" +msgstr "Избран елемент: {}" -#: src/gui/menu_badguy_select.cpp:96 -msgid "Select enemy" -msgstr "Избиране на враг" +#: src/gui/menu_string_array.cpp:70 +msgid "Edit string array" +msgstr "Редактиране на масива от низове" -#: src/gui/menu_badguy_select.cpp:97 +#: src/gui/menu_string_array.cpp:79 src/gui/menu_object_select.cpp:50 +#: src/supertux/menu/profile_menu.cpp:88 msgid "Add" msgstr "Добавяне" -#: src/gui/menu_badguy_select.cpp:107 src/gui/menu_color.cpp:37 -#: src/gui/dialog.hpp:81 src/gui/menu_script.cpp:47 -#: src/supertux/menu/editor_sector_menu.cpp:46 -#: src/supertux/menu/editor_levelset_menu.cpp:62 -#: src/supertux/menu/addon_menu.cpp:349 +#: src/gui/menu_string_array.cpp:80 +msgid "Insert" +msgstr "Вмъкване" + +#: src/gui/menu_string_array.cpp:81 +#: src/supertux/menu/addon_preview_menu.cpp:177 src/editor/object_menu.cpp:61 +msgid "Update" +msgstr "Промяна" + +#: src/gui/menu_string_array.cpp:82 src/supertux/menu/profile_menu.cpp:108 +#: src/supertux/menu/profile_menu.cpp:110 +msgid "Delete" +msgstr "Изтриване" + +#: src/gui/menu_string_array.cpp:84 src/gui/menu_object_select.cpp:61 +#: src/gui/menu_color.cpp:37 src/gui/dialog.hpp:87 src/gui/menu_script.cpp:46 +#: src/supertux/menu/editor_sector_menu.cpp:48 +#: src/supertux/menu/editor_levelset_menu.cpp:58 #: src/supertux/menu/editor_new_levelset_menu.cpp:37 -#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:43 +#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:71 msgid "OK" msgstr "Добре" -#: src/gui/menu_badguy_select.cpp:136 -msgid "Do you want to delete this badguy from the list?" -msgstr "Искате ли да изтриете този лош от списъка?" +#: src/gui/menu_object_select.cpp:46 +msgid "List of objects" +msgstr "Списък от обекти" -#: src/gui/menu_badguy_select.cpp:137 src/gui/dialog.hpp:90 -#: src/supertux/menu/editor_level_select_menu.cpp:164 -#: src/supertux/menu/editor_menu.cpp:164 src/editor/editor.cpp:583 -msgid "Yes" -msgstr "Да" +#: src/gui/menu_object_select.cpp:48 +#, c++-format +msgid "Select object ({})" +msgstr "Избери обект ({})" -#: src/gui/menu_badguy_select.cpp:140 src/gui/dialog.hpp:91 -#: src/supertux/menu/editor_level_select_menu.cpp:168 -#: src/supertux/menu/editor_menu.cpp:167 src/editor/particle_editor.cpp:780 -#: src/editor/editor.cpp:590 -msgid "No" -msgstr "Не" +#: src/gui/menu_object_select.cpp:114 +msgid "Are you sure you want to remove this object from the list?" +msgstr "Наистина ли искаш да изтриеш този обект от списъка?" #: src/gui/menu_color.cpp:24 msgid "Mix the colour" msgstr "Смесване на цвета" -#: src/gui/menu_filesystem.cpp:112 src/gui/menu_paths.cpp:44 -#: src/supertux/menu/particle_editor_save_as.cpp:42 +#: src/gui/dialog.hpp:96 src/supertux/menu/editor_level_select_menu.cpp:181 +#: src/editor/editor.cpp:663 +msgid "Yes" +msgstr "Да" + +#: src/gui/dialog.hpp:97 src/supertux/menu/editor_level_select_menu.cpp:185 +#: src/editor/particle_editor.cpp:781 src/editor/editor.cpp:670 +msgid "No" +msgstr "Не" + +#: src/gui/menu_list.cpp:38 src/gui/menu_filesystem.cpp:120 +#: src/gui/menu_paths.cpp:48 src/supertux/menu/particle_editor_save_as.cpp:42 #: src/supertux/menu/editor_sectors_menu.cpp:45 -#: src/supertux/menu/editor_sectors_menu.cpp:95 -#: src/supertux/menu/editor_sectors_menu.cpp:100 +#: src/supertux/menu/editor_sectors_menu.cpp:94 +#: src/supertux/menu/editor_sectors_menu.cpp:99 #: src/supertux/menu/editor_objectgroup_menu.cpp:42 #: src/supertux/menu/editor_tilegroup_menu.cpp:36 -#: src/supertux/menu/editor_level_select_menu.cpp:173 +#: src/supertux/menu/editor_level_select_menu.cpp:190 #: src/supertux/menu/editor_save_as.cpp:42 #: src/supertux/menu/particle_editor_open.cpp:43 -#: src/editor/particle_editor.cpp:784 src/editor/editor.cpp:594 +#: src/editor/particle_editor.cpp:785 src/editor/editor.cpp:674 msgid "Cancel" msgstr "Отказ" +#: src/gui/menu_filesystem.cpp:118 +msgid "Open Directory" +msgstr "Отваряне на папката" + #: src/gui/menu_script.cpp:28 msgid "Edit script" msgstr "Редактиране на скрипта" -#: src/gui/menu_paths.cpp:30 +#: src/gui/menu_paths.cpp:32 msgid "Clone" msgstr "Клониране" -#: src/gui/menu_paths.cpp:38 +#: src/gui/menu_paths.cpp:41 msgid "" -"An error occured and the game could\n" +"An error occurred and the game could\n" "not clone the path. Please contact\n" "the developers for support." msgstr "Възникна грешка и играта не успя\nда клонира пътя. Моля, свържете се\nс разработчиците за поддръжка." -#: src/gui/menu_paths.cpp:41 +#: src/gui/menu_paths.cpp:44 msgid "Bind" msgstr "Свързване" -#: src/gui/menu_paths.cpp:63 src/supertux/menu/integrations_menu.cpp:60 -#: src/supertux/menu/contrib_menu.cpp:161 src/supertux/menu/debug_menu.cpp:75 -#: src/supertux/menu/editor_level_select_menu.cpp:88 -#: src/supertux/menu/worldmap_cheat_menu.cpp:55 -#: src/supertux/menu/worldmap_cheat_menu.cpp:153 +#: src/gui/menu_paths.cpp:49 +msgid "" +"Do you wish to clone the path to edit it separately,\n" +"or do you want to bind both paths together\n" +"so that any edit on one edits the other?" +msgstr "Наистина ли искаш да клонираш пътя, за да го редактираш\nотделно, или искаш да свържеш двата пътя, така че\nвсяка промяна на единия да се отразява и на другия?" + +#: src/gui/menu_paths.cpp:56 +#, c++-format +msgid "Path {}" +msgstr "Път {}" + +#: src/gui/menu_paths.cpp:67 src/supertux/menu/integrations_menu.cpp:60 +#: src/supertux/menu/editor_converters_menu.cpp:79 +#: src/supertux/menu/video_system_menu.cpp:45 +#: src/supertux/menu/contrib_menu.cpp:102 src/supertux/menu/debug_menu.cpp:77 +#: src/supertux/menu/multiplayer_menu.cpp:39 +#: src/supertux/menu/custom_menu_menu.cpp:65 +#: src/supertux/menu/editor_level_select_menu.cpp:98 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:63 +#: src/supertux/menu/worldmap_cheat_menu.cpp:57 +#: src/supertux/menu/worldmap_cheat_menu.cpp:196 #: src/supertux/menu/editor_levelset_select_menu.cpp:114 -#: src/supertux/menu/options_menu.cpp:442 -#: src/supertux/menu/profile_menu.cpp:54 src/supertux/menu/addon_menu.cpp:213 +#: src/supertux/menu/options_menu.cpp:223 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:69 +#: src/supertux/menu/addon_preview_menu.cpp:193 +#: src/supertux/menu/profile_menu.cpp:118 +#: src/supertux/menu/multiplayer_players_menu.cpp:91 +#: src/supertux/menu/addon_menu.cpp:153 #: src/supertux/menu/editor_new_levelset_menu.cpp:40 +#: src/supertux/menu/options_select_menu.cpp:44 #: src/supertux/menu/world_set_menu.cpp:33 +#: src/supertux/menu/addon_browse_menu.cpp:162 #: src/supertux/menu/web_asset_menu.cpp:48 -#: src/supertux/menu/keyboard_menu.cpp:49 -#: src/supertux/menu/language_menu.cpp:56 -#: src/supertux/menu/joystick_menu.cpp:97 +#: src/supertux/menu/profile_name_menu.cpp:45 +#: src/supertux/menu/keyboard_menu.cpp:71 +#: src/supertux/menu/sorted_contrib_menu.cpp:51 +#: src/supertux/menu/language_menu.cpp:63 +#: src/supertux/menu/joystick_menu.cpp:99 #: src/supertux/menu/contrib_levelset_menu.cpp:67 -#: src/supertux/menu/cheat_menu.cpp:44 -#: src/supertux/menu/editor_delete_level_menu.cpp:43 +#: src/supertux/menu/cheat_menu.cpp:58 +#: src/supertux/menu/addon_file_install_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:43 +#: src/supertux/menu/cheat_apply_menu.cpp:63 +#: src/supertux/menu/multiplayer_player_menu.cpp:205 +#: src/supertux/menu/editor_delete_level_menu.cpp:68 msgid "Back" msgstr "Назад" -#: src/badguy/toad.hpp:37 -msgid "Toad" -msgstr "Жаба" +#: src/addon/addon_manager.cpp:562 +msgid "Only one resource pack is allowed to be enabled at a time." +msgstr "Само един ресурсен пакет може да бъде включен." -#: src/badguy/mrtree.hpp:29 -msgid "Walking Tree" -msgstr "Ходещо дърво" +#: src/addon/addon_manager.cpp:837 +#, c++-format +msgid "Add-on {} by {} is already installed." +msgstr "Добавката {} от {} вече е инсталирана." -#: src/badguy/plant.hpp:33 -msgid "Plant" -msgstr "Растение" +#: src/addon/addon_manager.cpp:857 +#, c++-format +msgid "Add-on {} by {} successfully installed." +msgstr "Добавката {} от {} беше инсталирана успешно." -#: src/badguy/crystallo.hpp:30 -msgid "Crystallo" -msgstr "Кристало" +#: src/addon/addon.cpp:71 src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Levelset" +msgstr "Комплект нива" -#: src/badguy/totem.hpp:36 -msgid "Totem" -msgstr "Тотем" +#: src/addon/addon.cpp:74 src/supertux/menu/editor_levelset_menu.cpp:54 +#: data//images/engine/editor/objects.stoi:389 +msgid "Worldmap" +msgstr "Световна карта" -#: src/badguy/stalactite.hpp:38 +#: src/addon/addon.cpp:77 +msgid "World" +msgstr "Свят" + +#: src/addon/addon.cpp:80 +msgid "Add-on" +msgstr "Добавка" + +#: src/addon/addon.cpp:83 +msgid "Language Pack" +msgstr "Езиков пакет" + +#: src/addon/addon.cpp:86 +msgid "Resource Pack" +msgstr "Ресурсен пакет" + +#: src/addon/addon.cpp:89 +msgid "Unknown" +msgstr "Непознато" + +#: src/addon/addon.cpp:100 +#, c++-format +msgid "{} \"{}\" by \"{}\"" +msgstr "{} „{}“ от „{}“" + +#: src/addon/addon.cpp:114 +msgid "add-on" +msgstr "добавка" + +#: src/addon/addon.cpp:114 +msgid "add-ons" +msgstr "добавки" + +#: src/badguy/toad.hpp:38 +msgid "Toad" +msgstr "Жаба" + +#: src/badguy/mrtree.hpp:32 +msgid "Mr. Tree" +msgstr "г-н Дърво" + +#: src/badguy/plant.hpp:34 +msgid "Plant" +msgstr "Растение" + +#: src/badguy/tarantula.hpp:39 src/badguy/tarantula.cpp:353 +msgid "Tarantula" +msgstr "Тарантула" + +#: src/badguy/granito_giant.cpp:71 +msgid "Awake" +msgstr "Буден" + +#: src/badguy/granito_giant.cpp:72 +msgid "Sleeping" +msgstr "Спящ" + +#: src/badguy/granito_giant.cpp:73 +msgid "Corrupted A" +msgstr "Увреден А" + +#: src/badguy/granito_giant.cpp:74 +msgid "Corrupted B" +msgstr "Увреден Б" + +#: src/badguy/granito_giant.cpp:75 +msgid "Corrupted C" +msgstr "Увреден В" + +#: src/badguy/crystallo.hpp:33 +msgid "Crystallo" +msgstr "Кристало" + +#: src/badguy/viciousivy.cpp:45 src/badguy/snail.cpp:70 +#: src/badguy/kamikazesnowball.cpp:118 src/badguy/walkingleaf.cpp:36 +#: src/badguy/jumpy.cpp:46 src/badguy/igel.cpp:189 src/badguy/mrtree.cpp:51 +msgid "Corrupted" +msgstr "Увреден" + +#: src/badguy/totem.hpp:37 +msgid "Totem" +msgstr "Тотем" + +#: src/badguy/stalactite.hpp:42 msgid "Stalactite" msgstr "Сталактит" -#: src/badguy/haywire.hpp:45 +#: src/badguy/fish_chasing.cpp:198 +msgid "Tracking Distance" +msgstr "Дистанция на следене" + +#: src/badguy/fish_chasing.cpp:199 +msgid "Losing Distance" +msgstr "Загуба на дистанция" + +#: src/badguy/fish_chasing.cpp:200 +msgid "Chase Speed" +msgstr "Скорост на преследване" + +#: src/badguy/root_sapling.hpp:41 +msgid "Root Sapling" +msgstr "" + +#: src/badguy/haywire.hpp:46 msgid "Haywire" msgstr "Сбъркана бомба" -#: src/badguy/dispenser.hpp:48 +#: src/badguy/dispenser.hpp:52 msgid "Dispenser" msgstr "Изпускател" -#: src/badguy/short_fuse.hpp:29 +#: src/badguy/short_fuse.hpp:30 msgid "Short Fuse" msgstr "Къс фитил" -#: src/badguy/zeekling.hpp:36 +#: src/badguy/zeekling.hpp:39 msgid "Zeekling" msgstr "Зиклинг" -#: src/badguy/mriceblock.hpp:46 -msgid "Iceblock" -msgstr "Ледено блокче" +#: src/badguy/smartball.cpp:35 +msgid "Pumpkin" +msgstr "Тиква " + +#: src/badguy/bouncing_snowball.cpp:82 +msgid "Fatbat" +msgstr "" + +#: src/badguy/dive_mine.hpp:50 +msgid "Dive Mine" +msgstr "" + +#: src/badguy/granito_big.hpp:33 +msgid "Big Granito" +msgstr "" + +#: src/badguy/mriceblock.hpp:49 +msgid "Mr. Iceblock" +msgstr "г-н Ледено кубче" + +#: src/badguy/granito.hpp:39 src/badguy/darttrap.cpp:163 +#: src/badguy/corrupted_granito.cpp:175 src/badguy/dispenser.cpp:438 +msgid "Granito" +msgstr "" + +#: src/badguy/fish_swimming.cpp:54 src/badguy/jumpy.cpp:44 +#: data//images/ice_world.strf:10 data//images/tiles.strf:28 +#: data//images/worldmap.strf:41 +msgid "Snow" +msgstr "Сняг" + +#: src/badguy/fish_swimming.cpp:55 data//images/ice_world.strf:211 +#: data//images/tiles.strf:366 data//images/worldmap.strf:67 +msgid "Forest" +msgstr "Гора" + +#: src/badguy/crusher.hpp:71 +msgid "Crusher" +msgstr "" + +#: src/badguy/flame.cpp:84 +msgid "Fire" +msgstr "Огън" + +#: src/badguy/flame.cpp:85 +msgid "Ghost" +msgstr "Призрак" -#: src/badguy/scrystallo.cpp:52 +#: src/badguy/corrupted_granito_big.hpp:35 +msgid "Corrupted Big Granito" +msgstr "" + +#: src/badguy/scrystallo.cpp:57 msgid "Walk Radius" msgstr "Радиус на обхождане" -#: src/badguy/scrystallo.cpp:53 +#: src/badguy/scrystallo.cpp:58 msgid "Awakening Radius" msgstr "Радиус на пробуждане" -#: src/badguy/jumpy.hpp:36 +#: src/badguy/scrystallo.cpp:59 +msgid "Roof-attached" +msgstr "Прикрепен към покрива" + +#: src/badguy/jumpy.hpp:40 msgid "Jumpy" msgstr "Скокльо" -#: src/badguy/captainsnowball.hpp:31 +#: src/badguy/captainsnowball.hpp:32 msgid "Captain Snowball" msgstr "Капитан Снежна топка" -#: src/badguy/ghosttree.hpp:42 +#: src/badguy/ghosttree.hpp:43 msgid "Ghost Tree" msgstr "Призрачно дърво" -#: src/badguy/willowisp.cpp:323 +#: src/badguy/willowisp.cpp:314 msgid "Track range" msgstr "Обхват на движение" -#: src/badguy/willowisp.cpp:324 +#: src/badguy/willowisp.cpp:315 msgid "Vanish range" msgstr "Обхват на изчезване" -#: src/badguy/willowisp.cpp:325 +#: src/badguy/willowisp.cpp:316 msgid "Fly speed" msgstr "Скорост на летене" -#: src/badguy/kugelblitz.hpp:39 +#: src/badguy/kugelblitz.hpp:40 msgid "Kugelblitz" msgstr "Кугелблиц" -#: src/badguy/mole_rock.hpp:43 +#: src/badguy/mole_rock.hpp:44 msgid "Mole's rock" msgstr "Къртичи камък" -#: src/badguy/badguy.cpp:849 +#: src/badguy/badguy.cpp:1064 msgid "Death script" msgstr "Скрипт за умиране" -#: src/badguy/sspiky.hpp:36 +#: src/badguy/sspiky.hpp:37 msgid "Sleeping Spiky" msgstr "Спящ бодливец" -#: src/badguy/yeti_stalactite.hpp:33 +#: src/badguy/yeti_stalactite.hpp:34 msgid "Yeti's Stalactite" msgstr "Сталактит на йети" -#: src/badguy/livefire.hpp:37 +#: src/badguy/fish_harmless.hpp:30 +msgid "Harmless Fish" +msgstr "Безобидна риба" + +#: src/badguy/livefire.hpp:38 msgid "Walking Flame" msgstr "Ходещ пламък" -#: src/badguy/livefire.hpp:68 +#: src/badguy/livefire.hpp:71 msgid "Sleeping Flame" msgstr "Спящ пламък" -#: src/badguy/livefire.hpp:84 +#: src/badguy/livefire.hpp:89 msgid "Dormant Flame" msgstr "Заспал пламък" -#: src/badguy/owl.hpp:39 +#: src/badguy/owl.hpp:45 msgid "Owl" msgstr "Сова" -#: src/badguy/igel.hpp:34 +#: src/badguy/igel.hpp:38 msgid "Igel" msgstr "Таралеж" -#: src/badguy/darttrap.cpp:126 +#: src/badguy/darttrap.cpp:148 msgid "Initial delay" msgstr "Начално забавяне" -#: src/badguy/darttrap.cpp:128 +#: src/badguy/darttrap.cpp:150 msgid "Fire delay" msgstr "Забавяне на пламъка" -#: src/badguy/darttrap.cpp:129 +#: src/badguy/darttrap.cpp:151 msgid "Ammo" msgstr "Муниции" -#: src/badguy/snowball.hpp:29 -msgid "Snowball" -msgstr "Снежна топка" +#: src/badguy/darttrap.cpp:152 +msgid "Dart sprite" +msgstr "Изображение на стреличка" + +#: src/badguy/darttrap.cpp:164 +msgid "Skull" +msgstr "Череп" -#: src/badguy/smartblock.hpp:29 -msgid "Smartblock" -msgstr "Умно блокче" +#: src/badguy/snowball.hpp:30 +msgid "Mr. Snowball" +msgstr "г-н Снежна топка" -#: src/badguy/yeti.cpp:369 +#: src/badguy/smartblock.hpp:30 +msgid "Mrs. Iceblock" +msgstr "г-жа Ледено кубче" + +#: src/badguy/yeti.cpp:370 msgid "Fixed position" msgstr "Фиксирана позиция" -#: src/badguy/yeti.cpp:370 +#: src/badguy/yeti.cpp:371 msgid "Lives" msgstr "Животи" -#: src/badguy/goldbomb.hpp:49 +#: src/badguy/goldbomb.hpp:50 msgid "Gold Bomb" msgstr "Златна бомба" -#: src/badguy/flyingsnowball.hpp:32 +#: src/badguy/corrupted_granito.hpp:44 +msgid "Corrupted Granito" +msgstr "" + +#: src/badguy/mrbomb.cpp:48 +msgid "Classic" +msgstr "Класически" + +#: src/badguy/flyingsnowball.hpp:33 msgid "Flying Snowball" msgstr "Летяща снежна топка" -#: src/badguy/skullyhop.hpp:37 -msgid "Skullyhop" -msgstr "Подскачащ череп" +#: src/badguy/crusher.cpp:75 +msgid "Ice (normal)" +msgstr "Лед (нормален)" + +#: src/badguy/crusher.cpp:76 +msgid "Ice (big)" +msgstr "Лед (голям)" + +#: src/badguy/crusher.cpp:77 +msgid "Rock (normal)" +msgstr "Камък (нормален)" + +#: src/badguy/crusher.cpp:78 +msgid "Rock (big)" +msgstr "Камък (голям)" + +#: src/badguy/crusher.cpp:79 +msgid "Corrupted (normal)" +msgstr "Увреден (нормален)" + +#: src/badguy/crusher.cpp:80 +msgid "Corrupted (big)" +msgstr "Увреден (голям)" + +#: src/badguy/crusher.cpp:492 +msgid "Sideways" +msgstr "Настрани" -#: src/badguy/kamikazesnowball.hpp:32 -msgid "Snowshot" -msgstr "Снежен снаряд" +#: src/badguy/kamikazesnowball.hpp:34 +msgid "Kamikaze Snowball" +msgstr "Снежна топка-камикадзе" -#: src/badguy/kamikazesnowball.hpp:52 +#: src/badguy/kamikazesnowball.hpp:64 msgid "Leafshot" msgstr "Листен снаряд" -#: src/badguy/flame.hpp:41 +#: src/badguy/fish_swimming.hpp:40 +msgid "Swimming Fish" +msgstr "Плуваща риба" + +#: src/badguy/flame.hpp:47 msgid "Flame" msgstr "Пламък" -#: src/badguy/scrystallo.hpp:30 +#: src/badguy/scrystallo.hpp:31 msgid "Sleeping Crystallo" msgstr "Спящ кристало" -#: src/badguy/poisonivy.hpp:30 -msgid "Spring Leaf" -msgstr "Пролетен лист" +#: src/badguy/jumpy.cpp:45 +msgid "Wooden" +msgstr "Дървен" + +#: src/badguy/jumpy.cpp:47 +msgid "Metal" +msgstr "Метален" + +#: src/badguy/jumpy.cpp:48 +msgid "Bag" +msgstr "" #: src/badguy/willowisp.hpp:57 msgid "Will o' Wisp" msgstr "Светлинка" -#: src/badguy/badguy.hpp:53 +#: src/badguy/fish_jumping.hpp:41 +msgid "Jumping Fish" +msgstr "Скачаща риба" + +#: src/badguy/badguy.hpp:61 msgid "Badguy" msgstr "Лош" -#: src/badguy/ghostflame.hpp:30 -msgid "Ghost Flame" -msgstr "Призрачен пламък" - -#: src/badguy/rcrystallo.hpp:30 +#: src/badguy/rcrystallo.hpp:33 msgid "Roof Crystallo" msgstr "Покривен кристало" -#: src/badguy/spiky.hpp:30 +#: src/badguy/spiky.hpp:31 msgid "Spiky" msgstr "Бодливец" -#: src/badguy/walkingleaf.hpp:30 -msgid "Autumn Leaf" -msgstr "Есенен лист" +#: src/badguy/walkingleaf.hpp:33 +msgid "Walking Leaf" +msgstr "Ходещ лист" -#: src/badguy/owl.cpp:227 +#: src/badguy/root.hpp:39 +msgid "Root" +msgstr "Корен" + +#: src/badguy/owl.cpp:241 msgid "Carry" msgstr "Носене" -#: src/badguy/darttrap.hpp:33 +#: src/badguy/darttrap.hpp:35 msgid "Dart Trap" msgstr "Капан със стрелички" -#: src/badguy/skydive.hpp:38 +#: src/badguy/skydive.hpp:43 msgid "Skydive" msgstr "Небесно гмуркане" -#: src/badguy/yeti.hpp:37 +#: src/badguy/yeti.hpp:38 msgid "Yeti" msgstr "Йети" -#: src/badguy/mole.hpp:39 +#: src/badguy/snowball.cpp:41 +msgid "Bumpkin" +msgstr "" + +#: src/badguy/snowball.cpp:42 +msgid "BSOD" +msgstr "Син екран" + +#: src/badguy/mole.hpp:38 msgid "Mole" msgstr "Къртица" -#: src/badguy/mrbomb.hpp:42 -msgid "Bomb" -msgstr "Бомба" +#: src/badguy/corrupted_granito.cpp:176 +msgid "Skullyhop" +msgstr "Подскачащ череп" -#: src/badguy/walking_candle.hpp:40 +#: src/badguy/mrbomb.hpp:40 +msgid "Mr. Bomb" +msgstr "г-н Бомба" + +#: src/badguy/walking_candle.hpp:41 msgid "Walking Candle" msgstr "Ходеща свещ" -#: src/badguy/angrystone.hpp:34 +#: src/badguy/angrystone.hpp:39 msgid "Angry Stone" msgstr "Ядосан камък" -#: src/badguy/spidermite.hpp:35 -msgid "Spider" -msgstr "Паяк" +#: src/badguy/tarantula.cpp:354 +msgid "Spidermite" +msgstr "" + +#: src/badguy/tarantula.cpp:374 +msgid "Static" +msgstr "" #: src/badguy/ghoul.hpp:30 msgid "Ghoul" msgstr "Таласъм" -#: src/badguy/snowman.hpp:28 +#: src/badguy/granito_giant.hpp:32 +msgid "Giant Granito" +msgstr "" + +#: src/badguy/snowman.hpp:29 msgid "Snowman" msgstr "Снежен човек" -#: src/badguy/stumpy.hpp:35 -msgid "Walking Stump" -msgstr "Ходещ пън" +#: src/badguy/viciousivy.hpp:33 +msgid "Vicious Ivy" +msgstr "" + +#: src/badguy/stalactite.cpp:156 +msgid "ice" +msgstr "лед" + +#: src/badguy/stalactite.cpp:157 +msgid "rock" +msgstr "камък" + +#: src/badguy/fish_chasing.hpp:33 +msgid "Chasing Fish" +msgstr "Преследваща риба" -#: src/badguy/fish.hpp:40 -msgid "Fish" -msgstr "Риба" +#: src/badguy/stumpy.hpp:38 +msgid "Stumpy" +msgstr "Тъпкач" -#: src/badguy/dispenser.cpp:445 +#: src/badguy/dispenser.cpp:412 msgid "Interval (seconds)" msgstr "Интервал (секунди)" -#: src/badguy/dispenser.cpp:446 +#: src/badguy/dispenser.cpp:413 msgid "Random" msgstr "Случаен" -#: src/badguy/dispenser.cpp:447 data//images/engine/editor/objects.stoi:4 -msgid "Enemies" -msgstr "Врагове" +#: src/badguy/dispenser.cpp:416 +#: src/supertux/menu/editor_objectgroup_menu.cpp:30 +#: src/editor/toolbox_widget.cpp:101 +msgid "Objects" +msgstr "Обекти" -#: src/badguy/dispenser.cpp:448 +#: src/badguy/dispenser.cpp:419 msgid "Limit dispensed badguys" msgstr "Ограничаване на броя пуснати лоши" -#: src/badguy/dispenser.cpp:450 +#: src/badguy/dispenser.cpp:421 msgid "Obey Gravity" msgstr "Зачитане на гравитацията" -#: src/badguy/dispenser.cpp:452 +#: src/badguy/dispenser.cpp:423 msgid "Max concurrent badguys" msgstr "Макс. брой едновременно присъстващи лоши" -#: src/badguy/dispenser.cpp:454 src/supertux/menu/editor_levelset_menu.cpp:60 -msgid "Type" -msgstr "Тип" - -#: src/badguy/dispenser.cpp:455 -msgid "dropper" -msgstr "изпускател" - -#: src/badguy/dispenser.cpp:455 -msgid "rocket launcher" -msgstr "ракетомет" +#: src/badguy/dispenser.cpp:435 +msgid "Dropper" +msgstr "Изпускател" -#: src/badguy/dispenser.cpp:455 -msgid "cannon" -msgstr "оръдие" +#: src/badguy/dispenser.cpp:436 +msgid "Cannon" +msgstr "Оръдие" -#: src/badguy/dispenser.cpp:455 -msgid "invisible" -msgstr "невидим" +#: src/badguy/dispenser.cpp:437 src/worldmap/special_tile.cpp:77 +msgid "Invisible" +msgstr "Невидима" -#: src/badguy/snail.hpp:42 +#: src/badguy/snail.hpp:43 msgid "Snail" msgstr "Охлюв" -#: src/badguy/smartball.hpp:31 -msgid "Smartball" -msgstr "Умна топка" +#: src/badguy/smartball.hpp:32 +msgid "Mrs. Snowball" +msgstr "г-жа Снежна топка" -#: src/badguy/bouncing_snowball.hpp:32 +#: src/badguy/bouncing_snowball.hpp:39 msgid "Bouncing Snowball" msgstr "Поскачаща снежна топка" -#: src/badguy/iceflame.hpp:33 -msgid "Ice Flame" -msgstr "Леден пламък" +#: src/badguy/granito_big.cpp:52 src/badguy/granito.cpp:263 +msgid "Default" +msgstr "По подразбиране" -#: src/badguy/dart.hpp:43 +#: src/badguy/granito_big.cpp:53 src/badguy/granito.cpp:264 +msgid "Standing" +msgstr "Стоящ" + +#: src/badguy/granito_big.cpp:54 src/badguy/granito.cpp:265 +msgid "Walking" +msgstr "Ходещ" + +#: src/badguy/mriceblock.cpp:63 +msgid "Laptop" +msgstr "Лаптоп" + +#: src/badguy/dart.hpp:44 msgid "Dart" msgstr "Стреличка" +#: src/badguy/granito.cpp:268 +msgid "Sitting" +msgstr "Седящ" + #: src/supertux/statistics.cpp:54 msgid "Max coins collected:" msgstr "Най-много събрани монети:" @@ -1735,7 +2288,7 @@ msgstr "Най-добро време:" msgid "Level target time:" msgstr "Целево време за нивото:" -#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:160 +#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:175 msgid "Best Level Statistics" msgstr "Най-добри постижения за нивото" @@ -1747,7 +2300,7 @@ msgstr "Ти" msgid "Best" msgstr "Най-добро" -#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:166 +#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:181 msgid "Coins" msgstr "Монети" @@ -1755,202 +2308,199 @@ msgstr "Монети" msgid "Badguys" msgstr "Лоши" -#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:172 +#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:187 msgid "Secrets" msgstr "Тайни" -#: src/supertux/game_object.hpp:78 +#: src/supertux/game_object.hpp:88 msgid "Unknown object" msgstr "Неизвестен обект" -#: src/supertux/sector.cpp:414 +#: src/supertux/sector.cpp:507 msgid "Press escape to skip" msgstr "Натисни ESC за пропускане" -#: src/supertux/command_line_arguments.cpp:94 -#, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Употреба: %s [ОПЦИИ] [ФАЙЛ НА НИВОТО]" +#: src/supertux/command_line_arguments.cpp:92 +#, c++-format +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Употреба: {} [ОПЦИИ] [ФАЙЛ НА НИВОТО]" -#: src/supertux/command_line_arguments.cpp:95 +#: src/supertux/command_line_arguments.cpp:93 msgid "General Options:" msgstr "Общи опции:" -#: src/supertux/command_line_arguments.cpp:96 +#: src/supertux/command_line_arguments.cpp:94 msgid " -h, --help Show this help message and quit" msgstr " -h, --help Показва това помощно съобщение" -#: src/supertux/command_line_arguments.cpp:97 +#: src/supertux/command_line_arguments.cpp:95 msgid " -v, --version Show SuperTux version and quit" msgstr " -v, --version Показва версията на Супер Тъкс" -#: src/supertux/command_line_arguments.cpp:98 +#: src/supertux/command_line_arguments.cpp:96 msgid " --verbose Print verbose messages" msgstr " --verbose Извежда повече съобщения за работата" -#: src/supertux/command_line_arguments.cpp:99 +#: src/supertux/command_line_arguments.cpp:97 msgid " --debug Print extra verbose messages" msgstr " --debug Извежда още повече съобщения за работата" -#: src/supertux/command_line_arguments.cpp:100 +#: src/supertux/command_line_arguments.cpp:98 msgid "" " --print-datadir Print SuperTux's primary data directory." msgstr " --print-datadir Показване на основната папка с данни на Супер Тъкс." -#: src/supertux/command_line_arguments.cpp:101 +#: src/supertux/command_line_arguments.cpp:99 msgid "" " --acknowledgements Print the licenses of libraries used by " "SuperTux." msgstr " --acknowledgements Показване на лицензите на библиотеките, използвани от Супер Тъкс." -#: src/supertux/command_line_arguments.cpp:103 +#: src/supertux/command_line_arguments.cpp:101 msgid "Video Options:" msgstr "Видео настройки:" -#: src/supertux/command_line_arguments.cpp:104 +#: src/supertux/command_line_arguments.cpp:102 msgid " -f, --fullscreen Run in fullscreen mode" msgstr " -f, --fullscreen Пускане на цял екран" -#: src/supertux/command_line_arguments.cpp:105 +#: src/supertux/command_line_arguments.cpp:103 msgid " -w, --window Run in window mode" msgstr " -w, --window Пускане в прозорец" -#: src/supertux/command_line_arguments.cpp:106 +#: src/supertux/command_line_arguments.cpp:104 msgid " -g, --geometry WIDTHxHEIGHT Run SuperTux in given resolution" msgstr " -g, --geometry ШИРИНАxВИСОЧИНА Пускане на Супер Тъкс в посочената разделителна способност" -#: src/supertux/command_line_arguments.cpp:107 +#: src/supertux/command_line_arguments.cpp:105 msgid " -a, --aspect WIDTH:HEIGHT Run SuperTux with given aspect ratio" msgstr " -a, --aspect ШИРИНА:ВИСОЧИНА Пускане на Супер Тъкс с посоченото съотношение на страните" -#: src/supertux/command_line_arguments.cpp:108 +#: src/supertux/command_line_arguments.cpp:106 msgid " -d, --default Reset video settings to default values" msgstr " -d, --default Връща стандартните настройките на видеото" -#: src/supertux/command_line_arguments.cpp:109 +#: src/supertux/command_line_arguments.cpp:107 msgid " --renderer RENDERER Use sdl, opengl, or auto to render" msgstr " --renderer ИЗЧЕРТАВАНЕ Използване на sdl, opengl или auto за изчертаване" -#: src/supertux/command_line_arguments.cpp:111 +#: src/supertux/command_line_arguments.cpp:109 msgid "Audio Options:" msgstr "Звукови настройки:" -#: src/supertux/command_line_arguments.cpp:112 +#: src/supertux/command_line_arguments.cpp:110 msgid " --disable-sound Disable sound effects" msgstr " --disable-sound Изключване на звуковите ефекти" -#: src/supertux/command_line_arguments.cpp:113 +#: src/supertux/command_line_arguments.cpp:111 msgid " --disable-music Disable music" msgstr " --disable-music Изключване на музиката" -#: src/supertux/command_line_arguments.cpp:115 +#: src/supertux/command_line_arguments.cpp:113 msgid "Game Options:" msgstr "Игрални настройки:" -#: src/supertux/command_line_arguments.cpp:116 +#: src/supertux/command_line_arguments.cpp:114 msgid " --edit-level Open given level in editor" msgstr " --edit-level Отваряне на посоченото ниво в редактора" -#: src/supertux/command_line_arguments.cpp:117 +#: src/supertux/command_line_arguments.cpp:115 msgid " --resave Loads given level and saves it" msgstr " --resave Зарежда даденото ниво и го запазва" -#: src/supertux/command_line_arguments.cpp:118 +#: src/supertux/command_line_arguments.cpp:116 msgid " --show-fps Display framerate in levels" msgstr " --show-fps Показване на брояч за кадрите в секунда в нивата" -#: src/supertux/command_line_arguments.cpp:119 +#: src/supertux/command_line_arguments.cpp:117 msgid " --no-show-fps Do not display framerate in levels" msgstr " --no-show-fps Да не се показва брояч за кадрите в секунда в нивата" -#: src/supertux/command_line_arguments.cpp:120 +#: src/supertux/command_line_arguments.cpp:118 msgid " --show-pos Display player's current position" msgstr " --show-pos Показване на текущата позиция на играча" -#: src/supertux/command_line_arguments.cpp:121 +#: src/supertux/command_line_arguments.cpp:119 msgid " --no-show-pos Do not display player's position" msgstr " --no-show-pos да не се показва текущата позиция на играча" -#: src/supertux/command_line_arguments.cpp:122 +#: src/supertux/command_line_arguments.cpp:120 msgid " --developer Switch on developer feature" msgstr " --developer Включване на функциите за разработчици" -#: src/supertux/command_line_arguments.cpp:123 +#: src/supertux/command_line_arguments.cpp:121 msgid " -s, --debug-scripts Enable script debugger." msgstr " -s, --debug-scripts Включване на средствата за отстраняване на грешки в скриптовете." -#: src/supertux/command_line_arguments.cpp:124 +#: src/supertux/command_line_arguments.cpp:122 msgid "" " --spawn-pos X,Y Where in the level to spawn Tux. Only used if" " level is specified." msgstr " --spawn-pos X,Y Къде в нивото да се появява Тъкс. Използва се, само ако е посочено и нивото." -#: src/supertux/command_line_arguments.cpp:125 +#: src/supertux/command_line_arguments.cpp:123 msgid " --sector SECTOR Spawn Tux in SECTOR\n" msgstr " --sector СЕКТОР Тъкс ще се роди в СЕКТОР\n" -#: src/supertux/command_line_arguments.cpp:126 +#: src/supertux/command_line_arguments.cpp:124 msgid " --spawnpoint SPAWNPOINT Spawn Tux at SPAWNPOINT\n" msgstr " --spawnpoint ТОЧКА_НА_ПРЕРАЖДАНЕ Тъкс ще се роди в ТОЧКА_НА_ПРЕРАЖДАНЕ\n" -#: src/supertux/command_line_arguments.cpp:128 -msgid "Demo Recording Options:" -msgstr "Настройки за запис:" - -#: src/supertux/command_line_arguments.cpp:129 -msgid " --record-demo FILE LEVEL Record a demo to FILE" -msgstr " --record-demo ФАЙЛ НИВО Запис във ФАЙЛ" - -#: src/supertux/command_line_arguments.cpp:130 -msgid " --play-demo FILE LEVEL Play a recorded demo" -msgstr " --play-demo ФАЙЛ НИВО Изпълнение на запис" - -#: src/supertux/command_line_arguments.cpp:132 +#: src/supertux/command_line_arguments.cpp:126 msgid "Directory Options:" msgstr "Настройки на папките:" -#: src/supertux/command_line_arguments.cpp:133 +#: src/supertux/command_line_arguments.cpp:127 msgid "" " --datadir DIR Set the directory for the games datafiles" msgstr " --datadir ПАПКА Задаване на папката с файловете с данни на играта" -#: src/supertux/command_line_arguments.cpp:134 +#: src/supertux/command_line_arguments.cpp:128 msgid "" " --userdir DIR Set the directory for user data (savegames, " "etc.)" msgstr " --userdir ПАПКА Задаване на папката за потребителските данни (запазени игри и т.н.)" -#: src/supertux/command_line_arguments.cpp:136 +#: src/supertux/command_line_arguments.cpp:130 msgid "Add-On Options:" msgstr "Настройки за добавките:" -#: src/supertux/command_line_arguments.cpp:137 +#: src/supertux/command_line_arguments.cpp:131 msgid " --repository-url URL Set the URL to the Add-On repository" msgstr " --repository-url URL Задаване на адреса към хранилището с добавките" -#: src/supertux/command_line_arguments.cpp:139 +#: src/supertux/command_line_arguments.cpp:133 msgid "Environment variables:" msgstr "Променливи на средата:" -#: src/supertux/command_line_arguments.cpp:140 +#: src/supertux/command_line_arguments.cpp:134 msgid "" " SUPERTUX2_USER_DIR Directory for user data (savegames, etc.)" msgstr " SUPERTUX2_USER_DIR Папка за потребителски данни (запазени игри и т.н.)" -#: src/supertux/command_line_arguments.cpp:141 +#: src/supertux/command_line_arguments.cpp:135 msgid " SUPERTUX2_DATA_DIR Directory for the games datafiles" msgstr " SUPERTUX2_DATA_DIR Папка с файловете с данни на играта" -#: src/supertux/title_screen.cpp:44 +#: src/supertux/title_screen.cpp:272 msgid "Copyright" msgstr "Авторско право" -#: src/supertux/title_screen.cpp:45 +#: src/supertux/title_screen.cpp:273 msgid "" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to\n" "redistribute it under certain conditions; see the license file for details.\n" msgstr "Тази игра не дава НИКАКВИ ГАРАНЦИИ. Това е свободен софтуер и Вие можете да го\nразпространявате, спазвайки определени условия. Прегледайте файла с лиценза за подробности.\n" +#: src/supertux/game_object.cpp:114 +msgid "Version" +msgstr "Версия" + +#: src/supertux/game_object.cpp:129 +#: src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Type" +msgstr "Тип" + #: src/supertux/menu/integrations_menu.cpp:49 msgid "Integrations" msgstr "Интеграции" @@ -1959,60 +2509,146 @@ msgstr "Интеграции" msgid "Do not share level names when editing" msgstr "Имената на нивата да не се споделят по време на редактиране" +#: src/supertux/menu/integrations_menu.cpp:52 +msgid "" +"Enable this if you want to work on secret levels and don't want the names to" +" be spoiled" +msgstr "Включи това, ако искаш да работиш по тайни нива и не искаш да издадеш имената им" + #: src/supertux/menu/integrations_menu.cpp:54 msgid "Enable Discord integration" msgstr "Включване на интеграцията на Discord" +#: src/supertux/menu/integrations_menu.cpp:55 +msgid "" +"Sends information to your Discord application about what you're doing in the" +" game." +msgstr "Изпраща информация до приложението Discord относно това какво правиш в играта." + #: src/supertux/menu/integrations_menu.cpp:57 msgid "Discord (disabled; not compiled)" msgstr "Discord (изключено, не е компилирано)" -#: src/supertux/menu/contrib_menu.cpp:80 +#: src/supertux/menu/editor_converters_menu.cpp:61 +#: src/supertux/menu/editor_menu.cpp:85 +msgid "Convert Tiles" +msgstr "Преобразуване на плочки" + +#: src/supertux/menu/editor_converters_menu.cpp:64 +msgid "Select Tile Conversion File" +msgstr "Избери файл за преобразуване на плочки" + +#: src/supertux/menu/editor_converters_menu.cpp:72 +#, c++-format +msgid "By: {}" +msgstr "От: {}" + +#: src/supertux/menu/editor_converters_menu.cpp:75 +msgid "Convert Tiles By File" +msgstr "Преобразуване на плочки чрез файл" + +#: src/supertux/menu/editor_converters_menu.cpp:76 +msgid "Convert all tiles in the current level by a file, specified above." +msgstr "Преобразуване на всички плочки в текущото ниво чрез файл, посочен по-горе." + +#: src/supertux/menu/editor_converters_menu.cpp:89 +msgid "No tile conversion file selected." +msgstr "Няма избран файл за преобразуване на плочки" + +#: src/supertux/menu/editor_converters_menu.cpp:93 +msgid "" +"This will convert all tiles in the level. Proceed?\n" +"\n" +"Note: This should not be ran more than once on a level.\n" +"Creating a separate copy of the level is highly recommended." +msgstr "Това ще преобразува всички плочки в нивото. Да се извърши ли?\n\nЗабележка: това не трябва да се прилага повече от веднъж върху дадено ниво.\nСилно препоръчително е да се направи резервно копие на нивото." + +#: src/supertux/menu/video_system_menu.cpp:36 +msgid "Select Video System" +msgstr "Избери видео-система" + +#: src/supertux/menu/video_system_menu.cpp:37 +#, c++-format +msgid "Used video system: {}" +msgstr "Използвана видео-система: {}" + +#: src/supertux/menu/video_system_menu.cpp:54 +msgid "Restart game for the changes to take effect" +msgstr "Рестартирай играта, за да влязат в сила промените" + +#: src/supertux/menu/contrib_menu.cpp:68 #: src/supertux/menu/world_set_menu.cpp:31 msgid "Contrib Levels" msgstr "Дарени нива" -#: src/supertux/menu/debug_menu.cpp:32 +#: src/supertux/menu/contrib_menu.cpp:98 +#: src/supertux/menu/contrib_menu.cpp:112 +msgid "Official Contrib Levels" +msgstr "Официални дарени нива" + +#: src/supertux/menu/contrib_menu.cpp:99 +#: src/supertux/menu/contrib_menu.cpp:118 +msgid "Community Contrib Levels" +msgstr "Дарени нива от общността" + +#: src/supertux/menu/contrib_menu.cpp:100 +#: src/supertux/menu/contrib_menu.cpp:124 +msgid "User Contrib Levels" +msgstr "Дарени нива от потребителя" + +#: src/supertux/menu/contrib_menu.cpp:113 +msgid "How is this possible? There are no Official Contrib Levels!" +msgstr "Как така? Няма никакви официални дарени нива!" + +#: src/supertux/menu/contrib_menu.cpp:119 +msgid "No Community Contrib Levels yet. Download them from the Add-ons Menu." +msgstr "Все още няма дарени нива от общността. Можеш да свалиш такива от менюто с добавките." + +#: src/supertux/menu/contrib_menu.cpp:125 +msgid "No User Contrib Levels yet. Create some with the Level Editor." +msgstr "Все още няма дарени нива от потребителя. Създайте някое с Редактора на нива." + +#: src/supertux/menu/debug_menu.cpp:34 msgid "Debug" msgstr "Дебъгване" -#: src/supertux/menu/debug_menu.cpp:56 +#: src/supertux/menu/debug_menu.cpp:58 msgid "Game Speed" msgstr "Скорост на играта" -#: src/supertux/menu/debug_menu.cpp:57 +#: src/supertux/menu/debug_menu.cpp:59 msgid "Adjust Game Speed" msgstr "Промяна на скоростта на играта" -#: src/supertux/menu/debug_menu.cpp:63 +#: src/supertux/menu/debug_menu.cpp:65 msgid "Show Collision Rects" msgstr "Показване на правоъгълниците за сблъсък" -#: src/supertux/menu/debug_menu.cpp:64 +#: src/supertux/menu/debug_menu.cpp:66 msgid "Show Worldmap Path" msgstr "Показване на пътя на световната карта" -#: src/supertux/menu/debug_menu.cpp:65 +#: src/supertux/menu/debug_menu.cpp:67 msgid "Show Controller" msgstr "Показване на контролера" -#: src/supertux/menu/debug_menu.cpp:66 +#: src/supertux/menu/debug_menu.cpp:68 msgid "Show Framerate" msgstr "Показване на скоростта на кадрите" -#: src/supertux/menu/debug_menu.cpp:67 +#: src/supertux/menu/debug_menu.cpp:69 msgid "Draw Redundant Frames" msgstr "Изчертаване на излишните кадри" -#: src/supertux/menu/debug_menu.cpp:68 +#: src/supertux/menu/debug_menu.cpp:70 msgid "Show Player Position" msgstr "Показване на местоположението на играча" -#: src/supertux/menu/debug_menu.cpp:69 +#: src/supertux/menu/debug_menu.cpp:71 msgid "Use Bitmap Fonts" msgstr "Използване на растерни шрифтове" -#: src/supertux/menu/debug_menu.cpp:72 +#: src/supertux/menu/debug_menu.cpp:74 msgid "Dump Texture Cache" msgstr "Извличане на кеша на текстурите" @@ -2026,10 +2662,37 @@ msgid "File name" msgstr "Име на файла" #: src/supertux/menu/particle_editor_save_as.cpp:38 -#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:766 +#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:767 msgid "Save" msgstr "Запазване" +#: src/supertux/menu/multiplayer_menu.cpp:27 +#: src/supertux/menu/multiplayer_players_menu.cpp:34 +msgid "Multiplayer" +msgstr "Игра с няколко играчи" + +#: src/supertux/menu/multiplayer_menu.cpp:30 +msgid "Auto-manage Players" +msgstr "Авт. управление на играчите" + +#: src/supertux/menu/multiplayer_menu.cpp:31 +msgid "" +"Automatically add and remove players when controllers are plugged or " +"unplugged" +msgstr "Автоматично добавяне и премахване на играчи, когато бъдат включвани и изключвани контролери" + +#: src/supertux/menu/multiplayer_menu.cpp:33 +msgid "Allow Multibind" +msgstr "Разрешаване на множественото свързване" + +#: src/supertux/menu/multiplayer_menu.cpp:34 +msgid "Allow binding multiple joysticks to a single player" +msgstr "Разрешаване на свързването на няколко контролера така, че да управляват един и същ играч" + +#: src/supertux/menu/multiplayer_menu.cpp:36 +msgid "Manage Players" +msgstr "Управление на играчите" + #: src/supertux/menu/editor_sectors_menu.cpp:31 msgid "Choose Sector" msgstr "Избиране на сектор" @@ -2046,50 +2709,98 @@ msgstr "Създаване на сектор" msgid "Delete Sector" msgstr "Изтриване на сектора" -#: src/supertux/menu/editor_sectors_menu.cpp:93 +#: src/supertux/menu/editor_sectors_menu.cpp:92 msgid "Each level must have at least one sector." msgstr "Всяко ниво трябва да има поне един сектор." -#: src/supertux/menu/editor_sectors_menu.cpp:98 +#: src/supertux/menu/editor_sectors_menu.cpp:97 msgid "Do you really want to delete this sector?" msgstr "Наистина ли искаш да изтриеш този сектор?" -#: src/supertux/menu/editor_sectors_menu.cpp:101 +#: src/supertux/menu/editor_sectors_menu.cpp:100 msgid "Delete sector" msgstr "Изтриване на сектора" -#: src/supertux/menu/editor_objectgroup_menu.cpp:30 -#: src/editor/toolbox_widget.cpp:93 -msgid "Objects" -msgstr "Обекти" +#: src/supertux/menu/custom_menu_menu.cpp:49 +#: src/supertux/menu/options_menu.cpp:191 +msgid "Menu Customization" +msgstr "Персонализиране на менюто" + +#: src/supertux/menu/custom_menu_menu.cpp:51 +msgid "Menu Back Color" +msgstr "Заден цвят на менюто" + +#: src/supertux/menu/custom_menu_menu.cpp:52 +msgid "Menu Front Color" +msgstr "Преден цвят на менюто" + +#: src/supertux/menu/custom_menu_menu.cpp:53 +msgid "Menu Help Back Color" +msgstr "Заден цвят за помощта в менюто" + +#: src/supertux/menu/custom_menu_menu.cpp:54 +msgid "Menu Help Front Color" +msgstr "Преден цвят за помощта в менюто" + +#: src/supertux/menu/custom_menu_menu.cpp:55 +msgid "Label Text Color" +msgstr "Цвят за текстовете" + +#: src/supertux/menu/custom_menu_menu.cpp:56 +msgid "Active Text Color" +msgstr "Цвят за активните текстове" + +#: src/supertux/menu/custom_menu_menu.cpp:57 +msgid "Divider Line Color" +msgstr "Цвят за разделителните линии" -#: src/supertux/menu/editor_level_select_menu.cpp:62 +#: src/supertux/menu/custom_menu_menu.cpp:58 +msgid "Menu Roundness" +msgstr "Заобленост на менюто" + +#: src/supertux/menu/custom_menu_menu.cpp:60 +msgid "Editor Interface Color" +msgstr "Цвят за интерфейса на редактора" + +#: src/supertux/menu/custom_menu_menu.cpp:61 +msgid "Editor Hover Color" +msgstr "Цвят при посочване в редактора" + +#: src/supertux/menu/custom_menu_menu.cpp:62 +msgid "Editor Grab Color" +msgstr "Цвят при хващане в редактора" + +#: src/supertux/menu/custom_menu_menu.cpp:64 +msgid "Reset to defaults" +msgstr "Връщане на стандартните настройки" + +#: src/supertux/menu/editor_level_select_menu.cpp:72 msgid "Empty World" msgstr "Празен свят" -#: src/supertux/menu/editor_level_select_menu.cpp:77 +#: src/supertux/menu/editor_level_select_menu.cpp:87 msgid "Create Level" msgstr "Създаване на ниво" -#: src/supertux/menu/editor_level_select_menu.cpp:81 +#: src/supertux/menu/editor_level_select_menu.cpp:91 msgid "Edit Worldmap" msgstr "Редактиране на световната карта" -#: src/supertux/menu/editor_level_select_menu.cpp:83 +#: src/supertux/menu/editor_level_select_menu.cpp:93 msgid "Create Worldmap" msgstr "Създаване на световна карта" -#: src/supertux/menu/editor_level_select_menu.cpp:85 -#: src/supertux/menu/editor_delete_level_menu.cpp:33 +#: src/supertux/menu/editor_level_select_menu.cpp:95 +#: src/supertux/menu/editor_delete_level_menu.cpp:55 msgid "Delete level" msgstr "Изтриване на нивото" -#: src/supertux/menu/editor_level_select_menu.cpp:87 -#: src/supertux/menu/editor_levelset_menu.cpp:56 +#: src/supertux/menu/editor_level_select_menu.cpp:97 +#: src/supertux/menu/editor_levelset_menu.cpp:50 msgid "World Settings" msgstr "Настройки на света" -#: src/supertux/menu/editor_level_select_menu.cpp:127 +#: src/supertux/menu/editor_level_select_menu.cpp:141 msgid "" "Share this worldmap under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -2097,7 +2808,7 @@ msgid "" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." msgstr "Сподели тази световна карта, задавайки ѝ международен лиценз CC-BY-SA 4.0 (препоръчително).\nТой позволява промяната и разпространението от трети страни.\nАко този лиценз не те устройва, може да го промениш в свойствата на световната карта.\nВНИМАНИЕ: Създателите на Супер Тъкс не носят отговорност за твоя избор на лиценз." -#: src/supertux/menu/editor_level_select_menu.cpp:134 +#: src/supertux/menu/editor_level_select_menu.cpp:148 msgid "" "Share this level under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -2105,495 +2816,815 @@ msgid "" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." msgstr "Сподели това ниво, задавайки му международен лиценз CC-BY-SA 4.0 (препоръчително).\nТой позволява промяната и разпространението от трети страни.\nАко този лиценз не те устройва, може да го промениш в свойствата на нивото.\nВНИМАНИЕ: Създателите на Супер Тъкс не носят отговорност за твоя избор на лиценз." -#: src/supertux/menu/editor_level_select_menu.cpp:162 +#: src/supertux/menu/editor_level_select_menu.cpp:179 msgid "" "An auto-save recovery file was found. Would you like to restore the recovery\n" "file and resume where you were before the editor crashed?" msgstr "Беше открит автоматично запазен файл за възстановяване. Искаш ли\nда го използваш и да продължиш от там, докъдето беше преди\nсрива на редактора?" -#: src/supertux/menu/editor_level_select_menu.cpp:169 +#: src/supertux/menu/editor_level_select_menu.cpp:186 msgid "This will delete the auto-save file. Are you sure?" msgstr "Това ще изтрие автоматично запазения файл. Наистина ли искаш това?" -#: src/supertux/menu/worldmap_cheat_menu.cpp:34 -#: src/supertux/menu/cheat_menu.cpp:30 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:35 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:52 +#: src/supertux/menu/cheat_apply_menu.cpp:33 +#: src/supertux/menu/cheat_apply_menu.cpp:51 +msgid "Apply cheat to player" +msgstr "Прилагане на измама към играч" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:60 +#: src/supertux/menu/multiplayer_players_menu.cpp:39 +#: src/supertux/menu/keyboard_menu.cpp:63 +#: src/supertux/menu/cheat_apply_menu.cpp:39 +#: src/supertux/menu/cheat_apply_menu.cpp:59 +#: src/supertux/menu/multiplayer_player_menu.cpp:37 +#, c++-format +msgid "Player {}" +msgstr "Играч {}" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:57 +#: src/supertux/menu/cheat_apply_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:56 +msgid "All Players" +msgstr "Всички играчи" + +#: src/supertux/menu/worldmap_cheat_menu.cpp:36 +#: src/supertux/menu/cheat_menu.cpp:31 msgid "Cheats" msgstr "Измами" -#: src/supertux/menu/worldmap_cheat_menu.cpp:36 -#: src/supertux/menu/cheat_menu.cpp:32 +#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:33 msgid "Bonus: Grow" msgstr "Бонус: Растеж" -#: src/supertux/menu/worldmap_cheat_menu.cpp:37 +#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:34 msgid "Bonus: Fire" msgstr "Бонус: Огън" -#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/cheat_menu.cpp:35 msgid "Bonus: Ice" msgstr "Бонус: Лед" -#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/cheat_menu.cpp:36 msgid "Bonus: Air" msgstr "Бонус: Въздух" -#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:42 +#: src/supertux/menu/cheat_menu.cpp:37 msgid "Bonus: Earth" msgstr "Бонус: Земя" -#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/worldmap_cheat_menu.cpp:43 msgid "Bonus: None" msgstr "Бонус: Няма" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:51 msgid "Leave Ghost Mode" msgstr "Изключване на призрачния режим" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:50 msgid "Activate Ghost Mode" msgstr "Включване на призрачния режим" -#: src/supertux/menu/worldmap_cheat_menu.cpp:46 -#: src/supertux/menu/cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:48 +#: src/supertux/menu/cheat_menu.cpp:41 msgid "Finish Level" msgstr "Завършване на ниво" -#: src/supertux/menu/worldmap_cheat_menu.cpp:47 +#: src/supertux/menu/worldmap_cheat_menu.cpp:49 msgid "Reset Level" msgstr "Нулиране на нивото" -#: src/supertux/menu/worldmap_cheat_menu.cpp:49 +#: src/supertux/menu/worldmap_cheat_menu.cpp:51 msgid "Finish Worldmap" msgstr "Завършване на световната карта" -#: src/supertux/menu/worldmap_cheat_menu.cpp:50 +#: src/supertux/menu/worldmap_cheat_menu.cpp:52 msgid "Reset Worldmap" msgstr "Нулиране на световната карта" -#: src/supertux/menu/worldmap_cheat_menu.cpp:52 +#: src/supertux/menu/worldmap_cheat_menu.cpp:54 msgid "Go to level" msgstr "Към ниво" -#: src/supertux/menu/worldmap_cheat_menu.cpp:53 +#: src/supertux/menu/worldmap_cheat_menu.cpp:55 msgid "Go to main spawnpoint" msgstr "Към основната точка на прераждане" -#: src/supertux/menu/worldmap_cheat_menu.cpp:145 +#: src/supertux/menu/worldmap_cheat_menu.cpp:188 msgid "Select level" msgstr "Избиране на ниво" #: src/supertux/menu/editor_save_as.cpp:33 -#: src/supertux/menu/editor_menu.cpp:49 +#: src/supertux/menu/editor_menu.cpp:63 msgid "Save Level as" msgstr "Запазване на нивото като" #: src/supertux/menu/editor_save_as.cpp:33 -#: src/supertux/menu/editor_menu.cpp:50 +#: src/supertux/menu/editor_menu.cpp:64 msgid "Save Copy" msgstr "Запазване на копие" -#: src/supertux/menu/editor_levelset_select_menu.cpp:72 +#: src/supertux/menu/editor_levelset_select_menu.cpp:71 msgid "Choose World" msgstr "Избиране на свят" -#: src/supertux/menu/editor_levelset_select_menu.cpp:100 -#, c-format -msgid "%d level" -msgid_plural "%d levels" -msgstr[0] "%d ниво" -msgstr[1] "%d нива" +#: src/supertux/menu/editor_levelset_select_menu.cpp:99 +#, c++-format +msgid "{} level" +msgid_plural "{} levels" +msgstr[0] "{} ниво" +msgstr[1] "{} нива" -#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_levelset_select_menu.cpp:112 msgid "Create World" msgstr "Създаване на свят" -#: src/supertux/menu/options_menu.cpp:98 src/supertux/menu/main_menu.cpp:64 -#: src/supertux/menu/game_menu.cpp:61 src/supertux/menu/worldmap_menu.cpp:31 -msgid "Options" -msgstr "Настройки" - -#: src/supertux/menu/options_menu.cpp:104 -#: src/supertux/menu/options_menu.cpp:142 -#: src/supertux/menu/options_menu.cpp:455 -#: src/supertux/menu/options_menu.cpp:476 src/editor/object_settings.cpp:119 -msgid "auto" -msgstr "авт." - -#: src/supertux/menu/options_menu.cpp:221 -msgid "Desktop" -msgstr "Работен плот" - -#: src/supertux/menu/options_menu.cpp:251 -msgid "on" -msgstr "ВКЛ" +#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:41 +msgid "Delete World" +msgstr "Изтриване на света" -#: src/supertux/menu/options_menu.cpp:252 -msgid "off" -msgstr "ИЗКЛ" +#: src/supertux/menu/options_menu.cpp:72 +#: src/supertux/menu/options_select_menu.cpp:35 +msgid "Locale" +msgstr "Регионални настройки" -#: src/supertux/menu/options_menu.cpp:253 -msgid "adaptive" -msgstr "адаптивна" - -#: src/supertux/menu/options_menu.cpp:347 +#: src/supertux/menu/options_menu.cpp:76 msgid "Select Language" msgstr "Избор на език" -#: src/supertux/menu/options_menu.cpp:348 +#: src/supertux/menu/options_menu.cpp:77 msgid "Select a different language to display text in" msgstr "Избери друг език за текстовете" -#: src/supertux/menu/options_menu.cpp:350 +#: src/supertux/menu/options_menu.cpp:79 msgid "Language Packs" msgstr "Езикови пакети" -#: src/supertux/menu/options_menu.cpp:351 +#: src/supertux/menu/options_menu.cpp:80 msgid "Language packs contain up-to-date translations" msgstr "Езиковите пакети съдържат актуални преводи" -#: src/supertux/menu/options_menu.cpp:353 -#: src/supertux/menu/profile_menu.cpp:34 -msgid "Select Profile" -msgstr "Избиране на профил" - -#: src/supertux/menu/options_menu.cpp:354 -msgid "Select a profile to play with" -msgstr "Избери профил за игра" +#: src/supertux/menu/options_menu.cpp:88 +#: src/supertux/menu/options_select_menu.cpp:37 +msgid "Video" +msgstr "Видео" -#: src/supertux/menu/options_menu.cpp:358 +#: src/supertux/menu/options_menu.cpp:91 msgid "Window Resizable" msgstr "Прозорецът може да се преоразмерява" -#: src/supertux/menu/options_menu.cpp:359 +#: src/supertux/menu/options_menu.cpp:92 msgid "Allow window resizing, might require a restart to take effect" msgstr "Позволяване на преоразмеряването на прозореца. Това може да изисква рестартиране, за да влезе в сила." -#: src/supertux/menu/options_menu.cpp:361 -msgid "Window Resolution" -msgstr "Резолюция на прозореца" - -#: src/supertux/menu/options_menu.cpp:362 -msgid "Resize the window to the given size" -msgstr "Задаване на конкретен размер на прозореца" - -#: src/supertux/menu/options_menu.cpp:364 +#: src/supertux/menu/options_menu.cpp:96 msgid "Fullscreen" msgstr "На цял екран" -#: src/supertux/menu/options_menu.cpp:365 +#: src/supertux/menu/options_menu.cpp:97 msgid "Fill the entire screen" msgstr "Играта запълва целия екран" -#: src/supertux/menu/options_menu.cpp:367 -msgid "Fullscreen Resolution" -msgstr "Резолюция за цял екран" - -#: src/supertux/menu/options_menu.cpp:368 -msgid "" -"Determine the resolution used in fullscreen mode (you must toggle fullscreen" -" to complete the change)" -msgstr "Задава резолюцията, която се използва в режим на цял екран (трябва да превключиш на цял екран, за да бъде завършена промяната)" - -#: src/supertux/menu/options_menu.cpp:373 +#: src/supertux/menu/options_menu.cpp:104 msgid "Fit to browser" msgstr "Напасване към браузъра" -#: src/supertux/menu/options_menu.cpp:374 +#: src/supertux/menu/options_menu.cpp:105 msgid "Fit the resolution to the size of your browser" msgstr "Напасване на резолюцията към размера на браузъра" -#: src/supertux/menu/options_menu.cpp:378 -msgid "Magnification" -msgstr "Увеличение" +#: src/supertux/menu/options_menu.cpp:116 +msgid "Change Video System" +msgstr "Промяна на видео-системата" -#: src/supertux/menu/options_menu.cpp:379 -msgid "Change the magnification of the game area" -msgstr "Задава увеличението на игралната област" +#: src/supertux/menu/options_menu.cpp:117 +msgid "Change video system used to render graphics" +msgstr "Промяна на видео-системата използвана за изчертаване на графиките" -#: src/supertux/menu/options_menu.cpp:381 -msgid "VSync" -msgstr "Вертикална синхронизация" - -#: src/supertux/menu/options_menu.cpp:382 -msgid "Set the VSync mode" -msgstr "Задава режима на вертикална синхронизация" - -#: src/supertux/menu/options_menu.cpp:385 -msgid "Aspect Ratio" -msgstr "Съотношение" +#: src/supertux/menu/options_menu.cpp:124 +#: src/supertux/menu/options_select_menu.cpp:38 +msgid "Audio" +msgstr "Звук и музика" -#: src/supertux/menu/options_menu.cpp:386 -msgid "Adjust the aspect ratio" -msgstr "Задава съотношението на страните" - -#: src/supertux/menu/options_menu.cpp:392 +#: src/supertux/menu/options_menu.cpp:129 msgid "Disable all sound effects" msgstr "Включва/изключва всички звукови ефекти" -#: src/supertux/menu/options_menu.cpp:394 +#: src/supertux/menu/options_menu.cpp:131 msgid "Disable all music" msgstr "Включва/изключва цялата музика" -#: src/supertux/menu/options_menu.cpp:396 -msgid "Sound Volume" -msgstr "Сила на звуците" - -#: src/supertux/menu/options_menu.cpp:397 -msgid "Adjust sound volume" -msgstr "Настройване на силата на звуците" - -#: src/supertux/menu/options_menu.cpp:399 -msgid "Music Volume" -msgstr "Сила на музиката" - -#: src/supertux/menu/options_menu.cpp:400 -msgid "Adjust music volume" -msgstr "Настройване на силата на музиката" - -#: src/supertux/menu/options_menu.cpp:404 +#: src/supertux/menu/options_menu.cpp:138 msgid "Sound (disabled)" msgstr "Звук (изключен)" -#: src/supertux/menu/options_menu.cpp:405 +#: src/supertux/menu/options_menu.cpp:139 msgid "Music (disabled)" msgstr "Музика (изключена)" -#: src/supertux/menu/options_menu.cpp:408 -#: src/supertux/menu/keyboard_menu.cpp:30 +#: src/supertux/menu/options_menu.cpp:147 +#: src/supertux/menu/options_select_menu.cpp:39 +msgid "Controls" +msgstr "Управление" + +#: src/supertux/menu/options_menu.cpp:151 +msgid "Enable Rumbling Controllers" +msgstr "Включване на вибрацията" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "Enable vibrating the game controllers." +msgstr "Включване на вибрацията на контролерите." + +#: src/supertux/menu/options_menu.cpp:152 +msgid "This feature is currently only used in the multiplayer options menu." +msgstr "В момента тази функционалност се използва само в менюто с настройки за игра с няколко играчи." + +#: src/supertux/menu/options_menu.cpp:154 +#: src/supertux/menu/keyboard_menu.cpp:34 msgid "Setup Keyboard" msgstr "Клавиатурна настройка" -#: src/supertux/menu/options_menu.cpp:409 +#: src/supertux/menu/options_menu.cpp:155 msgid "Configure key-action mappings" msgstr "Настройка на действията с клавиатура" -#: src/supertux/menu/options_menu.cpp:412 -#: src/supertux/menu/joystick_menu.cpp:52 +#: src/supertux/menu/options_menu.cpp:158 +#: src/supertux/menu/joystick_menu.cpp:54 msgid "Setup Joystick" msgstr "Настройване на контролер" -#: src/supertux/menu/options_menu.cpp:413 +#: src/supertux/menu/options_menu.cpp:159 msgid "Configure joystick control-action mappings" msgstr "Настройка на действията с контролер" -#: src/supertux/menu/options_menu.cpp:417 -msgid "On-screen controls" -msgstr "Екранни бутони за управление" +#: src/supertux/menu/options_menu.cpp:167 +#: src/supertux/menu/options_select_menu.cpp:40 +msgid "Extras" +msgstr "Допълнителни" -#: src/supertux/menu/options_menu.cpp:418 -msgid "Toggle on-screen controls for mobile devices" -msgstr "Превключване на екранните бутони за управление, за мобилни устройства" +#: src/supertux/menu/options_menu.cpp:170 +#: src/supertux/menu/profile_menu.cpp:56 +msgid "Select Profile" +msgstr "Избиране на профил" -#: src/supertux/menu/options_menu.cpp:420 +#: src/supertux/menu/options_menu.cpp:171 +msgid "Select a profile to play with" +msgstr "Избери профил за игра" + +#: src/supertux/menu/options_menu.cpp:174 +msgid "Multiplayer settings" +msgstr "Настройки за игра с няколко играчи" + +#: src/supertux/menu/options_menu.cpp:175 +msgid "Configure settings specific to multiplayer" +msgstr "Промяна на настройките влияещи върху играта с няколко играчи" + +#: src/supertux/menu/options_menu.cpp:178 msgid "Enable transitions" msgstr "Включване на преходите" -#: src/supertux/menu/options_menu.cpp:421 +#: src/supertux/menu/options_menu.cpp:179 msgid "Enable screen transitions and smooth menu animation" msgstr "Включване на екранните преходи и гладките анимации в менютата" -#: src/supertux/menu/options_menu.cpp:425 -msgid "Developer Mode" -msgstr "Режим за разработчици" +#: src/supertux/menu/options_menu.cpp:181 +msgid "Custom title screen levels" +msgstr "Персонализирани нива за началния екран" -#: src/supertux/menu/options_menu.cpp:430 +#: src/supertux/menu/options_menu.cpp:182 +msgid "Allow overriding the title screen level, when loading certain worlds" +msgstr "Позволява промяната на нивото, което да се показва на началния екран, когато се зареждат определени светове" + +#: src/supertux/menu/options_menu.cpp:185 msgid "Christmas Mode" msgstr "Коледен режим" -#: src/supertux/menu/options_menu.cpp:433 +#: src/supertux/menu/options_menu.cpp:187 +msgid "Integrations and presence" +msgstr "Интеграции и присъствие" + +#: src/supertux/menu/options_menu.cpp:188 +msgid "" +"Manage whether SuperTux should display the levels you play on your social " +"media profiles (Discord)" +msgstr "Управление на това дали Супер Тъкс да показва нивата, които играеш, в профилите ти в социалните мрежи (Discord)" + +#: src/supertux/menu/options_menu.cpp:192 +msgid "Customize the appearance of the menus" +msgstr "Персонализиране на външния вид на менютата" + +#: src/supertux/menu/options_menu.cpp:199 +#: src/supertux/menu/options_select_menu.cpp:41 +msgid "Advanced" +msgstr "Разширени" + +#: src/supertux/menu/options_menu.cpp:204 +msgid "Developer Mode" +msgstr "Режим за разработчици" + +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirmation Dialog" msgstr "Прозорец за потвърждение" -#: src/supertux/menu/options_menu.cpp:433 +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirm aborting level" msgstr "Потвърждаване на напускането на нивото" -#: src/supertux/menu/options_menu.cpp:434 +#: src/supertux/menu/options_menu.cpp:208 msgid "Pause on focus loss" msgstr "Спиране на пауза при загуба на фокус" -#: src/supertux/menu/options_menu.cpp:435 +#: src/supertux/menu/options_menu.cpp:209 msgid "Automatically pause the game when the window loses focus" msgstr "Автоматично спиране на играта на пауза, когато прозорецът не е на фокус" -#: src/supertux/menu/options_menu.cpp:436 +#: src/supertux/menu/options_menu.cpp:211 msgid "Use custom mouse cursor" msgstr "Персонализиран курсор" -#: src/supertux/menu/options_menu.cpp:436 +#: src/supertux/menu/options_menu.cpp:211 msgid "Whether the game renders its own cursor or uses the system's cursor" msgstr "Дали играта да изчертава свой собствен курсор, или да използва системния" -#: src/supertux/menu/options_menu.cpp:438 -msgid "Integrations and presence" -msgstr "Интеграции и присъствие" +#: src/supertux/menu/options_menu.cpp:214 +msgid "Check for new releases" +msgstr "Проверки за нови версии" -#: src/supertux/menu/options_menu.cpp:439 +#: src/supertux/menu/options_menu.cpp:215 msgid "" -"Manage whether SuperTux should display the levels you play on your social " -"media profiles (Discord)" -msgstr "Управление на това дали Супер Тъкс да показва нивата, които играеш, в профилите ти в социалните мрежи (Discord)" +"Allows the game to perform checks for new SuperTux releases on startup and " +"notify if any found." +msgstr "Позволява на играта да проверява за нови версии на Супер Тъкс при стартиране, и да известява, ако такива бъдат намерени." + +#: src/supertux/menu/options_menu.cpp:245 +#: src/supertux/menu/options_menu.cpp:288 src/supertux/direction.cpp:76 +msgid "auto" +msgstr "авт." + +#: src/supertux/menu/options_menu.cpp:281 +msgid "Magnification" +msgstr "Увеличение" + +#: src/supertux/menu/options_menu.cpp:282 +msgid "Change the magnification of the game area" +msgstr "Задава увеличението на игралната област" + +#: src/supertux/menu/options_menu.cpp:318 +msgid "Aspect Ratio" +msgstr "Съотношение" + +#: src/supertux/menu/options_menu.cpp:319 +msgid "Adjust the aspect ratio" +msgstr "Задава съотношението на страните" + +#: src/supertux/menu/options_menu.cpp:346 +msgid "Window Resolution" +msgstr "Резолюция на прозореца" + +#: src/supertux/menu/options_menu.cpp:347 +msgid "Resize the window to the given size" +msgstr "Задаване на конкретен размер на прозореца" + +#: src/supertux/menu/options_menu.cpp:377 +msgid "Desktop" +msgstr "Работен плот" + +#: src/supertux/menu/options_menu.cpp:404 +msgid "Fullscreen Resolution" +msgstr "Резолюция за цял екран" + +#: src/supertux/menu/options_menu.cpp:405 +msgid "" +"Determine the resolution used in fullscreen mode (you must toggle fullscreen" +" to complete the change)" +msgstr "Задава резолюцията, която се използва в режим на цял екран (трябва да превключиш на цял екран, за да бъде завършена промяната)" + +#: src/supertux/menu/options_menu.cpp:411 +msgid "on" +msgstr "ВКЛ" + +#: src/supertux/menu/options_menu.cpp:412 +msgid "off" +msgstr "ИЗКЛ" + +#: src/supertux/menu/options_menu.cpp:413 +msgid "adaptive" +msgstr "адаптивна" + +#: src/supertux/menu/options_menu.cpp:431 +msgid "VSync" +msgstr "Вертикална синхронизация" + +#: src/supertux/menu/options_menu.cpp:432 +msgid "Set the VSync mode" +msgstr "Задава режима на вертикална синхронизация" + +#: src/supertux/menu/options_menu.cpp:467 +msgid "Sound Volume" +msgstr "Сила на звуците" + +#: src/supertux/menu/options_menu.cpp:468 +msgid "Adjust sound volume" +msgstr "Настройване на силата на звуците" + +#: src/supertux/menu/options_menu.cpp:503 +msgid "Music Volume" +msgstr "Сила на музиката" -#: src/supertux/menu/options_menu.cpp:559 +#: src/supertux/menu/options_menu.cpp:504 +msgid "Adjust music volume" +msgstr "Настройване на силата на музиката" + +#: src/supertux/menu/options_menu.cpp:517 +msgid "On-screen controls scale" +msgstr "Мащаб на екранните бутони за управление" + +#: src/supertux/menu/options_menu.cpp:638 msgid "" "The game couldn't detect your browser resolution.\n" "This most likely happens because it is not embedded\n" "in the SuperTux custom HTML template.\n" msgstr "Играта не успя да засече резолюцията на браузъра.\nПричината за това вероятно е, че той не е вграден\nв персонализирания шаблон за HTML на Супер Тъкс.\n" -#: src/supertux/menu/main_menu.cpp:56 src/supertux/menu/world_set_menu.cpp:28 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:80 +msgid "You cannot delete the world that you are editing" +msgstr "Не можете да изтриеш света, който редактирате" + +#: src/supertux/menu/editor_delete_levelset_menu.cpp:83 +#, c++-format +msgid "You are about to delete world \"{}\". Are you sure?" +msgstr "На път си да изтриеш света „{}“. Наистина ли искаш това?" + +#: src/supertux/menu/addon_preview_menu.cpp:82 +#, c++-format +msgid "{} \"{}\"" +msgstr "{} „{}“" + +#: src/supertux/menu/addon_preview_menu.cpp:87 +msgid "Some information about this add-on is not available." +msgstr "Част от информацията относно тази добавка не е налична." + +#: src/supertux/menu/addon_preview_menu.cpp:88 +msgid "Perform a \"Check Online\" to try retrieving it." +msgstr "Изпълни „Проверка в Интернет“, за да опиташ да я свалиш." + +#: src/supertux/menu/addon_preview_menu.cpp:92 +msgid "No author specified." +msgstr "Няма посочен автор." + +#: src/supertux/menu/addon_preview_menu.cpp:92 +#, c++-format +msgid "Author: {}" +msgstr "Автор: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:93 +#, c++-format +msgid "Type: {}" +msgstr "Тип: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:94 +msgid "No license specified." +msgstr "Няма посочен лиценз" + +#: src/supertux/menu/addon_preview_menu.cpp:94 +#, c++-format +msgid "License: {}" +msgstr "Лиценз: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:99 +msgid "Dependencies:" +msgstr "Зависимости:" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Installed" +msgstr "Инсталирана" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Not installed" +msgstr "Не е инсталирана" + +#: src/supertux/menu/addon_preview_menu.cpp:113 +msgid "Not available!" +msgstr "Не е налична!" + +#: src/supertux/menu/addon_preview_menu.cpp:120 +msgid "Description:" +msgstr "Описание:" + +#: src/supertux/menu/addon_preview_menu.cpp:123 +msgid "No description available." +msgstr "Няма налично описание" + +#: src/supertux/menu/addon_preview_menu.cpp:147 +msgid "Failed to load all available screenshot previews." +msgstr "Не могат да бъдат заредени всички екранни снимки за предварителен преглед." + +#: src/supertux/menu/addon_preview_menu.cpp:152 +msgid "Show screenshots" +msgstr "Показване на екранните снимки" + +#: src/supertux/menu/addon_preview_menu.cpp:165 +msgid "Screenshot previews are disabled for automatic installs." +msgstr "Екранните снимки за предварителен преглед са изключени за автоматично инсталираните добавки." + +#: src/supertux/menu/addon_preview_menu.cpp:169 +msgid "No screenshot previews available." +msgstr "Няма налични екранни снимки" + +#: src/supertux/menu/addon_preview_menu.cpp:177 +msgid "Install" +msgstr "Инсталиране" + +#: src/supertux/menu/addon_preview_menu.cpp:190 +msgid "Uninstall" +msgstr "Деинсталиране" + +#: src/supertux/menu/addon_preview_menu.cpp:214 +#, c++-format +msgid "Are you sure you want to uninstall \"{}\"?" +msgstr "Наистина ли искаш да деинсталираш „{}“?" + +#: src/supertux/menu/addon_preview_menu.cpp:215 +msgid "" +"\n" +"Your progress won't be lost." +msgstr "\nНапредъкът ти няма да се загуби." + +#: src/supertux/menu/addon_preview_menu.cpp:227 +#, c++-format +msgid "" +"NOTE: The add-on \"{}\" is a dependency of {} other installed {}.\n" +"Are you sure you wish to uninstall?" +msgstr "ЗАБЕЛЕЖКА: добавката „{}“ е зависимост на други {} инсталирани {}.\nНаистина ли искаш да я деинсталираш?" + +#: src/supertux/menu/addon_preview_menu.cpp:246 +#, c++-format +msgid "" +"Cannot toggle add-on \"{}\":\n" +"{}" +msgstr "Добавката „{}“ не може да бъде превключена:\n{}" + +#: src/supertux/menu/addon_preview_menu.cpp:279 +msgid "Fetching screenshot previews..." +msgstr "Получаване на екранните снимки…" + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Updating" +msgstr "Обновяване" + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Downloading" +msgstr "Сваляне" + +#: src/supertux/menu/addon_preview_menu.cpp:328 +msgid "Add-on uninstalled successfully." +msgstr "Добавката е инсталирана успешно." + +#: src/supertux/menu/addon_preview_menu.cpp:333 +#, c++-format +msgid "" +"Error uninstalling add-on:\n" +"{}" +msgstr "Грешка при деинсталирането на добавката:\n{}" + +#: src/supertux/menu/addon_preview_menu.cpp:361 +msgid "" +"Please restart SuperTux\n" +"for these changes to take effect." +msgstr "Рестартирай Супер Тъкс,\nза да влязат в сила тези промени." + +#: src/supertux/menu/main_menu.cpp:51 src/supertux/menu/world_set_menu.cpp:28 msgid "Start Game" msgstr "Начало" -#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/addon_menu.cpp:122 +#: src/supertux/menu/main_menu.cpp:55 msgid "Add-ons" msgstr "Добавки" -#: src/supertux/menu/main_menu.cpp:62 src/supertux/menu/web_asset_menu.cpp:38 +#: src/supertux/menu/main_menu.cpp:57 src/supertux/menu/web_asset_menu.cpp:38 msgid "Manage Assets" msgstr "Управление на ресурсите" -#: src/supertux/menu/main_menu.cpp:65 src/supertux/menu/editor_menu.cpp:43 +#: src/supertux/menu/main_menu.cpp:59 +#: src/supertux/menu/options_select_menu.cpp:29 +#: src/supertux/menu/game_menu.cpp:58 src/supertux/menu/worldmap_menu.cpp:31 +#: src/supertux/menu/editor_menu.cpp:70 +msgid "Options" +msgstr "Настройки" + +#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/editor_menu.cpp:58 msgid "Level Editor" msgstr "Редактор на нива" -#: src/supertux/menu/main_menu.cpp:66 +#: src/supertux/menu/main_menu.cpp:61 msgid "Credits" msgstr "Заслуги" -#: src/supertux/menu/main_menu.cpp:67 +#: src/supertux/menu/main_menu.cpp:64 msgid "Donate" msgstr "Дарение" -#: src/supertux/menu/main_menu.cpp:69 +#: src/supertux/menu/main_menu.cpp:67 msgid "Quit" msgstr "Изход" -#: src/supertux/menu/editor_sector_menu.cpp:35 +#: src/supertux/menu/main_menu.cpp:106 +msgid "" +"This will take you to the SuperTux donation page. Are you sure you want to " +"continue?" +msgstr "Това ще те препрати към страницата за дарения на Супер Тъкс. Наистина ли искаш да продължиш?" + +#: src/supertux/menu/editor_sector_menu.cpp:34 +#, c++-format +msgid "Sector {}" +msgstr "Сектор {}" + +#: src/supertux/menu/editor_sector_menu.cpp:37 msgid "Initialization script" msgstr "Скрипт за инициализация" -#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_sector_menu.cpp:38 msgid "Gravity" msgstr "Гравитация" -#: src/supertux/menu/editor_sector_menu.cpp:41 +#: src/supertux/menu/editor_sector_menu.cpp:43 msgid "Resize offset X" msgstr "Отместване за преоразмеряването по X" -#: src/supertux/menu/editor_sector_menu.cpp:42 +#: src/supertux/menu/editor_sector_menu.cpp:44 msgid "Resize offset Y" msgstr "Отместване за преоразмеряването по Y" -#: src/supertux/menu/editor_sector_menu.cpp:43 +#: src/supertux/menu/editor_sector_menu.cpp:45 msgid "Resize" msgstr "Преоразмеряване" -#: src/supertux/menu/profile_menu.cpp:41 -#, c-format -msgid "[Profile %s]" -msgstr "[Профил %s]" - -#: src/supertux/menu/profile_menu.cpp:45 -#, c-format -msgid "Profile %s" -msgstr "Профил %s" - -#: src/supertux/menu/profile_menu.cpp:50 -msgid "Reset profile" -msgstr "Нулиране на профила" - -#: src/supertux/menu/profile_menu.cpp:51 -msgid "Reset all profiles" -msgstr "Нулиране на всички профили" - -#: src/supertux/menu/profile_menu.cpp:67 -msgid "Deleting your profile will reset your game progress. Are you sure?" -msgstr "Ако изтриеш профила си, напредъкът ти в играта ще бъде заличен. Наистина ли искаш това?" +#: src/supertux/menu/profile_menu.cpp:60 +msgid "No profiles found." +msgstr "Няма намерени профили." + +#: src/supertux/menu/profile_menu.cpp:68 +#: src/supertux/menu/profile_menu.cpp:149 +#: src/supertux/menu/profile_menu.cpp:168 +#, c++-format +msgid "Profile {}" +msgstr "Профил {}" + +#: src/supertux/menu/profile_menu.cpp:69 +#, c++-format +msgid "{} (Profile {})" +msgstr "{} (Профил {})" + +#: src/supertux/menu/profile_menu.cpp:84 +msgid "No profile selected." +msgstr "Няма избран профил" + +#: src/supertux/menu/profile_menu.cpp:91 src/supertux/menu/profile_menu.cpp:93 +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Rename" +msgstr "Преименуване" + +#: src/supertux/menu/profile_menu.cpp:98 +#: src/supertux/menu/profile_menu.cpp:100 +msgid "Reset" +msgstr "Нулиране" + +#: src/supertux/menu/profile_menu.cpp:103 +#: src/supertux/menu/profile_menu.cpp:105 +msgid "Reset all" +msgstr "Нулиране на всичко" + +#: src/supertux/menu/profile_menu.cpp:113 +#: src/supertux/menu/profile_menu.cpp:115 +msgid "Delete all" +msgstr "Изтриване на всичко" + +#: src/supertux/menu/profile_menu.cpp:148 +#, c++-format +msgid "" +"This will reset all game progress on the profile \"{}\".\n" +"Are you sure?" +msgstr "Това ще заличи целия напредък на профила „{}“ в играта.\nНаистина ли искаш това?" -#: src/supertux/menu/profile_menu.cpp:73 +#: src/supertux/menu/profile_menu.cpp:157 msgid "This will reset your game progress on all profiles. Are you sure?" msgstr "Това ще изтрие напредъка ти във всички профили. Наистина ли искаш това?" -#: src/supertux/menu/editor_levelset_menu.cpp:59 +#: src/supertux/menu/profile_menu.cpp:167 +#, c++-format +msgid "" +"This will delete the profile \"{}\",\n" +"including all game progress on it. Are you sure?" +msgstr "Това ще изтрие профила „{}“,\nвключително целия му напредък в играта. Наистина ли искаш това?" + +#: src/supertux/menu/profile_menu.cpp:178 +msgid "" +"This will delete all profiles, including all game progress on them.\n" +"Are you sure?" +msgstr "Това ще изтрие всички профили, включително напредъка им в играта.\nНаистина ли искаш това?" + +#: src/supertux/menu/editor_levelset_menu.cpp:53 #: src/supertux/menu/editor_new_levelset_menu.cpp:35 msgid "Description" msgstr "Описание" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:48 -#: data//images/engine/editor/objects.stoi:371 -msgid "Worldmap" -msgstr "Световна карта" +#: src/supertux/menu/editor_levelset_menu.cpp:55 +msgid "Title Screen Level" +msgstr "Ниво на началния екран" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:45 -msgid "Levelset" -msgstr "Комплект нива" +#: src/supertux/menu/editor_levelset_menu.cpp:56 +msgid "A level to be used for the title screen, after exiting the world." +msgstr "Ниво, което да се ползва за началния екран, след излизане от света." -#: src/supertux/menu/addon_menu.cpp:51 -msgid "World" -msgstr "Свят" +#: src/supertux/menu/multiplayer_players_menu.cpp:46 +msgid "Add Player" +msgstr "Добавяне на играч" -#: src/supertux/menu/addon_menu.cpp:54 -msgid "Add-on" -msgstr "Добавка" +#: src/supertux/menu/multiplayer_players_menu.cpp:59 +msgid "Remove Last Player" +msgstr "Премахване на последния играч" -#: src/supertux/menu/addon_menu.cpp:60 -msgid "Unknown" -msgstr "Непознато" +#: src/supertux/menu/multiplayer_players_menu.cpp:62 +msgid "" +"Warning: The player you are trying to\n" +"remove is currently in-game.\n" +"\n" +"Do you wish to remove them anyways?" +msgstr "Внимание: играчът, когото се опитвате\nда премахнете в момента е в игра.\n\nИскаш ли да го премахнеш въпреки това?" + +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Language Packs" +msgstr "Инсталирани езикови пакети" + +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Add-ons" +msgstr "Инсталирани добавки" -#: src/supertux/menu/addon_menu.cpp:71 -#, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s „%s“ от „%s“" +#: src/supertux/menu/addon_menu.cpp:76 src/supertux/menu/addon_menu.cpp:117 +msgid "No language packs installed" +msgstr "Няма инсталирани езикови пакети" -#: src/supertux/menu/addon_menu.cpp:129 +#: src/supertux/menu/addon_menu.cpp:76 msgid "No Add-ons installed" msgstr "Няма инсталирани добавки" -#: src/supertux/menu/addon_menu.cpp:133 -msgid "No Add-ons found" -msgstr "Не са открити добавки" +#: src/supertux/menu/addon_menu.cpp:124 +#, c++-format +msgid "{} {}*UPDATE*" +msgstr "{} {}*ОБНОВЛЕНИЕ*" -#: src/supertux/menu/addon_menu.cpp:179 -#, c-format -msgid "Install %s *NEW*" -msgstr "Инсталиране на %s *НОВО*" +#: src/supertux/menu/addon_menu.cpp:130 +#, c++-format +msgid "{}{}" +msgstr "{}{}" -#: src/supertux/menu/addon_menu.cpp:190 -#, c-format -msgid "Install %s" -msgstr "Инсталиране на %s" +#: src/supertux/menu/addon_menu.cpp:140 +msgid "No updates available." +msgstr "Няма налични обновления." -#: src/supertux/menu/addon_menu.cpp:199 -msgid "No new Add-ons found" -msgstr "Не са открити нови добавки" +#: src/supertux/menu/addon_menu.cpp:144 +#, c++-format +msgid "{} {} available" +msgstr "Налични: {} {}" -#: src/supertux/menu/addon_menu.cpp:205 -msgid "Check Online (disabled)" -msgstr "Проверка в Интернет (изключено)" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "update" +msgstr "обновление" -#: src/supertux/menu/addon_menu.cpp:209 -msgid "Check Online" -msgstr "Проверка в Интернет" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "updates" +msgstr "обновления" -#: src/supertux/menu/addon_menu.cpp:286 -msgid "Downloading Add-On Repository Index" -msgstr "Сваляне на списъка с добавки" +#: src/supertux/menu/addon_menu.cpp:146 +msgid "Check for updates" +msgstr "Проверка за обновления" -#: src/supertux/menu/addon_menu.cpp:301 -#, c-format -msgid "Downloading %s" -msgstr "Сваляне на %s" +#: src/supertux/menu/addon_menu.cpp:150 +msgid "Browse language packs" +msgstr "Разглеждане на езиковите пакети" -#: src/supertux/menu/addon_menu.cpp:348 -msgid "" -"Please restart SuperTux\n" -"for these changes to take effect." -msgstr "Моля, рестартирай Супер Тъкс,\nза да влязат в сила тези промени." +#: src/supertux/menu/addon_menu.cpp:150 +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Add-ons" +msgstr "Разглеждане на добавките" + +#: src/supertux/menu/addon_menu.cpp:151 +msgid "Install from file" +msgstr "Инсталиране от файл" + +#: src/supertux/menu/addon_menu.cpp:208 +msgid "Checking for updates..." +msgstr "Проверка за обновления…" #: src/supertux/menu/editor_new_levelset_menu.cpp:31 msgid "New World" @@ -2607,6 +3638,53 @@ msgstr "Моля, въведете име за това подмножество msgid "Story Mode" msgstr "Режим история" +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Language Packs" +msgstr "Разглеждане на езиковите пакети" + +#: src/supertux/menu/addon_browse_menu.cpp:112 +#, c++-format +msgid "Page {}/{}" +msgstr "Страница {}/{}" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new language packs available" +msgstr "Няма нови езикови пакети" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new Add-ons available" +msgstr "Няма нови добавки" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No language packs available" +msgstr "Няма налични езикови пакети" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No Add-ons available" +msgstr "Няма налични добавки" + +#: src/supertux/menu/addon_browse_menu.cpp:135 +#: src/supertux/menu/addon_browse_menu.cpp:139 +msgid "Previous page" +msgstr "Предишна страница" + +#: src/supertux/menu/addon_browse_menu.cpp:143 +#: src/supertux/menu/addon_browse_menu.cpp:147 +msgid "Next page" +msgstr "Следваща страница" + +#: src/supertux/menu/addon_browse_menu.cpp:154 +msgid "Check Online (disabled)" +msgstr "Проверка в Интернет (изключено)" + +#: src/supertux/menu/addon_browse_menu.cpp:158 +msgid "Check Online" +msgstr "Проверка в Интернет" + +#: src/supertux/menu/addon_browse_menu.cpp:195 +msgid "Downloading Add-On Repository Index" +msgstr "Сваляне на списъка с добавки" + #: src/supertux/menu/web_asset_menu.cpp:42 msgid "New files location" msgstr "Местоположение за новите файлове" @@ -2627,207 +3705,235 @@ msgstr "Зареждане на файл с частици" msgid "Open" msgstr "Отваряне" -#: src/supertux/menu/game_menu.cpp:31 -msgid "Are you sure?" -msgstr "Сигурен ли си?" - -#: src/supertux/menu/game_menu.cpp:54 src/supertux/menu/worldmap_menu.cpp:30 +#: src/supertux/menu/game_menu.cpp:51 src/supertux/menu/worldmap_menu.cpp:30 msgid "Continue" msgstr "Продължаване" -#: src/supertux/menu/game_menu.cpp:55 +#: src/supertux/menu/game_menu.cpp:52 msgid "Restart Level" msgstr "Рестариране на нивото" -#: src/supertux/menu/game_menu.cpp:58 +#: src/supertux/menu/game_menu.cpp:55 msgid "Restart from Checkpoint" msgstr "Рестартиране от контролна точка" -#: src/supertux/menu/game_menu.cpp:63 +#: src/supertux/menu/game_menu.cpp:60 msgid "Abort Level" msgstr "Изход от нивото" -#: src/supertux/menu/keyboard_menu.cpp:32 -#: src/supertux/menu/joystick_menu.cpp:69 +#: src/supertux/menu/game_menu.cpp:76 src/supertux/menu/game_menu.cpp:87 +#: src/supertux/menu/game_menu.cpp:99 +msgid "Are you sure?" +msgstr "Наистина ли искаш това?" + +#: src/supertux/menu/profile_name_menu.cpp:36 +#, c++-format +msgid "Rename \"{}\"" +msgstr "Преименуване на „{}“" + +#: src/supertux/menu/profile_name_menu.cpp:36 +msgid "Add profile" +msgstr "Добавяне на профил" + +#: src/supertux/menu/profile_name_menu.cpp:40 +msgid "Profile names must have a maximum of 20 characters." +msgstr "Имената на профилите трябва да бъдат с не повече от 20 знака." + +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Create" +msgstr "Създаване" + +#: src/supertux/menu/profile_name_menu.cpp:56 +msgid "" +"Profile names must have a maximum of 20 characters.\n" +"Please choose a different name." +msgstr "Имената на профилите трябва да бъдат с не повече от 20 знака.\nИзбери друго име." + +#: src/supertux/menu/profile_name_menu.cpp:77 +msgid "An error occurred while creating the profile." +msgstr "Възникна грешка при създаването на профила." + +#: src/supertux/menu/keyboard_menu.cpp:36 +#: src/supertux/menu/joystick_menu.cpp:71 msgid "Up" msgstr "Нагоре" -#: src/supertux/menu/keyboard_menu.cpp:33 -#: src/supertux/menu/joystick_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:37 +#: src/supertux/menu/joystick_menu.cpp:72 msgid "Down" msgstr "Надолу" -#: src/supertux/menu/keyboard_menu.cpp:36 -#: src/supertux/menu/joystick_menu.cpp:73 +#: src/supertux/menu/keyboard_menu.cpp:40 +#: src/supertux/menu/joystick_menu.cpp:75 msgid "Jump" msgstr "Скок" -#: src/supertux/menu/keyboard_menu.cpp:38 -#: src/supertux/menu/joystick_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:43 +#: src/supertux/menu/joystick_menu.cpp:78 msgid "Peek Left" msgstr "Поглеждане наляво" -#: src/supertux/menu/keyboard_menu.cpp:39 -#: src/supertux/menu/joystick_menu.cpp:77 +#: src/supertux/menu/keyboard_menu.cpp:44 +#: src/supertux/menu/joystick_menu.cpp:79 msgid "Peek Right" msgstr "Поглеждане надясно" -#: src/supertux/menu/keyboard_menu.cpp:40 -#: src/supertux/menu/joystick_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:45 +#: src/supertux/menu/joystick_menu.cpp:80 msgid "Peek Up" msgstr "Поглеждане нагоре" -#: src/supertux/menu/keyboard_menu.cpp:41 -#: src/supertux/menu/joystick_menu.cpp:79 +#: src/supertux/menu/keyboard_menu.cpp:46 +#: src/supertux/menu/joystick_menu.cpp:81 msgid "Peek Down" msgstr "Поглеждане надолу" -#: src/supertux/menu/keyboard_menu.cpp:43 -#: src/supertux/menu/joystick_menu.cpp:81 +#: src/supertux/menu/keyboard_menu.cpp:51 +#: src/supertux/menu/joystick_menu.cpp:83 msgid "Console" msgstr "Конзола" -#: src/supertux/menu/keyboard_menu.cpp:44 -#: src/supertux/menu/joystick_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:52 +#: src/supertux/menu/joystick_menu.cpp:84 msgid "Cheat Menu" msgstr "Меню с измами" -#: src/supertux/menu/keyboard_menu.cpp:45 -#: src/supertux/menu/joystick_menu.cpp:83 +#: src/supertux/menu/keyboard_menu.cpp:53 +#: src/supertux/menu/joystick_menu.cpp:85 msgid "Debug Menu" msgstr "Меню за дебъгване" -#: src/supertux/menu/keyboard_menu.cpp:47 -#: src/supertux/menu/joystick_menu.cpp:85 +#: src/supertux/menu/keyboard_menu.cpp:56 +#: src/supertux/menu/joystick_menu.cpp:87 msgid "Jump with Up" msgstr "Скачане с бутона за нагоре" -#: src/supertux/menu/keyboard_menu.cpp:60 +#: src/supertux/menu/keyboard_menu.cpp:82 msgid "Up cursor" msgstr "Стрелка нагоре" -#: src/supertux/menu/keyboard_menu.cpp:62 +#: src/supertux/menu/keyboard_menu.cpp:84 msgid "Down cursor" msgstr "Стрелка надолу" -#: src/supertux/menu/keyboard_menu.cpp:64 +#: src/supertux/menu/keyboard_menu.cpp:86 msgid "Left cursor" msgstr "Стрелка наляво" -#: src/supertux/menu/keyboard_menu.cpp:66 +#: src/supertux/menu/keyboard_menu.cpp:88 msgid "Right cursor" msgstr "Стрелка надясно" -#: src/supertux/menu/keyboard_menu.cpp:68 +#: src/supertux/menu/keyboard_menu.cpp:90 msgid "Return" msgstr "Ентер" -#: src/supertux/menu/keyboard_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:92 msgid "Space" msgstr "Интервал" -#: src/supertux/menu/keyboard_menu.cpp:72 +#: src/supertux/menu/keyboard_menu.cpp:94 msgid "Right Shift" msgstr "Десен шифт" -#: src/supertux/menu/keyboard_menu.cpp:74 +#: src/supertux/menu/keyboard_menu.cpp:96 msgid "Left Shift" msgstr "Ляв шифт" -#: src/supertux/menu/keyboard_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:98 msgid "Right Control" msgstr "Десен контрол" -#: src/supertux/menu/keyboard_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:100 msgid "Left Control" msgstr "Ляв контрол" -#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/keyboard_menu.cpp:102 msgid "Right Alt" msgstr "Десен алт" -#: src/supertux/menu/keyboard_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:104 msgid "Left Alt" msgstr "Ляв алт" -#: src/supertux/menu/keyboard_menu.cpp:84 +#: src/supertux/menu/keyboard_menu.cpp:106 msgid "Right Command" msgstr "Десен команд" -#: src/supertux/menu/keyboard_menu.cpp:86 +#: src/supertux/menu/keyboard_menu.cpp:108 msgid "Left Command" msgstr "Ляв команд" -#: src/supertux/menu/keyboard_menu.cpp:100 +#: src/supertux/menu/keyboard_menu.cpp:122 msgid "Press Key" msgstr "Натисни клавиш" -#: src/supertux/menu/language_menu.cpp:40 +#: src/supertux/menu/language_menu.cpp:43 msgid "Language" msgstr "Език" -#: src/supertux/menu/language_menu.cpp:42 +#: src/supertux/menu/language_menu.cpp:45 msgid "" msgstr "<автоматичен>" -#: src/supertux/menu/joystick_menu.cpp:55 +#: src/supertux/menu/joystick_menu.cpp:57 msgid "Manual Configuration" msgstr "Ръчна настройка" -#: src/supertux/menu/joystick_menu.cpp:57 +#: src/supertux/menu/joystick_menu.cpp:59 msgid "" "Use manual configuration instead of SDL2's automatic GameController support" msgstr "Извършване на ръчна настройка вместо автоматичната поддръжка на контролер на SDL2." -#: src/supertux/menu/joystick_menu.cpp:75 +#: src/supertux/menu/joystick_menu.cpp:77 msgid "Pause/Menu" msgstr "Пауза/Меню" -#: src/supertux/menu/joystick_menu.cpp:91 +#: src/supertux/menu/joystick_menu.cpp:93 msgid "No Joysticks found" msgstr "Не са открити контролери" -#: src/supertux/menu/joystick_menu.cpp:92 +#: src/supertux/menu/joystick_menu.cpp:94 msgid "Scan for Joysticks" msgstr "Търсене на контролери" -#: src/supertux/menu/joystick_menu.cpp:125 +#: src/supertux/menu/joystick_menu.cpp:127 msgid "Press Button" msgstr "Натисни бутон" -#: src/supertux/menu/joystick_menu.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:164 msgid "Axis " msgstr "Ос" -#: src/supertux/menu/joystick_menu.cpp:165 +#: src/supertux/menu/joystick_menu.cpp:167 msgid "-" msgstr "-" -#: src/supertux/menu/joystick_menu.cpp:167 +#: src/supertux/menu/joystick_menu.cpp:169 msgid "+" msgstr "+" -#: src/supertux/menu/joystick_menu.cpp:174 +#: src/supertux/menu/joystick_menu.cpp:176 msgid "X2" msgstr "X2" -#: src/supertux/menu/joystick_menu.cpp:176 +#: src/supertux/menu/joystick_menu.cpp:178 msgid "Y2" msgstr "Y2" -#: src/supertux/menu/joystick_menu.cpp:189 +#: src/supertux/menu/joystick_menu.cpp:191 msgid "Hat Up" msgstr "Шапка нагоре" -#: src/supertux/menu/joystick_menu.cpp:193 +#: src/supertux/menu/joystick_menu.cpp:195 msgid "Hat Down" msgstr "Шапка надолу" -#: src/supertux/menu/joystick_menu.cpp:197 +#: src/supertux/menu/joystick_menu.cpp:199 msgid "Hat Left" msgstr "Шапка наляво" -#: src/supertux/menu/joystick_menu.cpp:201 +#: src/supertux/menu/joystick_menu.cpp:203 msgid "Hat Right" msgstr "Шапка надясно" @@ -2839,52 +3945,47 @@ msgstr "Пауза" msgid "Leave World" msgstr "Напускане на света" -#: src/supertux/menu/download_dialog.cpp:27 +#: src/supertux/menu/download_dialog.cpp:42 msgid "Abort Download" msgstr "Спиране на свалянето" -#: src/supertux/menu/download_dialog.cpp:42 -msgid "Error:\n" -msgstr "Грешка:\n" - -#: src/supertux/menu/download_dialog.cpp:96 -msgid "Close" -msgstr "Затваряне" - -#: src/supertux/menu/cheat_menu.cpp:33 -msgid "Bonus: Fire x 64" -msgstr "Бонус: Огън x 64" - -#: src/supertux/menu/cheat_menu.cpp:34 -msgid "Bonus: Ice x 64" -msgstr "Бонус: Лед x 64" - -#: src/supertux/menu/cheat_menu.cpp:35 -msgid "Bonus: Air x 64" -msgstr "Бонус: Въздух x 64" - -#: src/supertux/menu/cheat_menu.cpp:36 -msgid "Bonus: Earth x 64" -msgstr "Бонус: Земя x 64" +#: src/supertux/menu/download_dialog.cpp:59 +#, c++-format +msgid "" +"Error:\n" +"{}" +msgstr "Грешка:\n{}" -#: src/supertux/menu/cheat_menu.cpp:37 +#: src/supertux/menu/cheat_menu.cpp:38 msgid "Bonus: Star" msgstr "Бонус: Звезда" -#: src/supertux/menu/cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:39 msgid "Shrink Tux" msgstr "Смаляване на Тъкс" -#: src/supertux/menu/cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:40 msgid "Kill Tux" msgstr "Убиване на Тъкс" +#: src/supertux/menu/cheat_menu.cpp:55 +msgid "Prevent Death" +msgstr "Предотвратяване на умирането" + +#: src/supertux/menu/addon_file_install_menu.cpp:32 +msgid "Install Add-on from file" +msgstr "Инсталиране на добавка от файл" + +#: src/supertux/menu/addon_file_install_menu.cpp:34 +msgid "Drag and drop add-on ZIP archive" +msgstr "Хвани и пусни тук архива ZIP на добавката" + #: src/supertux/menu/particle_editor_menu.cpp:32 msgid "Particle Editor" msgstr "Редактор на частици" #: src/supertux/menu/particle_editor_menu.cpp:36 -#: src/supertux/menu/editor_menu.cpp:45 +#: src/supertux/menu/editor_menu.cpp:60 msgid "Return to Editor" msgstr "Обратно към редактора" @@ -2909,7 +4010,7 @@ msgid "Open Particle Directory" msgstr "Отваряне на папката с частиците" #: src/supertux/menu/particle_editor_menu.cpp:45 -#: src/supertux/menu/editor_menu.cpp:88 +#: src/supertux/menu/editor_menu.cpp:118 msgid "Keyboard Shortcuts" msgstr "Клавишни комбинации" @@ -2917,7 +4018,7 @@ msgstr "Клавишни комбинации" msgid "Exit Particle Editor" msgstr "Изход от редактора на частици" -#: src/supertux/menu/particle_editor_menu.cpp:120 +#: src/supertux/menu/particle_editor_menu.cpp:121 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -2929,18 +4030,18 @@ msgid "" "Ctrl+Y = Redo" msgstr "Клавишни комбинации:\n---------------------\nEsc = Отваряне на менюто\nCtrl+S = Запазване\nCtrl+Shift+S = Запазване като\nCtrl+O = Отваряне\nCtrl+Z = Отмяна\nCtrl+Y = Повторение" -#: src/supertux/menu/particle_editor_menu.cpp:121 -#: src/supertux/menu/editor_menu.cpp:176 +#: src/supertux/menu/particle_editor_menu.cpp:122 +#: src/supertux/menu/editor_menu.cpp:206 msgid "Got it!" msgstr "Разбрано!" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:86 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Worldmap Settings" msgstr "Настройки на световната карта" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:86 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Level Settings" msgstr "Настройки на нивото" @@ -2948,7 +4049,7 @@ msgstr "Настройки на нивото" msgid "Author" msgstr "Автор" -#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1166 +#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1253 msgid "Contact" msgstr "За връзка" @@ -2980,99 +4081,129 @@ msgstr "Моля, въведете автора на това ниво." msgid "Please enter a license for this level." msgstr "Моля, въведете лиценз за това ниво." -#: src/supertux/menu/editor_menu.cpp:38 +#: src/supertux/menu/editor_menu.cpp:53 msgid "tiny tile (4px)" msgstr "миниатюрна плочка (4 пиксела)" -#: src/supertux/menu/editor_menu.cpp:39 +#: src/supertux/menu/editor_menu.cpp:54 msgid "small tile (8px)" msgstr "малка плочка (8 пиксела)" -#: src/supertux/menu/editor_menu.cpp:40 +#: src/supertux/menu/editor_menu.cpp:55 msgid "medium tile (16px)" msgstr "средна плочка (16 пиксела)" -#: src/supertux/menu/editor_menu.cpp:41 +#: src/supertux/menu/editor_menu.cpp:56 msgid "big tile (32px)" msgstr "голяма плочка (32 пиксела)" -#: src/supertux/menu/editor_menu.cpp:46 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Worldmap" msgstr "Запазване на световната карта" -#: src/supertux/menu/editor_menu.cpp:46 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Level" msgstr "Запазване на нивото" -#: src/supertux/menu/editor_menu.cpp:55 +#: src/supertux/menu/editor_menu.cpp:65 msgid "Test Level" msgstr "Изпробване на нивото" -#: src/supertux/menu/editor_menu.cpp:59 +#: src/supertux/menu/editor_menu.cpp:67 msgid "Test Worldmap" msgstr "Изпробване на световната карта" -#: src/supertux/menu/editor_menu.cpp:62 +#: src/supertux/menu/editor_menu.cpp:72 msgid "Share Level" msgstr "Споделяне на нивото" -#: src/supertux/menu/editor_menu.cpp:64 +#: src/supertux/menu/editor_menu.cpp:74 msgid "Package Add-On" msgstr "Пакетиране на добавка" -#: src/supertux/menu/editor_menu.cpp:66 +#: src/supertux/menu/editor_menu.cpp:76 msgid "Open Level Directory" msgstr "Отваряне на папката с нивата" -#: src/supertux/menu/editor_menu.cpp:70 +#: src/supertux/menu/editor_menu.cpp:79 msgid "Edit Another Level" msgstr "Редактиране на друго ниво" -#: src/supertux/menu/editor_menu.cpp:73 +#: src/supertux/menu/editor_menu.cpp:81 msgid "Edit Another World" msgstr "Редактиране на друг свят" -#: src/supertux/menu/editor_menu.cpp:77 +#: src/supertux/menu/editor_menu.cpp:86 +msgid "Convert all tiles in the level using converters." +msgstr "Преобразяване на всички плочки в нивото чрез преобразуватели." + +#: src/supertux/menu/editor_menu.cpp:90 msgid "Grid Size" msgstr "Размер на решетката" -#: src/supertux/menu/editor_menu.cpp:78 +#: src/supertux/menu/editor_menu.cpp:91 msgid "Show Grid" msgstr "Показване на решетката" -#: src/supertux/menu/editor_menu.cpp:79 +#: src/supertux/menu/editor_menu.cpp:92 msgid "Grid Snapping" msgstr "Прилепване към решетката" -#: src/supertux/menu/editor_menu.cpp:80 +#: src/supertux/menu/editor_menu.cpp:93 msgid "Render Background" msgstr "Изчертаване на фона" -#: src/supertux/menu/editor_menu.cpp:81 +#: src/supertux/menu/editor_menu.cpp:94 msgid "Render Light" msgstr "Изчертаване на светлината" -#: src/supertux/menu/editor_menu.cpp:82 +#: src/supertux/menu/editor_menu.cpp:95 msgid "Autotile Mode" msgstr "Режим на авт. поставяне на плочки" -#: src/supertux/menu/editor_menu.cpp:83 +#: src/supertux/menu/editor_menu.cpp:96 msgid "Enable Autotile Help" msgstr "Включване на помощта за авт. поставяне на плочки" -#: src/supertux/menu/editor_menu.cpp:84 +#: src/supertux/menu/editor_menu.cpp:97 +msgid "Enable Object Undo Tracking" +msgstr "Включване на следенето операции за отмяна с обектите" + +#: src/supertux/menu/editor_menu.cpp:100 +msgid "Undo Stack Size" +msgstr "Размер на стека за операциите за отмяна" + +#: src/supertux/menu/editor_menu.cpp:102 msgid "Autosave Frequency" msgstr "Честота на авт. запазване" -#: src/supertux/menu/editor_menu.cpp:91 +#: src/supertux/menu/editor_menu.cpp:108 +msgid "Check for Deprecated Tiles" +msgstr "Проверка за стари плочки" + +#: src/supertux/menu/editor_menu.cpp:109 +msgid "Check if any deprecated tiles are currently present in the level." +msgstr "Проверяване дали в нивото има плочки, които са стари и трябва да излязат от употреба." + +#: src/supertux/menu/editor_menu.cpp:110 +msgid "Show Deprecated Tiles" +msgstr "Показване на старите плочки" + +#: src/supertux/menu/editor_menu.cpp:111 +msgid "" +"Indicate all deprecated tiles on the active tilemap, without the need of " +"hovering over." +msgstr "Показване на всички стари плочки в активната плочна карта, без да трябва да се посочват." + +#: src/supertux/menu/editor_menu.cpp:121 msgid "Exit Level Editor" msgstr "Изход от редактора на нива" -#: src/supertux/menu/editor_menu.cpp:140 +#: src/supertux/menu/editor_menu.cpp:170 msgid "Do you want to package this world as an add-on?" msgstr "Искаш ли да пакетираш този свят като добавка?" -#: src/supertux/menu/editor_menu.cpp:163 +#: src/supertux/menu/editor_menu.cpp:196 msgid "" "We encourage you to share your levels in the SuperTux forum.\n" "To find your level, click the\n" @@ -3080,7 +4211,7 @@ msgid "" "Do you want to go to the forum now?" msgstr "Ще се радваме, ако споделяш нивата си във форума на Супер Тъкс.\nЗа да откриеш нивото си, натисни\n„Отваряне на папката с нивата“ в менюто.\nИскаш ли да посетиш форума сега?" -#: src/supertux/menu/editor_menu.cpp:175 +#: src/supertux/menu/editor_menu.cpp:205 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -3091,54 +4222,217 @@ msgid "" "Ctrl+Y = Redo\n" "F6 = Render Light\n" "F7 = Grid Snapping\n" -"F8 = Show Grid" -msgstr "КлавишНи комбинации:\n---------------------\nEsc = Отваряне на менюто\nCtrl+S = Запазване\nCtrl+T = Изпробване\nCtrl+Z = Отмяна\nCtrl+Y = Повторение\nF6 = Изчертаване на светлината\nF7 = Прилепване към решетката\nF8 = Показване на решетката" +"F8 = Show Grid\n" +"Ctrl++ or Ctrl+Scroll Up = Zoom In\n" +"Ctrl+- or Ctrl+Scroll Down = Zoom Out\n" +"Ctrl+D = Reset Zoom\n" +"\n" +"Scripting Shortcuts:\n" +" ------------- \n" +"Home = Go to beginning of line\n" +"End = Go to end of line\n" +"Left arrow = Go back in text\n" +"Right arrow = Go forward in text\n" +"Backspace = Delete in front of text cursor\n" +"Delete = Delete behind text cursor\n" +"Ctrl+X = Cut whole line\n" +"Ctrl+C = Copy whole line\n" +"Ctrl+V = Paste\n" +"Ctrl+D = Duplicate line\n" +"Ctrl+Z = Undo\n" +"Ctrl+Y = Redo" +msgstr "Клавиши и комбинации:\n---------------------\nEsc = Отваряне на менюто\nCtrl+S = Запазване\nCtrl+T = Тестване\nCtrl+Z = Отмяна\nCtrl+Y = Повторение\nF6 = Изчертаване на светлината\nF7 = Прилепване към мрежата\nF8 = Показване на мрежата\nCtrl++ или Ctrl+Scroll Up = Увеличаване\nCtrl+- или Ctrl+Scroll Down = Намаляване\nCtrl+D = Нулиране на мащаба\n\nКлавиши и комбинации за скриптиране:\n ------------- \nHome = Преместване в началото на реда\nEnd = Преместване в края на реда\nLeft arrow = Назад в текста\nRight arrow = Напред в текста\nBackspace = Изтриване на текста пред курсора\nDelete = Изтриване на текста зад курсора\nCtrl+X = Изрязване на целия ред\nCtrl+C = Копиране на целия ред\nCtrl+V = Поставяне\nCtrl+D = Дублиране на реда\nCtrl+Z = Отмяна\nCtrl+Y = Повторение" + +#: src/supertux/menu/editor_menu.cpp:232 +msgid "Deprecated tiles are still present in the level." +msgstr "В нивото все още има стари плочки." + +#: src/supertux/menu/editor_menu.cpp:239 +msgid "Do you want to show all deprecated tiles on active tilemaps?" +msgstr "Искаш ли да се покажат всички стари плочки на активните плочни карти?" + +#: src/supertux/menu/editor_menu.cpp:246 +msgid "There are no more deprecated tiles in the level!" +msgstr "В нивото няма повече стари плочки!" + +#: src/supertux/menu/multiplayer_player_menu.cpp:40 +msgid "Play with the keyboard" +msgstr "Игра с клавиатурата" + +#: src/supertux/menu/multiplayer_player_menu.cpp:58 +msgid "Remove Player" +msgstr "Премахване на играча" + +#: src/supertux/menu/multiplayer_player_menu.cpp:82 +msgid "Respawn Player" +msgstr "Прераждане на играча" + +#: src/supertux/menu/multiplayer_player_menu.cpp:108 +msgid "Spawn Player" +msgstr "Раждане на играча" + +#: src/supertux/menu/multiplayer_player_menu.cpp:136 +msgid "Controllers" +msgstr "Контролери" + +#: src/supertux/menu/multiplayer_player_menu.cpp:152 +msgid "" +"This controller does not support rumbling;\n" +"please check the controllers manually." +msgstr "Този контролер не поддържа вибрация.\nПровери ръчно контролерите." + +#: src/supertux/menu/multiplayer_player_menu.cpp:157 +msgid "" +"This SuperTux build does not support rumbling\n" +"controllers; please check the controllers manually." +msgstr "Тази версия на Супер Тъкс не поддържа вибрация\nна контролерите. Провери ръчно контролерите." -#: src/supertux/menu/editor_delete_level_menu.cpp:53 -msgid "You cannot delete level that you are editing!" +#: src/supertux/menu/multiplayer_player_menu.cpp:184 +msgid "" +"This joystick does not support rumbling;\n" +"please check the joysticks manually." +msgstr "Този джойстик не поддържа вибрация.\nПровери ръчно джойстиците." + +#: src/supertux/menu/multiplayer_player_menu.cpp:189 +msgid "" +"This SuperTux build does not support rumbling\n" +"joysticks; please check the joysticks manually." +msgstr "Тази версия на Супер Тъкс не поддържа вибрация\nна джойстици. Провери ръчно джойстиците." + +#: src/supertux/menu/editor_delete_level_menu.cpp:59 +msgid "No levels available" +msgstr "Няма налични нива" + +#: src/supertux/menu/editor_delete_level_menu.cpp:79 +msgid "You cannot delete the level that you are editing!" msgstr "Не можеш да изтриеш нивото, което редактираш в момента!" -#: src/supertux/levelintro.cpp:136 -#, c-format -msgid "contributed by %s" -msgstr "предоставено от %s" +#: src/supertux/menu/editor_delete_level_menu.cpp:82 +#, c++-format +msgid "You are about to delete level \"{}\". Are you sure?" +msgstr "На път си да изтриеш нивото „{}“. Наистина ли искаш това?" + +#: src/supertux/levelintro.cpp:137 +#, c++-format +msgid "contributed by {}" +msgstr "предоставено от {}" -#: src/supertux/levelintro.cpp:169 +#: src/supertux/levelintro.cpp:184 msgid "Badguys killed" msgstr "Победени лоши" -#: src/supertux/levelintro.cpp:177 +#: src/supertux/levelintro.cpp:192 msgid "Best time" msgstr "Най-добро време" -#: src/supertux/levelintro.cpp:181 +#: src/supertux/levelintro.cpp:196 msgid "Level target time" msgstr "Целево време за нивото" -#: src/supertux/tile_set.cpp:118 +#: src/supertux/tile_set.cpp:113 msgid "Others" msgstr "Други" -#: src/supertux/moving_object.cpp:55 +#: src/supertux/direction.cpp:67 +msgid "up" +msgstr "нагоре" + +#: src/supertux/direction.cpp:69 +msgid "down" +msgstr "надолу" + +#: src/supertux/moving_object.cpp:63 msgid "Region" msgstr "Регион" -#: src/supertux/main.cpp:563 +#: src/supertux/main.cpp:801 +#, c++-format +msgid "New release: SuperTux v{}!" +msgstr "Нова версия: Супер Тъкс v{}!" + +#: src/supertux/main.cpp:804 +#, c++-format msgid "" -"The UBports version is under heavy development!\n" -"If you encounter issues, PLEASE contact the maintainter\n" -"at https://github.com/supertux/supertux/issues or on the\n" -"Open Store's Telegram at https://open-store.io/telegram" -msgstr "Версията за UBports е в процес на разработка!\nАко имате проблеми, МОЛЯ, свържете се с екипа \nна https://github.com/supertux/supertux/issues или в канала на\nOpen Store в Telegram на https://open-store.io/telegram" +"A new release of SuperTux (v{}) is available!\n" +"For more information, you can visit the SuperTux website.\n" +"\n" +"Do you want to visit the website now?" +msgstr "Има налична нова версия на Супер Тъкс (v{})!\nЗа повече информация може да прегледаш уеб сайта на Супер Тъкс.\n\nИскаш ли да отвориш уеб сайта сега?" + +#: src/supertux/main.cpp:815 +msgid "Checking for new releases..." +msgstr "Проверка за нови версии…" #: src/control/joystick_config.cpp:85 msgid "Joystick Mappings" msgstr "Бутони на контролера" -#: src/worldmap/worldmap_parser.cpp:167 +#: src/worldmap/sprite_change.cpp:91 +msgid "Stay action" +msgstr "Действие в покой" + +#: src/worldmap/sprite_change.cpp:92 +msgid "Initial stay action" +msgstr "Начално действие в покой" + +#: src/worldmap/sprite_change.cpp:93 +msgid "Stay group" +msgstr "Група за действия в покой" + +#: src/worldmap/sprite_change.cpp:94 +msgid "Change on touch" +msgstr "Промяна при докосване" + +#: src/worldmap/special_tile.hpp:36 +msgid "Special Tile" +msgstr "Специална плочка" + +#: src/worldmap/level_tile.hpp:36 src/worldmap/level_tile.cpp:161 +msgid "Level" +msgstr "Ниво" + +#: src/worldmap/teleporter.cpp:50 +msgid "Automatic" +msgstr "Автоматичен" + +#: src/worldmap/teleporter.cpp:51 +msgid "Target worldmap" +msgstr "Целева световна карта" + +#: src/worldmap/sprite_change.hpp:35 +msgid "Sprite Change" +msgstr "Промяна на изображението" + +#: src/worldmap/special_tile.cpp:75 +msgid "Show message" +msgstr "Показване на съобщение" + +#: src/worldmap/level_tile.cpp:84 msgid "" msgstr "<няма заглавие>" +#: src/worldmap/level_tile.cpp:162 +msgid "Outro script" +msgstr "Скрипт при излизане от нивото" + +#: src/worldmap/level_tile.cpp:163 +msgid "Auto play" +msgstr "Автоматично изпълнение" + +#: src/worldmap/level_tile.cpp:164 +msgid "Title colour" +msgstr "Цвят на заглавието" + +#: src/worldmap/teleporter.hpp:34 +msgid "Teleporter" +msgstr "Телепортатор" + +#: src/editor/tip.cpp:80 +msgid "" +"This object's current functionality is deprecated.\n" +"Updating to get its latest functionality is recommended." +msgstr "Текущата функционалност на този обект е стара.\nПрепоръчително е обновяване, за да се появи новата функционалност." + #: src/editor/node_marker.cpp:122 msgid "Path Node" msgstr "Възел за път" @@ -3149,87 +4443,84 @@ msgstr "Задръж CTRL, за да местиш хватките на крив #: src/editor/node_marker.cpp:127 msgid "Easing" -msgstr "Облекчаване" - -#: src/editor/object_settings.cpp:119 -msgid "up" -msgstr "нагоре" - -#: src/editor/object_settings.cpp:119 -msgid "down" -msgstr "надолу" +msgstr "" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "West" msgstr "Запад" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "East" msgstr "Изток" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "North" msgstr "Север" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "South" msgstr "Юг" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "One shot" msgstr "Едно преминаване" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "Ping-pong" msgstr "Пинг-понг" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "Circular" msgstr "Кръгообразно" -#: src/editor/object_settings.cpp:144 -msgid "Unordered" -msgstr "Разбъркано" +#: src/editor/layers_widget.cpp:331 +#, c++-format +msgid "Sector: {}" +msgstr "Сектор: {}" -#: src/editor/object_option.cpp:85 +#: src/editor/object_option.cpp:92 msgid "true" msgstr "да" -#: src/editor/object_option.cpp:85 +#: src/editor/object_option.cpp:92 msgid "false" msgstr "не" -#: src/editor/object_option.cpp:271 src/editor/object_option.cpp:320 +#: src/editor/object_option.cpp:308 src/editor/object_option.cpp:356 msgid "invalid" msgstr "неправилно" -#: src/editor/object_option.cpp:580 +#: src/editor/object_option.cpp:665 +msgid "Scale X" +msgstr "Мащабиране по X" + +#: src/editor/object_option.cpp:666 +msgid "Scale Y" +msgstr "Мащабиране по Y" + +#: src/editor/object_option.cpp:667 +msgid "Offset X" +msgstr "Отместване по X" + +#: src/editor/object_option.cpp:668 +msgid "Offset Y" +msgstr "Отместване по Y" + +#: src/editor/object_option.cpp:672 src/editor/object_menu.cpp:67 msgid "Remove" msgstr "Премахване" -#: src/editor/object_option.cpp:597 +#: src/editor/object_option.cpp:689 msgid "Test from here" msgstr "Изпробване от тук" -#: src/editor/object_option.cpp:614 +#: src/editor/object_option.cpp:706 msgid "Open Particle Editor" msgstr "Отваряне на редактора на частици" -#: src/editor/worldmap_objects.hpp:56 src/editor/worldmap_objects.cpp:127 -msgid "Level" -msgstr "Ниво" - -#: src/editor/worldmap_objects.hpp:79 -msgid "Teleporter" -msgstr "Телепортатор" - -#: src/editor/worldmap_objects.hpp:119 -msgid "Sprite Change" -msgstr "Промяна на изображението" - -#: src/editor/worldmap_objects.hpp:140 -msgid "Special tile" -msgstr "Специална плочка" +#: src/editor/particle_editor.cpp:114 +msgid "Change texture... ->" +msgstr "Промяна на текстурата… ->" #: src/editor/particle_editor.cpp:126 msgid "Max amount" @@ -3311,17 +4602,60 @@ msgstr "Винаги да се унищожава" msgid "Offscreen mode" msgstr "Режим извън екрана" -#: src/editor/particle_editor.cpp:765 +#: src/editor/particle_editor.cpp:229 +msgid "Clear" +msgstr "Изчистване" + +#: src/editor/particle_editor.cpp:245 +msgid "<- General settings" +msgstr "<- Общи настройки" + +#: src/editor/particle_editor.cpp:255 +msgid "Likeliness" +msgstr "Вероятност" + +#: src/editor/particle_editor.cpp:266 +msgid "Color (RGBA)" +msgstr "Цвят (RGBA)" + +#: src/editor/particle_editor.cpp:311 +msgid "Scale (x, y)" +msgstr "Мащаб (x, y)" + +#: src/editor/particle_editor.cpp:332 +msgid "Hitbox scale (x, y)" +msgstr "Мащаб на правоъгълника за засичане на взаимодействие (x, y)" + +#: src/editor/particle_editor.cpp:353 +msgid "Hitbox offset relative to scale" +msgstr "Отместването на правоъгълника за засичане на взаимодействие да бъде относимо към мащаба" + +#: src/editor/particle_editor.cpp:372 +msgid "Change texture..." +msgstr "Промяна на текстурата…" + +#: src/editor/particle_editor.cpp:766 msgid "" "This particle configuration contains unsaved changes,\n" "do you want to save?" msgstr "Има незапазени промени по тази конфигурация за частици.\nИскаш ли да я запазиш?" -#: src/editor/particle_editor.cpp:773 +#: src/editor/particle_editor.cpp:774 msgid "Save as" msgstr "Запазване като" -#: src/editor/editor.cpp:566 +#: src/editor/editor.cpp:577 +msgid "" +"This level contains deprecated tiles.\n" +"It is strongly recommended to replace all deprecated tiles\n" +"to avoid loss of compatibility in future versions." +msgstr "В това ниво има стари плочки.\nСилно препоръчително е всички стари плочки да бъдат заменени,\nс цел да се избегнат проблеми със съвместимостта в бъдеще." + +#: src/editor/editor.cpp:579 +msgid "Tip: Turn on \"Show Deprecated Tiles\" from the level editor menu." +msgstr "Съвет: може да включиш „Показване на старите плочки“ от менюто с настройки за редактора на нива." + +#: src/editor/editor.cpp:626 msgid "" "Don't forget that your levels and assets\n" "aren't saved between sessions!\n" @@ -3329,11 +4663,15 @@ msgid "" "from the \"Manage Assets\" menu." msgstr "Не забравяй, че нивата и ресурсите\nне се запазват при излизане!\nАко искаш да запазиш нивата си, свали ги\nот менюто „Управление на ресурсите“." -#: src/editor/editor.cpp:582 +#: src/editor/editor.cpp:661 msgid "This level contains unsaved changes, do you want to save?" msgstr "Има незапазени промени по нивото. Искаш ли да го запазиш?" -#: src/editor/editor.cpp:622 +#: src/editor/editor.cpp:662 +msgid "This level may contain unsaved changes, do you want to save?" +msgstr "Това ниво може да има незапазени промени. Искаш ли да го запазиш?" + +#: src/editor/editor.cpp:797 msgid "" "Some obsolete add-ons are still active\n" "and might cause collisions with default Super Tux structure.\n" @@ -3341,93 +4679,71 @@ msgid "" "Disabling these add-ons will not delete your game progress." msgstr "Някои остарели добавки все още са в сила и може да не\nсработят добре със системата по подразбиране на Супер Тъкс.\nВъпреки това, може да ги включиш от менюто.\nИзключването им няма да изтрие напредъка ти." -#: src/editor/editor.cpp:625 +#: src/editor/editor.cpp:800 msgid "Disable add-ons" msgstr "Изключване на добавките" -#: src/editor/editor.cpp:630 +#: src/editor/editor.cpp:805 msgid "Ignore (not advised)" msgstr "Пренебрегване (не се препоръчва)" -#: src/editor/editor.cpp:634 +#: src/editor/editor.cpp:809 msgid "Leave editor" msgstr "Напускане на редактора" -#: src/editor/editor.cpp:853 +#: src/editor/editor.cpp:1023 msgid "" "Couldn't find a \"main\" sector.\n" "Please change the name of the sector where\n" "you'd like the player to start to \"main\"" msgstr "Липсва основен сектор (с име „main“).\nМоля, промени името на сектора, където\nискаш да започва играчът, на „main“." -#: src/editor/editor.cpp:857 +#: src/editor/editor.cpp:1027 msgid "" "Couldn't find a \"main\" spawnpoint.\n" " Please change the name of the spawnpoint where\n" "you'd like the player to start to \"main\"" msgstr "Липсва основна точка на прераждане (с име „main“).\nМоля, промени името на точката на прераждане,\nкъдето искаш да започва играчът, на „main“." -#: src/editor/worldmap_objects.cpp:128 -msgid "Outro script" -msgstr "Скрипт при излизане от нивото" - -#: src/editor/worldmap_objects.cpp:129 -msgid "Auto play" -msgstr "Автоматично изпълнение" - -#: src/editor/worldmap_objects.cpp:131 -msgid "Title colour" -msgstr "Цвят на заглавието" - -#: src/editor/worldmap_objects.cpp:173 -msgid "Automatic" -msgstr "Автоматичен" - -#: src/editor/worldmap_objects.cpp:175 -msgid "Target worldmap" -msgstr "Целева световна карта" - -#: src/editor/worldmap_objects.cpp:238 -msgid "Stay action" -msgstr "Действие в покой" - -#: src/editor/worldmap_objects.cpp:239 -msgid "Initial stay action" -msgstr "Начално действие в покой" - -#: src/editor/worldmap_objects.cpp:240 -msgid "Stay group" -msgstr "Група за действия в покой" - -#: src/editor/worldmap_objects.cpp:241 -msgid "Change on touch" -msgstr "Промяна при докосване" - -#: src/editor/worldmap_objects.cpp:271 -msgid "Show message" -msgstr "Показване на съобщение" +#: src/editor/object_menu.cpp:60 +msgid "Patch Notes" +msgstr "Бележки по версията" -#: src/editor/worldmap_objects.cpp:273 -msgid "Invisible" -msgstr "Невидима" - -#: src/editor/overlay_widget.cpp:1297 +#: src/editor/object_menu.cpp:84 +msgid "" +"This will update the object to its latest functionality.\n" +"Check the \"Patch Notes\" for more information.\n" +"\n" +"Keep in mind this is very likely to break the proper behaviour of the object.\n" +"Make sure to re-check any behaviour, related to the object." +msgstr "Това ще обнови обекта до най-новата функционалност.\nВиж „Бележките по версията“ за повече информация.\n\nИмай предвид, че това може да повреди правилното поведение на обекта.\nУвери се, че си проверил всяко поведение свързано с обекта." + +#: src/editor/object_menu.cpp:98 +#, c++-format +msgid "Patch notes for v{}:" +msgstr "Бележки по версията за v{}:" + +#: src/editor/overlay_widget.cpp:1062 +msgid "Cannot select deprecated tiles" +msgstr "Старите плочки не могат да бъдат избрани" + +#: src/editor/overlay_widget.cpp:1567 msgid "Autotile mode is on" msgstr "Режимът на авт. поставяне на плочки е включен" -#: src/editor/overlay_widget.cpp:1299 +#: src/editor/overlay_widget.cpp:1571 msgid "Hold Ctrl to enable autotile" msgstr "Задръж CTRL за включване на авт. поставяне на плочки" -#: src/editor/overlay_widget.cpp:1303 +#: src/editor/overlay_widget.cpp:1578 msgid "Autotile erasing mode is on" msgstr "Режимът на авт. изтриване на плочки е включен" -#: src/editor/overlay_widget.cpp:1305 +#: src/editor/overlay_widget.cpp:1582 msgid "Selected tile isn't autotileable" msgstr "Избраната плочка не може да бъде поставяна автоматично" -#: src/editor/overlay_widget.cpp:1308 +#: src/editor/overlay_widget.cpp:1587 msgid "Hold Ctrl to enable autotile erasing" msgstr "Задръж CTRL за включване на авт. изтриване на плочки" @@ -3436,8 +4752,8 @@ msgid "Current SuperTux Team" msgstr "Текущ екип на Супер Тъкс" #: data//credits.stxt:30 -msgid "Programming, project lead ad interim" -msgstr "Програмиране, временен управител на проекта" +msgid "Maintainer, Programming" +msgstr "Поддръжка, програмиране" #: data//credits.stxt:35 msgid "Graphics, Level Design, Story" @@ -3447,12 +4763,12 @@ msgstr "Графика, проектиране на нива, история" msgid "Level Design, Story, Optimisation, Coordination" msgstr "Дизайн на нивата, история, оптимизации, координиране" -#: data//credits.stxt:45 data//credits.stxt:105 data//credits.stxt:191 -#: data//credits.stxt:519 +#: data//credits.stxt:45 data//credits.stxt:120 data//credits.stxt:206 +#: data//credits.stxt:538 msgid "Graphics" msgstr "Графика" -#: data//credits.stxt:50 data//credits.stxt:87 data//credits.stxt:93 +#: data//credits.stxt:50 data//credits.stxt:102 data//credits.stxt:108 msgid "Graphics, Programming, Level Design" msgstr "Графика, програмиране, проектиране на нива" @@ -3461,256 +4777,266 @@ msgid "Features and Programming" msgstr "Функционалности и програмиране" #: data//credits.stxt:60 +msgid "Minor features and programming" +msgstr "Малки функционалности и програмиране" + +#: data//credits.stxt:65 msgid "Programming, Level Updates" msgstr "Програмиране, обновления по нивата" -#: data//credits.stxt:65 +#: data//credits.stxt:70 msgid "Graphics, Programming" msgstr "Графика, програмиране" -#: data//credits.stxt:70 data//credits.stxt:135 data//credits.stxt:140 -#: data//credits.stxt:145 data//credits.stxt:150 data//credits.stxt:165 -#: data//credits.stxt:170 data//credits.stxt:515 data//credits.stxt:527 +#: data//credits.stxt:75 data//credits.stxt:85 data//credits.stxt:150 +#: data//credits.stxt:155 data//credits.stxt:160 data//credits.stxt:165 +#: data//credits.stxt:180 data//credits.stxt:185 data//credits.stxt:534 +#: data//credits.stxt:546 msgid "Programming" msgstr "Програмиране" -#: data//credits.stxt:76 +#: data//credits.stxt:80 data//credits.stxt:266 +msgid "Level Design" +msgstr "Проектиране на нива" + +#: data//credits.stxt:91 msgid "Original Developers" msgstr "Първоначални разработчици" -#: data//credits.stxt:81 +#: data//credits.stxt:96 msgid "Original Developer" msgstr "Първоначален разработчик" -#: data//credits.stxt:99 +#: data//credits.stxt:114 msgid "Music, Level Design" msgstr "Музика, проектиране на нива" -#: data//credits.stxt:111 +#: data//credits.stxt:126 msgid "Programming, Graphics, Level Design" msgstr "Програмиране, графика, проектиране на нива" -#: data//credits.stxt:117 +#: data//credits.stxt:132 msgid "Programming, Level Design" msgstr "Програмиране, проектиране на нива" -#: data//credits.stxt:123 +#: data//credits.stxt:138 msgid "Graphics, Story" msgstr "Графика, история" -#: data//credits.stxt:129 +#: data//credits.stxt:144 msgid "Programming, Documentation" msgstr "Програмиране, документация" -#: data//credits.stxt:155 +#: data//credits.stxt:170 msgid "Coordination" msgstr "Координация" -#: data//credits.stxt:160 +#: data//credits.stxt:175 msgid "Programming, \"Flexlay\" Level editor" msgstr "Програмиране, редактор на нива „Flexlay“" -#: data//credits.stxt:175 +#: data//credits.stxt:190 msgid "Windows build fixes" msgstr "Поправки за компилирането под Уиндоус" -#: data//credits.stxt:180 +#: data//credits.stxt:195 msgid "Packaging, Nightly builds" msgstr "Пакетиране, нощна компилация" -#: data//credits.stxt:185 +#: data//credits.stxt:200 msgid "Translation Guru (and many details anyone else could have done)" msgstr "Майстор на превода (и много други неща, които всеки би могъл да направи)" -#: data//credits.stxt:251 -msgid "Level Design" -msgstr "Проектиране на нива" - -#: data//credits.stxt:431 +#: data//credits.stxt:450 msgid "Additional contributors" msgstr "Допълнителен принос" -#: data//credits.stxt:436 +#: data//credits.stxt:455 msgid "Bug fixes" msgstr "Поправки на грешки" -#: data//credits.stxt:440 +#: data//credits.stxt:459 msgid "Scripting functions, Level fixes" msgstr "Функции в скриптовете, поправки по нивата" -#: data//credits.stxt:444 +#: data//credits.stxt:463 msgid "Code quality fixes" msgstr "Поправки за качеството на кода" -#: data//credits.stxt:448 data//credits.stxt:452 data//credits.stxt:456 -#: data//credits.stxt:483 +#: data//credits.stxt:467 data//credits.stxt:471 data//credits.stxt:475 +#: data//credits.stxt:502 msgid "Various contributions" msgstr "Разнообразни приноси" -#: data//credits.stxt:460 +#: data//credits.stxt:479 msgid "Build issue fix" msgstr "Поправка на проблем с компилирането" -#: data//credits.stxt:464 data//credits.stxt:468 +#: data//credits.stxt:483 data//credits.stxt:487 msgid "Code contributions" msgstr "Приноси към кода" -#: data//credits.stxt:471 +#: data//credits.stxt:490 msgid "Code contribution, AppData file" msgstr "Принос към кода, файл „AppData“" -#: data//credits.stxt:475 +#: data//credits.stxt:494 msgid "Bug fix" msgstr "Поправка на грешка" -#: data//credits.stxt:479 +#: data//credits.stxt:498 msgid "Menu reorganization" msgstr "Преустройство на менюто" -#: data//credits.stxt:487 +#: data//credits.stxt:506 msgid "Fixing tile bugs" msgstr "Поправки на грешки в плочките" -#: data//credits.stxt:491 +#: data//credits.stxt:510 msgid "Build error fix" msgstr "Поправка на грешка в компилирането" -#: data//credits.stxt:495 +#: data//credits.stxt:514 msgid "Scripting function fix" msgstr "Поправка на функция в скрипта" -#: data//credits.stxt:499 +#: data//credits.stxt:518 msgid "New features and notable updates" msgstr "Нови функционалности и значими промени" -#: data//credits.stxt:503 +#: data//credits.stxt:522 msgid "Support for \"glbinding\" as optional OpenGL binding" -msgstr "Поддръжка на „glbinding“ като друг начина за използване на OpenGL" +msgstr "Поддръжка на „glbinding“ като друг начин за използване на OpenGL" -#: data//credits.stxt:507 +#: data//credits.stxt:526 msgid "New menu code" msgstr "Нов код за менюто" -#: data//credits.stxt:511 +#: data//credits.stxt:530 msgid "Big Tux Walking Sprites improvements" msgstr "Подобрения на изображенията с анимацията за ходене на големия Тъкс" -#: data//credits.stxt:523 data//credits.stxt:531 +#: data//credits.stxt:542 data//credits.stxt:550 msgid "Contrib Programming" msgstr "Принос към програмирането" -#: data//credits.stxt:535 +#: data//credits.stxt:554 msgid "Programming, Previous Maintainer" msgstr "Програмиране, предишен отговорник" -#: data//credits.stxt:539 +#: data//credits.stxt:558 msgid "Various Contributions" msgstr "Разнообразни приноси" -#: data//credits.stxt:543 -msgid "Minor features and programming" -msgstr "Малки функционалности и програмиране" - -#: data//credits.stxt:547 data//credits.stxt:551 data//credits.stxt:555 -#: data//credits.stxt:559 data//credits.stxt:563 data//credits.stxt:567 -#: data//credits.stxt:571 data//credits.stxt:575 data//credits.stxt:579 -#: data//credits.stxt:583 data//credits.stxt:587 data//credits.stxt:591 +#: data//credits.stxt:562 data//credits.stxt:566 data//credits.stxt:570 +#: data//credits.stxt:574 data//credits.stxt:578 data//credits.stxt:582 +#: data//credits.stxt:586 data//credits.stxt:590 data//credits.stxt:594 +#: data//credits.stxt:598 data//credits.stxt:602 data//credits.stxt:606 +#: data//credits.stxt:610 data//credits.stxt:614 data//credits.stxt:618 +#: data//credits.stxt:622 data//credits.stxt:626 data//credits.stxt:630 +#: data//credits.stxt:634 data//credits.stxt:638 data//credits.stxt:642 +#: data//credits.stxt:646 data//credits.stxt:650 data//credits.stxt:654 +#: data//credits.stxt:658 data//credits.stxt:662 msgid "Contributions" msgstr "Приноси" -#: data//credits.stxt:597 +#: data//credits.stxt:668 msgid "Localization" msgstr "Превод" -#: data//credits.stxt:1144 +#: data//credits.stxt:1231 msgid " Special Thanks to" msgstr "Специални благодарности на" -#: data//credits.stxt:1149 +#: data//credits.stxt:1236 msgid "Creator of Tux, the Linux penguin" msgstr "Създател на Тъкс, пингвина на Линукс" -#: data//credits.stxt:1153 +#: data//credits.stxt:1240 msgid "SDL, OpenAL and OpenGL" msgstr "SDL, OpenAL и OpenGL" -#: data//credits.stxt:1154 +#: data//credits.stxt:1241 msgid "" "For making such a great gaming experience\n" " possible on Linux" msgstr "За това, че направиха възможно играенето\nна игри под Линукс" -#: data//credits.stxt:1159 +#: data//credits.stxt:1246 msgid "and you, the player" msgstr "и на теб, играчът" -#: data//credits.stxt:1160 +#: data//credits.stxt:1247 msgid "for giving this game a chance and playing it" msgstr "затова, че даде шанс на тази игра" -#: data//credits.stxt:1171 +#: data//credits.stxt:1258 msgid "Visit our webpage at" msgstr "Посети уеб сайта ни на" -#: data//credits.stxt:1180 +#: data//credits.stxt:1267 msgid "Or visit us directly at IRC:" msgstr "Или ни посети направо в IRC:" -#: data//credits.stxt:1184 +#: data//credits.stxt:1271 msgid "#supertux at web.libera.chat" msgstr "#supertux в web.libera.chat" -#: data//credits.stxt:1189 +#: data//credits.stxt:1276 msgid "Or at our Forum:" msgstr "Или в нашия форум:" -#: data//credits.stxt:1198 +#: data//credits.stxt:1285 msgid "Comments, ideas and suggestions" msgstr "За коментари, идеи и предложения" -#: data//credits.stxt:1202 +#: data//credits.stxt:1289 msgid "go to our mailing list" msgstr "посети нашия пощенски списък" #. l10n: typo contact -#: data//credits.stxt:1212 +#: data//credits.stxt:1299 msgid "Typographical errors can be" msgstr "Можеш да докладваш за" #. l10n: typo contact -#: data//credits.stxt:1217 +#: data//credits.stxt:1304 msgid "reported to" msgstr "типографски грешки на" #. l10n: typo contact, see -#: data//credits.stxt:1222 +#: data//credits.stxt:1309 msgid "supertux-devel@lists.lethargik.org" msgstr "supertux-devel@lists.lethargik.org" -#: data//credits.stxt:1229 +#: data//credits.stxt:1316 msgid "Want to help…" msgstr "Искаш да помогнеш…" -#: data//credits.stxt:1234 +#: data//credits.stxt:1321 msgid "…with localization?" msgstr "…с превода?" -#: data//credits.stxt:1244 +#: data//credits.stxt:1331 msgid "…with something else?" msgstr "…с нещо друго?" -#: data//credits.stxt:1255 +#: data//credits.stxt:1342 msgid "Thank you for" msgstr "Благодарим ти, че" -#: data//credits.stxt:1259 +#: data//credits.stxt:1346 msgid "playing" msgstr "изигра" -#: data//credits.stxt:1269 +#: data//credits.stxt:1356 msgid "Penny awaits you in warmer temperatures!" msgstr "Пени те очаква на по-топло място!" +#: data//images/engine/editor/objects.stoi:4 +msgid "Enemies" +msgstr "Врагове" + #: data//images/engine/editor/objects.stoi:162 msgid "Bosses" msgstr "Главатари" @@ -3719,15 +5045,10 @@ msgstr "Главатари" msgid "Projectiles" msgstr "Снаряди" -#: data//images/engine/editor/objects.stoi:187 +#: data//images/engine/editor/objects.stoi:184 msgid "Environment" msgstr "Околна сред" -#: data//images/ice_world.strf:10 data//images/tiles.strf:28 -#: data//images/worldmap.strf:41 -msgid "Snow" -msgstr "Сняг" - #: data//images/ice_world.strf:80 msgid "Ice Cave & Crystal" msgstr "Ледена пещера и кристали" @@ -3736,11 +5057,6 @@ msgstr "Ледена пещера и кристали" msgid "Embellishments" msgstr "Разкрасяване" -#: data//images/ice_world.strf:211 data//images/tiles.strf:386 -#: data//images/worldmap.strf:67 -msgid "Forest" -msgstr "Гора" - #: data//images/ice_world.strf:320 msgid "Underground Forest" msgstr "Подземна гора" @@ -3765,57 +5081,61 @@ msgstr "Пътища" msgid "Water" msgstr "Вода" -#: data//images/tiles.strf:176 +#: data//images/tiles.strf:252 msgid "Snow Background" msgstr "Показване на фона" -#: data//images/tiles.strf:231 -msgid "Snow Mountain" -msgstr "Снежна планина" - -#: data//images/tiles.strf:305 +#: data//images/tiles.strf:300 msgid "Crystal" msgstr "Кристал" -#: data//images/tiles.strf:532 +#: data//images/tiles.strf:539 msgid "Forest Background" msgstr "Горски фон" -#: data//images/tiles.strf:663 +#: data//images/tiles.strf:690 +msgid "Corrupted Forest" +msgstr "Увредена гора" + +#: data//images/tiles.strf:868 +msgid "Corrupted Background" +msgstr "Увреден фон" + +#: data//images/tiles.strf:991 msgid "Block + Bonus" msgstr "Блокче + бонус" -#: data//images/tiles.strf:715 +#: data//images/tiles.strf:1069 msgid "Pole + Signs" msgstr "Стълб + знаци" -#: data//images/tiles.strf:760 +#: data//images/tiles.strf:1113 msgid "Liquid" msgstr "Течност" -#: data//images/tiles.strf:793 +#: data//images/tiles.strf:1131 msgid "Castle" msgstr "Замък" -#: data//images/tiles.strf:930 data//images/worldmap.strf:199 +#: data//images/tiles.strf:1231 data//images/worldmap.strf:199 msgid "Halloween" msgstr "Хелоуин" -#: data//images/tiles.strf:958 +#: data//images/tiles.strf:1272 msgid "Industrial" msgstr "Индустриални" -#: data//images/tiles.strf:973 +#: data//images/tiles.strf:1287 msgid "Unisolid + Lightmap" msgstr "Едностранно твърди + Определящи прозрачността" -#: data//images/tiles.strf:1000 +#: data//images/tiles.strf:1314 msgid "Miscellaneous" msgstr "Разни" -#: data//images/tiles.strf:1043 -msgid "Retro Snow" -msgstr "Ретро-сняг" +#: data//images/tiles.strf:1342 +msgid "Retro Tiles" +msgstr "Ретро плочки" #: data//images/worldmap.strf:24 msgid "Water paths" @@ -3828,3 +5148,19 @@ msgstr "Пътища за замък" #: data//images/worldmap.strf:135 msgid "Darker Forest" msgstr "По-тъмна гора" + +#: data//images/converters/data.stcd:3 +msgid "Nightly Tiles" +msgstr "Нощни плочки" + +#: data//images/converters/data.stcd:5 +msgid "For levels, created in previous Nightly builds." +msgstr "За нива създадени в предишни нощни компилации на играта." + +#: data//images/converters/data.stcd:8 +msgid "Pre-0.6.3 Crystal Tiles" +msgstr "Кристални плочки от преди 0.6.3" + +#: data//images/converters/data.stcd:10 +msgid "For levels, created in pre-0.6.3 versions, which use crystal tiles." +msgstr "За нива създадени във версии преди 0.6.3, които ползват кристални плочки." diff --git a/data/locale/br.po b/data/locale/br.po index 919259de128..74ef5d31897 100644 --- a/data/locale/br.po +++ b/data/locale/br.po @@ -1168,8 +1168,8 @@ msgstr "Objed dianav" #: src/supertux/command_line_arguments.cpp:74 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Arver: %s [DIBARZHIOÙ] [RESTR LIVE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Arver: {} [DIBARZHIOÙ] [RESTR LIVE]" #: src/supertux/command_line_arguments.cpp:75 msgid "General Options:" @@ -1795,13 +1795,13 @@ msgstr "Adventañ" #: src/supertux/menu/profile_menu.cpp:37 #, c-format -msgid "[Profile %s]" -msgstr "[Aelad %s]" +msgid "[Profile {}]" +msgstr "[Aelad {}]" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "Profile %s" -msgstr "Aelad %s" +msgid "Profile {}" +msgstr "Aelad {}" #: src/supertux/menu/editor_levelset_menu.cpp:59 #: src/supertux/menu/editor_new_levelset_menu.cpp:35 @@ -1829,8 +1829,8 @@ msgstr "Dianav" #: src/supertux/menu/addon_menu.cpp:68 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" gant \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" gant \"{}\"" #: src/supertux/menu/addon_menu.cpp:126 msgid "No Add-ons installed" @@ -1842,13 +1842,13 @@ msgstr "N'eo bet kavet askouezh ebet" #: src/supertux/menu/addon_menu.cpp:176 #, c-format -msgid "Install %s *NEW*" -msgstr "Staliañ %s *NEVEZ*" +msgid "Install {} *NEW*" +msgstr "Staliañ {} *NEVEZ*" #: src/supertux/menu/addon_menu.cpp:187 #, c-format -msgid "Install %s" -msgstr "Staliañ %s" +msgid "Install {}" +msgstr "Staliañ {}" #: src/supertux/menu/addon_menu.cpp:196 msgid "No new Add-ons found" @@ -1868,8 +1868,8 @@ msgstr "O pellgargañ ibil mirlec'h al lugantoù" #: src/supertux/menu/addon_menu.cpp:298 #, c-format -msgid "Downloading %s" -msgstr "O pellgargañ %s" +msgid "Downloading {}" +msgstr "O pellgargañ {}" #: src/supertux/menu/addon_menu.cpp:345 msgid "" @@ -2285,8 +2285,8 @@ msgstr "" #: src/supertux/levelintro.cpp:135 #, c-format -msgid "contributed by %s" -msgstr "kinniget gant %s" +msgid "contributed by {}" +msgstr "kinniget gant {}" #: src/supertux/levelintro.cpp:167 msgid "Badguys killed" diff --git a/data/locale/ca.po b/data/locale/ca.po index 80a31d2b947..905b626efcd 100644 --- a/data/locale/ca.po +++ b/data/locale/ca.po @@ -1772,8 +1772,8 @@ msgstr "Premeu Esc per saltar" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Ús: %s [OPTIONS] [LEVELFILE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Ús: {} [OPTIONS] [LEVELFILE]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2496,13 +2496,13 @@ msgstr "Redimensionar" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[Perfil %s]" +msgid "[Profile {}]" +msgstr "[Perfil {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "Perfil %s" +msgid "Profile {}" +msgstr "Perfil {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2550,8 +2550,8 @@ msgstr "Desconegut" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" per \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" per \"{}\"" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2563,13 +2563,13 @@ msgstr "No s'ha trobat cap complement" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "Instal·lar %s *NOU*" +msgid "Install {} *NEW*" +msgstr "Instal·lar {} *NOU*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Instal·lar %s" +msgid "Install {}" +msgstr "Instal·lar {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2589,8 +2589,8 @@ msgstr "Descarregant l'índex del repositori de complements" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "Descarregant %s" +msgid "Downloading {}" +msgstr "Descarregant {}" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3103,8 +3103,8 @@ msgstr "No podeu suprimir el nivell que esteu editant!" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "aportat per %s" +msgid "contributed by {}" +msgstr "aportat per {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/cmn.po b/data/locale/cmn.po index 270d41a6f7d..50a7471fa6e 100644 --- a/data/locale/cmn.po +++ b/data/locale/cmn.po @@ -1058,8 +1058,8 @@ msgstr "" #: src/supertux/command_line_arguments.cpp:79 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "用法:%s [選項] [關卡檔]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "用法:{} [選項] [關卡檔]" #: src/supertux/command_line_arguments.cpp:80 msgid "General Options:" @@ -1231,8 +1231,8 @@ msgstr "" #: src/supertux/levelintro.cpp:120 #, c-format -msgid "contributed by %s" -msgstr "貢獻者:%s" +msgid "contributed by {}" +msgstr "貢獻者:{}" #: src/supertux/levelintro.cpp:141 src/supertux/statistics.cpp:119 msgid "Best Level Statistics" @@ -1272,8 +1272,8 @@ msgstr "世界 " #: src/supertux/menu/addon_menu.cpp:83 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s「%s」由「%s」設計" +msgid "{} \"{}\" by \"{}\"" +msgstr "{}「{}」由「{}」設計" #: src/supertux/menu/addon_menu.cpp:139 msgid "Language packs" @@ -1309,12 +1309,12 @@ msgstr "" #: src/supertux/menu/addon_menu.cpp:224 #, c-format -msgid "Install %s *NEW*" +msgid "Install {} *NEW*" msgstr "" #: src/supertux/menu/addon_menu.cpp:235 #, c-format -msgid "Install %s" +msgid "Install {}" msgstr "" #: src/supertux/menu/addon_menu.cpp:246 @@ -1354,7 +1354,7 @@ msgstr "" #: src/supertux/menu/addon_menu.cpp:361 #, c-format -msgid "Downloading %s" +msgid "Downloading {}" msgstr "" #: src/supertux/menu/addon_menu.cpp:408 @@ -2011,12 +2011,12 @@ msgstr "" #: src/supertux/menu/profile_menu.cpp:37 #, c-format -msgid "[Profile %s]" +msgid "[Profile {}]" msgstr "" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "Profile %s" +msgid "Profile {}" msgstr "" #: src/supertux/menu/world_set_menu.cpp:41 diff --git a/data/locale/cs.po b/data/locale/cs.po index 0c4e44b22be..21c652fc628 100644 --- a/data/locale/cs.po +++ b/data/locale/cs.po @@ -6,7 +6,7 @@ # Benjamin Leduc , 2015 # Hume2 , 2016-2017 # Jakub Vaněk , 2015 -# Jiří Paleček , 2021-2023 +# Jiří Paleček , 2021-2024 # Jiří Paleček , 2016 # Jiří Paleček , 2013-2015 # Jiří Paleček , 2020 @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-05-30 16:19+0200\n" "PO-Revision-Date: 2013-08-10 22:56+0000\n" -"Last-Translator: Jiří Paleček , 2021-2023\n" +"Last-Translator: Jiří Paleček , 2021-2024\n" "Language-Team: Czech (http://app.transifex.com/arctic-games/supertux/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,124 +29,166 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: src/trigger/secretarea_trigger.cpp:53 src/trigger/secretarea_trigger.cpp:61 +#: src/trigger/secretarea_trigger.cpp:47 msgid "You found a secret area!" msgstr "Našel jsi tajnou skrýš!" -#: src/trigger/secretarea_trigger.cpp:77 src/supertux/game_object.cpp:90 -#: src/supertux/menu/editor_sector_menu.cpp:34 -#: src/supertux/menu/editor_levelset_menu.cpp:58 +#: src/trigger/secretarea_trigger.cpp:55 src/supertux/game_object.cpp:115 +#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_levelset_menu.cpp:52 #: src/supertux/menu/editor_new_levelset_menu.cpp:34 +#: src/supertux/menu/profile_name_menu.cpp:39 #: src/supertux/menu/editor_level_menu.cpp:33 msgid "Name" msgstr "Jméno" -#: src/trigger/secretarea_trigger.cpp:78 +#: src/trigger/secretarea_trigger.cpp:56 msgid "Fade tilemap" msgstr "Skrýt mapu dlaždic" -#: src/trigger/secretarea_trigger.cpp:79 src/trigger/climbable.cpp:81 -#: src/object/infoblock.cpp:57 src/editor/worldmap_objects.cpp:172 -#: src/editor/worldmap_objects.cpp:270 +#: src/trigger/secretarea_trigger.cpp:57 src/trigger/climbable.cpp:59 +#: src/object/infoblock.cpp:76 src/worldmap/teleporter.cpp:49 +#: src/worldmap/special_tile.cpp:74 msgid "Message" msgstr "Zpráva" -#: src/trigger/secretarea_trigger.cpp:80 src/trigger/scripttrigger.cpp:75 -#: src/trigger/door.cpp:73 src/object/ispy.cpp:67 -#: src/object/bonus_block.cpp:207 src/object/bonus_block.cpp:211 -#: src/object/pushbutton.cpp:51 src/object/powerup.cpp:190 -#: src/editor/worldmap_objects.cpp:272 +#: src/trigger/secretarea_trigger.cpp:58 src/trigger/scripttrigger.cpp:51 +#: src/trigger/door.cpp:79 src/object/ispy.cpp:53 +#: src/object/bonus_block.cpp:264 src/object/bonus_block.cpp:268 +#: src/object/pushbutton.cpp:62 src/object/powerup.cpp:301 +#: src/worldmap/special_tile.cpp:76 msgid "Script" msgstr "Skript" -#: src/trigger/scripttrigger.cpp:76 src/object/pushbutton.hpp:31 +#: src/trigger/scripttrigger.cpp:52 src/object/pushbutton.hpp:32 msgid "Button" msgstr "Tlačítko" -#: src/trigger/scripttrigger.cpp:77 +#: src/trigger/scripttrigger.cpp:53 msgid "Oneshot" msgstr "Jednorázový" -#: src/trigger/sequence_trigger.hpp:33 +#: src/trigger/sequence_trigger.hpp:31 msgid "Sequence Trigger" msgstr "Spouštěč sekvence" -#: src/trigger/door.cpp:74 src/badguy/willowisp.cpp:320 -#: src/supertux/menu/editor_sector_menu.cpp:32 -#: src/editor/layers_widget.cpp:342 -#: data//images/engine/editor/objects.stoi:321 +#: src/trigger/text_area.cpp:141 +msgid "Once" +msgstr "Jednou" + +#: src/trigger/text_area.cpp:142 +msgid "Text change time" +msgstr "Doba změny textu" + +#: src/trigger/text_area.cpp:143 +msgid "Fade time" +msgstr "Doba skrytí/odkrytí" + +#: src/trigger/text_area.cpp:144 src/object/textscroller.cpp:353 +msgid "Anchor" +msgstr "Ukotvení" + +#: src/trigger/text_area.cpp:148 +msgid "Anchor offset X" +msgstr "Vodorovný offset ukotvení" + +#: src/trigger/text_area.cpp:149 +msgid "Anchor offset Y" +msgstr "Svislý offset ukotvení" + +#: src/trigger/text_area.cpp:150 +msgid "Texts" +msgstr "Texty" + +#: src/trigger/door.cpp:80 src/badguy/willowisp.cpp:311 +#: src/worldmap/teleporter.cpp:47 data//images/engine/editor/objects.stoi:342 msgid "Sector" msgstr "Sektor" -#: src/trigger/door.cpp:75 src/editor/worldmap_objects.hpp:101 +#: src/trigger/door.cpp:81 src/worldmap/spawn_point.hpp:58 msgid "Spawn point" msgstr "Zrodiště" -#: src/trigger/switch.cpp:61 src/object/block.cpp:224 src/object/torch.cpp:102 -#: src/object/moving_sprite.cpp:156 src/object/pneumatic_platform.cpp:146 -msgid "Sprite" -msgstr "Vzhled" +#: src/trigger/door.cpp:82 +msgid "Locked?" +msgstr "Zamčené" + +#: src/trigger/door.cpp:83 +msgid "Lock Color" +msgstr "Barva zámku" + +#: src/trigger/switch.cpp:62 src/object/ispy.cpp:54 src/object/bumper.cpp:53 +#: src/object/spotlight.cpp:106 src/object/pushbutton.cpp:61 +#: src/object/gradient.cpp:103 src/object/conveyor_belt.cpp:60 +#: src/badguy/badguy.cpp:1063 src/worldmap/spawn_point.cpp:79 +#: src/worldmap/special_tile.cpp:78 +msgid "Direction" +msgstr "Směr" -#: src/trigger/switch.cpp:62 +#: src/trigger/switch.cpp:65 msgid "Turn on script" msgstr "Skript při zapnutí" -#: src/trigger/switch.cpp:63 +#: src/trigger/switch.cpp:66 msgid "Turn off script" msgstr "Skript při vypnutí" -#: src/trigger/scripttrigger.hpp:32 +#: src/trigger/scripttrigger.hpp:29 msgid "Script Trigger" msgstr "Spouštěč skriptu" -#: src/trigger/sequence_trigger.cpp:75 +#: src/trigger/sequence_trigger.cpp:48 msgid "Sequence" msgstr "Sekvence" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "end sequence" msgstr "cílová sekvence" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "stop Tux" msgstr "zastavit Tuxe" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "fireworks" msgstr "ohňostroj" -#: src/trigger/sequence_trigger.cpp:80 +#: src/trigger/sequence_trigger.cpp:53 msgid "New worldmap spawnpoint" msgstr "Nové zrodiště mapy světa" -#: src/trigger/sequence_trigger.cpp:81 +#: src/trigger/sequence_trigger.cpp:54 msgid "Worldmap fade tilemap" msgstr "Skrýt mapu dlaždic v mapě světa" -#: src/trigger/sequence_trigger.cpp:82 +#: src/trigger/sequence_trigger.cpp:55 #: src/object/custom_particle_system.cpp:430 #: src/object/custom_particle_system.cpp:465 msgid "Fade" msgstr "Skrýt/Odkrýt" -#: src/trigger/sequence_trigger.cpp:83 src/editor/particle_editor.cpp:161 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:161 msgid "Fade in" msgstr "Odkrýt" -#: src/trigger/sequence_trigger.cpp:83 src/editor/particle_editor.cpp:167 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:167 #: src/editor/particle_editor.cpp:212 msgid "Fade out" msgstr "Skrýt" -#: src/trigger/climbable.hpp:37 +#: src/trigger/climbable.hpp:46 msgid "Climbable" msgstr "Šplhací zóna" -#: src/trigger/door.hpp:34 +#: src/trigger/text_area.hpp:47 +msgid "Text Area" +msgstr "Textová zóna" + +#: src/trigger/door.hpp:31 msgid "Door" msgstr "Dveře" -#: src/trigger/switch.hpp:33 +#: src/trigger/switch.hpp:30 msgid "Switch" msgstr "Páčka" @@ -154,118 +196,194 @@ msgstr "Páčka" msgid "Secret Area" msgstr "Tajná oblast" -#: src/object/thunderstorm.hpp:40 +#: src/math/anchor_point.cpp:33 +msgid "Top Left" +msgstr "Nahoře vlevo" + +#: src/math/anchor_point.cpp:34 +msgid "Top" +msgstr "Nahoře" + +#: src/math/anchor_point.cpp:35 +msgid "Top Right" +msgstr "Nahoře vpravo" + +#: src/math/anchor_point.cpp:36 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:38 +#: src/supertux/menu/joystick_menu.cpp:73 +msgid "Left" +msgstr "Vlevo" + +#: src/math/anchor_point.cpp:37 +msgid "Middle" +msgstr "Uprostřed" + +#: src/math/anchor_point.cpp:38 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:39 +#: src/supertux/menu/joystick_menu.cpp:74 +msgid "Right" +msgstr "Vpravo" + +#: src/math/anchor_point.cpp:39 +msgid "Bottom Left" +msgstr "Dole vlevo" + +#: src/math/anchor_point.cpp:40 +msgid "Bottom" +msgstr "Dole" + +#: src/math/anchor_point.cpp:41 +msgid "Bottom Right" +msgstr "Dole vpravo" + +#: src/object/thunderstorm.hpp:44 msgid "Thunderstorm" msgstr "Bouřka" -#: src/object/cloud_particle_system.cpp:79 +#: src/object/cloud_particle_system.cpp:77 #: src/object/rain_particle_system.cpp:100 msgid "Intensity" msgstr "Intenzita" -#: src/object/custom_particle_system.hpp:45 +#: src/object/custom_particle_system.hpp:46 msgid "Custom Particles" msgstr "Vlastní částice" -#: src/object/ispy.cpp:66 -msgid "Facing Down" -msgstr "Směřující dolů" - -#: src/object/ispy.cpp:68 src/object/spotlight.cpp:103 -#: src/object/gradient.cpp:137 src/badguy/willowisp.cpp:319 -#: src/badguy/badguy.cpp:848 src/editor/worldmap_objects.cpp:207 -#: src/editor/worldmap_objects.cpp:274 -msgid "Direction" -msgstr "Směr" - -#: src/object/particle_zone.hpp:39 +#: src/object/particle_zone.hpp:41 msgid "Particle zone" msgstr "Částicová zóna" -#: src/object/path_gameobject.hpp:44 src/object/coin.cpp:301 -#: src/object/camera.cpp:224 src/object/platform.cpp:73 -#: src/object/path_gameobject.cpp:173 src/object/tilemap.cpp:246 -#: src/gui/menu_paths.cpp:52 src/badguy/willowisp.cpp:326 +#: src/object/path_gameobject.hpp:45 src/object/coin.cpp:324 +#: src/object/camera.cpp:168 src/object/platform.cpp:76 +#: src/object/path_gameobject.cpp:175 src/object/tilemap.cpp:284 +#: src/badguy/willowisp.cpp:317 msgid "Path" msgstr "Cesta" -#: src/object/decal.cpp:49 src/object/scripted_object.cpp:67 -#: src/object/particlesystem.cpp:65 src/object/background.cpp:183 -#: src/object/thunderstorm.cpp:68 src/object/tilemap.cpp:239 -#: src/object/gradient.cpp:135 -msgid "Z-pos" -msgstr "Vrstva" - -#: src/object/decal.cpp:50 src/object/scripted_object.cpp:70 -#: src/object/tilemap.cpp:228 +#: src/object/decal.cpp:48 src/object/scripted_object.cpp:70 +#: src/object/tilemap.cpp:266 msgid "Solid" msgstr "Pevný" -#: src/object/decal.cpp:51 src/supertux/menu/keyboard_menu.cpp:37 -#: src/supertux/menu/joystick_menu.cpp:74 +#: src/object/decal.cpp:49 src/supertux/menu/keyboard_menu.cpp:41 +#: src/supertux/menu/joystick_menu.cpp:76 msgid "Action" msgstr "Akce" -#: src/object/weak_block.hpp:35 +#: src/object/weak_block.hpp:36 msgid "Weak Tile" msgstr "Slabá dlaždice" -#: src/object/bumper.cpp:46 -msgid "Facing Left" -msgstr "Směřující doleva" - -#: src/object/gradient.hpp:42 +#: src/object/gradient.hpp:43 msgid "Gradient" msgstr "Barevný přechod" -#: src/object/tilemap.hpp:57 +#: src/object/tilemap.hpp:58 msgid "Tilemap" msgstr "Mapa dlaždic" -#: src/object/circleplatform.hpp:32 +#: src/object/sound_object.cpp:69 src/object/ambient_sound.cpp:85 +#: src/object/sound_object.hpp:42 src/supertux/menu/options_menu.cpp:128 +#: data//credits.stxt:367 +msgid "Sound" +msgstr "Zvuk" + +#: src/object/sound_object.cpp:70 src/object/ambient_sound.cpp:87 +msgid "Volume" +msgstr "Hlasitost" + +#: src/object/conveyor_belt.hpp:39 +msgid "Conveyor Belt" +msgstr "Běžící pás" + +#: src/object/unstable_tile.cpp:70 src/object/weak_block.cpp:97 +#: src/badguy/flame.cpp:86 +msgid "Ice" +msgstr "Led" + +#: src/object/unstable_tile.cpp:71 src/object/brick.hpp:34 +msgid "Brick" +msgstr "Bedna" + +#: src/object/unstable_tile.cpp:72 +msgid "Delayed" +msgstr "Zpožděná" + +#: src/object/circleplatform.hpp:35 msgid "Circular Platform" msgstr "Kroužící plošina" -#: src/object/brick.cpp:133 +#: src/object/brick.cpp:59 src/object/coin.cpp:69 +#: src/object/invisible_block.cpp:37 src/object/background.cpp:200 +#: src/object/tilemap.cpp:279 src/object/gradient.cpp:109 +#: src/badguy/viciousivy.cpp:44 src/badguy/snail.cpp:69 +#: src/badguy/smartball.cpp:34 src/badguy/bouncing_snowball.cpp:81 +#: src/badguy/kamikazesnowball.cpp:117 src/badguy/walkingleaf.cpp:35 +#: src/badguy/mrbomb.cpp:47 src/badguy/igel.cpp:188 src/badguy/snowball.cpp:40 +#: src/badguy/mrtree.cpp:50 src/badguy/mriceblock.cpp:62 +msgid "Normal" +msgstr "Normální" + +#: src/object/brick.cpp:60 src/object/bonus_block.cpp:175 +#: src/object/coin.cpp:70 src/object/invisible_block.cpp:38 +msgid "Retro" +msgstr "Retro" + +#: src/object/brick.cpp:166 msgid "Breakable" msgstr "Rozbitná" -#: src/object/trampoline.cpp:136 src/object/rusty_trampoline.cpp:66 +#: src/object/trampoline.cpp:66 src/object/rusty_trampoline.cpp:66 msgid "Portable" msgstr "Přenosná" -#: src/object/spotlight.cpp:100 src/object/rain_particle_system.cpp:101 +#: src/object/trampoline.cpp:67 +msgid "Stationary" +msgstr "Nepřenosná" + +#: src/object/key.hpp:38 +msgid "Key" +msgstr "Klíč" + +#: src/object/spotlight.cpp:102 src/object/particlesystem.cpp:64 +#: src/object/particle_zone.cpp:50 src/badguy/darttrap.cpp:149 +#: src/supertux/menu/addon_preview_menu.cpp:189 +msgid "Enabled" +msgstr "Zapnuto" + +#: src/object/spotlight.cpp:103 src/object/rain_particle_system.cpp:101 msgid "Angle" msgstr "Úhel" -#: src/object/spotlight.cpp:101 src/object/magicblock.cpp:94 -#: src/object/candle.cpp:77 src/object/torch.cpp:104 -#: src/object/rublight.cpp:54 src/object/lantern.cpp:62 -#: src/object/ambient_light.cpp:131 src/badguy/willowisp.cpp:328 -#: src/badguy/walking_candle.cpp:82 +#: src/object/spotlight.cpp:104 src/object/magicblock.cpp:95 +#: src/object/candle.cpp:75 src/object/torch.cpp:96 src/object/rublight.cpp:55 +#: src/object/lantern.cpp:62 src/object/ambient_light.cpp:122 +#: src/object/key.cpp:192 src/badguy/willowisp.cpp:319 +#: src/badguy/walking_candle.cpp:91 msgid "Color" msgstr "Barva" -#: src/object/spotlight.cpp:102 src/object/textscroller.cpp:350 -#: src/object/rain_particle_system.cpp:102 src/object/circleplatform.cpp:55 -#: src/badguy/flame.cpp:59 src/editor/node_marker.cpp:125 +#: src/object/spotlight.cpp:105 src/object/textscroller.cpp:350 +#: src/object/rain_particle_system.cpp:102 src/object/conveyor_belt.cpp:61 +#: src/object/circleplatform.cpp:58 src/badguy/flame.cpp:110 +#: src/editor/node_marker.cpp:125 msgid "Speed" msgstr "Rychlost" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Clockwise" msgstr "Po směru hodinových ručiček" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Counter-clockwise" msgstr "Proti směru hodinových ručiček" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Stopped" msgstr "Zastavený" -#: src/object/spotlight.cpp:107 src/object/candle.cpp:78 -#: src/object/torch.cpp:103 +#: src/object/spotlight.cpp:110 src/object/lit_object.cpp:69 +#: src/object/candle.cpp:76 src/object/torch.cpp:95 msgid "Layer" msgstr "Vrstva" @@ -277,125 +395,171 @@ msgstr "Povolit fyziku" msgid "Visible" msgstr "Viditelný" -#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:322 +#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:313 msgid "Hit script" msgstr "Skript při zásahu" -#: src/object/custom_particle_system_file.cpp:50 +#: src/object/custom_particle_system_file.cpp:53 #: src/object/textscroller.cpp:348 src/object/music_object.cpp:109 #: src/supertux/menu/particle_editor_open.cpp:38 msgid "File" msgstr "Soubor" -#: src/object/bonus_block.cpp:208 +#: src/object/bonus_block.cpp:154 +msgid "Only one custom object is allowed inside bonus blocks." +msgstr "V bonusovém bloku může být pouze jeden vlastní objekt." + +#: src/object/bonus_block.cpp:172 +msgid "Blue" +msgstr "Modrý" + +#: src/object/bonus_block.cpp:173 +msgid "Orange" +msgstr "Oranžový" + +#: src/object/bonus_block.cpp:174 +msgid "Purple" +msgstr "Fialový" + +#: src/object/bonus_block.cpp:265 src/supertux/menu/cheat_apply_menu.cpp:54 msgid "Count" msgstr "Počet" -#: src/object/bonus_block.cpp:209 +#: src/object/bonus_block.cpp:266 msgid "Content" msgstr "Obsah" -#: src/object/bonus_block.cpp:210 src/object/coin.hpp:43 +#: src/object/bonus_block.cpp:267 src/object/coin.hpp:44 msgid "Coin" msgstr "Mince" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (fire flower)" msgstr "Růst (ohnivá květina)" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (ice flower)" msgstr "Růst (ledová květina)" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (air flower)" msgstr "Růst (vzdušná květina)" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Growth (earth flower)" msgstr "Růst (zemní květina)" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 +msgid "Growth (retro)" +msgstr "Růst (retro)" + +#: src/object/bonus_block.cpp:268 src/object/powerup.cpp:66 msgid "Star" msgstr "Hvězda" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 +msgid "Star (retro)" +msgstr "Hvězda (retro)" + +#: src/object/bonus_block.cpp:268 msgid "Tux doll" msgstr "Tučňáčí stokoruna" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Custom" msgstr "Vlastní" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Light" msgstr "Světlo" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Light (On)" msgstr "Světlo (zapnuto)" -#: src/object/bonus_block.cpp:212 src/object/trampoline.hpp:35 +#: src/object/bonus_block.cpp:269 src/object/trampoline.hpp:37 msgid "Trampoline" msgstr "Trampolína" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 +msgid "Portable trampoline" +msgstr "Přenosná trampolna" + +#: src/object/bonus_block.cpp:269 msgid "Coin rain" msgstr "Déšť mincí" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 msgid "Coin explosion" msgstr "Výbuch mincí" -#: src/object/bonus_block.cpp:216 +#: src/object/bonus_block.cpp:269 src/object/rock.hpp:43 +msgid "Rock" +msgstr "Přenosný blok" + +#: src/object/bonus_block.cpp:269 +msgid "Potion" +msgstr "Lektvar" + +#: src/object/bonus_block.cpp:275 msgid "Custom Content" msgstr "Vlastní obsah" -#: src/object/pneumatic_platform.hpp:62 +#: src/object/bonus_block.cpp:278 +msgid "Coin sprite" +msgstr "Vzhled mince" + +#: src/object/pneumatic_platform.hpp:65 msgid "Pneumatic Platform" msgstr "Pneumatická plošina" -#: src/object/coin.cpp:303 src/object/tilemap.cpp:249 +#: src/object/coin.cpp:326 src/object/tilemap.cpp:287 msgid "Following path" msgstr "Následuje cestu" -#: src/object/coin.cpp:306 src/object/camera.cpp:227 -#: src/object/platform.cpp:74 src/object/tilemap.cpp:252 +#: src/object/coin.cpp:329 src/object/camera.cpp:171 +#: src/object/platform.cpp:77 src/object/tilemap.cpp:290 msgid "Path Mode" msgstr "Režim cesty" -#: src/object/coin.cpp:307 src/object/camera.cpp:228 -#: src/object/platform.cpp:75 src/object/tilemap.cpp:253 -#: src/badguy/willowisp.cpp:331 +#: src/object/coin.cpp:330 src/object/camera.cpp:172 +#: src/object/platform.cpp:78 src/object/tilemap.cpp:291 +#: src/badguy/willowisp.cpp:322 msgid "Adapt Speed" msgstr "Přizpůsobit rychlost" -#: src/object/coin.cpp:308 src/object/platform.cpp:77 -#: src/object/tilemap.cpp:247 src/badguy/willowisp.cpp:327 +#: src/object/coin.cpp:331 src/object/platform.cpp:81 +#: src/object/tilemap.cpp:285 src/badguy/willowisp.cpp:318 msgid "Starting Node" msgstr "Počáteční uzel" -#: src/object/coin.cpp:311 src/object/coin.cpp:339 +#: src/object/coin.cpp:332 src/object/camera.cpp:173 +#: src/object/platform.cpp:82 src/object/tilemap.cpp:293 +#: src/badguy/willowisp.cpp:323 +msgid "Handle" +msgstr "Úchopný bod" + +#: src/object/coin.cpp:335 src/object/coin.cpp:371 msgid "Collect script" msgstr "Skript při sebrání" -#: src/object/ghost_particle_system.hpp:36 +#: src/object/ghost_particle_system.hpp:37 msgid "Ghost Particles" msgstr "Duchové" -#: src/object/camera.cpp:219 +#: src/object/camera.cpp:163 msgid "Mode" msgstr "Režim" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "normal" msgstr "normální" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "manual" msgstr "manuální" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "autoscroll" msgstr "automatický posun" @@ -411,32 +575,20 @@ msgstr "Vodorovný offset" msgid "Controllable" msgstr "Ovladatelný" -#: src/object/textscroller.cpp:353 -msgid "Anchor" -msgstr "Ukotvení" - -#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 -#: src/supertux/menu/keyboard_menu.cpp:34 -#: src/supertux/menu/joystick_menu.cpp:71 -msgid "Left" -msgstr "Vlevo" - #: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 msgid "Center" msgstr "Na střed" -#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 -#: src/supertux/menu/keyboard_menu.cpp:35 -#: src/supertux/menu/joystick_menu.cpp:72 -msgid "Right" -msgstr "Vpravo" - #: src/object/textscroller.cpp:357 msgid "Text Alignment" msgstr "Zarovnání textu" -#: src/object/spawnpoint.hpp:46 src/badguy/willowisp.cpp:321 -#: src/editor/worldmap_objects.cpp:171 +#: src/object/lit_object.hpp:40 +msgid "Lit object" +msgstr "Nasvícený objekt" + +#: src/object/spawnpoint.hpp:48 src/badguy/willowisp.cpp:312 +#: src/worldmap/teleporter.cpp:48 msgid "Spawnpoint" msgstr "Zrodiště" @@ -444,266 +596,339 @@ msgstr "Zrodiště" msgid "Counter" msgstr "Výdrž" -#: src/object/candle.hpp:36 +#: src/object/candle.hpp:37 msgid "Candle" msgstr "Svíčka" -#: src/object/particlesystem.cpp:64 src/object/particle_zone.cpp:79 -#: src/badguy/darttrap.cpp:127 -msgid "Enabled" -msgstr "Zapnuto" +#: src/object/particlesystem.cpp:65 src/object/background.cpp:184 +#: src/object/thunderstorm.cpp:76 src/object/tilemap.cpp:277 +#: src/object/gradient.cpp:101 src/object/moving_sprite.cpp:193 +msgid "Z-pos" +msgstr "Vrstva" -#: src/object/invisible_block.hpp:31 +#: src/object/invisible_block.hpp:30 msgid "Invisible Block" msgstr "Neviditelný blok" -#: src/object/snow_particle_system.hpp:35 +#: src/object/snow_particle_system.hpp:37 msgid "Snow Particles" msgstr "Sníh" -#: src/object/powerup.hpp:35 +#: src/object/powerup.hpp:40 msgid "Powerup" msgstr "Vylepšovák" -#: src/object/fallblock.hpp:39 +#: src/object/infoblock.cpp:78 +msgid "Front Color" +msgstr "Barva popředí" + +#: src/object/infoblock.cpp:80 +msgid "Back Color" +msgstr "Barva pozadí" + +#: src/object/infoblock.cpp:82 +msgid "Roundness" +msgstr "Zaoblení" + +#: src/object/infoblock.cpp:84 +msgid "Fade Transition" +msgstr "Přechod při skrytí/odkrytí" + +#: src/object/fallblock.hpp:41 msgid "Falling Platform" msgstr "Padací plošina" -#: src/object/level_time.hpp:55 +#: src/object/level_time.hpp:56 msgid "Time Limit" msgstr "Časový limit" -#: src/object/ambient_sound.cpp:119 src/supertux/menu/options_menu.cpp:391 -#: data//credits.stxt:352 -msgid "Sound" -msgstr "Zvuk" - -#: src/object/ambient_sound.cpp:120 -msgid "Distance factor" -msgstr "Faktor vzdálenosti" - -#: src/object/ambient_sound.cpp:121 -msgid "Distance bias" -msgstr "Sklon vzdálenosti" - -#: src/object/ambient_sound.cpp:122 -msgid "Volume" -msgstr "Hlasitost" +#: src/object/ambient_sound.cpp:86 +msgid "Radius (in tiles)" +msgstr "Poloměr (v dlaždicích)" #: src/object/torch.hpp:41 msgid "Torch" msgstr "Louč" -#: src/object/icecrusher.hpp:53 -msgid "Icecrusher" -msgstr "Ledový drtič" - -#: src/object/rublight.hpp:33 +#: src/object/rublight.hpp:34 msgid "Rublight" msgstr "Nášlapné světlo" -#: src/object/background.hpp:43 +#: src/object/background.hpp:45 msgid "Background" msgstr "Pozadí" -#: src/object/firefly.hpp:36 +#: src/object/text_object.hpp:44 src/gui/menu_string_array.cpp:77 +msgid "Text" +msgstr "Text" + +#: src/object/firefly.hpp:38 msgid "Checkpoint" msgstr "Uložovák" -#: src/object/ambient_light.hpp:36 +#: src/object/ambient_light.hpp:37 msgid "Ambient Light" msgstr "Osvětlení" -#: src/object/lantern.hpp:37 +#: src/object/lantern.hpp:38 msgid "Lantern" msgstr "Lucerna" -#: src/object/wind.hpp:40 +#: src/object/wind.hpp:43 msgid "Wind" msgstr "Vítr" -#: src/object/bicycle_platform.cpp:189 src/object/background.cpp:179 -#: src/object/pneumatic_platform.cpp:147 -#: src/supertux/menu/joystick_menu.cpp:170 src/supertux/moving_object.cpp:58 -#: src/editor/worldmap_objects.cpp:73 +#: src/object/bicycle_platform.cpp:203 src/object/background.cpp:180 +#: src/object/pneumatic_platform.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:65 +#: src/worldmap/worldmap_object.cpp:77 msgid "X" msgstr "X" -#: src/object/bicycle_platform.cpp:190 src/object/background.cpp:180 -#: src/object/pneumatic_platform.cpp:148 -#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:59 -#: src/editor/worldmap_objects.cpp:74 +#: src/object/bicycle_platform.cpp:204 src/object/background.cpp:181 +#: src/object/pneumatic_platform.cpp:163 +#: src/supertux/menu/joystick_menu.cpp:174 src/supertux/moving_object.cpp:66 +#: src/worldmap/worldmap_object.cpp:78 msgid "Y" msgstr "Y" -#: src/object/bicycle_platform.cpp:192 +#: src/object/bicycle_platform.cpp:206 msgid "Platforms" msgstr "Plošiny" -#: src/object/bicycle_platform.cpp:193 src/object/circleplatform.cpp:54 -#: src/badguy/flame.cpp:58 src/badguy/rcrystallo.cpp:50 -#: src/badguy/crystallo.cpp:35 +#: src/object/bicycle_platform.cpp:207 src/object/circleplatform.cpp:57 +#: src/badguy/fish_swimming.cpp:76 src/badguy/flame.cpp:109 +#: src/badguy/rcrystallo.cpp:83 src/badguy/crystallo.cpp:50 msgid "Radius" msgstr "Rozsah" -#: src/object/bicycle_platform.cpp:194 +#: src/object/bicycle_platform.cpp:208 msgid "Momentum change rate" msgstr "Změna rychlosti" -#: src/object/rain_particle_system.hpp:40 +#: src/object/rain_particle_system.hpp:41 msgid "Rain Particles" msgstr "Déšť" -#: src/object/platform.hpp:45 +#: src/object/platform.hpp:46 msgid "Platform" msgstr "Plošina" -#: src/object/rock.hpp:42 -msgid "Rock" -msgstr "Přenosný blok" - -#: src/object/music_object.hpp:41 src/supertux/menu/options_menu.cpp:393 -#: data//credits.stxt:294 +#: src/object/music_object.hpp:42 src/supertux/menu/options_menu.cpp:130 +#: data//credits.stxt:309 msgid "Music" msgstr "Hudba" -#: src/object/rusty_trampoline.hpp:39 +#: src/object/lit_object.cpp:68 +msgid "Light sprite" +msgstr "Vzhled světla" + +#: src/object/lit_object.cpp:71 +msgid "Sprite starting action" +msgstr "Počáteční akce vzhledu" + +#: src/object/lit_object.cpp:72 +msgid "Light sprite starting action" +msgstr "Počáteční akce vzhledu světla" + +#: src/object/lit_object.cpp:74 +msgid "Light sprite offset X" +msgstr "Vodorovný offset světla" + +#: src/object/lit_object.cpp:75 +msgid "Light sprite offset Y" +msgstr "Svislý offset světla" + +#: src/object/rusty_trampoline.hpp:40 msgid "Rusty Trampoline" msgstr "Zrezlá trampolína" -#: src/object/particlesystem.hpp:57 +#: src/object/particlesystem.hpp:58 msgid "Particle system" msgstr "Systém částic" -#: src/object/candle.cpp:75 src/object/torch.cpp:101 +#: src/object/candle.cpp:73 src/object/torch.cpp:94 msgid "Burning" msgstr "Hořící" -#: src/object/candle.cpp:76 +#: src/object/candle.cpp:74 msgid "Flicker" msgstr "Blikání" -#: src/object/text_array_object.hpp:50 +#: src/object/snow_particle_system.cpp:104 +msgid "Epsilon" +msgstr "Epsilon" + +#: src/object/snow_particle_system.cpp:105 +msgid "Spin Speed" +msgstr "Rychlost otáčení" + +#: src/object/snow_particle_system.cpp:106 +msgid "State Length" +msgstr "Délka stavu" + +#: src/object/snow_particle_system.cpp:107 +msgid "Wind Speed" +msgstr "Rychlost větru" + +#: src/object/text_array_object.hpp:47 msgid "Text array" msgstr "Textové pole" -#: src/object/infoblock.hpp:36 +#: src/object/infoblock.hpp:37 msgid "Info Block" msgstr "Infoblok" -#: src/object/powerup.cpp:191 +#: src/object/powerup.cpp:61 +msgid "Egg" +msgstr "Vejce" + +#: src/object/powerup.cpp:62 +msgid "Fire Flower" +msgstr "Ohnivá květina" + +#: src/object/powerup.cpp:63 +msgid "Ice Flower" +msgstr "Ledová květina" + +#: src/object/powerup.cpp:64 +msgid "Air Flower" +msgstr "Vzdušná květina" + +#: src/object/powerup.cpp:65 +msgid "Earth Flower" +msgstr "Zemní květina" + +#: src/object/powerup.cpp:67 +msgid "Tux Doll" +msgstr "Tučňáčí stokoruna" + +#: src/object/powerup.cpp:68 +msgid "Flip Potion" +msgstr "Otočný lektvar" + +#: src/object/powerup.cpp:69 +msgid "Mints" +msgstr "Větrové bonbóny" + +#: src/object/powerup.cpp:70 +msgid "Coffee" +msgstr "Káva" + +#: src/object/powerup.cpp:71 +msgid "Herring" +msgstr "Sleď" + +#: src/object/powerup.cpp:302 msgid "Disable gravity" msgstr "Vypnout gravitaci" -#: src/object/ambient_sound.hpp:62 +#: src/object/powerup.cpp:312 src/object/weak_block.cpp:266 +msgid "" +"Sprites no longer define the behaviour of the object.\n" +"Object types are used instead." +msgstr "Vzhledy již neurčují chování objektu.\nMisto toho se používají objektové typy." + +#: src/object/ambient_sound.hpp:43 msgid "Ambient Sound" msgstr "Ozvučení" -#: src/object/level_time.cpp:51 src/supertux/statistics.cpp:297 +#: src/object/level_time.cpp:52 src/supertux/statistics.cpp:297 #: src/editor/node_marker.cpp:124 msgid "Time" msgstr "Čas" -#: src/object/hurting_platform.hpp:30 +#: src/object/hurting_platform.hpp:31 msgid "Hurting Platform" msgstr "Nebezpečná plošina" -#: src/object/icecrusher.cpp:83 -msgid "Sideways" -msgstr "Do strany" - -#: src/object/background.cpp:182 +#: src/object/background.cpp:183 msgid "Fill" msgstr "Vyplnit" -#: src/object/background.cpp:184 +#: src/object/background.cpp:185 msgid "Alignment" msgstr "Zarovnání" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 src/supertux/direction.cpp:61 msgid "none" msgstr "nic" -#: src/object/background.cpp:185 src/editor/object_settings.cpp:119 +#: src/object/background.cpp:186 src/supertux/direction.cpp:63 msgid "left" msgstr "vlevo" -#: src/object/background.cpp:185 src/editor/object_settings.cpp:119 +#: src/object/background.cpp:186 src/supertux/direction.cpp:65 msgid "right" msgstr "vpravo" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 msgid "top" msgstr "nahoru" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 msgid "bottom" msgstr "dolů" -#: src/object/background.cpp:188 +#: src/object/background.cpp:189 msgid "Scroll offset x" msgstr "Vodorovný offset posouvání" -#: src/object/background.cpp:189 +#: src/object/background.cpp:190 msgid "Scroll offset y" msgstr "Svislý offset posouvání" -#: src/object/background.cpp:190 +#: src/object/background.cpp:191 msgid "Scroll speed x" msgstr "Vodorovná rychlost posouvání" -#: src/object/background.cpp:191 +#: src/object/background.cpp:192 msgid "Scroll speed y" msgstr "Svislá rychlost posouvání" -#: src/object/background.cpp:192 +#: src/object/background.cpp:193 msgid "Parallax Speed x" msgstr "Vodorovná paralaxní rychlost" -#: src/object/background.cpp:193 +#: src/object/background.cpp:194 msgid "Parallax Speed y" msgstr "Svislá paralaxní rychlost" -#: src/object/background.cpp:194 +#: src/object/background.cpp:195 msgid "Top image" msgstr "Horní obrázek" -#: src/object/background.cpp:195 +#: src/object/background.cpp:196 msgid "Image" msgstr "Obrázek" -#: src/object/background.cpp:196 +#: src/object/background.cpp:197 msgid "Bottom image" msgstr "Spodní obrázek" -#: src/object/background.cpp:197 +#: src/object/background.cpp:198 msgid "Colour" msgstr "Barva" -#: src/object/background.cpp:198 src/object/tilemap.cpp:240 -#: src/object/gradient.cpp:142 +#: src/object/background.cpp:199 src/object/tilemap.cpp:278 +#: src/object/gradient.cpp:108 msgid "Draw target" msgstr "Druh vykreslování" -#: src/object/background.cpp:199 src/object/tilemap.cpp:241 -#: src/object/gradient.cpp:143 -msgid "Normal" -msgstr "Normální" - -#: src/object/background.cpp:199 src/object/tilemap.cpp:241 -#: src/object/gradient.cpp:143 +#: src/object/background.cpp:200 src/object/tilemap.cpp:279 +#: src/object/gradient.cpp:109 msgid "Lightmap" msgstr "Mapa světla" -#: src/object/shard.hpp:34 +#: src/object/shard.hpp:35 msgid "Shard" msgstr "Střep" -#: src/object/rublight.cpp:55 +#: src/object/rublight.cpp:56 msgid "Fading Speed" msgstr "Rychlost zhasínání" -#: src/object/rublight.cpp:56 +#: src/object/rublight.cpp:57 msgid "Glowing Strength" msgstr "Intenzita světla" @@ -739,20 +964,28 @@ msgstr "Působí na hráče" msgid "Fancy Particles" msgstr "Lepší částicové efekty" -#: src/object/bicycle_platform.hpp:64 +#: src/object/bicycle_platform.hpp:67 msgid "Bicycle Platform" msgstr "Šlapací plošina" -#: src/object/platform.cpp:76 src/object/thunderstorm.cpp:69 -#: src/object/tilemap.cpp:254 +#: src/object/platform.cpp:80 src/object/thunderstorm.cpp:77 +#: src/object/tilemap.cpp:292 src/object/conveyor_belt.cpp:62 msgid "Running" msgstr "Aktivní" -#: src/object/rock.cpp:192 +#: src/object/rock.cpp:71 +msgid "Small" +msgstr "Malý" + +#: src/object/rock.cpp:72 +msgid "Large" +msgstr "Velký" + +#: src/object/rock.cpp:234 msgid "On-grab script" msgstr "Skript při zvednutí" -#: src/object/rock.cpp:193 +#: src/object/rock.cpp:235 msgid "On-ungrab script" msgstr "Skript při upuštění" @@ -760,15 +993,15 @@ msgstr "Skript při upuštění" msgid "Interactive particle system" msgstr "Interaktivní systém částic" -#: src/object/thunderstorm.cpp:70 +#: src/object/thunderstorm.cpp:78 msgid "Interval" msgstr "Interval" -#: src/object/thunderstorm.cpp:71 +#: src/object/thunderstorm.cpp:79 msgid "Strike Script" msgstr "Skript při zásahu" -#: src/object/cloud_particle_system.hpp:41 +#: src/object/cloud_particle_system.hpp:42 msgid "Cloud Particles" msgstr "Mraky" @@ -780,7 +1013,7 @@ msgstr "Textura" msgid "Amount" msgstr "Množství" -#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:56 +#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:59 #: src/editor/particle_editor.cpp:141 msgid "Delay" msgstr "Zpoždění" @@ -799,10 +1032,11 @@ msgid "Birth mode" msgstr "Režim vzniku" #: src/object/custom_particle_system.cpp:430 -#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:149 -#: src/supertux/menu/keyboard_menu.cpp:58 -#: src/supertux/menu/joystick_menu.cpp:106 -#: src/supertux/menu/joystick_menu.cpp:213 src/editor/object_settings.cpp:131 +#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:115 +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/joystick_menu.cpp:108 +#: src/supertux/menu/joystick_menu.cpp:215 src/editor/object_settings.cpp:129 #: src/editor/particle_editor.cpp:162 src/editor/particle_editor.cpp:168 msgid "None" msgstr "Žádný" @@ -1131,597 +1365,916 @@ msgstr "Vždy" msgid "Cover screen" msgstr "Zaplnit obrazovku" -#: src/object/ispy.hpp:33 +#: src/object/ispy.hpp:35 msgid "Ispy" msgstr "Čidlo" -#: src/object/skull_tile.hpp:32 -msgid "Skull Tile" -msgstr "Lebka (dlaždice)" - -#: src/object/particle_zone.cpp:80 +#: src/object/particle_zone.cpp:51 msgid "Particle Name" msgstr "Název částice" -#: src/object/particle_zone.cpp:81 -msgid "Zone Type" -msgstr "Typ oblasti" - -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:62 msgid "Spawn" msgstr "Vznik" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:63 msgid "Life zone" msgstr "Oblast existence" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:64 msgid "Life zone (clear)" msgstr "Oblast existence (vyčistit)" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:65 msgid "Kill particles" msgstr "Zničit částice" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:66 msgid "Clear particles" msgstr "Vyčistit částice" -#: src/object/weak_block.cpp:211 -msgid "Linked" -msgstr "Řetězový efekt" +#: src/object/weak_block.cpp:98 +msgid "Hay" +msgstr "Balík sena" -#: src/object/decal.hpp:40 +#: src/object/decal.hpp:41 msgid "Decal" msgstr "Obtisk" -#: src/object/tilemap.cpp:229 +#: src/object/tilemap.cpp:267 msgid "Resize offset x" msgstr "Offset změny šířky" -#: src/object/tilemap.cpp:230 +#: src/object/tilemap.cpp:268 msgid "Resize offset y" msgstr "Offset změny výšky" -#: src/object/tilemap.cpp:232 src/supertux/menu/editor_sector_menu.cpp:39 -#: src/editor/object_option.cpp:173 +#: src/object/tilemap.cpp:270 src/supertux/menu/editor_sector_menu.cpp:41 +#: src/editor/object_option.cpp:178 msgid "Width" msgstr "Šířka" -#: src/object/tilemap.cpp:233 src/supertux/menu/editor_sector_menu.cpp:40 -#: src/editor/object_option.cpp:174 +#: src/object/tilemap.cpp:271 src/supertux/menu/editor_sector_menu.cpp:42 +#: src/editor/object_option.cpp:179 msgid "Height" msgstr "Výška" -#: src/object/tilemap.cpp:235 +#: src/object/tilemap.cpp:273 msgid "Alpha" msgstr "Neprůhlednost" -#: src/object/tilemap.cpp:236 +#: src/object/tilemap.cpp:274 msgid "Speed x" msgstr "Vodorovná rychlost" -#: src/object/tilemap.cpp:237 +#: src/object/tilemap.cpp:275 msgid "Speed y" msgstr "Svislá rychlost" -#: src/object/tilemap.cpp:238 +#: src/object/tilemap.cpp:276 msgid "Tint" msgstr "Zbarvení" -#: src/object/tilemap.cpp:257 src/supertux/menu/editor_tilegroup_menu.cpp:26 -#: src/editor/toolbox_widget.cpp:90 +#: src/object/tilemap.cpp:296 src/supertux/menu/editor_tilegroup_menu.cpp:26 +#: src/editor/toolbox_widget.cpp:98 msgid "Tiles" msgstr "Dlaždice" -#: src/object/gradient.cpp:128 -msgid "Left Colour" -msgstr "Levá barva" - -#: src/object/gradient.cpp:129 -msgid "Right Colour" -msgstr "Pravá barva" +#: src/object/gradient.cpp:98 +msgid "Primary Colour" +msgstr "Hlavní barva" -#: src/object/gradient.cpp:131 -msgid "Top Colour" -msgstr "Vrchní barva" +#: src/object/gradient.cpp:99 +msgid "Secondary Colour" +msgstr "Vedlejší barva" -#: src/object/gradient.cpp:132 -msgid "Bottom Colour" -msgstr "Spodní barva" - -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Vertical" msgstr "Svislý" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Horizontal" msgstr "Vodorovný" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Vertical (whole sector)" msgstr "Svislý (přes celý sektor)" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Horizontal (whole sector)" msgstr "Vodorovný (přes celý sektor)" -#: src/object/gradient.cpp:148 +#: src/object/gradient.cpp:114 msgid "Blend mode" msgstr "Režim splývání" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Blend" msgstr "Splynout" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Additive" msgstr "Aditivní" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Modulate" msgstr "Modulativní" -#: src/object/bumper.hpp:35 +#: src/object/bumper.hpp:38 msgid "Bumper" msgstr "Odrážedlo" -#: src/object/unstable_tile.hpp:37 +#: src/object/conveyor_belt.cpp:63 +msgid "Length" +msgstr "Délka" + +#: src/object/moving_sprite.cpp:192 src/object/pneumatic_platform.cpp:161 +msgid "Sprite" +msgstr "Vzhled" + +#: src/object/unstable_tile.hpp:42 msgid "Unstable Tile" msgstr "Nestabilní dlaždice" -#: src/object/brick.hpp:31 -msgid "Brick" -msgstr "Bedna" +#: src/object/brick.hpp:70 +msgid "Heavy Brick" +msgstr "Těžká bedna" -#: src/object/invisible_wall.hpp:34 +#: src/object/invisible_wall.hpp:37 msgid "Invisible Wall" msgstr "Neviditelná zeď" -#: src/object/spotlight.hpp:51 +#: src/object/spotlight.hpp:52 msgid "Spotlight" msgstr "Reflektor" -#: src/object/scripted_object.hpp:39 +#: src/object/scripted_object.hpp:40 msgid "Scripted Object" msgstr "Naskriptovaný objekt" -#: src/object/custom_particle_system_file.hpp:39 +#: src/object/custom_particle_system_file.hpp:40 msgid "Custom Particles from file" msgstr "Vlastní částice ze souboru" -#: src/object/coin.hpp:78 +#: src/object/coin.hpp:97 msgid "Heavy Coin" msgstr "Těžká mince" -#: src/object/bonus_block.hpp:56 +#: src/object/explosion.hpp:35 +msgid "Explosion" +msgstr "Exploze" + +#: src/object/bonus_block.hpp:62 msgid "Bonus Block" msgstr "Bonusový blok" -#: src/object/magicblock.hpp:41 +#: src/object/magicblock.hpp:42 msgid "Magic Tile" msgstr "Kouzelný blok" -#: src/object/camera.hpp:67 +#: src/object/camera.hpp:61 msgid "Camera" msgstr "Kamera" -#: src/object/textscroller.hpp:44 +#: src/object/textscroller.hpp:45 msgid "Text Scroller" msgstr "Běžící text" -#: src/gui/menu_badguy_select.cpp:94 -msgid "List of enemies" -msgstr "Seznam zlejšků" +#: src/gui/notification.cpp:57 +msgid "Click for more details." +msgstr "Klikni pro více informací." + +#: src/gui/notification.cpp:150 +msgid "Do not show again" +msgstr "Neukazovat znovu" + +#: src/gui/notification.cpp:157 src/supertux/menu/download_dialog.cpp:124 +msgid "Close" +msgstr "Zavřít" + +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#, c++-format +msgid "Selected item: {}" +msgstr "Vybraný objekt: {}" -#: src/gui/menu_badguy_select.cpp:96 -msgid "Select enemy" -msgstr "Vybrat zlejška" +#: src/gui/menu_string_array.cpp:70 +msgid "Edit string array" +msgstr "Upravit pole řetězců" -#: src/gui/menu_badguy_select.cpp:97 +#: src/gui/menu_string_array.cpp:79 src/gui/menu_object_select.cpp:50 +#: src/supertux/menu/profile_menu.cpp:88 msgid "Add" msgstr "Přidat" -#: src/gui/menu_badguy_select.cpp:107 src/gui/menu_color.cpp:37 -#: src/gui/dialog.hpp:81 src/gui/menu_script.cpp:47 -#: src/supertux/menu/editor_sector_menu.cpp:46 -#: src/supertux/menu/editor_levelset_menu.cpp:62 -#: src/supertux/menu/addon_menu.cpp:349 +#: src/gui/menu_string_array.cpp:80 +msgid "Insert" +msgstr "Vložit" + +#: src/gui/menu_string_array.cpp:81 +#: src/supertux/menu/addon_preview_menu.cpp:177 src/editor/object_menu.cpp:61 +msgid "Update" +msgstr "Aktualizovat" + +#: src/gui/menu_string_array.cpp:82 src/supertux/menu/profile_menu.cpp:108 +#: src/supertux/menu/profile_menu.cpp:110 +msgid "Delete" +msgstr "Odstranit" + +#: src/gui/menu_string_array.cpp:84 src/gui/menu_object_select.cpp:61 +#: src/gui/menu_color.cpp:37 src/gui/dialog.hpp:87 src/gui/menu_script.cpp:46 +#: src/supertux/menu/editor_sector_menu.cpp:48 +#: src/supertux/menu/editor_levelset_menu.cpp:58 #: src/supertux/menu/editor_new_levelset_menu.cpp:37 -#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:43 +#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:71 msgid "OK" msgstr "Potvrdit" -#: src/gui/menu_badguy_select.cpp:136 -msgid "Do you want to delete this badguy from the list?" -msgstr "Chceš smazat tohoto zlejška ze seznamu?" +#: src/gui/menu_object_select.cpp:46 +msgid "List of objects" +msgstr "Seznam objektů" -#: src/gui/menu_badguy_select.cpp:137 src/gui/dialog.hpp:90 -#: src/supertux/menu/editor_level_select_menu.cpp:164 -#: src/supertux/menu/editor_menu.cpp:164 src/editor/editor.cpp:583 -msgid "Yes" -msgstr "Ano" +#: src/gui/menu_object_select.cpp:48 +#, c++-format +msgid "Select object ({})" +msgstr "Vybrat objekt ({})" -#: src/gui/menu_badguy_select.cpp:140 src/gui/dialog.hpp:91 -#: src/supertux/menu/editor_level_select_menu.cpp:168 -#: src/supertux/menu/editor_menu.cpp:167 src/editor/particle_editor.cpp:780 -#: src/editor/editor.cpp:590 -msgid "No" -msgstr "Ne" +#: src/gui/menu_object_select.cpp:114 +msgid "Are you sure you want to remove this object from the list?" +msgstr "Určitě chceš odebrat tento objekt ze seznamu?" #: src/gui/menu_color.cpp:24 msgid "Mix the colour" msgstr "Namíchej barvu" -#: src/gui/menu_filesystem.cpp:112 src/gui/menu_paths.cpp:44 -#: src/supertux/menu/particle_editor_save_as.cpp:42 +#: src/gui/dialog.hpp:96 src/supertux/menu/editor_level_select_menu.cpp:181 +#: src/editor/editor.cpp:663 +msgid "Yes" +msgstr "Ano" + +#: src/gui/dialog.hpp:97 src/supertux/menu/editor_level_select_menu.cpp:185 +#: src/editor/particle_editor.cpp:781 src/editor/editor.cpp:670 +msgid "No" +msgstr "Ne" + +#: src/gui/menu_list.cpp:38 src/gui/menu_filesystem.cpp:120 +#: src/gui/menu_paths.cpp:48 src/supertux/menu/particle_editor_save_as.cpp:42 #: src/supertux/menu/editor_sectors_menu.cpp:45 -#: src/supertux/menu/editor_sectors_menu.cpp:95 -#: src/supertux/menu/editor_sectors_menu.cpp:100 +#: src/supertux/menu/editor_sectors_menu.cpp:94 +#: src/supertux/menu/editor_sectors_menu.cpp:99 #: src/supertux/menu/editor_objectgroup_menu.cpp:42 #: src/supertux/menu/editor_tilegroup_menu.cpp:36 -#: src/supertux/menu/editor_level_select_menu.cpp:173 +#: src/supertux/menu/editor_level_select_menu.cpp:190 #: src/supertux/menu/editor_save_as.cpp:42 #: src/supertux/menu/particle_editor_open.cpp:43 -#: src/editor/particle_editor.cpp:784 src/editor/editor.cpp:594 +#: src/editor/particle_editor.cpp:785 src/editor/editor.cpp:674 msgid "Cancel" msgstr "Zrušit" +#: src/gui/menu_filesystem.cpp:118 +msgid "Open Directory" +msgstr "Otevřít adresář" + #: src/gui/menu_script.cpp:28 msgid "Edit script" msgstr "Upravit skript" -#: src/gui/menu_paths.cpp:30 +#: src/gui/menu_paths.cpp:32 msgid "Clone" msgstr "Vytvořit kopii" -#: src/gui/menu_paths.cpp:38 +#: src/gui/menu_paths.cpp:41 msgid "" -"An error occured and the game could\n" +"An error occurred and the game could\n" "not clone the path. Please contact\n" "the developers for support." -msgstr "Nastala chyba a SuperTux nemohl vytvořit kopii cesty. Kontaktujte, prosím, vývojáře pro podporu." +msgstr "Došlo k chybě a nebylo možné\nnaklonovat cestu. Pro podporu\nkontaktuj, prosím, vývojáře." -#: src/gui/menu_paths.cpp:41 +#: src/gui/menu_paths.cpp:44 msgid "Bind" msgstr "Přičlenit" -#: src/gui/menu_paths.cpp:63 src/supertux/menu/integrations_menu.cpp:60 -#: src/supertux/menu/contrib_menu.cpp:161 src/supertux/menu/debug_menu.cpp:75 -#: src/supertux/menu/editor_level_select_menu.cpp:88 -#: src/supertux/menu/worldmap_cheat_menu.cpp:55 -#: src/supertux/menu/worldmap_cheat_menu.cpp:153 +#: src/gui/menu_paths.cpp:49 +msgid "" +"Do you wish to clone the path to edit it separately,\n" +"or do you want to bind both paths together\n" +"so that any edit on one edits the other?" +msgstr "Přeješ si cestu naklonovat a upravovat ji separátně,\nnebo chceš obě cesty propojit, aby úpravy jedné\nautomaticky upravily i tu druhou?" + +#: src/gui/menu_paths.cpp:56 +#, c++-format +msgid "Path {}" +msgstr "Cesta {}" + +#: src/gui/menu_paths.cpp:67 src/supertux/menu/integrations_menu.cpp:60 +#: src/supertux/menu/editor_converters_menu.cpp:79 +#: src/supertux/menu/video_system_menu.cpp:45 +#: src/supertux/menu/contrib_menu.cpp:102 src/supertux/menu/debug_menu.cpp:77 +#: src/supertux/menu/multiplayer_menu.cpp:39 +#: src/supertux/menu/custom_menu_menu.cpp:65 +#: src/supertux/menu/editor_level_select_menu.cpp:98 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:63 +#: src/supertux/menu/worldmap_cheat_menu.cpp:57 +#: src/supertux/menu/worldmap_cheat_menu.cpp:196 #: src/supertux/menu/editor_levelset_select_menu.cpp:114 -#: src/supertux/menu/options_menu.cpp:442 -#: src/supertux/menu/profile_menu.cpp:54 src/supertux/menu/addon_menu.cpp:213 +#: src/supertux/menu/options_menu.cpp:223 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:69 +#: src/supertux/menu/addon_preview_menu.cpp:193 +#: src/supertux/menu/profile_menu.cpp:118 +#: src/supertux/menu/multiplayer_players_menu.cpp:91 +#: src/supertux/menu/addon_menu.cpp:153 #: src/supertux/menu/editor_new_levelset_menu.cpp:40 +#: src/supertux/menu/options_select_menu.cpp:44 #: src/supertux/menu/world_set_menu.cpp:33 +#: src/supertux/menu/addon_browse_menu.cpp:162 #: src/supertux/menu/web_asset_menu.cpp:48 -#: src/supertux/menu/keyboard_menu.cpp:49 -#: src/supertux/menu/language_menu.cpp:56 -#: src/supertux/menu/joystick_menu.cpp:97 +#: src/supertux/menu/profile_name_menu.cpp:45 +#: src/supertux/menu/keyboard_menu.cpp:71 +#: src/supertux/menu/sorted_contrib_menu.cpp:51 +#: src/supertux/menu/language_menu.cpp:63 +#: src/supertux/menu/joystick_menu.cpp:99 #: src/supertux/menu/contrib_levelset_menu.cpp:67 -#: src/supertux/menu/cheat_menu.cpp:44 -#: src/supertux/menu/editor_delete_level_menu.cpp:43 +#: src/supertux/menu/cheat_menu.cpp:58 +#: src/supertux/menu/addon_file_install_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:43 +#: src/supertux/menu/cheat_apply_menu.cpp:63 +#: src/supertux/menu/multiplayer_player_menu.cpp:205 +#: src/supertux/menu/editor_delete_level_menu.cpp:68 msgid "Back" msgstr "Zpět" -#: src/badguy/toad.hpp:37 +#: src/addon/addon_manager.cpp:562 +msgid "Only one resource pack is allowed to be enabled at a time." +msgstr "Najednou nemůže být aktivních více balíčků zdrojů." + +#: src/addon/addon_manager.cpp:837 +#, c++-format +msgid "Add-on {} by {} is already installed." +msgstr "Doplněk {} od tvůrce {} je již nainstalován." + +#: src/addon/addon_manager.cpp:857 +#, c++-format +msgid "Add-on {} by {} successfully installed." +msgstr "Doplněk {} od tvůrce {} úspěšně nainstalován." + +#: src/addon/addon.cpp:71 src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Levelset" +msgstr "Sada úrovní" + +#: src/addon/addon.cpp:74 src/supertux/menu/editor_levelset_menu.cpp:54 +#: data//images/engine/editor/objects.stoi:389 +msgid "Worldmap" +msgstr "Svět" + +#: src/addon/addon.cpp:77 +msgid "World" +msgstr "Svět" + +#: src/addon/addon.cpp:80 +msgid "Add-on" +msgstr "Doplněk" + +#: src/addon/addon.cpp:83 +msgid "Language Pack" +msgstr "Balík jazyků" + +#: src/addon/addon.cpp:86 +msgid "Resource Pack" +msgstr "Balík zdrojů" + +#: src/addon/addon.cpp:89 +msgid "Unknown" +msgstr "Neznámý" + +#: src/addon/addon.cpp:100 +#, c++-format +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" od autora \"{}\"" + +#: src/addon/addon.cpp:114 +msgid "add-on" +msgstr "doplněk" + +#: src/addon/addon.cpp:114 +msgid "add-ons" +msgstr "doplňky" + +#: src/badguy/toad.hpp:38 msgid "Toad" msgstr "Ropucha" -#: src/badguy/mrtree.hpp:29 -msgid "Walking Tree" -msgstr "Chodící strom" +#: src/badguy/mrtree.hpp:32 +msgid "Mr. Tree" +msgstr "Strom" -#: src/badguy/plant.hpp:33 +#: src/badguy/plant.hpp:34 msgid "Plant" msgstr "Rostlina" -#: src/badguy/crystallo.hpp:30 +#: src/badguy/tarantula.hpp:39 src/badguy/tarantula.cpp:353 +msgid "Tarantula" +msgstr "Sklípkan" + +#: src/badguy/granito_giant.cpp:71 +msgid "Awake" +msgstr "Vzhůru" + +#: src/badguy/granito_giant.cpp:72 +msgid "Sleeping" +msgstr "Spící" + +#: src/badguy/granito_giant.cpp:73 +msgid "Corrupted A" +msgstr "Poškozený A" + +#: src/badguy/granito_giant.cpp:74 +msgid "Corrupted B" +msgstr "Poškozený B" + +#: src/badguy/granito_giant.cpp:75 +msgid "Corrupted C" +msgstr "Poškozený C" + +#: src/badguy/crystallo.hpp:33 msgid "Crystallo" msgstr "Krystaloun" -#: src/badguy/totem.hpp:36 +#: src/badguy/viciousivy.cpp:45 src/badguy/snail.cpp:70 +#: src/badguy/kamikazesnowball.cpp:118 src/badguy/walkingleaf.cpp:36 +#: src/badguy/jumpy.cpp:46 src/badguy/igel.cpp:189 src/badguy/mrtree.cpp:51 +msgid "Corrupted" +msgstr "Poškozený" + +#: src/badguy/totem.hpp:37 msgid "Totem" msgstr "Totem" -#: src/badguy/stalactite.hpp:38 +#: src/badguy/stalactite.hpp:42 msgid "Stalactite" msgstr "Rampouch" -#: src/badguy/haywire.hpp:45 +#: src/badguy/fish_chasing.cpp:198 +msgid "Tracking Distance" +msgstr "Vzdálenost vnímání" + +#: src/badguy/fish_chasing.cpp:199 +msgid "Losing Distance" +msgstr "Vzdálenost ztracení" + +#: src/badguy/fish_chasing.cpp:200 +msgid "Chase Speed" +msgstr "Rychlost pronásledování" + +#: src/badguy/root_sapling.hpp:41 +msgid "Root Sapling" +msgstr "Sazenice kořene" + +#: src/badguy/haywire.hpp:46 msgid "Haywire" msgstr "Šílená bomba" -#: src/badguy/dispenser.hpp:48 +#: src/badguy/dispenser.hpp:52 msgid "Dispenser" msgstr "Dávkovač" -#: src/badguy/short_fuse.hpp:29 +#: src/badguy/short_fuse.hpp:30 msgid "Short Fuse" msgstr "Minibomba" -#: src/badguy/zeekling.hpp:36 +#: src/badguy/zeekling.hpp:39 msgid "Zeekling" msgstr "Zeklík" -#: src/badguy/mriceblock.hpp:46 -msgid "Iceblock" +#: src/badguy/smartball.cpp:35 +msgid "Pumpkin" +msgstr "Dýně" + +#: src/badguy/bouncing_snowball.cpp:82 +msgid "Fatbat" +msgstr "Netopýr" + +#: src/badguy/dive_mine.hpp:50 +msgid "Dive Mine" +msgstr "Ponorná mina" + +#: src/badguy/granito_big.hpp:33 +msgid "Big Granito" +msgstr "Velký granito" + +#: src/badguy/mriceblock.hpp:49 +msgid "Mr. Iceblock" msgstr "Ledová krychle" -#: src/badguy/scrystallo.cpp:52 +#: src/badguy/granito.hpp:39 src/badguy/darttrap.cpp:163 +#: src/badguy/corrupted_granito.cpp:175 src/badguy/dispenser.cpp:438 +msgid "Granito" +msgstr "Granito" + +#: src/badguy/fish_swimming.cpp:54 src/badguy/jumpy.cpp:44 +#: data//images/ice_world.strf:10 data//images/tiles.strf:28 +#: data//images/worldmap.strf:41 +msgid "Snow" +msgstr "Sníh" + +#: src/badguy/fish_swimming.cpp:55 data//images/ice_world.strf:211 +#: data//images/tiles.strf:366 data//images/worldmap.strf:67 +msgid "Forest" +msgstr "Les" + +#: src/badguy/crusher.hpp:71 +msgid "Crusher" +msgstr "Drtič" + +#: src/badguy/flame.cpp:84 +msgid "Fire" +msgstr "Ohnivá" + +#: src/badguy/flame.cpp:85 +msgid "Ghost" +msgstr "Duch" + +#: src/badguy/corrupted_granito_big.hpp:35 +msgid "Corrupted Big Granito" +msgstr "Poškozený velký granito" + +#: src/badguy/scrystallo.cpp:57 msgid "Walk Radius" msgstr "Rozsah" -#: src/badguy/scrystallo.cpp:53 +#: src/badguy/scrystallo.cpp:58 msgid "Awakening Radius" msgstr "Vzdálenost probuzení" -#: src/badguy/jumpy.hpp:36 +#: src/badguy/scrystallo.cpp:59 +msgid "Roof-attached" +msgstr "Visící ze stropu" + +#: src/badguy/jumpy.hpp:40 msgid "Jumpy" msgstr "Skokan" -#: src/badguy/captainsnowball.hpp:31 +#: src/badguy/captainsnowball.hpp:32 msgid "Captain Snowball" msgstr "Kapitán Sněhová koule" -#: src/badguy/ghosttree.hpp:42 +#: src/badguy/ghosttree.hpp:43 msgid "Ghost Tree" msgstr "Strom duchů" -#: src/badguy/willowisp.cpp:323 +#: src/badguy/willowisp.cpp:314 msgid "Track range" msgstr "Oblast sledování" -#: src/badguy/willowisp.cpp:324 +#: src/badguy/willowisp.cpp:315 msgid "Vanish range" msgstr "Oblast zmizení" -#: src/badguy/willowisp.cpp:325 +#: src/badguy/willowisp.cpp:316 msgid "Fly speed" msgstr "Rychlost letu" -#: src/badguy/kugelblitz.hpp:39 +#: src/badguy/kugelblitz.hpp:40 msgid "Kugelblitz" msgstr "Kulový blesk" -#: src/badguy/mole_rock.hpp:43 +#: src/badguy/mole_rock.hpp:44 msgid "Mole's rock" msgstr "Kus hlíny" -#: src/badguy/badguy.cpp:849 +#: src/badguy/badguy.cpp:1064 msgid "Death script" msgstr "Skript po úmrtí" -#: src/badguy/sspiky.hpp:36 +#: src/badguy/sspiky.hpp:37 msgid "Sleeping Spiky" msgstr "Spící ježoun" -#: src/badguy/yeti_stalactite.hpp:33 +#: src/badguy/yeti_stalactite.hpp:34 msgid "Yeti's Stalactite" msgstr "Yetiho rampouch" -#: src/badguy/livefire.hpp:37 +#: src/badguy/fish_harmless.hpp:30 +msgid "Harmless Fish" +msgstr "Neškodná ryba" + +#: src/badguy/livefire.hpp:38 msgid "Walking Flame" msgstr "Chodící plamen" -#: src/badguy/livefire.hpp:68 +#: src/badguy/livefire.hpp:71 msgid "Sleeping Flame" msgstr "Spící plamen" -#: src/badguy/livefire.hpp:84 +#: src/badguy/livefire.hpp:89 msgid "Dormant Flame" msgstr "Nehybný plamen" -#: src/badguy/owl.hpp:39 +#: src/badguy/owl.hpp:45 msgid "Owl" msgstr "Sova" -#: src/badguy/igel.hpp:34 +#: src/badguy/igel.hpp:38 msgid "Igel" msgstr "Ježek" -#: src/badguy/darttrap.cpp:126 +#: src/badguy/darttrap.cpp:148 msgid "Initial delay" msgstr "Zpoždění" -#: src/badguy/darttrap.cpp:128 +#: src/badguy/darttrap.cpp:150 msgid "Fire delay" msgstr "Perioda palby" -#: src/badguy/darttrap.cpp:129 +#: src/badguy/darttrap.cpp:151 msgid "Ammo" msgstr "Munice" -#: src/badguy/snowball.hpp:29 -msgid "Snowball" +#: src/badguy/darttrap.cpp:152 +msgid "Dart sprite" +msgstr "Vzhled šipky" + +#: src/badguy/darttrap.cpp:164 +msgid "Skull" +msgstr "Lebka" + +#: src/badguy/snowball.hpp:30 +msgid "Mr. Snowball" msgstr "Sněhová koule" -#: src/badguy/smartblock.hpp:29 -msgid "Smartblock" -msgstr "Chytrá krychle" +#: src/badguy/smartblock.hpp:30 +msgid "Mrs. Iceblock" +msgstr "Chytrá ledová krychle" -#: src/badguy/yeti.cpp:369 +#: src/badguy/yeti.cpp:370 msgid "Fixed position" msgstr "Pevná pozice" -#: src/badguy/yeti.cpp:370 +#: src/badguy/yeti.cpp:371 msgid "Lives" msgstr "Počet životů" -#: src/badguy/goldbomb.hpp:49 +#: src/badguy/goldbomb.hpp:50 msgid "Gold Bomb" msgstr "Zlatá bomba" -#: src/badguy/flyingsnowball.hpp:32 +#: src/badguy/corrupted_granito.hpp:44 +msgid "Corrupted Granito" +msgstr "Poškozený granito" + +#: src/badguy/mrbomb.cpp:48 +msgid "Classic" +msgstr "Klasická" + +#: src/badguy/flyingsnowball.hpp:33 msgid "Flying Snowball" msgstr "Létající sněhová koule" -#: src/badguy/skullyhop.hpp:37 -msgid "Skullyhop" -msgstr "Skákající lebkoun" +#: src/badguy/crusher.cpp:75 +msgid "Ice (normal)" +msgstr "Ledový (normální)" + +#: src/badguy/crusher.cpp:76 +msgid "Ice (big)" +msgstr "Ledový (velký)" + +#: src/badguy/crusher.cpp:77 +msgid "Rock (normal)" +msgstr "Kamenný (normální)" + +#: src/badguy/crusher.cpp:78 +msgid "Rock (big)" +msgstr "Kamenný (velký)" + +#: src/badguy/crusher.cpp:79 +msgid "Corrupted (normal)" +msgstr "Poškozený (normální)" -#: src/badguy/kamikazesnowball.hpp:32 -msgid "Snowshot" +#: src/badguy/crusher.cpp:80 +msgid "Corrupted (big)" +msgstr "Poškozený (velký)" + +#: src/badguy/crusher.cpp:492 +msgid "Sideways" +msgstr "Do strany" + +#: src/badguy/kamikazesnowball.hpp:34 +msgid "Kamikaze Snowball" msgstr "Sněhová střela" -#: src/badguy/kamikazesnowball.hpp:52 +#: src/badguy/kamikazesnowball.hpp:64 msgid "Leafshot" msgstr "Listová střela" -#: src/badguy/flame.hpp:41 +#: src/badguy/fish_swimming.hpp:40 +msgid "Swimming Fish" +msgstr "Ryba" + +#: src/badguy/flame.hpp:47 msgid "Flame" msgstr "Světluška" -#: src/badguy/scrystallo.hpp:30 +#: src/badguy/scrystallo.hpp:31 msgid "Sleeping Crystallo" msgstr "Spící krystaloun" -#: src/badguy/poisonivy.hpp:30 -msgid "Spring Leaf" -msgstr "Jarní list" +#: src/badguy/jumpy.cpp:45 +msgid "Wooden" +msgstr "Dřevěný" + +#: src/badguy/jumpy.cpp:47 +msgid "Metal" +msgstr "Kovový" + +#: src/badguy/jumpy.cpp:48 +msgid "Bag" +msgstr "Taška" #: src/badguy/willowisp.hpp:57 msgid "Will o' Wisp" msgstr "Bludička" -#: src/badguy/badguy.hpp:53 +#: src/badguy/fish_jumping.hpp:41 +msgid "Jumping Fish" +msgstr "Skákající ryba" + +#: src/badguy/badguy.hpp:61 msgid "Badguy" msgstr "Zlejšek" -#: src/badguy/ghostflame.hpp:30 -msgid "Ghost Flame" -msgstr "Světluška duchů" - -#: src/badguy/rcrystallo.hpp:30 +#: src/badguy/rcrystallo.hpp:33 msgid "Roof Crystallo" msgstr "Stropní krystaloun" -#: src/badguy/spiky.hpp:30 +#: src/badguy/spiky.hpp:31 msgid "Spiky" msgstr "Ježoun" -#: src/badguy/walkingleaf.hpp:30 -msgid "Autumn Leaf" -msgstr "Podzimní list" +#: src/badguy/walkingleaf.hpp:33 +msgid "Walking Leaf" +msgstr "Podzimní listí" -#: src/badguy/owl.cpp:227 +#: src/badguy/root.hpp:39 +msgid "Root" +msgstr "Kořen" + +#: src/badguy/owl.cpp:241 msgid "Carry" msgstr "Nést" -#: src/badguy/darttrap.hpp:33 +#: src/badguy/darttrap.hpp:35 msgid "Dart Trap" msgstr "Stříleč šipek" -#: src/badguy/skydive.hpp:38 +#: src/badguy/skydive.hpp:43 msgid "Skydive" msgstr "Padající bomba" -#: src/badguy/yeti.hpp:37 +#: src/badguy/yeti.hpp:38 msgid "Yeti" msgstr "Yeti" -#: src/badguy/mole.hpp:39 +#: src/badguy/snowball.cpp:41 +msgid "Bumpkin" +msgstr "Nahnilá dýně" + +#: src/badguy/snowball.cpp:42 +msgid "BSOD" +msgstr "Modrá obrazovka smrti" + +#: src/badguy/mole.hpp:38 msgid "Mole" msgstr "Krtek" -#: src/badguy/mrbomb.hpp:42 -msgid "Bomb" +#: src/badguy/corrupted_granito.cpp:176 +msgid "Skullyhop" +msgstr "Skákající lebkoun" + +#: src/badguy/mrbomb.hpp:40 +msgid "Mr. Bomb" msgstr "Bomba" -#: src/badguy/walking_candle.hpp:40 +#: src/badguy/walking_candle.hpp:41 msgid "Walking Candle" msgstr "Chodící svíčka" -#: src/badguy/angrystone.hpp:34 +#: src/badguy/angrystone.hpp:39 msgid "Angry Stone" msgstr "Zuřící kámen" -#: src/badguy/spidermite.hpp:35 -msgid "Spider" +#: src/badguy/tarantula.cpp:354 +msgid "Spidermite" msgstr "Pavouk" +#: src/badguy/tarantula.cpp:374 +msgid "Static" +msgstr "Statický" + #: src/badguy/ghoul.hpp:30 msgid "Ghoul" msgstr "Démon" -#: src/badguy/snowman.hpp:28 +#: src/badguy/granito_giant.hpp:32 +msgid "Giant Granito" +msgstr "Obří granito" + +#: src/badguy/snowman.hpp:29 msgid "Snowman" msgstr "Sněhulák" -#: src/badguy/stumpy.hpp:35 -msgid "Walking Stump" -msgstr "Chodící pařez" +#: src/badguy/viciousivy.hpp:33 +msgid "Vicious Ivy" +msgstr "Jarní listí" -#: src/badguy/fish.hpp:40 -msgid "Fish" -msgstr "Ryba" +#: src/badguy/stalactite.cpp:156 +msgid "ice" +msgstr "Ledový" -#: src/badguy/dispenser.cpp:445 +#: src/badguy/stalactite.cpp:157 +msgid "rock" +msgstr "Kamenný" + +#: src/badguy/fish_chasing.hpp:33 +msgid "Chasing Fish" +msgstr "Agresivní ryba" + +#: src/badguy/stumpy.hpp:38 +msgid "Stumpy" +msgstr "Kmenouš" + +#: src/badguy/dispenser.cpp:412 msgid "Interval (seconds)" msgstr "Interval (sekundy)" -#: src/badguy/dispenser.cpp:446 +#: src/badguy/dispenser.cpp:413 msgid "Random" msgstr "Náhodný" -#: src/badguy/dispenser.cpp:447 data//images/engine/editor/objects.stoi:4 -msgid "Enemies" -msgstr "Zlejšci" +#: src/badguy/dispenser.cpp:416 +#: src/supertux/menu/editor_objectgroup_menu.cpp:30 +#: src/editor/toolbox_widget.cpp:101 +msgid "Objects" +msgstr "Objekty" -#: src/badguy/dispenser.cpp:448 +#: src/badguy/dispenser.cpp:419 msgid "Limit dispensed badguys" msgstr "Omezit počet zlejšků" -#: src/badguy/dispenser.cpp:450 +#: src/badguy/dispenser.cpp:421 msgid "Obey Gravity" msgstr "Poslouchat gravitaci" -#: src/badguy/dispenser.cpp:452 +#: src/badguy/dispenser.cpp:423 msgid "Max concurrent badguys" msgstr "Limit současně zrozených zlejšků" -#: src/badguy/dispenser.cpp:454 src/supertux/menu/editor_levelset_menu.cpp:60 -msgid "Type" -msgstr "Typ" - -#: src/badguy/dispenser.cpp:455 -msgid "dropper" -msgstr "trousič" +#: src/badguy/dispenser.cpp:435 +msgid "Dropper" +msgstr "Trousič" -#: src/badguy/dispenser.cpp:455 -msgid "rocket launcher" -msgstr "raketomet" +#: src/badguy/dispenser.cpp:436 +msgid "Cannon" +msgstr "Kanón" -#: src/badguy/dispenser.cpp:455 -msgid "cannon" -msgstr "kanón" - -#: src/badguy/dispenser.cpp:455 -msgid "invisible" -msgstr "neviditelný" +#: src/badguy/dispenser.cpp:437 src/worldmap/special_tile.cpp:77 +msgid "Invisible" +msgstr "Neviditelnost" -#: src/badguy/snail.hpp:42 +#: src/badguy/snail.hpp:43 msgid "Snail" msgstr "Šnek" -#: src/badguy/smartball.hpp:31 -msgid "Smartball" +#: src/badguy/smartball.hpp:32 +msgid "Mrs. Snowball" msgstr "Chytrá sněhová koule" -#: src/badguy/bouncing_snowball.hpp:32 +#: src/badguy/bouncing_snowball.hpp:39 msgid "Bouncing Snowball" msgstr "Skákající sněhová koule" -#: src/badguy/iceflame.hpp:33 -msgid "Ice Flame" -msgstr "Ledová světluška" +#: src/badguy/granito_big.cpp:52 src/badguy/granito.cpp:263 +msgid "Default" +msgstr "Výchozí" + +#: src/badguy/granito_big.cpp:53 src/badguy/granito.cpp:264 +msgid "Standing" +msgstr "Stojící" -#: src/badguy/dart.hpp:43 +#: src/badguy/granito_big.cpp:54 src/badguy/granito.cpp:265 +msgid "Walking" +msgstr "Chodící" + +#: src/badguy/mriceblock.cpp:63 +msgid "Laptop" +msgstr "Notebook" + +#: src/badguy/dart.hpp:44 msgid "Dart" msgstr "Šipka" +#: src/badguy/granito.cpp:268 +msgid "Sitting" +msgstr "Sedící" + #: src/supertux/statistics.cpp:54 msgid "Max coins collected:" msgstr "Nejvíce sebraných mincí:" @@ -1742,7 +2295,7 @@ msgstr "Nejlepší čas:" msgid "Level target time:" msgstr "Časová výzva:" -#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:160 +#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:175 msgid "Best Level Statistics" msgstr "Statistika nejlepších výsledků" @@ -1754,7 +2307,7 @@ msgstr "Ty" msgid "Best" msgstr "Nejlepší" -#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:166 +#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:181 msgid "Coins" msgstr "Mince" @@ -1762,202 +2315,199 @@ msgstr "Mince" msgid "Badguys" msgstr "Zlejšci" -#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:172 +#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:187 msgid "Secrets" msgstr "Skrýše" -#: src/supertux/game_object.hpp:78 +#: src/supertux/game_object.hpp:88 msgid "Unknown object" msgstr "Neznámý objekt" -#: src/supertux/sector.cpp:414 +#: src/supertux/sector.cpp:507 msgid "Press escape to skip" msgstr "Přeskoč stiskem ESC" -#: src/supertux/command_line_arguments.cpp:94 -#, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Použití: %s [OPTIONS] [LEVELFILE]" +#: src/supertux/command_line_arguments.cpp:92 +#, c++-format +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Použití: {} [MOŽNOSTI] [SOUBOR_ÚROVNĚ]" -#: src/supertux/command_line_arguments.cpp:95 +#: src/supertux/command_line_arguments.cpp:93 msgid "General Options:" msgstr "Obecné nastavení:" -#: src/supertux/command_line_arguments.cpp:96 +#: src/supertux/command_line_arguments.cpp:94 msgid " -h, --help Show this help message and quit" msgstr " -h, --help Zobrazit tuto zprávu nápovědy a ukončit" -#: src/supertux/command_line_arguments.cpp:97 +#: src/supertux/command_line_arguments.cpp:95 msgid " -v, --version Show SuperTux version and quit" msgstr " -v, --version Zobrazit verzi SuperTuxe a ukončit" -#: src/supertux/command_line_arguments.cpp:98 +#: src/supertux/command_line_arguments.cpp:96 msgid " --verbose Print verbose messages" msgstr " --verbose Zobrazovat detailní zprávy" -#: src/supertux/command_line_arguments.cpp:99 +#: src/supertux/command_line_arguments.cpp:97 msgid " --debug Print extra verbose messages" msgstr " --debug Zobrazovat velmi detailní zprávy" -#: src/supertux/command_line_arguments.cpp:100 +#: src/supertux/command_line_arguments.cpp:98 msgid "" " --print-datadir Print SuperTux's primary data directory." msgstr "--print-datadir Vypsat primární datový adresář SuperTuxe" -#: src/supertux/command_line_arguments.cpp:101 +#: src/supertux/command_line_arguments.cpp:99 msgid "" " --acknowledgements Print the licenses of libraries used by " "SuperTux." msgstr " --poděkování Zobrazit licence knihoven použitých v SuperTuxovi." -#: src/supertux/command_line_arguments.cpp:103 +#: src/supertux/command_line_arguments.cpp:101 msgid "Video Options:" msgstr "Nastavení videa:" -#: src/supertux/command_line_arguments.cpp:104 +#: src/supertux/command_line_arguments.cpp:102 msgid " -f, --fullscreen Run in fullscreen mode" msgstr " -f, --fullscreen Spustit v režimu celé obrazovky" -#: src/supertux/command_line_arguments.cpp:105 +#: src/supertux/command_line_arguments.cpp:103 msgid " -w, --window Run in window mode" msgstr " -w, --window Spustit v okně" -#: src/supertux/command_line_arguments.cpp:106 +#: src/supertux/command_line_arguments.cpp:104 msgid " -g, --geometry WIDTHxHEIGHT Run SuperTux in given resolution" msgstr " -g, --geometry ŠÍŘKAxVÝŠKA Spustit SuperTux v daném rozlišení" -#: src/supertux/command_line_arguments.cpp:107 +#: src/supertux/command_line_arguments.cpp:105 msgid " -a, --aspect WIDTH:HEIGHT Run SuperTux with given aspect ratio" msgstr " -a, --aspect ŠÍŘKA:VÝŠKA Spustit SuperTux v daném poměru stran" -#: src/supertux/command_line_arguments.cpp:108 +#: src/supertux/command_line_arguments.cpp:106 msgid " -d, --default Reset video settings to default values" msgstr " -d, --default Navrátit nastavení videa k výchozím hodnotám" -#: src/supertux/command_line_arguments.cpp:109 +#: src/supertux/command_line_arguments.cpp:107 msgid " --renderer RENDERER Use sdl, opengl, or auto to render" msgstr " --renderer VYKRESLOVAČ Použít SDL, OpenGL nebo auto k vykreslování" -#: src/supertux/command_line_arguments.cpp:111 +#: src/supertux/command_line_arguments.cpp:109 msgid "Audio Options:" msgstr "Nastavení zvuku:" -#: src/supertux/command_line_arguments.cpp:112 +#: src/supertux/command_line_arguments.cpp:110 msgid " --disable-sound Disable sound effects" msgstr " --disable-sound Vypnout zvukové efekty" -#: src/supertux/command_line_arguments.cpp:113 +#: src/supertux/command_line_arguments.cpp:111 msgid " --disable-music Disable music" msgstr " --disable-music Vypnout hudbu" -#: src/supertux/command_line_arguments.cpp:115 +#: src/supertux/command_line_arguments.cpp:113 msgid "Game Options:" msgstr "Nastavení hry:" -#: src/supertux/command_line_arguments.cpp:116 +#: src/supertux/command_line_arguments.cpp:114 msgid " --edit-level Open given level in editor" msgstr "--edit-level Otevřít danou úroveň v editoru" -#: src/supertux/command_line_arguments.cpp:117 +#: src/supertux/command_line_arguments.cpp:115 msgid " --resave Loads given level and saves it" msgstr "--resave Načte danou úroveň a uloží jí" -#: src/supertux/command_line_arguments.cpp:118 +#: src/supertux/command_line_arguments.cpp:116 msgid " --show-fps Display framerate in levels" msgstr " --show-fps Zobrazovat vykreslovací rychlost v úrovních" -#: src/supertux/command_line_arguments.cpp:119 +#: src/supertux/command_line_arguments.cpp:117 msgid " --no-show-fps Do not display framerate in levels" msgstr " --no-show-fps Nezobrazovat vykreslovací rychlost v úrovních" -#: src/supertux/command_line_arguments.cpp:120 +#: src/supertux/command_line_arguments.cpp:118 msgid " --show-pos Display player's current position" msgstr "--show-pos Zobrazit aktuální pozici hráče" -#: src/supertux/command_line_arguments.cpp:121 +#: src/supertux/command_line_arguments.cpp:119 msgid " --no-show-pos Do not display player's position" msgstr "--no-show-pos Nezobrazovat pozici hráče" -#: src/supertux/command_line_arguments.cpp:122 +#: src/supertux/command_line_arguments.cpp:120 msgid " --developer Switch on developer feature" msgstr " --developer Zapnout vývojářské funkce" -#: src/supertux/command_line_arguments.cpp:123 +#: src/supertux/command_line_arguments.cpp:121 msgid " -s, --debug-scripts Enable script debugger." msgstr " -s, --debug-scripts Zapnout ladění skriptů." -#: src/supertux/command_line_arguments.cpp:124 +#: src/supertux/command_line_arguments.cpp:122 msgid "" " --spawn-pos X,Y Where in the level to spawn Tux. Only used if" " level is specified." msgstr "--spawn-pos X,Y Kde v úrovni se Tux zrodí, když je úroveň zadána." -#: src/supertux/command_line_arguments.cpp:125 +#: src/supertux/command_line_arguments.cpp:123 msgid " --sector SECTOR Spawn Tux in SECTOR\n" msgstr "--sector SEKTOR Zrodit Tuxe v sektoru SEKTOR\n" -#: src/supertux/command_line_arguments.cpp:126 +#: src/supertux/command_line_arguments.cpp:124 msgid " --spawnpoint SPAWNPOINT Spawn Tux at SPAWNPOINT\n" msgstr "--spawnpoint ZRODIŠTĚ Zrodit Tuxe ve zrodišti ZRODIŠTĚ\n" -#: src/supertux/command_line_arguments.cpp:128 -msgid "Demo Recording Options:" -msgstr "Nastavení nahrávání ukázek:" - -#: src/supertux/command_line_arguments.cpp:129 -msgid " --record-demo FILE LEVEL Record a demo to FILE" -msgstr " --record-demo SOUBOR ÚROVNĚ Nahrát ukázku do SOUBORU" - -#: src/supertux/command_line_arguments.cpp:130 -msgid " --play-demo FILE LEVEL Play a recorded demo" -msgstr " --play-demo SOUBOR ÚROVNĚ Přehrát nahranou ukázku" - -#: src/supertux/command_line_arguments.cpp:132 +#: src/supertux/command_line_arguments.cpp:126 msgid "Directory Options:" msgstr "Nastavení adresářů:" -#: src/supertux/command_line_arguments.cpp:133 +#: src/supertux/command_line_arguments.cpp:127 msgid "" " --datadir DIR Set the directory for the games datafiles" msgstr " --datadir ADRESÁŘ Nastavit adresář dat hry" -#: src/supertux/command_line_arguments.cpp:134 +#: src/supertux/command_line_arguments.cpp:128 msgid "" " --userdir DIR Set the directory for user data (savegames, " "etc.)" msgstr " --userdir ADRESÁŘ Nastavit adresář uživatelských dat (uložené hry atd.)" -#: src/supertux/command_line_arguments.cpp:136 +#: src/supertux/command_line_arguments.cpp:130 msgid "Add-On Options:" msgstr "Nastavení doplňků:" -#: src/supertux/command_line_arguments.cpp:137 +#: src/supertux/command_line_arguments.cpp:131 msgid " --repository-url URL Set the URL to the Add-On repository" msgstr "--repository-url Nastavit URL repozitáře doplňků" -#: src/supertux/command_line_arguments.cpp:139 +#: src/supertux/command_line_arguments.cpp:133 msgid "Environment variables:" msgstr "Proměnné prostředí:" -#: src/supertux/command_line_arguments.cpp:140 +#: src/supertux/command_line_arguments.cpp:134 msgid "" " SUPERTUX2_USER_DIR Directory for user data (savegames, etc.)" msgstr " SUPERTUX2_USER_DIR Adresář uživatelských dat (uložené hry, etc.)" -#: src/supertux/command_line_arguments.cpp:141 +#: src/supertux/command_line_arguments.cpp:135 msgid " SUPERTUX2_DATA_DIR Directory for the games datafiles" msgstr " SUPERTUX2_DATA_DIR Adresář dat hry" -#: src/supertux/title_screen.cpp:44 +#: src/supertux/title_screen.cpp:272 msgid "Copyright" msgstr "Copyright" -#: src/supertux/title_screen.cpp:45 +#: src/supertux/title_screen.cpp:273 msgid "" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to\n" "redistribute it under certain conditions; see the license file for details.\n" msgstr "Tato hra přichází BEZ JAKÉKOLIV ZÁRUKY. Je to volně šiřitelný software a jeho šíření\nje za určitých podmínek vítáno; podrobnosti najdeš v souboru s licencí.\n" +#: src/supertux/game_object.cpp:114 +msgid "Version" +msgstr "Verze" + +#: src/supertux/game_object.cpp:129 +#: src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Type" +msgstr "Typ" + #: src/supertux/menu/integrations_menu.cpp:49 msgid "Integrations" msgstr "Integrace" @@ -1966,60 +2516,146 @@ msgstr "Integrace" msgid "Do not share level names when editing" msgstr "Při úpravě v editoru nesdílet název úrovně" +#: src/supertux/menu/integrations_menu.cpp:52 +msgid "" +"Enable this if you want to work on secret levels and don't want the names to" +" be spoiled" +msgstr "Použij tuto možnost, pokud chceš pracovat na tajných úrovních a nechceš, aby ostatní viděli jejich názvy." + #: src/supertux/menu/integrations_menu.cpp:54 msgid "Enable Discord integration" msgstr "Zapnout integraci s Discordem" +#: src/supertux/menu/integrations_menu.cpp:55 +msgid "" +"Sends information to your Discord application about what you're doing in the" +" game." +msgstr "Odesílá informace o tom, co zrovna děláš ve hře, do tvého Discordu." + #: src/supertux/menu/integrations_menu.cpp:57 msgid "Discord (disabled; not compiled)" msgstr "Discord (vypnut; nezkompilován)" -#: src/supertux/menu/contrib_menu.cpp:80 +#: src/supertux/menu/editor_converters_menu.cpp:61 +#: src/supertux/menu/editor_menu.cpp:85 +msgid "Convert Tiles" +msgstr "Konvertovat dlaždice" + +#: src/supertux/menu/editor_converters_menu.cpp:64 +msgid "Select Tile Conversion File" +msgstr "Vybrat soubor pro konverzi dlaždic" + +#: src/supertux/menu/editor_converters_menu.cpp:72 +#, c++-format +msgid "By: {}" +msgstr "Autor: {}" + +#: src/supertux/menu/editor_converters_menu.cpp:75 +msgid "Convert Tiles By File" +msgstr "Konvertovat dlaždice podle souboru" + +#: src/supertux/menu/editor_converters_menu.cpp:76 +msgid "Convert all tiles in the current level by a file, specified above." +msgstr "Konvertuje všechny dlaždice v současné úrovni podle výše specifikovaného souboru." + +#: src/supertux/menu/editor_converters_menu.cpp:89 +msgid "No tile conversion file selected." +msgstr "Není vybrán žádný soubor pro konverzi dlaždic" + +#: src/supertux/menu/editor_converters_menu.cpp:93 +msgid "" +"This will convert all tiles in the level. Proceed?\n" +"\n" +"Note: This should not be ran more than once on a level.\n" +"Creating a separate copy of the level is highly recommended." +msgstr "Tato akce konvertuje všechny dlaždice v úrovni. Pokračovat?\n\nPoznámka: tato akce by neměla být spuštěna více než jednou v jedné úrovni.\nDoporučujeme vytvořit oddělenou kopii této úrovně." + +#: src/supertux/menu/video_system_menu.cpp:36 +msgid "Select Video System" +msgstr "Vybrat vykreslovač" + +#: src/supertux/menu/video_system_menu.cpp:37 +#, c++-format +msgid "Used video system: {}" +msgstr "Použitý vykreslovač: {}" + +#: src/supertux/menu/video_system_menu.cpp:54 +msgid "Restart game for the changes to take effect" +msgstr "Pro aplikaci změn je nutné restartovat hru." + +#: src/supertux/menu/contrib_menu.cpp:68 #: src/supertux/menu/world_set_menu.cpp:31 msgid "Contrib Levels" msgstr "Přispěné úrovně" -#: src/supertux/menu/debug_menu.cpp:32 +#: src/supertux/menu/contrib_menu.cpp:98 +#: src/supertux/menu/contrib_menu.cpp:112 +msgid "Official Contrib Levels" +msgstr "Oficiální úrovně" + +#: src/supertux/menu/contrib_menu.cpp:99 +#: src/supertux/menu/contrib_menu.cpp:118 +msgid "Community Contrib Levels" +msgstr "Komunitní úrovně" + +#: src/supertux/menu/contrib_menu.cpp:100 +#: src/supertux/menu/contrib_menu.cpp:124 +msgid "User Contrib Levels" +msgstr "Vlastní úrovně" + +#: src/supertux/menu/contrib_menu.cpp:113 +msgid "How is this possible? There are no Official Contrib Levels!" +msgstr "Jak je to možné? Nejsou tady žádné oficiální přispěné úrovně!" + +#: src/supertux/menu/contrib_menu.cpp:119 +msgid "No Community Contrib Levels yet. Download them from the Add-ons Menu." +msgstr "Zatím nejsou nainstalovány žádné komunitní úrovně. Stáhnout si je můžeš z nabídky doplňků." + +#: src/supertux/menu/contrib_menu.cpp:125 +msgid "No User Contrib Levels yet. Create some with the Level Editor." +msgstr "Zatím zde nejsou žádné vlastní úrovně. Můžeš je vytvořit pomocí editoru." + +#: src/supertux/menu/debug_menu.cpp:34 msgid "Debug" msgstr "Ladění" -#: src/supertux/menu/debug_menu.cpp:56 +#: src/supertux/menu/debug_menu.cpp:58 msgid "Game Speed" msgstr "Rychlost hry" -#: src/supertux/menu/debug_menu.cpp:57 +#: src/supertux/menu/debug_menu.cpp:59 msgid "Adjust Game Speed" msgstr "Upravit rychlost hry" -#: src/supertux/menu/debug_menu.cpp:63 +#: src/supertux/menu/debug_menu.cpp:65 msgid "Show Collision Rects" msgstr "Ukázat hitboxy" -#: src/supertux/menu/debug_menu.cpp:64 +#: src/supertux/menu/debug_menu.cpp:66 msgid "Show Worldmap Path" msgstr "Ukázat cestu v mapě světa" -#: src/supertux/menu/debug_menu.cpp:65 +#: src/supertux/menu/debug_menu.cpp:67 msgid "Show Controller" msgstr "Zobrazit ovladač" -#: src/supertux/menu/debug_menu.cpp:66 +#: src/supertux/menu/debug_menu.cpp:68 msgid "Show Framerate" msgstr "Zobrazit FPS" -#: src/supertux/menu/debug_menu.cpp:67 +#: src/supertux/menu/debug_menu.cpp:69 msgid "Draw Redundant Frames" msgstr "Vykreslit nadbytečné snímky" -#: src/supertux/menu/debug_menu.cpp:68 +#: src/supertux/menu/debug_menu.cpp:70 msgid "Show Player Position" msgstr "Zobrazit pozici hráče" -#: src/supertux/menu/debug_menu.cpp:69 +#: src/supertux/menu/debug_menu.cpp:71 msgid "Use Bitmap Fonts" msgstr "Použít rastrová písma" -#: src/supertux/menu/debug_menu.cpp:72 +#: src/supertux/menu/debug_menu.cpp:74 msgid "Dump Texture Cache" msgstr "Zahodit vyrovnávací paměť textur" @@ -2033,10 +2669,37 @@ msgid "File name" msgstr "Název souboru" #: src/supertux/menu/particle_editor_save_as.cpp:38 -#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:766 +#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:767 msgid "Save" msgstr "Uložit" +#: src/supertux/menu/multiplayer_menu.cpp:27 +#: src/supertux/menu/multiplayer_players_menu.cpp:34 +msgid "Multiplayer" +msgstr "Hra více hráčů" + +#: src/supertux/menu/multiplayer_menu.cpp:30 +msgid "Auto-manage Players" +msgstr "Automaticky určit počet hráčů" + +#: src/supertux/menu/multiplayer_menu.cpp:31 +msgid "" +"Automatically add and remove players when controllers are plugged or " +"unplugged" +msgstr "Automaticky přidá a odebere hráče, když jsou připojeny či odpojeny ovladače." + +#: src/supertux/menu/multiplayer_menu.cpp:33 +msgid "Allow Multibind" +msgstr "Povolit více joysticků" + +#: src/supertux/menu/multiplayer_menu.cpp:34 +msgid "Allow binding multiple joysticks to a single player" +msgstr "Povoli přidělit jednomu hráči více joysticků" + +#: src/supertux/menu/multiplayer_menu.cpp:36 +msgid "Manage Players" +msgstr "Nastavit hráče" + #: src/supertux/menu/editor_sectors_menu.cpp:31 msgid "Choose Sector" msgstr "Zvolit sektor" @@ -2053,50 +2716,98 @@ msgstr "Vytvořit sektor" msgid "Delete Sector" msgstr "Smazat sektor" -#: src/supertux/menu/editor_sectors_menu.cpp:93 +#: src/supertux/menu/editor_sectors_menu.cpp:92 msgid "Each level must have at least one sector." msgstr "Každá úroveň musí mít alespoň jeden sektor." -#: src/supertux/menu/editor_sectors_menu.cpp:98 +#: src/supertux/menu/editor_sectors_menu.cpp:97 msgid "Do you really want to delete this sector?" msgstr "Opravdu chceš smazat tento sektor?" -#: src/supertux/menu/editor_sectors_menu.cpp:101 +#: src/supertux/menu/editor_sectors_menu.cpp:100 msgid "Delete sector" msgstr "Smazat sektor" -#: src/supertux/menu/editor_objectgroup_menu.cpp:30 -#: src/editor/toolbox_widget.cpp:93 -msgid "Objects" -msgstr "Objekty" +#: src/supertux/menu/custom_menu_menu.cpp:49 +#: src/supertux/menu/options_menu.cpp:191 +msgid "Menu Customization" +msgstr "Vzhled nabídek" + +#: src/supertux/menu/custom_menu_menu.cpp:51 +msgid "Menu Back Color" +msgstr "Barva pozadí nabídky" + +#: src/supertux/menu/custom_menu_menu.cpp:52 +msgid "Menu Front Color" +msgstr "Barva popředí nabídky" + +#: src/supertux/menu/custom_menu_menu.cpp:53 +msgid "Menu Help Back Color" +msgstr "Barva pozadí nápovědy" + +#: src/supertux/menu/custom_menu_menu.cpp:54 +msgid "Menu Help Front Color" +msgstr "Barva popředí nápovědy" + +#: src/supertux/menu/custom_menu_menu.cpp:55 +msgid "Label Text Color" +msgstr "Barva popisku" + +#: src/supertux/menu/custom_menu_menu.cpp:56 +msgid "Active Text Color" +msgstr "Barva aktivního textu" + +#: src/supertux/menu/custom_menu_menu.cpp:57 +msgid "Divider Line Color" +msgstr "Barva oddělovací čáry" -#: src/supertux/menu/editor_level_select_menu.cpp:62 +#: src/supertux/menu/custom_menu_menu.cpp:58 +msgid "Menu Roundness" +msgstr "Zaoblení nabídek" + +#: src/supertux/menu/custom_menu_menu.cpp:60 +msgid "Editor Interface Color" +msgstr "Barva rozhraní editoru" + +#: src/supertux/menu/custom_menu_menu.cpp:61 +msgid "Editor Hover Color" +msgstr "Barva při najetí myši v editoru" + +#: src/supertux/menu/custom_menu_menu.cpp:62 +msgid "Editor Grab Color" +msgstr "Barva výběru v editoru" + +#: src/supertux/menu/custom_menu_menu.cpp:64 +msgid "Reset to defaults" +msgstr "Resetovat na výchozí hodnoty" + +#: src/supertux/menu/editor_level_select_menu.cpp:72 msgid "Empty World" msgstr "Prázdný svět" -#: src/supertux/menu/editor_level_select_menu.cpp:77 +#: src/supertux/menu/editor_level_select_menu.cpp:87 msgid "Create Level" msgstr "Vytvořit úroveň" -#: src/supertux/menu/editor_level_select_menu.cpp:81 +#: src/supertux/menu/editor_level_select_menu.cpp:91 msgid "Edit Worldmap" msgstr "Upravit mapu světa" -#: src/supertux/menu/editor_level_select_menu.cpp:83 +#: src/supertux/menu/editor_level_select_menu.cpp:93 msgid "Create Worldmap" msgstr "Vytvořit mapu světa" -#: src/supertux/menu/editor_level_select_menu.cpp:85 -#: src/supertux/menu/editor_delete_level_menu.cpp:33 +#: src/supertux/menu/editor_level_select_menu.cpp:95 +#: src/supertux/menu/editor_delete_level_menu.cpp:55 msgid "Delete level" msgstr "Odstranit úroveň" -#: src/supertux/menu/editor_level_select_menu.cpp:87 -#: src/supertux/menu/editor_levelset_menu.cpp:56 +#: src/supertux/menu/editor_level_select_menu.cpp:97 +#: src/supertux/menu/editor_levelset_menu.cpp:50 msgid "World Settings" msgstr "Nastavení světa" -#: src/supertux/menu/editor_level_select_menu.cpp:127 +#: src/supertux/menu/editor_level_select_menu.cpp:141 msgid "" "Share this worldmap under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -2104,7 +2815,7 @@ msgid "" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." msgstr "Sdílej tuto mapu pod licencí CC-BY-SA 4.0 International (doporučujeme).\nTato licence umožňuje modifikace a redistribuci třetími stranami.\nPokud s touto licencí nesouhlasíš, změň jí ve vlastnostech mapy.\nODVOLÁNÍ: Autoři SuperTuxe nejsou zodpovědní za volbu licence." -#: src/supertux/menu/editor_level_select_menu.cpp:134 +#: src/supertux/menu/editor_level_select_menu.cpp:148 msgid "" "Share this level under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -2112,497 +2823,817 @@ msgid "" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." msgstr "Sdílej tuto úroveň pod licencí CC-BY-SA 4.0 International (doporučujeme).\nTato licence umožňuje modifikace a redistribuci třetími stranami.\nPokud s touto licencí nesouhlasíš, změň jí ve vlastnostech úrovně.\nODVOLÁNÍ: Autoři SuperTuxe nejsou zodpovědní za volbu licence." -#: src/supertux/menu/editor_level_select_menu.cpp:162 +#: src/supertux/menu/editor_level_select_menu.cpp:179 msgid "" "An auto-save recovery file was found. Would you like to restore the recovery\n" "file and resume where you were before the editor crashed?" msgstr "Byl nalezen automaticky uložený soubor pro zotavení. Chceš obnovit data z tohoto souboru\na pokračovat tam, kde jsi byl/a předtím, než editor spadl?" -#: src/supertux/menu/editor_level_select_menu.cpp:169 +#: src/supertux/menu/editor_level_select_menu.cpp:186 msgid "This will delete the auto-save file. Are you sure?" msgstr "Tato akce soubor pro zotavení smaže. Jsi si jist/a?" -#: src/supertux/menu/worldmap_cheat_menu.cpp:34 -#: src/supertux/menu/cheat_menu.cpp:30 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:35 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:52 +#: src/supertux/menu/cheat_apply_menu.cpp:33 +#: src/supertux/menu/cheat_apply_menu.cpp:51 +msgid "Apply cheat to player" +msgstr "Aplikovat podvod na hráče" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:60 +#: src/supertux/menu/multiplayer_players_menu.cpp:39 +#: src/supertux/menu/keyboard_menu.cpp:63 +#: src/supertux/menu/cheat_apply_menu.cpp:39 +#: src/supertux/menu/cheat_apply_menu.cpp:59 +#: src/supertux/menu/multiplayer_player_menu.cpp:37 +#, c++-format +msgid "Player {}" +msgstr "Hráč {}" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:57 +#: src/supertux/menu/cheat_apply_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:56 +msgid "All Players" +msgstr "Všichni hráči" + +#: src/supertux/menu/worldmap_cheat_menu.cpp:36 +#: src/supertux/menu/cheat_menu.cpp:31 msgid "Cheats" msgstr "Podvádění" -#: src/supertux/menu/worldmap_cheat_menu.cpp:36 -#: src/supertux/menu/cheat_menu.cpp:32 +#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:33 msgid "Bonus: Grow" msgstr "Bonus: růst" -#: src/supertux/menu/worldmap_cheat_menu.cpp:37 +#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:34 msgid "Bonus: Fire" msgstr "Bonus: oheň" -#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/cheat_menu.cpp:35 msgid "Bonus: Ice" msgstr "Bonus: led" -#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/cheat_menu.cpp:36 msgid "Bonus: Air" msgstr "Bonus: Vzduch" -#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:42 +#: src/supertux/menu/cheat_menu.cpp:37 msgid "Bonus: Earth" msgstr "Bonus: Země" -#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/worldmap_cheat_menu.cpp:43 msgid "Bonus: None" msgstr "Bonus: žádný" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:51 msgid "Leave Ghost Mode" msgstr "Opustit režim Duch" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:50 msgid "Activate Ghost Mode" msgstr "Aktivovat režim Duch" -#: src/supertux/menu/worldmap_cheat_menu.cpp:46 -#: src/supertux/menu/cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:48 +#: src/supertux/menu/cheat_menu.cpp:41 msgid "Finish Level" msgstr "Dokončit úroveň" -#: src/supertux/menu/worldmap_cheat_menu.cpp:47 +#: src/supertux/menu/worldmap_cheat_menu.cpp:49 msgid "Reset Level" msgstr "Resetovat úroveň" -#: src/supertux/menu/worldmap_cheat_menu.cpp:49 +#: src/supertux/menu/worldmap_cheat_menu.cpp:51 msgid "Finish Worldmap" msgstr "Dokončit mapu" -#: src/supertux/menu/worldmap_cheat_menu.cpp:50 +#: src/supertux/menu/worldmap_cheat_menu.cpp:52 msgid "Reset Worldmap" msgstr "Resetovat mapu" -#: src/supertux/menu/worldmap_cheat_menu.cpp:52 +#: src/supertux/menu/worldmap_cheat_menu.cpp:54 msgid "Go to level" msgstr "Jít do úrovně" -#: src/supertux/menu/worldmap_cheat_menu.cpp:53 +#: src/supertux/menu/worldmap_cheat_menu.cpp:55 msgid "Go to main spawnpoint" msgstr "Jít na hlavní zrodiště" -#: src/supertux/menu/worldmap_cheat_menu.cpp:145 +#: src/supertux/menu/worldmap_cheat_menu.cpp:188 msgid "Select level" msgstr "Vybrat úroveň" #: src/supertux/menu/editor_save_as.cpp:33 -#: src/supertux/menu/editor_menu.cpp:49 +#: src/supertux/menu/editor_menu.cpp:63 msgid "Save Level as" msgstr "Uložit úroveň jako" #: src/supertux/menu/editor_save_as.cpp:33 -#: src/supertux/menu/editor_menu.cpp:50 +#: src/supertux/menu/editor_menu.cpp:64 msgid "Save Copy" msgstr "Uložit kopii" -#: src/supertux/menu/editor_levelset_select_menu.cpp:72 +#: src/supertux/menu/editor_levelset_select_menu.cpp:71 msgid "Choose World" msgstr "Vybrat svět" -#: src/supertux/menu/editor_levelset_select_menu.cpp:100 -#, c-format -msgid "%d level" -msgid_plural "%d levels" -msgstr[0] "%d úroveň" -msgstr[1] "%d úrovně" -msgstr[2] "%d úrovní" -msgstr[3] "%d úrovní" +#: src/supertux/menu/editor_levelset_select_menu.cpp:99 +#, c++-format +msgid "{} level" +msgid_plural "{} levels" +msgstr[0] "f" +msgstr[1] "dgdgdg" +msgstr[2] "Počet úrovní: {}" +msgstr[3] "Počet úrovní: {}" -#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_levelset_select_menu.cpp:112 msgid "Create World" msgstr "Vytvořit svět" -#: src/supertux/menu/options_menu.cpp:98 src/supertux/menu/main_menu.cpp:64 -#: src/supertux/menu/game_menu.cpp:61 src/supertux/menu/worldmap_menu.cpp:31 -msgid "Options" -msgstr "Nastavení" - -#: src/supertux/menu/options_menu.cpp:104 -#: src/supertux/menu/options_menu.cpp:142 -#: src/supertux/menu/options_menu.cpp:455 -#: src/supertux/menu/options_menu.cpp:476 src/editor/object_settings.cpp:119 -msgid "auto" -msgstr "Automaticky" - -#: src/supertux/menu/options_menu.cpp:221 -msgid "Desktop" -msgstr "Plocha" - -#: src/supertux/menu/options_menu.cpp:251 -msgid "on" -msgstr "zapnuto" - -#: src/supertux/menu/options_menu.cpp:252 -msgid "off" -msgstr "vypnuto" +#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:41 +msgid "Delete World" +msgstr "Odstranit svět" -#: src/supertux/menu/options_menu.cpp:253 -msgid "adaptive" -msgstr "přizpůsobivá" +#: src/supertux/menu/options_menu.cpp:72 +#: src/supertux/menu/options_select_menu.cpp:35 +msgid "Locale" +msgstr "Jazyk" -#: src/supertux/menu/options_menu.cpp:347 +#: src/supertux/menu/options_menu.cpp:76 msgid "Select Language" msgstr "Zvolit jazyk" -#: src/supertux/menu/options_menu.cpp:348 +#: src/supertux/menu/options_menu.cpp:77 msgid "Select a different language to display text in" msgstr "Vybrat jiný jazyk pro zobrazení textu" -#: src/supertux/menu/options_menu.cpp:350 +#: src/supertux/menu/options_menu.cpp:79 msgid "Language Packs" msgstr "Balíky jazyků" -#: src/supertux/menu/options_menu.cpp:351 +#: src/supertux/menu/options_menu.cpp:80 msgid "Language packs contain up-to-date translations" msgstr "Balíky jazyků obsahující aktuální překlady" -#: src/supertux/menu/options_menu.cpp:353 -#: src/supertux/menu/profile_menu.cpp:34 -msgid "Select Profile" -msgstr "Zvolit profil" +#: src/supertux/menu/options_menu.cpp:88 +#: src/supertux/menu/options_select_menu.cpp:37 +msgid "Video" +msgstr "Video" -#: src/supertux/menu/options_menu.cpp:354 -msgid "Select a profile to play with" -msgstr "Vyber si profil, za který chceš hrát" - -#: src/supertux/menu/options_menu.cpp:358 +#: src/supertux/menu/options_menu.cpp:91 msgid "Window Resizable" msgstr "Měnitelná velikost okna" -#: src/supertux/menu/options_menu.cpp:359 +#: src/supertux/menu/options_menu.cpp:92 msgid "Allow window resizing, might require a restart to take effect" msgstr "Povolit změnu velikosti okna (může vyžadovat restart hry)" -#: src/supertux/menu/options_menu.cpp:361 -msgid "Window Resolution" -msgstr "Rozlišení okna" - -#: src/supertux/menu/options_menu.cpp:362 -msgid "Resize the window to the given size" -msgstr "Změnit velikost okna na zadanou velikost" - -#: src/supertux/menu/options_menu.cpp:364 +#: src/supertux/menu/options_menu.cpp:96 msgid "Fullscreen" msgstr "Celá obrazovka" -#: src/supertux/menu/options_menu.cpp:365 +#: src/supertux/menu/options_menu.cpp:97 msgid "Fill the entire screen" msgstr "Vyplnit celou obrazovku" -#: src/supertux/menu/options_menu.cpp:367 -msgid "Fullscreen Resolution" -msgstr "Rozlišení na celou obrazovku" - -#: src/supertux/menu/options_menu.cpp:368 -msgid "" -"Determine the resolution used in fullscreen mode (you must toggle fullscreen" -" to complete the change)" -msgstr "Určit rozlišení použíté v režimu celé obrazovky (musíš přepnout zobrazení na celou obrazovku, aby se změna projevila)" - -#: src/supertux/menu/options_menu.cpp:373 +#: src/supertux/menu/options_menu.cpp:104 msgid "Fit to browser" msgstr "Podle prohlížeče" -#: src/supertux/menu/options_menu.cpp:374 +#: src/supertux/menu/options_menu.cpp:105 msgid "Fit the resolution to the size of your browser" msgstr "Upravit rozlišení podle velikosti okna prohlížeče" -#: src/supertux/menu/options_menu.cpp:378 -msgid "Magnification" -msgstr "Zvětšení" - -#: src/supertux/menu/options_menu.cpp:379 -msgid "Change the magnification of the game area" -msgstr "Zvětšit či zmenšit obraz" +#: src/supertux/menu/options_menu.cpp:116 +msgid "Change Video System" +msgstr "Změnit vykreslovač" -#: src/supertux/menu/options_menu.cpp:381 -msgid "VSync" -msgstr "Vertikální synchronizace" - -#: src/supertux/menu/options_menu.cpp:382 -msgid "Set the VSync mode" -msgstr "Nastavit režim vertikální synchronizace" - -#: src/supertux/menu/options_menu.cpp:385 -msgid "Aspect Ratio" -msgstr "Poměr stran" +#: src/supertux/menu/options_menu.cpp:117 +msgid "Change video system used to render graphics" +msgstr "Změní vykreslovač používaný k vykreslování grafiky" -#: src/supertux/menu/options_menu.cpp:386 -msgid "Adjust the aspect ratio" -msgstr "Upravit poměr stran" +#: src/supertux/menu/options_menu.cpp:124 +#: src/supertux/menu/options_select_menu.cpp:38 +msgid "Audio" +msgstr "Zvuk" -#: src/supertux/menu/options_menu.cpp:392 +#: src/supertux/menu/options_menu.cpp:129 msgid "Disable all sound effects" msgstr "Zakázat všechny zvukové efekty" -#: src/supertux/menu/options_menu.cpp:394 +#: src/supertux/menu/options_menu.cpp:131 msgid "Disable all music" msgstr "Vypnout hudbu" -#: src/supertux/menu/options_menu.cpp:396 -msgid "Sound Volume" -msgstr "Hlasitost zvuku" - -#: src/supertux/menu/options_menu.cpp:397 -msgid "Adjust sound volume" -msgstr "Upravit hlasitost zvuku" - -#: src/supertux/menu/options_menu.cpp:399 -msgid "Music Volume" -msgstr "Hlasitost hudby" - -#: src/supertux/menu/options_menu.cpp:400 -msgid "Adjust music volume" -msgstr "Upravit hlasitost hudby" - -#: src/supertux/menu/options_menu.cpp:404 +#: src/supertux/menu/options_menu.cpp:138 msgid "Sound (disabled)" msgstr "Zvuk (vypnut)" -#: src/supertux/menu/options_menu.cpp:405 +#: src/supertux/menu/options_menu.cpp:139 msgid "Music (disabled)" msgstr "Hudba (vypnutá)" -#: src/supertux/menu/options_menu.cpp:408 -#: src/supertux/menu/keyboard_menu.cpp:30 +#: src/supertux/menu/options_menu.cpp:147 +#: src/supertux/menu/options_select_menu.cpp:39 +msgid "Controls" +msgstr "Ovládání" + +#: src/supertux/menu/options_menu.cpp:151 +msgid "Enable Rumbling Controllers" +msgstr "Povolit ovladače s vibracemi" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "Enable vibrating the game controllers." +msgstr "Povolí vibrace na ovladačích, které tuto funkci podporují" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "This feature is currently only used in the multiplayer options menu." +msgstr "Tato funkce je momentálně dostupná pouze v nastavení hry více hráčů" + +#: src/supertux/menu/options_menu.cpp:154 +#: src/supertux/menu/keyboard_menu.cpp:34 msgid "Setup Keyboard" msgstr "Nastavit klávesnici" -#: src/supertux/menu/options_menu.cpp:409 +#: src/supertux/menu/options_menu.cpp:155 msgid "Configure key-action mappings" msgstr "Nastavit přiřazení kláves" -#: src/supertux/menu/options_menu.cpp:412 -#: src/supertux/menu/joystick_menu.cpp:52 +#: src/supertux/menu/options_menu.cpp:158 +#: src/supertux/menu/joystick_menu.cpp:54 msgid "Setup Joystick" msgstr "Nastavit joystick" -#: src/supertux/menu/options_menu.cpp:413 +#: src/supertux/menu/options_menu.cpp:159 msgid "Configure joystick control-action mappings" msgstr "Nastavit přiřazení tlačítek joysticku" -#: src/supertux/menu/options_menu.cpp:417 -msgid "On-screen controls" -msgstr "Ovládání na obrazovce" +#: src/supertux/menu/options_menu.cpp:167 +#: src/supertux/menu/options_select_menu.cpp:40 +msgid "Extras" +msgstr "Ostatní" + +#: src/supertux/menu/options_menu.cpp:170 +#: src/supertux/menu/profile_menu.cpp:56 +msgid "Select Profile" +msgstr "Zvolit profil" + +#: src/supertux/menu/options_menu.cpp:171 +msgid "Select a profile to play with" +msgstr "Vyber si profil, za který chceš hrát" + +#: src/supertux/menu/options_menu.cpp:174 +msgid "Multiplayer settings" +msgstr "Nastavení hry více hráčů" -#: src/supertux/menu/options_menu.cpp:418 -msgid "Toggle on-screen controls for mobile devices" -msgstr "Zapnout/vypnout ovládání na obrazovce pro mobilní zařízení" +#: src/supertux/menu/options_menu.cpp:175 +msgid "Configure settings specific to multiplayer" +msgstr "Nastaví možnosti určené pro hru více hráčů" -#: src/supertux/menu/options_menu.cpp:420 +#: src/supertux/menu/options_menu.cpp:178 msgid "Enable transitions" msgstr "Povolit přechody" -#: src/supertux/menu/options_menu.cpp:421 +#: src/supertux/menu/options_menu.cpp:179 msgid "Enable screen transitions and smooth menu animation" msgstr "Povolit přechody obrazovek a hladké animace nabídky" -#: src/supertux/menu/options_menu.cpp:425 -msgid "Developer Mode" -msgstr "Vývojářský režim" +#: src/supertux/menu/options_menu.cpp:181 +msgid "Custom title screen levels" +msgstr "Vlastní úrovně pro úvodní obrazovku" -#: src/supertux/menu/options_menu.cpp:430 +#: src/supertux/menu/options_menu.cpp:182 +msgid "Allow overriding the title screen level, when loading certain worlds" +msgstr "Povolí změnu úrovně na úvodní obrazovce po načtení některých světů" + +#: src/supertux/menu/options_menu.cpp:185 msgid "Christmas Mode" msgstr "Vánoční režim" -#: src/supertux/menu/options_menu.cpp:433 +#: src/supertux/menu/options_menu.cpp:187 +msgid "Integrations and presence" +msgstr "Integrace a prezence" + +#: src/supertux/menu/options_menu.cpp:188 +msgid "" +"Manage whether SuperTux should display the levels you play on your social " +"media profiles (Discord)" +msgstr "Nastav, zda by měl SuperTux zobrazovat, jaké úrovně právě hraješ, na Tvém profilu na Discordu" + +#: src/supertux/menu/options_menu.cpp:192 +msgid "Customize the appearance of the menus" +msgstr "Pozmění podobu nabídek" + +#: src/supertux/menu/options_menu.cpp:199 +#: src/supertux/menu/options_select_menu.cpp:41 +msgid "Advanced" +msgstr "Pokročilé" + +#: src/supertux/menu/options_menu.cpp:204 +msgid "Developer Mode" +msgstr "Vývojářský režim" + +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirmation Dialog" msgstr "Potvrzovací dialog" -#: src/supertux/menu/options_menu.cpp:433 +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirm aborting level" msgstr "Potvrdit ukončení úrovně" -#: src/supertux/menu/options_menu.cpp:434 +#: src/supertux/menu/options_menu.cpp:208 msgid "Pause on focus loss" msgstr "Pozastavit při ztrátě zaměření" -#: src/supertux/menu/options_menu.cpp:435 +#: src/supertux/menu/options_menu.cpp:209 msgid "Automatically pause the game when the window loses focus" msgstr "Automaticky pozastavit hru, když je okno neaktivní" -#: src/supertux/menu/options_menu.cpp:436 +#: src/supertux/menu/options_menu.cpp:211 msgid "Use custom mouse cursor" msgstr "Použít herní kurzor myši" -#: src/supertux/menu/options_menu.cpp:436 +#: src/supertux/menu/options_menu.cpp:211 msgid "Whether the game renders its own cursor or uses the system's cursor" msgstr "Určuje, zda hra vykreslí svůj vlastní kurzor, nebo použije systémový kurzor" -#: src/supertux/menu/options_menu.cpp:438 -msgid "Integrations and presence" -msgstr "Integrace a prezence" +#: src/supertux/menu/options_menu.cpp:214 +msgid "Check for new releases" +msgstr "Ověřit dostupnost nových verzí" -#: src/supertux/menu/options_menu.cpp:439 +#: src/supertux/menu/options_menu.cpp:215 msgid "" -"Manage whether SuperTux should display the levels you play on your social " -"media profiles (Discord)" -msgstr "Nastav, zda by měl SuperTux zobrazovat, jaké úrovně právě hraješ, na Tvém profilu na Discordu" +"Allows the game to perform checks for new SuperTux releases on startup and " +"notify if any found." +msgstr "Povolí hře při spuštění zkontrolovat, zda jsou k dispozici nové verze, a případně upozornit uživatele." + +#: src/supertux/menu/options_menu.cpp:245 +#: src/supertux/menu/options_menu.cpp:288 src/supertux/direction.cpp:76 +msgid "auto" +msgstr "Automaticky" + +#: src/supertux/menu/options_menu.cpp:281 +msgid "Magnification" +msgstr "Zvětšení" + +#: src/supertux/menu/options_menu.cpp:282 +msgid "Change the magnification of the game area" +msgstr "Zvětšit či zmenšit obraz" + +#: src/supertux/menu/options_menu.cpp:318 +msgid "Aspect Ratio" +msgstr "Poměr stran" + +#: src/supertux/menu/options_menu.cpp:319 +msgid "Adjust the aspect ratio" +msgstr "Upravit poměr stran" + +#: src/supertux/menu/options_menu.cpp:346 +msgid "Window Resolution" +msgstr "Rozlišení okna" + +#: src/supertux/menu/options_menu.cpp:347 +msgid "Resize the window to the given size" +msgstr "Změnit velikost okna na zadanou velikost" -#: src/supertux/menu/options_menu.cpp:559 +#: src/supertux/menu/options_menu.cpp:377 +msgid "Desktop" +msgstr "Plocha" + +#: src/supertux/menu/options_menu.cpp:404 +msgid "Fullscreen Resolution" +msgstr "Rozlišení na celou obrazovku" + +#: src/supertux/menu/options_menu.cpp:405 +msgid "" +"Determine the resolution used in fullscreen mode (you must toggle fullscreen" +" to complete the change)" +msgstr "Určit rozlišení použíté v režimu celé obrazovky (musíš přepnout zobrazení na celou obrazovku, aby se změna projevila)" + +#: src/supertux/menu/options_menu.cpp:411 +msgid "on" +msgstr "zapnuto" + +#: src/supertux/menu/options_menu.cpp:412 +msgid "off" +msgstr "vypnuto" + +#: src/supertux/menu/options_menu.cpp:413 +msgid "adaptive" +msgstr "přizpůsobivá" + +#: src/supertux/menu/options_menu.cpp:431 +msgid "VSync" +msgstr "Vertikální synchronizace" + +#: src/supertux/menu/options_menu.cpp:432 +msgid "Set the VSync mode" +msgstr "Nastavit režim vertikální synchronizace" + +#: src/supertux/menu/options_menu.cpp:467 +msgid "Sound Volume" +msgstr "Hlasitost zvuku" + +#: src/supertux/menu/options_menu.cpp:468 +msgid "Adjust sound volume" +msgstr "Upravit hlasitost zvuku" + +#: src/supertux/menu/options_menu.cpp:503 +msgid "Music Volume" +msgstr "Hlasitost hudby" + +#: src/supertux/menu/options_menu.cpp:504 +msgid "Adjust music volume" +msgstr "Upravit hlasitost hudby" + +#: src/supertux/menu/options_menu.cpp:517 +msgid "On-screen controls scale" +msgstr "Velikost ovládacích prvků" + +#: src/supertux/menu/options_menu.cpp:638 msgid "" "The game couldn't detect your browser resolution.\n" "This most likely happens because it is not embedded\n" "in the SuperTux custom HTML template.\n" msgstr "SuperTux nemohl zjistit rozlišení Tvého prohlížeče.\nTo je pravděpodobně způsobené tím, že okno není\nvnořené v SuperTuxovské HTML šabloně.\n" -#: src/supertux/menu/main_menu.cpp:56 src/supertux/menu/world_set_menu.cpp:28 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:80 +msgid "You cannot delete the world that you are editing" +msgstr "Nemůžeš smazat svět, který upravuješ" + +#: src/supertux/menu/editor_delete_levelset_menu.cpp:83 +#, c++-format +msgid "You are about to delete world \"{}\". Are you sure?" +msgstr "Chystáš se smazat svět \"{}\". Jsi si jist/a?" + +#: src/supertux/menu/addon_preview_menu.cpp:82 +#, c++-format +msgid "{} \"{}\"" +msgstr "{} \"{}\"" + +#: src/supertux/menu/addon_preview_menu.cpp:87 +msgid "Some information about this add-on is not available." +msgstr "Některé informace o tomto doplňku jsou nedostupné." + +#: src/supertux/menu/addon_preview_menu.cpp:88 +msgid "Perform a \"Check Online\" to try retrieving it." +msgstr "Zkusit získat online" + +#: src/supertux/menu/addon_preview_menu.cpp:92 +msgid "No author specified." +msgstr "Není uveden autor." + +#: src/supertux/menu/addon_preview_menu.cpp:92 +#, c++-format +msgid "Author: {}" +msgstr "Autor: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:93 +#, c++-format +msgid "Type: {}" +msgstr "Typ: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:94 +msgid "No license specified." +msgstr "Není specifikovaná licence." + +#: src/supertux/menu/addon_preview_menu.cpp:94 +#, c++-format +msgid "License: {}" +msgstr "Licence: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:99 +msgid "Dependencies:" +msgstr "Závislosti:" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Installed" +msgstr "Nainstalováno" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Not installed" +msgstr "Nenainstalováno" + +#: src/supertux/menu/addon_preview_menu.cpp:113 +msgid "Not available!" +msgstr "Nedostupné!" + +#: src/supertux/menu/addon_preview_menu.cpp:120 +msgid "Description:" +msgstr "Popis:" + +#: src/supertux/menu/addon_preview_menu.cpp:123 +msgid "No description available." +msgstr "Popis není k dispozici." + +#: src/supertux/menu/addon_preview_menu.cpp:147 +msgid "Failed to load all available screenshot previews." +msgstr "Nepodařilo se načíst všechny dostupné náhledy." + +#: src/supertux/menu/addon_preview_menu.cpp:152 +msgid "Show screenshots" +msgstr "Ukázat náhledy" + +#: src/supertux/menu/addon_preview_menu.cpp:165 +msgid "Screenshot previews are disabled for automatic installs." +msgstr "Náhledy jsou pro automatické instalace vypnuty." + +#: src/supertux/menu/addon_preview_menu.cpp:169 +msgid "No screenshot previews available." +msgstr "Náhledy nejsou k dispozici." + +#: src/supertux/menu/addon_preview_menu.cpp:177 +msgid "Install" +msgstr "Instalovat" + +#: src/supertux/menu/addon_preview_menu.cpp:190 +msgid "Uninstall" +msgstr "Odinstalovat" + +#: src/supertux/menu/addon_preview_menu.cpp:214 +#, c++-format +msgid "Are you sure you want to uninstall \"{}\"?" +msgstr "Určitě chceš odinstalovat \"{}\"?" + +#: src/supertux/menu/addon_preview_menu.cpp:215 +msgid "" +"\n" +"Your progress won't be lost." +msgstr "\nTvůj postup nebude ztracen." + +#: src/supertux/menu/addon_preview_menu.cpp:227 +#, c++-format +msgid "" +"NOTE: The add-on \"{}\" is a dependency of {} other installed {}.\n" +"Are you sure you wish to uninstall?" +msgstr "POZNÁMKA: Doplněk \"{}\" je závislostí {} {}.\nJsi si jistý?" + +#: src/supertux/menu/addon_preview_menu.cpp:246 +#, c++-format +msgid "" +"Cannot toggle add-on \"{}\":\n" +"{}" +msgstr "Nelze aktivovat/deaktivovat doplněk \"{}\":\n{}" + +#: src/supertux/menu/addon_preview_menu.cpp:279 +msgid "Fetching screenshot previews..." +msgstr "Načítám náhledy..." + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Updating" +msgstr "Aktualizuji" + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Downloading" +msgstr "Stahuji" + +#: src/supertux/menu/addon_preview_menu.cpp:328 +msgid "Add-on uninstalled successfully." +msgstr "Doplněk úspěšně nainstalován." + +#: src/supertux/menu/addon_preview_menu.cpp:333 +#, c++-format +msgid "" +"Error uninstalling add-on:\n" +"{}" +msgstr "Chyba při odinstalaci doplňku:\n{}" + +#: src/supertux/menu/addon_preview_menu.cpp:361 +msgid "" +"Please restart SuperTux\n" +"for these changes to take effect." +msgstr "Prosím, restartuj SuperTux,\naby se tyto změny uplatnily." + +#: src/supertux/menu/main_menu.cpp:51 src/supertux/menu/world_set_menu.cpp:28 msgid "Start Game" msgstr "Spustit hru" -#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/addon_menu.cpp:122 +#: src/supertux/menu/main_menu.cpp:55 msgid "Add-ons" msgstr "Doplňky" -#: src/supertux/menu/main_menu.cpp:62 src/supertux/menu/web_asset_menu.cpp:38 +#: src/supertux/menu/main_menu.cpp:57 src/supertux/menu/web_asset_menu.cpp:38 msgid "Manage Assets" msgstr "Správa datových souborů" -#: src/supertux/menu/main_menu.cpp:65 src/supertux/menu/editor_menu.cpp:43 +#: src/supertux/menu/main_menu.cpp:59 +#: src/supertux/menu/options_select_menu.cpp:29 +#: src/supertux/menu/game_menu.cpp:58 src/supertux/menu/worldmap_menu.cpp:31 +#: src/supertux/menu/editor_menu.cpp:70 +msgid "Options" +msgstr "Nastavení" + +#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/editor_menu.cpp:58 msgid "Level Editor" msgstr "Editor úrovní" -#: src/supertux/menu/main_menu.cpp:66 +#: src/supertux/menu/main_menu.cpp:61 msgid "Credits" msgstr "Autoři" -#: src/supertux/menu/main_menu.cpp:67 +#: src/supertux/menu/main_menu.cpp:64 msgid "Donate" msgstr "Darovat" -#: src/supertux/menu/main_menu.cpp:69 +#: src/supertux/menu/main_menu.cpp:67 msgid "Quit" msgstr "Ukončit hru" -#: src/supertux/menu/editor_sector_menu.cpp:35 +#: src/supertux/menu/main_menu.cpp:106 +msgid "" +"This will take you to the SuperTux donation page. Are you sure you want to " +"continue?" +msgstr "Tato akce otevře stránku pro darování peněz vývojářům SuperTuxe. Opravdu chceš pokračovat?" + +#: src/supertux/menu/editor_sector_menu.cpp:34 +#, c++-format +msgid "Sector {}" +msgstr "Sektor {}" + +#: src/supertux/menu/editor_sector_menu.cpp:37 msgid "Initialization script" msgstr "Skript na začátku" -#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_sector_menu.cpp:38 msgid "Gravity" msgstr "Gravitace" -#: src/supertux/menu/editor_sector_menu.cpp:41 +#: src/supertux/menu/editor_sector_menu.cpp:43 msgid "Resize offset X" msgstr "Offset změny šířky" -#: src/supertux/menu/editor_sector_menu.cpp:42 +#: src/supertux/menu/editor_sector_menu.cpp:44 msgid "Resize offset Y" msgstr "Offset změny výšky" -#: src/supertux/menu/editor_sector_menu.cpp:43 +#: src/supertux/menu/editor_sector_menu.cpp:45 msgid "Resize" msgstr "Změnit velikost" -#: src/supertux/menu/profile_menu.cpp:41 -#, c-format -msgid "[Profile %s]" -msgstr "[Profil %s]" - -#: src/supertux/menu/profile_menu.cpp:45 -#, c-format -msgid "Profile %s" -msgstr "Profil %s" - -#: src/supertux/menu/profile_menu.cpp:50 -msgid "Reset profile" -msgstr "Resetovat profil" - -#: src/supertux/menu/profile_menu.cpp:51 -msgid "Reset all profiles" -msgstr "Resetovat všechny profily" - -#: src/supertux/menu/profile_menu.cpp:67 -msgid "Deleting your profile will reset your game progress. Are you sure?" -msgstr "Smazáním svého profilu resetuješ svůj postup ve hře. Jsi si jist/a?" +#: src/supertux/menu/profile_menu.cpp:60 +msgid "No profiles found." +msgstr "Nenalezeny žádné profily." + +#: src/supertux/menu/profile_menu.cpp:68 +#: src/supertux/menu/profile_menu.cpp:149 +#: src/supertux/menu/profile_menu.cpp:168 +#, c++-format +msgid "Profile {}" +msgstr "Profil {}" + +#: src/supertux/menu/profile_menu.cpp:69 +#, c++-format +msgid "{} (Profile {})" +msgstr "{} (Profil {})" + +#: src/supertux/menu/profile_menu.cpp:84 +msgid "No profile selected." +msgstr "Není vybrán žádný profil." + +#: src/supertux/menu/profile_menu.cpp:91 src/supertux/menu/profile_menu.cpp:93 +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Rename" +msgstr "Přejmenovat" + +#: src/supertux/menu/profile_menu.cpp:98 +#: src/supertux/menu/profile_menu.cpp:100 +msgid "Reset" +msgstr "Resetovat" + +#: src/supertux/menu/profile_menu.cpp:103 +#: src/supertux/menu/profile_menu.cpp:105 +msgid "Reset all" +msgstr "Resetovat vše" + +#: src/supertux/menu/profile_menu.cpp:113 +#: src/supertux/menu/profile_menu.cpp:115 +msgid "Delete all" +msgstr "Odstranit vše" + +#: src/supertux/menu/profile_menu.cpp:148 +#, c++-format +msgid "" +"This will reset all game progress on the profile \"{}\".\n" +"Are you sure?" +msgstr "Tato akce odstraní veškerý postup profilu \"{}\".\nJsi si jist/a?" -#: src/supertux/menu/profile_menu.cpp:73 +#: src/supertux/menu/profile_menu.cpp:157 msgid "This will reset your game progress on all profiles. Are you sure?" msgstr "Tato akce smaže postup ve všech profilech. Jsi si jist/a?" -#: src/supertux/menu/editor_levelset_menu.cpp:59 +#: src/supertux/menu/profile_menu.cpp:167 +#, c++-format +msgid "" +"This will delete the profile \"{}\",\n" +"including all game progress on it. Are you sure?" +msgstr "Tato akce odstraní profil \"{}\",\nvčetně veškerého postupu. Jsi si jist/a?" + +#: src/supertux/menu/profile_menu.cpp:178 +msgid "" +"This will delete all profiles, including all game progress on them.\n" +"Are you sure?" +msgstr "Tato akce odstraní všechny profily, včetně veškerého postupu.\nJsi si jist/a?" + +#: src/supertux/menu/editor_levelset_menu.cpp:53 #: src/supertux/menu/editor_new_levelset_menu.cpp:35 msgid "Description" msgstr "Popis" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:48 -#: data//images/engine/editor/objects.stoi:371 -msgid "Worldmap" -msgstr "Svět" +#: src/supertux/menu/editor_levelset_menu.cpp:55 +msgid "Title Screen Level" +msgstr "Úroveň úvodní obrazovky" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:45 -msgid "Levelset" -msgstr "Sada úrovní" +#: src/supertux/menu/editor_levelset_menu.cpp:56 +msgid "A level to be used for the title screen, after exiting the world." +msgstr "Úroveň použita na úvodní obrazovce po zavření světa." -#: src/supertux/menu/addon_menu.cpp:51 -msgid "World" -msgstr "Svět" +#: src/supertux/menu/multiplayer_players_menu.cpp:46 +msgid "Add Player" +msgstr "Přidat hráče" -#: src/supertux/menu/addon_menu.cpp:54 -msgid "Add-on" -msgstr "Doplněk" +#: src/supertux/menu/multiplayer_players_menu.cpp:59 +msgid "Remove Last Player" +msgstr "Odstranit posledního hráče" -#: src/supertux/menu/addon_menu.cpp:60 -msgid "Unknown" -msgstr "Neznámý" +#: src/supertux/menu/multiplayer_players_menu.cpp:62 +msgid "" +"Warning: The player you are trying to\n" +"remove is currently in-game.\n" +"\n" +"Do you wish to remove them anyways?" +msgstr "Upozornění: Hráč, kterého chceš odstranit,\nmá aktuálně rozehranou hru.\n\nJsi si jist/a?" + +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Language Packs" +msgstr "Nainstalované balíky jazyků" + +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Add-ons" +msgstr "Nainstalované doplňky" -#: src/supertux/menu/addon_menu.cpp:71 -#, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" od autora \"%s\"" +#: src/supertux/menu/addon_menu.cpp:76 src/supertux/menu/addon_menu.cpp:117 +msgid "No language packs installed" +msgstr "Nejsou nainstalovány žádné balíky jazyků" -#: src/supertux/menu/addon_menu.cpp:129 +#: src/supertux/menu/addon_menu.cpp:76 msgid "No Add-ons installed" msgstr "Nejsou nainstalovány žádné doplňky" -#: src/supertux/menu/addon_menu.cpp:133 -msgid "No Add-ons found" -msgstr "Nebyly nalezeny žádné doplňky" +#: src/supertux/menu/addon_menu.cpp:124 +#, c++-format +msgid "{} {}*UPDATE*" +msgstr "{} {}*AKTUALIZOVAT*" -#: src/supertux/menu/addon_menu.cpp:179 -#, c-format -msgid "Install %s *NEW*" -msgstr "Instalovat %s *NOVÝ*" +#: src/supertux/menu/addon_menu.cpp:130 +#, c++-format +msgid "{}{}" +msgstr "{}{}" -#: src/supertux/menu/addon_menu.cpp:190 -#, c-format -msgid "Install %s" -msgstr "Instalovat %s" +#: src/supertux/menu/addon_menu.cpp:140 +msgid "No updates available." +msgstr "Nejsou dostupné žádné aktualizace." -#: src/supertux/menu/addon_menu.cpp:199 -msgid "No new Add-ons found" -msgstr "Nebyly nalezeny žádné nové doplňky" +#: src/supertux/menu/addon_menu.cpp:144 +#, c++-format +msgid "{} {} available" +msgstr "{} {} dostupná" -#: src/supertux/menu/addon_menu.cpp:205 -msgid "Check Online (disabled)" -msgstr "Zkontrolovat dostupnost doplňků online (vypnuto)" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "update" +msgstr "aktualizace" -#: src/supertux/menu/addon_menu.cpp:209 -msgid "Check Online" -msgstr "Zkontrolovat dostupnost doplňků online" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "updates" +msgstr "aktualizace" -#: src/supertux/menu/addon_menu.cpp:286 -msgid "Downloading Add-On Repository Index" -msgstr "Stahuji informace o doplňcích" +#: src/supertux/menu/addon_menu.cpp:146 +msgid "Check for updates" +msgstr "Zkontrolovat dostupnost aktualizací" -#: src/supertux/menu/addon_menu.cpp:301 -#, c-format -msgid "Downloading %s" -msgstr "Stahuji %s" +#: src/supertux/menu/addon_menu.cpp:150 +msgid "Browse language packs" +msgstr "Procházet balíky jazyků" -#: src/supertux/menu/addon_menu.cpp:348 -msgid "" -"Please restart SuperTux\n" -"for these changes to take effect." -msgstr "Prosím, restartuj SuperTux,\naby se tyto změny uplatnily." +#: src/supertux/menu/addon_menu.cpp:150 +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Add-ons" +msgstr "Procházet doplňky" + +#: src/supertux/menu/addon_menu.cpp:151 +msgid "Install from file" +msgstr "Nainstalovat ze souboru" + +#: src/supertux/menu/addon_menu.cpp:208 +msgid "Checking for updates..." +msgstr "Hledám aktualizace..." #: src/supertux/menu/editor_new_levelset_menu.cpp:31 msgid "New World" @@ -2616,6 +3647,53 @@ msgstr "Pojmenuj, prosím, sadu úrovní." msgid "Story Mode" msgstr "Příběh" +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Language Packs" +msgstr "Balíky jazyků" + +#: src/supertux/menu/addon_browse_menu.cpp:112 +#, c++-format +msgid "Page {}/{}" +msgstr "Strana {}/{}" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new language packs available" +msgstr "Nejsou dostupné žádné nové balíky jazyků" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new Add-ons available" +msgstr "Nejsou dostupné žádné nové doplňky" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No language packs available" +msgstr "Nejsou dostupné žádné balíky jazyků" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No Add-ons available" +msgstr "Nejsou dostupné žádné doplňky" + +#: src/supertux/menu/addon_browse_menu.cpp:135 +#: src/supertux/menu/addon_browse_menu.cpp:139 +msgid "Previous page" +msgstr "Předchozí strana" + +#: src/supertux/menu/addon_browse_menu.cpp:143 +#: src/supertux/menu/addon_browse_menu.cpp:147 +msgid "Next page" +msgstr "Další strana" + +#: src/supertux/menu/addon_browse_menu.cpp:154 +msgid "Check Online (disabled)" +msgstr "Zkontrolovat dostupnost doplňků online (vypnuto)" + +#: src/supertux/menu/addon_browse_menu.cpp:158 +msgid "Check Online" +msgstr "Zkontrolovat dostupnost doplňků online" + +#: src/supertux/menu/addon_browse_menu.cpp:195 +msgid "Downloading Add-On Repository Index" +msgstr "Stahuji informace o doplňcích" + #: src/supertux/menu/web_asset_menu.cpp:42 msgid "New files location" msgstr "Umístění nových souborů" @@ -2636,207 +3714,235 @@ msgstr "Načíst částice ze souboru" msgid "Open" msgstr "Otevřít" -#: src/supertux/menu/game_menu.cpp:31 -msgid "Are you sure?" -msgstr "Jsi si jist/a?" - -#: src/supertux/menu/game_menu.cpp:54 src/supertux/menu/worldmap_menu.cpp:30 +#: src/supertux/menu/game_menu.cpp:51 src/supertux/menu/worldmap_menu.cpp:30 msgid "Continue" msgstr "Pokračovat" -#: src/supertux/menu/game_menu.cpp:55 +#: src/supertux/menu/game_menu.cpp:52 msgid "Restart Level" msgstr "Restartovat úroveň" -#: src/supertux/menu/game_menu.cpp:58 +#: src/supertux/menu/game_menu.cpp:55 msgid "Restart from Checkpoint" msgstr "Vrátit se na uložovák" -#: src/supertux/menu/game_menu.cpp:63 +#: src/supertux/menu/game_menu.cpp:60 msgid "Abort Level" msgstr "Opustit úroveň" -#: src/supertux/menu/keyboard_menu.cpp:32 -#: src/supertux/menu/joystick_menu.cpp:69 +#: src/supertux/menu/game_menu.cpp:76 src/supertux/menu/game_menu.cpp:87 +#: src/supertux/menu/game_menu.cpp:99 +msgid "Are you sure?" +msgstr "Jsi si jist/a?" + +#: src/supertux/menu/profile_name_menu.cpp:36 +#, c++-format +msgid "Rename \"{}\"" +msgstr "Přejmenovat \"{}\"" + +#: src/supertux/menu/profile_name_menu.cpp:36 +msgid "Add profile" +msgstr "Přidat profil" + +#: src/supertux/menu/profile_name_menu.cpp:40 +msgid "Profile names must have a maximum of 20 characters." +msgstr "Názvy profilů mohou obsahovat nejvýše 20 znaků." + +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Create" +msgstr "Vytvořit" + +#: src/supertux/menu/profile_name_menu.cpp:56 +msgid "" +"Profile names must have a maximum of 20 characters.\n" +"Please choose a different name." +msgstr "Názvy profilů mohou mít nejvýše 20 znaků.\nZvol, prosím, jiný název." + +#: src/supertux/menu/profile_name_menu.cpp:77 +msgid "An error occurred while creating the profile." +msgstr "Při vytváření profilu došlo k chybě." + +#: src/supertux/menu/keyboard_menu.cpp:36 +#: src/supertux/menu/joystick_menu.cpp:71 msgid "Up" msgstr "Nahoru" -#: src/supertux/menu/keyboard_menu.cpp:33 -#: src/supertux/menu/joystick_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:37 +#: src/supertux/menu/joystick_menu.cpp:72 msgid "Down" msgstr "Dolů" -#: src/supertux/menu/keyboard_menu.cpp:36 -#: src/supertux/menu/joystick_menu.cpp:73 +#: src/supertux/menu/keyboard_menu.cpp:40 +#: src/supertux/menu/joystick_menu.cpp:75 msgid "Jump" msgstr "Skok" -#: src/supertux/menu/keyboard_menu.cpp:38 -#: src/supertux/menu/joystick_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:43 +#: src/supertux/menu/joystick_menu.cpp:78 msgid "Peek Left" msgstr "Nahlédnout doleva" -#: src/supertux/menu/keyboard_menu.cpp:39 -#: src/supertux/menu/joystick_menu.cpp:77 +#: src/supertux/menu/keyboard_menu.cpp:44 +#: src/supertux/menu/joystick_menu.cpp:79 msgid "Peek Right" msgstr "Nahlédnout doprava" -#: src/supertux/menu/keyboard_menu.cpp:40 -#: src/supertux/menu/joystick_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:45 +#: src/supertux/menu/joystick_menu.cpp:80 msgid "Peek Up" msgstr "Nahlédnout nahoru" -#: src/supertux/menu/keyboard_menu.cpp:41 -#: src/supertux/menu/joystick_menu.cpp:79 +#: src/supertux/menu/keyboard_menu.cpp:46 +#: src/supertux/menu/joystick_menu.cpp:81 msgid "Peek Down" msgstr "Nahlédnout dolů" -#: src/supertux/menu/keyboard_menu.cpp:43 -#: src/supertux/menu/joystick_menu.cpp:81 +#: src/supertux/menu/keyboard_menu.cpp:51 +#: src/supertux/menu/joystick_menu.cpp:83 msgid "Console" msgstr "Konzole" -#: src/supertux/menu/keyboard_menu.cpp:44 -#: src/supertux/menu/joystick_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:52 +#: src/supertux/menu/joystick_menu.cpp:84 msgid "Cheat Menu" msgstr "Nabídka podvodů" -#: src/supertux/menu/keyboard_menu.cpp:45 -#: src/supertux/menu/joystick_menu.cpp:83 +#: src/supertux/menu/keyboard_menu.cpp:53 +#: src/supertux/menu/joystick_menu.cpp:85 msgid "Debug Menu" msgstr "Ladicí nabídka" -#: src/supertux/menu/keyboard_menu.cpp:47 -#: src/supertux/menu/joystick_menu.cpp:85 +#: src/supertux/menu/keyboard_menu.cpp:56 +#: src/supertux/menu/joystick_menu.cpp:87 msgid "Jump with Up" msgstr "Skočit stiskem klávesy nahoru" -#: src/supertux/menu/keyboard_menu.cpp:60 +#: src/supertux/menu/keyboard_menu.cpp:82 msgid "Up cursor" msgstr "Šipka nahoru" -#: src/supertux/menu/keyboard_menu.cpp:62 +#: src/supertux/menu/keyboard_menu.cpp:84 msgid "Down cursor" msgstr "Šipka dolů" -#: src/supertux/menu/keyboard_menu.cpp:64 +#: src/supertux/menu/keyboard_menu.cpp:86 msgid "Left cursor" msgstr "Šipka vlevo" -#: src/supertux/menu/keyboard_menu.cpp:66 +#: src/supertux/menu/keyboard_menu.cpp:88 msgid "Right cursor" msgstr "Šipka vpravo" -#: src/supertux/menu/keyboard_menu.cpp:68 +#: src/supertux/menu/keyboard_menu.cpp:90 msgid "Return" msgstr "Enter" -#: src/supertux/menu/keyboard_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:92 msgid "Space" msgstr "Mezerník" -#: src/supertux/menu/keyboard_menu.cpp:72 +#: src/supertux/menu/keyboard_menu.cpp:94 msgid "Right Shift" msgstr "Pravý shift" -#: src/supertux/menu/keyboard_menu.cpp:74 +#: src/supertux/menu/keyboard_menu.cpp:96 msgid "Left Shift" msgstr "Levý shift" -#: src/supertux/menu/keyboard_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:98 msgid "Right Control" msgstr "Pravý Ctrl" -#: src/supertux/menu/keyboard_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:100 msgid "Left Control" msgstr "Levý Ctrl" -#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/keyboard_menu.cpp:102 msgid "Right Alt" msgstr "Alt Gr" -#: src/supertux/menu/keyboard_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:104 msgid "Left Alt" msgstr "Alt" -#: src/supertux/menu/keyboard_menu.cpp:84 +#: src/supertux/menu/keyboard_menu.cpp:106 msgid "Right Command" msgstr "Pravý Cmd" -#: src/supertux/menu/keyboard_menu.cpp:86 +#: src/supertux/menu/keyboard_menu.cpp:108 msgid "Left Command" msgstr "Levý Cmd" -#: src/supertux/menu/keyboard_menu.cpp:100 +#: src/supertux/menu/keyboard_menu.cpp:122 msgid "Press Key" msgstr "Stiskni klávesu" -#: src/supertux/menu/language_menu.cpp:40 +#: src/supertux/menu/language_menu.cpp:43 msgid "Language" msgstr "Jazyk" -#: src/supertux/menu/language_menu.cpp:42 +#: src/supertux/menu/language_menu.cpp:45 msgid "" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:55 +#: src/supertux/menu/joystick_menu.cpp:57 msgid "Manual Configuration" msgstr "Ruční konfigurace" -#: src/supertux/menu/joystick_menu.cpp:57 +#: src/supertux/menu/joystick_menu.cpp:59 msgid "" "Use manual configuration instead of SDL2's automatic GameController support" msgstr "Použít ruční konfiguraci místo automatické podpory SDL2 GameController" -#: src/supertux/menu/joystick_menu.cpp:75 +#: src/supertux/menu/joystick_menu.cpp:77 msgid "Pause/Menu" msgstr "Pauza/Menu" -#: src/supertux/menu/joystick_menu.cpp:91 +#: src/supertux/menu/joystick_menu.cpp:93 msgid "No Joysticks found" msgstr "Nenalezen žádný joystick" -#: src/supertux/menu/joystick_menu.cpp:92 +#: src/supertux/menu/joystick_menu.cpp:94 msgid "Scan for Joysticks" msgstr "Vyhledat joysticky" -#: src/supertux/menu/joystick_menu.cpp:125 +#: src/supertux/menu/joystick_menu.cpp:127 msgid "Press Button" msgstr "Stiskni tlačítko" -#: src/supertux/menu/joystick_menu.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:164 msgid "Axis " msgstr "Osa" -#: src/supertux/menu/joystick_menu.cpp:165 +#: src/supertux/menu/joystick_menu.cpp:167 msgid "-" msgstr "-" -#: src/supertux/menu/joystick_menu.cpp:167 +#: src/supertux/menu/joystick_menu.cpp:169 msgid "+" msgstr "+" -#: src/supertux/menu/joystick_menu.cpp:174 +#: src/supertux/menu/joystick_menu.cpp:176 msgid "X2" msgstr "X2" -#: src/supertux/menu/joystick_menu.cpp:176 +#: src/supertux/menu/joystick_menu.cpp:178 msgid "Y2" msgstr "Y2" -#: src/supertux/menu/joystick_menu.cpp:189 +#: src/supertux/menu/joystick_menu.cpp:191 msgid "Hat Up" msgstr "Nahoru/joystick" -#: src/supertux/menu/joystick_menu.cpp:193 +#: src/supertux/menu/joystick_menu.cpp:195 msgid "Hat Down" msgstr "Dolů/joystick" -#: src/supertux/menu/joystick_menu.cpp:197 +#: src/supertux/menu/joystick_menu.cpp:199 msgid "Hat Left" msgstr "Vlevo/joystick" -#: src/supertux/menu/joystick_menu.cpp:201 +#: src/supertux/menu/joystick_menu.cpp:203 msgid "Hat Right" msgstr "Vpravo/joystick" @@ -2848,52 +3954,47 @@ msgstr "Pauza" msgid "Leave World" msgstr "Opustit svět" -#: src/supertux/menu/download_dialog.cpp:27 +#: src/supertux/menu/download_dialog.cpp:42 msgid "Abort Download" msgstr "Přerušit stahování" -#: src/supertux/menu/download_dialog.cpp:42 -msgid "Error:\n" -msgstr "Chyba:\n" - -#: src/supertux/menu/download_dialog.cpp:96 -msgid "Close" -msgstr "Zavřít" - -#: src/supertux/menu/cheat_menu.cpp:33 -msgid "Bonus: Fire x 64" -msgstr "Bonus: 64 x oheň " - -#: src/supertux/menu/cheat_menu.cpp:34 -msgid "Bonus: Ice x 64" -msgstr "Bonus: 64 x led" - -#: src/supertux/menu/cheat_menu.cpp:35 -msgid "Bonus: Air x 64" -msgstr "Bonus: 64 x vzduch" - -#: src/supertux/menu/cheat_menu.cpp:36 -msgid "Bonus: Earth x 64" -msgstr "Bonus: 64 x země" +#: src/supertux/menu/download_dialog.cpp:59 +#, c++-format +msgid "" +"Error:\n" +"{}" +msgstr "Chyba:\n{}" -#: src/supertux/menu/cheat_menu.cpp:37 +#: src/supertux/menu/cheat_menu.cpp:38 msgid "Bonus: Star" msgstr "Bonus: hvězda" -#: src/supertux/menu/cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:39 msgid "Shrink Tux" msgstr "Zmenšit Tuxe" -#: src/supertux/menu/cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:40 msgid "Kill Tux" msgstr "Zabít Tuxe" +#: src/supertux/menu/cheat_menu.cpp:55 +msgid "Prevent Death" +msgstr "Prevence smrti" + +#: src/supertux/menu/addon_file_install_menu.cpp:32 +msgid "Install Add-on from file" +msgstr "Nainstalovat doplněk ze souboru" + +#: src/supertux/menu/addon_file_install_menu.cpp:34 +msgid "Drag and drop add-on ZIP archive" +msgstr "Přetáhni myší ZIP soubor doplňku" + #: src/supertux/menu/particle_editor_menu.cpp:32 msgid "Particle Editor" msgstr "Editor částic" #: src/supertux/menu/particle_editor_menu.cpp:36 -#: src/supertux/menu/editor_menu.cpp:45 +#: src/supertux/menu/editor_menu.cpp:60 msgid "Return to Editor" msgstr "Návrat do editoru" @@ -2918,7 +4019,7 @@ msgid "Open Particle Directory" msgstr "Otevřít adresář s částicemi" #: src/supertux/menu/particle_editor_menu.cpp:45 -#: src/supertux/menu/editor_menu.cpp:88 +#: src/supertux/menu/editor_menu.cpp:118 msgid "Keyboard Shortcuts" msgstr "Klávesové zkratky" @@ -2926,7 +4027,7 @@ msgstr "Klávesové zkratky" msgid "Exit Particle Editor" msgstr "Opustit editor částic" -#: src/supertux/menu/particle_editor_menu.cpp:120 +#: src/supertux/menu/particle_editor_menu.cpp:121 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -2938,18 +4039,18 @@ msgid "" "Ctrl+Y = Redo" msgstr "Klávesové zkratky:\n---------------------\nESC = otevřít menu\nCtrl+S = uložit\nCtrl+Shift+S = uložit jako\nCtrl+O = otevřít\nCtrl+Z = od-udělat\nCtrl+Y = udělat znovu" -#: src/supertux/menu/particle_editor_menu.cpp:121 -#: src/supertux/menu/editor_menu.cpp:176 +#: src/supertux/menu/particle_editor_menu.cpp:122 +#: src/supertux/menu/editor_menu.cpp:206 msgid "Got it!" msgstr "Rozumím!" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:86 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Worldmap Settings" msgstr "Nastavení mapy světa" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:86 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Level Settings" msgstr "Nastavení úrovně" @@ -2957,7 +4058,7 @@ msgstr "Nastavení úrovně" msgid "Author" msgstr "Autor" -#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1166 +#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1253 msgid "Contact" msgstr "Kontakt" @@ -2989,99 +4090,129 @@ msgstr "Pojmenujte prosím autora této úrovně." msgid "Please enter a license for this level." msgstr "Urči, prosím, licenci této úrovně" -#: src/supertux/menu/editor_menu.cpp:38 +#: src/supertux/menu/editor_menu.cpp:53 msgid "tiny tile (4px)" msgstr "osmina dlaždice (4px)" -#: src/supertux/menu/editor_menu.cpp:39 +#: src/supertux/menu/editor_menu.cpp:54 msgid "small tile (8px)" msgstr "čtvrtina dlaždice (8 px)" -#: src/supertux/menu/editor_menu.cpp:40 +#: src/supertux/menu/editor_menu.cpp:55 msgid "medium tile (16px)" msgstr "polovina dlaždice (16px)" -#: src/supertux/menu/editor_menu.cpp:41 +#: src/supertux/menu/editor_menu.cpp:56 msgid "big tile (32px)" msgstr "celá dlaždice (32px)" -#: src/supertux/menu/editor_menu.cpp:46 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Worldmap" msgstr "Uložit mapu světa" -#: src/supertux/menu/editor_menu.cpp:46 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Level" msgstr "Uložit úroveň" -#: src/supertux/menu/editor_menu.cpp:55 +#: src/supertux/menu/editor_menu.cpp:65 msgid "Test Level" msgstr "Vyzkoušet úroveň" -#: src/supertux/menu/editor_menu.cpp:59 +#: src/supertux/menu/editor_menu.cpp:67 msgid "Test Worldmap" msgstr "Vyzkoušet mapu světa" -#: src/supertux/menu/editor_menu.cpp:62 +#: src/supertux/menu/editor_menu.cpp:72 msgid "Share Level" msgstr "Sdílet úroveň" -#: src/supertux/menu/editor_menu.cpp:64 +#: src/supertux/menu/editor_menu.cpp:74 msgid "Package Add-On" msgstr "Zabalit jako doplněk" -#: src/supertux/menu/editor_menu.cpp:66 +#: src/supertux/menu/editor_menu.cpp:76 msgid "Open Level Directory" msgstr "Otevřít adresář s úrovní" -#: src/supertux/menu/editor_menu.cpp:70 +#: src/supertux/menu/editor_menu.cpp:79 msgid "Edit Another Level" msgstr "Upravit jinou úroveň" -#: src/supertux/menu/editor_menu.cpp:73 +#: src/supertux/menu/editor_menu.cpp:81 msgid "Edit Another World" msgstr "Upravit jiný svět" -#: src/supertux/menu/editor_menu.cpp:77 +#: src/supertux/menu/editor_menu.cpp:86 +msgid "Convert all tiles in the level using converters." +msgstr "Konvertuje všechny dlaždice v úrovni pomocí převodníků." + +#: src/supertux/menu/editor_menu.cpp:90 msgid "Grid Size" msgstr "Velikost mřížky" -#: src/supertux/menu/editor_menu.cpp:78 +#: src/supertux/menu/editor_menu.cpp:91 msgid "Show Grid" msgstr "Zobrazit mřížku" -#: src/supertux/menu/editor_menu.cpp:79 +#: src/supertux/menu/editor_menu.cpp:92 msgid "Grid Snapping" msgstr "Zarovnávat k mřížce" -#: src/supertux/menu/editor_menu.cpp:80 +#: src/supertux/menu/editor_menu.cpp:93 msgid "Render Background" msgstr "Vykreslit pozadí" -#: src/supertux/menu/editor_menu.cpp:81 +#: src/supertux/menu/editor_menu.cpp:94 msgid "Render Light" msgstr "Vykreslit osvětlení" -#: src/supertux/menu/editor_menu.cpp:82 +#: src/supertux/menu/editor_menu.cpp:95 msgid "Autotile Mode" msgstr "Automatické vyhlazování" -#: src/supertux/menu/editor_menu.cpp:83 +#: src/supertux/menu/editor_menu.cpp:96 msgid "Enable Autotile Help" msgstr "Nápověda k automatickému vyhlazování" -#: src/supertux/menu/editor_menu.cpp:84 +#: src/supertux/menu/editor_menu.cpp:97 +msgid "Enable Object Undo Tracking" +msgstr "Povolit ukládání objektových akcí pro krok zpět/vpřed" + +#: src/supertux/menu/editor_menu.cpp:100 +msgid "Undo Stack Size" +msgstr "Velikost paměti pro ukládání akcí pro kroky zpět/vpřed" + +#: src/supertux/menu/editor_menu.cpp:102 msgid "Autosave Frequency" msgstr "Četnost automatického ukládání" -#: src/supertux/menu/editor_menu.cpp:91 +#: src/supertux/menu/editor_menu.cpp:108 +msgid "Check for Deprecated Tiles" +msgstr "Zkontrolovat přítomnost deprekovaných dlaždic" + +#: src/supertux/menu/editor_menu.cpp:109 +msgid "Check if any deprecated tiles are currently present in the level." +msgstr "Zkontroluje, zda tato úroveň obsahuje deprekované dlaždice." + +#: src/supertux/menu/editor_menu.cpp:110 +msgid "Show Deprecated Tiles" +msgstr "Zobrazit deprekované dlaždice" + +#: src/supertux/menu/editor_menu.cpp:111 +msgid "" +"Indicate all deprecated tiles on the active tilemap, without the need of " +"hovering over." +msgstr "Indikuje všechny deprekované dlaždice na aktivní mapě dlaždic bez nutnosti na ně ukázat myši." + +#: src/supertux/menu/editor_menu.cpp:121 msgid "Exit Level Editor" msgstr "Ukončit editor" -#: src/supertux/menu/editor_menu.cpp:140 +#: src/supertux/menu/editor_menu.cpp:170 msgid "Do you want to package this world as an add-on?" msgstr "Chceš zabalit tento svět jako doplněk?" -#: src/supertux/menu/editor_menu.cpp:163 +#: src/supertux/menu/editor_menu.cpp:196 msgid "" "We encourage you to share your levels in the SuperTux forum.\n" "To find your level, click the\n" @@ -3089,7 +4220,7 @@ msgid "" "Do you want to go to the forum now?" msgstr "Doporučujeme sdílet Tvé úrovně na fóru SuperTuxe.\nPro nalezení své úrovně klepni\nna položku \"Otevřít adresář s úrovní\".\nChceš navštívit fórum nyní? " -#: src/supertux/menu/editor_menu.cpp:175 +#: src/supertux/menu/editor_menu.cpp:205 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -3100,54 +4231,217 @@ msgid "" "Ctrl+Y = Redo\n" "F6 = Render Light\n" "F7 = Grid Snapping\n" -"F8 = Show Grid" -msgstr "Klávesové zkratky:\n---------------------\nEsc = otevřít menu\nCtrl+S = uložit\nCtrl+T = vyzkoušet\nCtrl+Z = vrátit změnu\nCtrl+Y = vrátit vrácení změny\nF6 = vykreslit světlo\nF7 = zarovnání k mřížce\nF8 = zobrazit mřížku" +"F8 = Show Grid\n" +"Ctrl++ or Ctrl+Scroll Up = Zoom In\n" +"Ctrl+- or Ctrl+Scroll Down = Zoom Out\n" +"Ctrl+D = Reset Zoom\n" +"\n" +"Scripting Shortcuts:\n" +" ------------- \n" +"Home = Go to beginning of line\n" +"End = Go to end of line\n" +"Left arrow = Go back in text\n" +"Right arrow = Go forward in text\n" +"Backspace = Delete in front of text cursor\n" +"Delete = Delete behind text cursor\n" +"Ctrl+X = Cut whole line\n" +"Ctrl+C = Copy whole line\n" +"Ctrl+V = Paste\n" +"Ctrl+D = Duplicate line\n" +"Ctrl+Z = Undo\n" +"Ctrl+Y = Redo" +msgstr "Klávesové zkratky:\n---------------------\nEsc = otevřít nabídku\nCtrl+S = uložit\nCtrl+T = otestovat úroveň\nCtrl+Z = krok zpět\nCtrl+Y = krok vpřed\nF6 = vykreslovat světlo\nF7 = zarovnávat k mřížce\nF8 = ukázat/skrýt mřížku\nCtrl++ nebo Ctrl+kolečko myši nahoru = přiblížit\nCtrl+- nebo Ctrl+kolečko myši dolů = oddálit\nCtrl+D = resetovat přiblížení\n\nSkriptovací klávesové zkratky:\n---------------------\nHome = jít na začátek řádky\nEnd = jít na konec řádky\nŠipka doleva = jít zpět v textu\nŠipka doprava = jít vpřed v textu\nBackspace = mazat před kurzorem\nDelete = mazat za kurzorem\nCtrl+X = vyjmout celou řádku\nCtrl+C = kopírovat celou řádku\nCtrl+V = vložit\nCtrl+D = duplikovat řádku\nCtrl+Z = krok zpět\nCtrl+Y = krok vpřed" + +#: src/supertux/menu/editor_menu.cpp:232 +msgid "Deprecated tiles are still present in the level." +msgstr "V úrovni jsou stále přítomné deprekované dlaždice" + +#: src/supertux/menu/editor_menu.cpp:239 +msgid "Do you want to show all deprecated tiles on active tilemaps?" +msgstr "Chceš zobrazit všechny deprekované dlaždice na aktivních mapách dlaždic?" + +#: src/supertux/menu/editor_menu.cpp:246 +msgid "There are no more deprecated tiles in the level!" +msgstr "V úrovni již nejsou žádné deprekované dlaždice!" + +#: src/supertux/menu/multiplayer_player_menu.cpp:40 +msgid "Play with the keyboard" +msgstr "Hrát klávesnicí" + +#: src/supertux/menu/multiplayer_player_menu.cpp:58 +msgid "Remove Player" +msgstr "Odstranit hráče" + +#: src/supertux/menu/multiplayer_player_menu.cpp:82 +msgid "Respawn Player" +msgstr "Znovu zrodit hráče" + +#: src/supertux/menu/multiplayer_player_menu.cpp:108 +msgid "Spawn Player" +msgstr "Zrodit hráče" + +#: src/supertux/menu/multiplayer_player_menu.cpp:136 +msgid "Controllers" +msgstr "Ovladače" + +#: src/supertux/menu/multiplayer_player_menu.cpp:152 +msgid "" +"This controller does not support rumbling;\n" +"please check the controllers manually." +msgstr "Tento ovladač nepodporuje vibrace;\nZkontroluj, prosím, ovladače ručně." + +#: src/supertux/menu/multiplayer_player_menu.cpp:157 +msgid "" +"This SuperTux build does not support rumbling\n" +"controllers; please check the controllers manually." +msgstr "Tato kopie SuperTuxe nepodporuje ovladače s vibracemi;\nZkontroluj, prosím, ovladače ručně." + +#: src/supertux/menu/multiplayer_player_menu.cpp:184 +msgid "" +"This joystick does not support rumbling;\n" +"please check the joysticks manually." +msgstr "Tento joystick nepodporuje vibrace;\nZkontroluj, prosím, joysticky ručně." + +#: src/supertux/menu/multiplayer_player_menu.cpp:189 +msgid "" +"This SuperTux build does not support rumbling\n" +"joysticks; please check the joysticks manually." +msgstr "Tato kopie SuperTuxe nepodporuje joysticky s vibracemi;\nZkontroluj, prosím, joysticky ručně." + +#: src/supertux/menu/editor_delete_level_menu.cpp:59 +msgid "No levels available" +msgstr "Nejsou dostupné žádné úrovně" -#: src/supertux/menu/editor_delete_level_menu.cpp:53 -msgid "You cannot delete level that you are editing!" -msgstr "Nemůžeš odstranit úroveň, která je právě otevřena!" +#: src/supertux/menu/editor_delete_level_menu.cpp:79 +msgid "You cannot delete the level that you are editing!" +msgstr "Nemůžeš odstranit úroveň, kterou upravuješ!" -#: src/supertux/levelintro.cpp:136 -#, c-format -msgid "contributed by %s" -msgstr "příspěl/a %s" +#: src/supertux/menu/editor_delete_level_menu.cpp:82 +#, c++-format +msgid "You are about to delete level \"{}\". Are you sure?" +msgstr "Chystáš se odstranit úroveň \"{}\". Jsi si jist/a?" -#: src/supertux/levelintro.cpp:169 +#: src/supertux/levelintro.cpp:137 +#, c++-format +msgid "contributed by {}" +msgstr "přispěl/a {}" + +#: src/supertux/levelintro.cpp:184 msgid "Badguys killed" msgstr "Zabitých zlejšků" -#: src/supertux/levelintro.cpp:177 +#: src/supertux/levelintro.cpp:192 msgid "Best time" msgstr "Nejlepší čas" -#: src/supertux/levelintro.cpp:181 +#: src/supertux/levelintro.cpp:196 msgid "Level target time" msgstr "Čas" -#: src/supertux/tile_set.cpp:118 +#: src/supertux/tile_set.cpp:113 msgid "Others" msgstr "Nezařazené" -#: src/supertux/moving_object.cpp:55 +#: src/supertux/direction.cpp:67 +msgid "up" +msgstr "nahoru" + +#: src/supertux/direction.cpp:69 +msgid "down" +msgstr "dolů" + +#: src/supertux/moving_object.cpp:63 msgid "Region" msgstr "Oblast" -#: src/supertux/main.cpp:563 +#: src/supertux/main.cpp:801 +#, c++-format +msgid "New release: SuperTux v{}!" +msgstr "Nová verze: SuperTux v{}!" + +#: src/supertux/main.cpp:804 +#, c++-format msgid "" -"The UBports version is under heavy development!\n" -"If you encounter issues, PLEASE contact the maintainter\n" -"at https://github.com/supertux/supertux/issues or on the\n" -"Open Store's Telegram at https://open-store.io/telegram" -msgstr "Verze pro UBports je v aktivním vývoji!\nPokud narazíš na problémy, PROSÍM, kontaktuj\nvývojáře na https://github.com/supertux/supertux/issues\nnebo na telegramu Open Store: https://open-store.io/telegram" +"A new release of SuperTux (v{}) is available!\n" +"For more information, you can visit the SuperTux website.\n" +"\n" +"Do you want to visit the website now?" +msgstr "Nová verze SuperTuxe (v{}) je dostupná!\nPro více informací můžeš navštívit web SuperTuxe.\n\nChceš web navštívit nyní?" + +#: src/supertux/main.cpp:815 +msgid "Checking for new releases..." +msgstr "Hledám nové verze..." #: src/control/joystick_config.cpp:85 msgid "Joystick Mappings" msgstr "Mapování joysticku" -#: src/worldmap/worldmap_parser.cpp:167 +#: src/worldmap/sprite_change.cpp:91 +msgid "Stay action" +msgstr "Akce při stání" + +#: src/worldmap/sprite_change.cpp:92 +msgid "Initial stay action" +msgstr "Počáteční akce při stání" + +#: src/worldmap/sprite_change.cpp:93 +msgid "Stay group" +msgstr "Skupina" + +#: src/worldmap/sprite_change.cpp:94 +msgid "Change on touch" +msgstr "Změnit při doteku" + +#: src/worldmap/special_tile.hpp:36 +msgid "Special Tile" +msgstr "Zvláštní prvek" + +#: src/worldmap/level_tile.hpp:36 src/worldmap/level_tile.cpp:161 +msgid "Level" +msgstr "Úroveň" + +#: src/worldmap/teleporter.cpp:50 +msgid "Automatic" +msgstr "Automatický" + +#: src/worldmap/teleporter.cpp:51 +msgid "Target worldmap" +msgstr "Cílová mapa" + +#: src/worldmap/sprite_change.hpp:35 +msgid "Sprite Change" +msgstr "Změna vzhledu" + +#: src/worldmap/special_tile.cpp:75 +msgid "Show message" +msgstr "Ukázat zprávu" + +#: src/worldmap/level_tile.cpp:84 msgid "" msgstr "<úroveň chybí>" +#: src/worldmap/level_tile.cpp:162 +msgid "Outro script" +msgstr "Cílový skript" + +#: src/worldmap/level_tile.cpp:163 +msgid "Auto play" +msgstr "Hned spustit" + +#: src/worldmap/level_tile.cpp:164 +msgid "Title colour" +msgstr "Barva titulu" + +#: src/worldmap/teleporter.hpp:34 +msgid "Teleporter" +msgstr "Teleport" + +#: src/editor/tip.cpp:80 +msgid "" +"This object's current functionality is deprecated.\n" +"Updating to get its latest functionality is recommended." +msgstr "Funkcionalita tohoto objektu je deprekovaná.\nDoporučujeme objekt aktualizovat." + #: src/editor/node_marker.cpp:122 msgid "Path Node" msgstr "Uzel cesty" @@ -3160,85 +4454,82 @@ msgstr "Stiskni CTRL pro pohyb Bezierovými křivkami" msgid "Easing" msgstr "Zvolnění" -#: src/editor/object_settings.cpp:119 -msgid "up" -msgstr "nahoru" - -#: src/editor/object_settings.cpp:119 -msgid "down" -msgstr "dolů" - -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "West" msgstr "Západ" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "East" msgstr "Východ" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "North" msgstr "Sever" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "South" msgstr "Jih" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "One shot" msgstr "Jednosměrný" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "Ping-pong" msgstr "Tam a zpět" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "Circular" msgstr "Dokola" -#: src/editor/object_settings.cpp:144 -msgid "Unordered" -msgstr "Neřízený" +#: src/editor/layers_widget.cpp:331 +#, c++-format +msgid "Sector: {}" +msgstr "Sektor: {}" -#: src/editor/object_option.cpp:85 +#: src/editor/object_option.cpp:92 msgid "true" msgstr "ano" -#: src/editor/object_option.cpp:85 +#: src/editor/object_option.cpp:92 msgid "false" msgstr "ne" -#: src/editor/object_option.cpp:271 src/editor/object_option.cpp:320 +#: src/editor/object_option.cpp:308 src/editor/object_option.cpp:356 msgid "invalid" msgstr "neplatné" -#: src/editor/object_option.cpp:580 +#: src/editor/object_option.cpp:665 +msgid "Scale X" +msgstr "Šířka" + +#: src/editor/object_option.cpp:666 +msgid "Scale Y" +msgstr "Výška" + +#: src/editor/object_option.cpp:667 +msgid "Offset X" +msgstr "Vodorovný offset" + +#: src/editor/object_option.cpp:668 +msgid "Offset Y" +msgstr "Svislý offset" + +#: src/editor/object_option.cpp:672 src/editor/object_menu.cpp:67 msgid "Remove" msgstr "Smazat" -#: src/editor/object_option.cpp:597 +#: src/editor/object_option.cpp:689 msgid "Test from here" msgstr "Otestovat odsud" -#: src/editor/object_option.cpp:614 +#: src/editor/object_option.cpp:706 msgid "Open Particle Editor" msgstr "Otevřít editor částic" -#: src/editor/worldmap_objects.hpp:56 src/editor/worldmap_objects.cpp:127 -msgid "Level" -msgstr "Úroveň" - -#: src/editor/worldmap_objects.hpp:79 -msgid "Teleporter" -msgstr "Teleport" - -#: src/editor/worldmap_objects.hpp:119 -msgid "Sprite Change" -msgstr "Změna vzhledu" - -#: src/editor/worldmap_objects.hpp:140 -msgid "Special tile" -msgstr "Speciální objekt" +#: src/editor/particle_editor.cpp:114 +msgid "Change texture... ->" +msgstr "Změnit texturu... ->" #: src/editor/particle_editor.cpp:126 msgid "Max amount" @@ -3320,17 +4611,60 @@ msgstr "Vždy zničit" msgid "Offscreen mode" msgstr "Mimo obrazovku" -#: src/editor/particle_editor.cpp:765 +#: src/editor/particle_editor.cpp:229 +msgid "Clear" +msgstr "Vyčistit náhled" + +#: src/editor/particle_editor.cpp:245 +msgid "<- General settings" +msgstr "<- Obecné nastavení" + +#: src/editor/particle_editor.cpp:255 +msgid "Likeliness" +msgstr "Pravděpodobnost výskytu" + +#: src/editor/particle_editor.cpp:266 +msgid "Color (RGBA)" +msgstr "Barva (RGBA)" + +#: src/editor/particle_editor.cpp:311 +msgid "Scale (x, y)" +msgstr "Velikost (x, y)" + +#: src/editor/particle_editor.cpp:332 +msgid "Hitbox scale (x, y)" +msgstr "Velikost hitboxu (x, y)" + +#: src/editor/particle_editor.cpp:353 +msgid "Hitbox offset relative to scale" +msgstr "Offset hitboxu relativně k velikosti" + +#: src/editor/particle_editor.cpp:372 +msgid "Change texture..." +msgstr "Změnit texturu..." + +#: src/editor/particle_editor.cpp:766 msgid "" "This particle configuration contains unsaved changes,\n" "do you want to save?" msgstr "Tato konfigurace částic obsahuje neuložené změny,\nchceš je uložit?" -#: src/editor/particle_editor.cpp:773 +#: src/editor/particle_editor.cpp:774 msgid "Save as" msgstr "Uložit jako" -#: src/editor/editor.cpp:566 +#: src/editor/editor.cpp:577 +msgid "" +"This level contains deprecated tiles.\n" +"It is strongly recommended to replace all deprecated tiles\n" +"to avoid loss of compatibility in future versions." +msgstr "Tato úroveň obsahuje deprekované dlaždice.\nDoporučujeme je všechny nahradit, abys\nv budoucnosti předešel ztrátě kompatibility." + +#: src/editor/editor.cpp:579 +msgid "Tip: Turn on \"Show Deprecated Tiles\" from the level editor menu." +msgstr "Tip: Zapni možnost \"Zobrazit deprekované dlaždice\" z nabídky editoru." + +#: src/editor/editor.cpp:626 msgid "" "Don't forget that your levels and assets\n" "aren't saved between sessions!\n" @@ -3338,11 +4672,15 @@ msgid "" "from the \"Manage Assets\" menu." msgstr "Nezapomeň, že Tvoje úrovně a zdrojové soubory\nse automaticky mezi sezeními neuloží!\nPokud chceš uložit své úrovně, stáhni si je\nz nabídky \"Správa datových souborů\"." -#: src/editor/editor.cpp:582 +#: src/editor/editor.cpp:661 msgid "This level contains unsaved changes, do you want to save?" msgstr "Tato úroveň obsahuje neuložené změny, chceš je uložit?" -#: src/editor/editor.cpp:622 +#: src/editor/editor.cpp:662 +msgid "This level may contain unsaved changes, do you want to save?" +msgstr "V této úrovni jsou neuložené změny, chceš je uložit?" + +#: src/editor/editor.cpp:797 msgid "" "Some obsolete add-ons are still active\n" "and might cause collisions with default Super Tux structure.\n" @@ -3350,93 +4688,71 @@ msgid "" "Disabling these add-ons will not delete your game progress." msgstr "Některé doplňky jsou stále aktivní\na mohou se křížit se strukturou SuperTuxe.\nI po té si je můžeš znovu aktivovat v nabídce.\nJejich deaktivace ti nesmaže uloženou hru." -#: src/editor/editor.cpp:625 +#: src/editor/editor.cpp:800 msgid "Disable add-ons" msgstr "Deaktivovat doplňky" -#: src/editor/editor.cpp:630 +#: src/editor/editor.cpp:805 msgid "Ignore (not advised)" msgstr "Ignorovat (nedoporučujeme)" -#: src/editor/editor.cpp:634 +#: src/editor/editor.cpp:809 msgid "Leave editor" msgstr "Opustit editor" -#: src/editor/editor.cpp:853 +#: src/editor/editor.cpp:1023 msgid "" "Couldn't find a \"main\" sector.\n" "Please change the name of the sector where\n" "you'd like the player to start to \"main\"" msgstr "Nelze nalézt sektor \"main\".\nProsím, změň jméno sektoru,\nkde se má začít, na \"main\"" -#: src/editor/editor.cpp:857 +#: src/editor/editor.cpp:1027 msgid "" "Couldn't find a \"main\" spawnpoint.\n" " Please change the name of the spawnpoint where\n" "you'd like the player to start to \"main\"" msgstr "Nelze nalézt zrodiště \"main\".\nProsím, změň jméno zrodiště,\nkde se má začít, na \"main\"" -#: src/editor/worldmap_objects.cpp:128 -msgid "Outro script" -msgstr "Cílový skript" - -#: src/editor/worldmap_objects.cpp:129 -msgid "Auto play" -msgstr "Hned spustit" - -#: src/editor/worldmap_objects.cpp:131 -msgid "Title colour" -msgstr "Barva titulu" - -#: src/editor/worldmap_objects.cpp:173 -msgid "Automatic" -msgstr "Automatický" - -#: src/editor/worldmap_objects.cpp:175 -msgid "Target worldmap" -msgstr "Cílová mapa" - -#: src/editor/worldmap_objects.cpp:238 -msgid "Stay action" -msgstr "Akce při stání" - -#: src/editor/worldmap_objects.cpp:239 -msgid "Initial stay action" -msgstr "Počáteční akce při stání" - -#: src/editor/worldmap_objects.cpp:240 -msgid "Stay group" -msgstr "Skupina" - -#: src/editor/worldmap_objects.cpp:241 -msgid "Change on touch" -msgstr "Změnit při doteku" - -#: src/editor/worldmap_objects.cpp:271 -msgid "Show message" -msgstr "Ukázat zprávu" +#: src/editor/object_menu.cpp:60 +msgid "Patch Notes" +msgstr "Poznámky k verzi" -#: src/editor/worldmap_objects.cpp:273 -msgid "Invisible" -msgstr "Neviditelnost" - -#: src/editor/overlay_widget.cpp:1297 +#: src/editor/object_menu.cpp:84 +msgid "" +"This will update the object to its latest functionality.\n" +"Check the \"Patch Notes\" for more information.\n" +"\n" +"Keep in mind this is very likely to break the proper behaviour of the object.\n" +"Make sure to re-check any behaviour, related to the object." +msgstr "Tato akce aktualizuje objekt pro nenovější funkcionalitu.\nPodívej se na \"Poznámky k verzi\" pro více informací.\n\nPamatuj, že tato akce pravděpodobně rozbije správné chování objektu.\nPo aktualizaci se ujisti, že vše funguje tak, jak má." + +#: src/editor/object_menu.cpp:98 +#, c++-format +msgid "Patch notes for v{}:" +msgstr "Poznámky k verzi v{}:" + +#: src/editor/overlay_widget.cpp:1062 +msgid "Cannot select deprecated tiles" +msgstr "Nelze vybrat deprekované dlaždice" + +#: src/editor/overlay_widget.cpp:1567 msgid "Autotile mode is on" msgstr "Automaticé vyhlazování je zapnuté" -#: src/editor/overlay_widget.cpp:1299 +#: src/editor/overlay_widget.cpp:1571 msgid "Hold Ctrl to enable autotile" msgstr "Podrž Ctrl pro použití automatického vyhlazování" -#: src/editor/overlay_widget.cpp:1303 +#: src/editor/overlay_widget.cpp:1578 msgid "Autotile erasing mode is on" msgstr "Automatické vyhlazování při mazání je zapnuté" -#: src/editor/overlay_widget.cpp:1305 +#: src/editor/overlay_widget.cpp:1582 msgid "Selected tile isn't autotileable" msgstr "Vybranou dlaždici nelze automaticky vyhlazovat" -#: src/editor/overlay_widget.cpp:1308 +#: src/editor/overlay_widget.cpp:1587 msgid "Hold Ctrl to enable autotile erasing" msgstr "Podrž Ctrl pro použití automatického vyhlazování při mazání" @@ -3445,8 +4761,8 @@ msgid "Current SuperTux Team" msgstr "Aktuální vývojový tým SuperTuxe" #: data//credits.stxt:30 -msgid "Programming, project lead ad interim" -msgstr "Programování, vůdce týmu" +msgid "Maintainer, Programming" +msgstr "Údržba, programování" #: data//credits.stxt:35 msgid "Graphics, Level Design, Story" @@ -3456,12 +4772,12 @@ msgstr "Grafika, design úrovní, příběh" msgid "Level Design, Story, Optimisation, Coordination" msgstr "Tvorba úrovní, příběh, optimalizace, koordinace" -#: data//credits.stxt:45 data//credits.stxt:105 data//credits.stxt:191 -#: data//credits.stxt:519 +#: data//credits.stxt:45 data//credits.stxt:120 data//credits.stxt:206 +#: data//credits.stxt:538 msgid "Graphics" msgstr "Grafika" -#: data//credits.stxt:50 data//credits.stxt:87 data//credits.stxt:93 +#: data//credits.stxt:50 data//credits.stxt:102 data//credits.stxt:108 msgid "Graphics, Programming, Level Design" msgstr "Grafika, programování, tvorba úrovní" @@ -3470,256 +4786,266 @@ msgid "Features and Programming" msgstr "Fíčury a programování" #: data//credits.stxt:60 +msgid "Minor features and programming" +msgstr "Ostatní fíčury a programování" + +#: data//credits.stxt:65 msgid "Programming, Level Updates" msgstr "Programování, obnova úrovní" -#: data//credits.stxt:65 +#: data//credits.stxt:70 msgid "Graphics, Programming" msgstr "Grafika, programování" -#: data//credits.stxt:70 data//credits.stxt:135 data//credits.stxt:140 -#: data//credits.stxt:145 data//credits.stxt:150 data//credits.stxt:165 -#: data//credits.stxt:170 data//credits.stxt:515 data//credits.stxt:527 +#: data//credits.stxt:75 data//credits.stxt:85 data//credits.stxt:150 +#: data//credits.stxt:155 data//credits.stxt:160 data//credits.stxt:165 +#: data//credits.stxt:180 data//credits.stxt:185 data//credits.stxt:534 +#: data//credits.stxt:546 msgid "Programming" msgstr "Programování" -#: data//credits.stxt:76 +#: data//credits.stxt:80 data//credits.stxt:266 +msgid "Level Design" +msgstr "Tvorba úrovní" + +#: data//credits.stxt:91 msgid "Original Developers" msgstr "Původní vývojáři" -#: data//credits.stxt:81 +#: data//credits.stxt:96 msgid "Original Developer" msgstr "Původní vývojář" -#: data//credits.stxt:99 +#: data//credits.stxt:114 msgid "Music, Level Design" msgstr "Hudba, tvorba úrovní" -#: data//credits.stxt:111 +#: data//credits.stxt:126 msgid "Programming, Graphics, Level Design" msgstr "Programování, grafika, tvorba úrovní" -#: data//credits.stxt:117 +#: data//credits.stxt:132 msgid "Programming, Level Design" msgstr "Programování, tvorba úrovní" -#: data//credits.stxt:123 +#: data//credits.stxt:138 msgid "Graphics, Story" msgstr "Grafika, příběh" -#: data//credits.stxt:129 +#: data//credits.stxt:144 msgid "Programming, Documentation" msgstr "Programování, dokumentace" -#: data//credits.stxt:155 +#: data//credits.stxt:170 msgid "Coordination" msgstr "Koordinace" -#: data//credits.stxt:160 +#: data//credits.stxt:175 msgid "Programming, \"Flexlay\" Level editor" msgstr "Programování, editor úrovní \"Flexlay\"" -#: data//credits.stxt:175 +#: data//credits.stxt:190 msgid "Windows build fixes" msgstr "Oprava portu pro Windows" -#: data//credits.stxt:180 +#: data//credits.stxt:195 msgid "Packaging, Nightly builds" msgstr "Balíčkování, kompilace vývojových verzí" -#: data//credits.stxt:185 +#: data//credits.stxt:200 msgid "Translation Guru (and many details anyone else could have done)" msgstr "Překladový vzor (a detaily, které mohl udělat kdokoliv jiný)" -#: data//credits.stxt:251 -msgid "Level Design" -msgstr "Tvorba úrovní" - -#: data//credits.stxt:431 +#: data//credits.stxt:450 msgid "Additional contributors" msgstr "Další přispěvatelé" -#: data//credits.stxt:436 +#: data//credits.stxt:455 msgid "Bug fixes" msgstr "Oprava chyb" -#: data//credits.stxt:440 +#: data//credits.stxt:459 msgid "Scripting functions, Level fixes" msgstr "Funkce skriptů, oprava chyb v úrovních" -#: data//credits.stxt:444 +#: data//credits.stxt:463 msgid "Code quality fixes" msgstr "Oprava kvality kódu" -#: data//credits.stxt:448 data//credits.stxt:452 data//credits.stxt:456 -#: data//credits.stxt:483 +#: data//credits.stxt:467 data//credits.stxt:471 data//credits.stxt:475 +#: data//credits.stxt:502 msgid "Various contributions" msgstr "Mnohé příspěvky" -#: data//credits.stxt:460 +#: data//credits.stxt:479 msgid "Build issue fix" msgstr "Oprava kompilačních chyb" -#: data//credits.stxt:464 data//credits.stxt:468 +#: data//credits.stxt:483 data//credits.stxt:487 msgid "Code contributions" msgstr "Příspěvky do kódu" -#: data//credits.stxt:471 +#: data//credits.stxt:490 msgid "Code contribution, AppData file" msgstr "Příspěvky do kódu, soubor AppData" -#: data//credits.stxt:475 +#: data//credits.stxt:494 msgid "Bug fix" msgstr "Oprava chyb" -#: data//credits.stxt:479 +#: data//credits.stxt:498 msgid "Menu reorganization" msgstr "Přeuspořádání nabídky" -#: data//credits.stxt:487 +#: data//credits.stxt:506 msgid "Fixing tile bugs" msgstr "Oprava chyb s dlaždicemi" -#: data//credits.stxt:491 +#: data//credits.stxt:510 msgid "Build error fix" msgstr "Oprava kompilačních chyb" -#: data//credits.stxt:495 +#: data//credits.stxt:514 msgid "Scripting function fix" msgstr "Oprava skriptovacích chyb" -#: data//credits.stxt:499 +#: data//credits.stxt:518 msgid "New features and notable updates" msgstr "Nové fíčury a důležité novinky" -#: data//credits.stxt:503 +#: data//credits.stxt:522 msgid "Support for \"glbinding\" as optional OpenGL binding" msgstr "Podpora pro \"glbinding\" jako volitelné rozšíření OpenGLu" -#: data//credits.stxt:507 +#: data//credits.stxt:526 msgid "New menu code" msgstr "Nový kód nabídky" -#: data//credits.stxt:511 +#: data//credits.stxt:530 msgid "Big Tux Walking Sprites improvements" msgstr "Velká zlepšení textur chodícího Tuxe" -#: data//credits.stxt:523 data//credits.stxt:531 +#: data//credits.stxt:542 data//credits.stxt:550 msgid "Contrib Programming" msgstr "Příspěvky do kódu" -#: data//credits.stxt:535 +#: data//credits.stxt:554 msgid "Programming, Previous Maintainer" msgstr "Programování, předchozí údržbář" -#: data//credits.stxt:539 +#: data//credits.stxt:558 msgid "Various Contributions" msgstr "Mnohé příspěvky" -#: data//credits.stxt:543 -msgid "Minor features and programming" -msgstr "Ostatní fíčury a programování" - -#: data//credits.stxt:547 data//credits.stxt:551 data//credits.stxt:555 -#: data//credits.stxt:559 data//credits.stxt:563 data//credits.stxt:567 -#: data//credits.stxt:571 data//credits.stxt:575 data//credits.stxt:579 -#: data//credits.stxt:583 data//credits.stxt:587 data//credits.stxt:591 +#: data//credits.stxt:562 data//credits.stxt:566 data//credits.stxt:570 +#: data//credits.stxt:574 data//credits.stxt:578 data//credits.stxt:582 +#: data//credits.stxt:586 data//credits.stxt:590 data//credits.stxt:594 +#: data//credits.stxt:598 data//credits.stxt:602 data//credits.stxt:606 +#: data//credits.stxt:610 data//credits.stxt:614 data//credits.stxt:618 +#: data//credits.stxt:622 data//credits.stxt:626 data//credits.stxt:630 +#: data//credits.stxt:634 data//credits.stxt:638 data//credits.stxt:642 +#: data//credits.stxt:646 data//credits.stxt:650 data//credits.stxt:654 +#: data//credits.stxt:658 data//credits.stxt:662 msgid "Contributions" msgstr "Příspěvky" -#: data//credits.stxt:597 +#: data//credits.stxt:668 msgid "Localization" msgstr "Překlady" -#: data//credits.stxt:1144 +#: data//credits.stxt:1231 msgid " Special Thanks to" msgstr "Speciální poděkování si zaslouží" -#: data//credits.stxt:1149 +#: data//credits.stxt:1236 msgid "Creator of Tux, the Linux penguin" msgstr "Tvůrce Tuxe, tučňáka systému Linux" -#: data//credits.stxt:1153 +#: data//credits.stxt:1240 msgid "SDL, OpenAL and OpenGL" msgstr "SDL, OpenAL a OpenGL" -#: data//credits.stxt:1154 +#: data//credits.stxt:1241 msgid "" "For making such a great gaming experience\n" " possible on Linux" msgstr "Za tvorbu skvělého herního prostředí\nna Linuxu" -#: data//credits.stxt:1159 +#: data//credits.stxt:1246 msgid "and you, the player" msgstr "a samozřejmě tobě, hráči" -#: data//credits.stxt:1160 +#: data//credits.stxt:1247 msgid "for giving this game a chance and playing it" msgstr "že jsi této hře dal šanci a hrál ji" -#: data//credits.stxt:1171 +#: data//credits.stxt:1258 msgid "Visit our webpage at" msgstr "Navštiv náš web:" -#: data//credits.stxt:1180 +#: data//credits.stxt:1267 msgid "Or visit us directly at IRC:" msgstr "...nebo si s námi promluv na IRC:" -#: data//credits.stxt:1184 +#: data//credits.stxt:1271 msgid "#supertux at web.libera.chat" msgstr "#supertux na web.libera.chat" -#: data//credits.stxt:1189 +#: data//credits.stxt:1276 msgid "Or at our Forum:" msgstr "...nebo na našem fóru:" -#: data//credits.stxt:1198 +#: data//credits.stxt:1285 msgid "Comments, ideas and suggestions" msgstr "Komentáře, nápady a připomínky" -#: data//credits.stxt:1202 +#: data//credits.stxt:1289 msgid "go to our mailing list" msgstr "směřuj na náš e-mail:" #. l10n: typo contact -#: data//credits.stxt:1212 +#: data//credits.stxt:1299 msgid "Typographical errors can be" msgstr "Překlepy můžeš" #. l10n: typo contact -#: data//credits.stxt:1217 +#: data//credits.stxt:1304 msgid "reported to" msgstr "oznamovat na" #. l10n: typo contact, see -#: data//credits.stxt:1222 +#: data//credits.stxt:1309 msgid "supertux-devel@lists.lethargik.org" msgstr "supertux-devel@lists.lethargik.org" -#: data//credits.stxt:1229 +#: data//credits.stxt:1316 msgid "Want to help…" msgstr "Chceš pomoci..." -#: data//credits.stxt:1234 +#: data//credits.stxt:1321 msgid "…with localization?" msgstr "...s překlady?" -#: data//credits.stxt:1244 +#: data//credits.stxt:1331 msgid "…with something else?" msgstr "...s něčím jiným?" -#: data//credits.stxt:1255 +#: data//credits.stxt:1342 msgid "Thank you for" msgstr "Děkujeme Ti za" -#: data//credits.stxt:1259 +#: data//credits.stxt:1346 msgid "playing" msgstr "hraní hry" -#: data//credits.stxt:1269 +#: data//credits.stxt:1356 msgid "Penny awaits you in warmer temperatures!" msgstr "Penny tě čeká ve větším teple!" +#: data//images/engine/editor/objects.stoi:4 +msgid "Enemies" +msgstr "Zlejšci" + #: data//images/engine/editor/objects.stoi:162 msgid "Bosses" msgstr "Šéfové" @@ -3728,15 +5054,10 @@ msgstr "Šéfové" msgid "Projectiles" msgstr "Střely" -#: data//images/engine/editor/objects.stoi:187 +#: data//images/engine/editor/objects.stoi:184 msgid "Environment" msgstr "Prostředí" -#: data//images/ice_world.strf:10 data//images/tiles.strf:28 -#: data//images/worldmap.strf:41 -msgid "Snow" -msgstr "Sníh" - #: data//images/ice_world.strf:80 msgid "Ice Cave & Crystal" msgstr "Ledová jeskyně a krystaly" @@ -3745,11 +5066,6 @@ msgstr "Ledová jeskyně a krystaly" msgid "Embellishments" msgstr "Ozdobné" -#: data//images/ice_world.strf:211 data//images/tiles.strf:386 -#: data//images/worldmap.strf:67 -msgid "Forest" -msgstr "Les" - #: data//images/ice_world.strf:320 msgid "Underground Forest" msgstr "Podzemní les" @@ -3774,57 +5090,61 @@ msgstr "Cesty" msgid "Water" msgstr "Voda" -#: data//images/tiles.strf:176 +#: data//images/tiles.strf:252 msgid "Snow Background" msgstr "Sněžné pozadí" -#: data//images/tiles.strf:231 -msgid "Snow Mountain" -msgstr "Zasněžené hory" - -#: data//images/tiles.strf:305 +#: data//images/tiles.strf:300 msgid "Crystal" msgstr "Křišťály" -#: data//images/tiles.strf:532 +#: data//images/tiles.strf:539 msgid "Forest Background" msgstr "Lesní pozadí" -#: data//images/tiles.strf:663 +#: data//images/tiles.strf:690 +msgid "Corrupted Forest" +msgstr "Poškozený les" + +#: data//images/tiles.strf:868 +msgid "Corrupted Background" +msgstr "Pozadí poškozeného lesa" + +#: data//images/tiles.strf:991 msgid "Block + Bonus" msgstr "Bloky a bonusy" -#: data//images/tiles.strf:715 +#: data//images/tiles.strf:1069 msgid "Pole + Signs" msgstr "Tyče a cedule" -#: data//images/tiles.strf:760 +#: data//images/tiles.strf:1113 msgid "Liquid" msgstr "Kapaliny" -#: data//images/tiles.strf:793 +#: data//images/tiles.strf:1131 msgid "Castle" msgstr "Hradní" -#: data//images/tiles.strf:930 data//images/worldmap.strf:199 +#: data//images/tiles.strf:1231 data//images/worldmap.strf:199 msgid "Halloween" msgstr "Halloween" -#: data//images/tiles.strf:958 +#: data//images/tiles.strf:1272 msgid "Industrial" msgstr "Průmyslové" -#: data//images/tiles.strf:973 +#: data//images/tiles.strf:1287 msgid "Unisolid + Lightmap" -msgstr "Unisolidní a světelné" +msgstr "Polopevné a světelné" -#: data//images/tiles.strf:1000 +#: data//images/tiles.strf:1314 msgid "Miscellaneous" msgstr "Ostatní" -#: data//images/tiles.strf:1043 -msgid "Retro Snow" -msgstr "Retro sníh" +#: data//images/tiles.strf:1342 +msgid "Retro Tiles" +msgstr "Retro dlaždice" #: data//images/worldmap.strf:24 msgid "Water paths" @@ -3837,3 +5157,19 @@ msgstr "Hradní cesty" #: data//images/worldmap.strf:135 msgid "Darker Forest" msgstr "Temný les" + +#: data//images/converters/data.stcd:3 +msgid "Nightly Tiles" +msgstr "Dlaždice z vývojových verzí" + +#: data//images/converters/data.stcd:5 +msgid "For levels, created in previous Nightly builds." +msgstr "Pro úrovně vytvořené v předchozích vývojových verzích." + +#: data//images/converters/data.stcd:8 +msgid "Pre-0.6.3 Crystal Tiles" +msgstr "Křišťálové dlaždice z verzí před 0.6.3" + +#: data//images/converters/data.stcd:10 +msgid "For levels, created in pre-0.6.3 versions, which use crystal tiles." +msgstr "Pro úrovně vytvořené před verzí 0.6.3, které používají křišťálové dlaždice." diff --git a/data/locale/da.po b/data/locale/da.po index 9cc1f58f2ba..ea082a20e05 100644 --- a/data/locale/da.po +++ b/data/locale/da.po @@ -5,161 +5,181 @@ # Translators: # Benjamin Leduc , 2015 # Joe Hansen , 2015-2016,2018-2020 +# Lars Lyngby , 2022,2024 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2020-04-13 17:25+0200\n" -"PO-Revision-Date: 2020-05-12 09:51+0000\n" -"Last-Translator: Joe Hansen \n" -"Language-Team: Danish (http://www.transifex.com/arctic-games/supertux/language/da/)\n" +"POT-Creation-Date: 2024-05-30 16:19+0200\n" +"PO-Revision-Date: 2013-08-10 22:56+0000\n" +"Last-Translator: Lars Lyngby , 2022,2024\n" +"Language-Team: Danish (http://app.transifex.com/arctic-games/supertux/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/trigger/secretarea_trigger.cpp:53 src/trigger/secretarea_trigger.cpp:61 +#: src/trigger/secretarea_trigger.cpp:47 msgid "You found a secret area!" msgstr "Du har fundet et hemmeligt område" -#: src/trigger/secretarea_trigger.cpp:77 src/trigger/scripttrigger.cpp:75 -#: src/supertux/game_object.cpp:88 src/supertux/menu/editor_sector_menu.cpp:34 -#: src/supertux/menu/editor_levelset_menu.cpp:58 +#: src/trigger/secretarea_trigger.cpp:55 src/supertux/game_object.cpp:115 +#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_levelset_menu.cpp:52 #: src/supertux/menu/editor_new_levelset_menu.cpp:34 +#: src/supertux/menu/profile_name_menu.cpp:39 #: src/supertux/menu/editor_level_menu.cpp:33 msgid "Name" msgstr "Navn" -#: src/trigger/secretarea_trigger.cpp:78 +#: src/trigger/secretarea_trigger.cpp:56 msgid "Fade tilemap" msgstr "Zoom feltkort" -#: src/trigger/secretarea_trigger.cpp:79 src/trigger/climbable.cpp:81 -#: src/object/infoblock.cpp:57 src/editor/worldmap_objects.cpp:174 -#: src/editor/worldmap_objects.cpp:272 +#: src/trigger/secretarea_trigger.cpp:57 src/trigger/climbable.cpp:59 +#: src/object/infoblock.cpp:76 src/worldmap/teleporter.cpp:49 +#: src/worldmap/special_tile.cpp:74 msgid "Message" msgstr "Besked" -#: src/trigger/secretarea_trigger.cpp:80 src/trigger/scripttrigger.cpp:80 -#: src/trigger/door.cpp:73 src/object/ispy.cpp:67 -#: src/object/bonus_block.cpp:203 src/object/bonus_block.cpp:207 -#: src/object/pushbutton.cpp:49 src/object/powerup.cpp:190 -#: src/editor/worldmap_objects.cpp:274 +#: src/trigger/secretarea_trigger.cpp:58 src/trigger/scripttrigger.cpp:51 +#: src/trigger/door.cpp:79 src/object/ispy.cpp:53 +#: src/object/bonus_block.cpp:264 src/object/bonus_block.cpp:268 +#: src/object/pushbutton.cpp:62 src/object/powerup.cpp:301 +#: src/worldmap/special_tile.cpp:76 msgid "Script" msgstr "Skript" -#: src/trigger/scripttrigger.cpp:73 -msgid "Script Trigger" -msgstr "Skriptudløser" - -#: src/trigger/scripttrigger.cpp:76 src/object/tilemap.cpp:220 -#: src/supertux/menu/editor_sector_menu.cpp:39 -#: src/editor/object_option.cpp:148 -msgid "Width" -msgstr "Bredde" - -#: src/trigger/scripttrigger.cpp:77 src/object/tilemap.cpp:221 -#: src/supertux/menu/editor_sector_menu.cpp:40 -#: src/editor/object_option.cpp:149 -msgid "Height" -msgstr "Højde" - -#: src/trigger/scripttrigger.cpp:78 src/object/bicycle_platform.cpp:187 -#: src/object/background.cpp:160 src/object/pneumatic_platform.cpp:145 -#: src/supertux/menu/joystick_menu.cpp:170 src/supertux/moving_object.cpp:47 -#: src/editor/worldmap_objects.cpp:73 -msgid "X" -msgstr "X" - -#: src/trigger/scripttrigger.cpp:79 src/object/bicycle_platform.cpp:188 -#: src/object/background.cpp:161 src/object/pneumatic_platform.cpp:146 -#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:48 -#: src/editor/worldmap_objects.cpp:74 -msgid "Y" -msgstr "Y" - -#: src/trigger/scripttrigger.cpp:81 src/object/pushbutton.hpp:31 +#: src/trigger/scripttrigger.cpp:52 src/object/pushbutton.hpp:32 msgid "Button" msgstr "Knap" -#: src/trigger/scripttrigger.cpp:82 +#: src/trigger/scripttrigger.cpp:53 msgid "Oneshot" msgstr "Et skud" -#: src/trigger/sequence_trigger.hpp:33 +#: src/trigger/sequence_trigger.hpp:31 msgid "Sequence Trigger" msgstr "Sekvensudløser" -#: src/trigger/door.cpp:74 src/badguy/willowisp.cpp:280 -#: src/supertux/menu/editor_sector_menu.cpp:32 -#: src/editor/layers_widget.cpp:274 -#: data//images/engine/editor/objects.stoi:300 +#: src/trigger/text_area.cpp:141 +msgid "Once" +msgstr "En gang" + +#: src/trigger/text_area.cpp:142 +msgid "Text change time" +msgstr "Tid for ændring af tekst" + +#: src/trigger/text_area.cpp:143 +msgid "Fade time" +msgstr "Fadetid" + +#: src/trigger/text_area.cpp:144 src/object/textscroller.cpp:353 +msgid "Anchor" +msgstr "Anker" + +#: src/trigger/text_area.cpp:148 +msgid "Anchor offset X" +msgstr "Ankerforskydning X" + +#: src/trigger/text_area.cpp:149 +msgid "Anchor offset Y" +msgstr "Ankerforskydning Y" + +#: src/trigger/text_area.cpp:150 +msgid "Texts" +msgstr "Tekster" + +#: src/trigger/door.cpp:80 src/badguy/willowisp.cpp:311 +#: src/worldmap/teleporter.cpp:47 data//images/engine/editor/objects.stoi:342 msgid "Sector" msgstr "Sektor" -#: src/trigger/door.cpp:75 src/editor/worldmap_objects.hpp:101 +#: src/trigger/door.cpp:81 src/worldmap/spawn_point.hpp:58 msgid "Spawn point" msgstr "Opstartspunkt" -#: src/trigger/switch.cpp:61 src/object/block.cpp:212 src/object/torch.cpp:91 -#: src/object/moving_sprite.cpp:156 src/object/pneumatic_platform.cpp:144 -msgid "Sprite" -msgstr "Computergrafik" +#: src/trigger/door.cpp:82 +msgid "Locked?" +msgstr "Låst?" + +#: src/trigger/door.cpp:83 +msgid "Lock Color" +msgstr "Låsningsfarve" + +#: src/trigger/switch.cpp:62 src/object/ispy.cpp:54 src/object/bumper.cpp:53 +#: src/object/spotlight.cpp:106 src/object/pushbutton.cpp:61 +#: src/object/gradient.cpp:103 src/object/conveyor_belt.cpp:60 +#: src/badguy/badguy.cpp:1063 src/worldmap/spawn_point.cpp:79 +#: src/worldmap/special_tile.cpp:78 +msgid "Direction" +msgstr "Retning" -#: src/trigger/switch.cpp:62 +#: src/trigger/switch.cpp:65 msgid "Turn on script" msgstr "Tænd skript" -#: src/trigger/switch.cpp:63 +#: src/trigger/switch.cpp:66 msgid "Turn off script" msgstr "Slut skript" -#: src/trigger/sequence_trigger.cpp:75 +#: src/trigger/scripttrigger.hpp:29 +msgid "Script Trigger" +msgstr "Skriptudløser" + +#: src/trigger/sequence_trigger.cpp:48 msgid "Sequence" msgstr "Sekvens" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "end sequence" msgstr "slutsekvens" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "stop Tux" msgstr "stop Tux" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "fireworks" msgstr "fyrværkeri" -#: src/trigger/sequence_trigger.cpp:80 +#: src/trigger/sequence_trigger.cpp:53 msgid "New worldmap spawnpoint" msgstr "Nyt startpunkt på verdenskort" -#: src/trigger/sequence_trigger.cpp:81 +#: src/trigger/sequence_trigger.cpp:54 msgid "Worldmap fade tilemap" msgstr "Zoom feltkort på verdenskort" -#: src/trigger/sequence_trigger.cpp:82 +#: src/trigger/sequence_trigger.cpp:55 +#: src/object/custom_particle_system.cpp:430 +#: src/object/custom_particle_system.cpp:465 msgid "Fade" msgstr "Zoom" -#: src/trigger/sequence_trigger.cpp:83 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:161 msgid "Fade in" msgstr "Zoom ind" -#: src/trigger/sequence_trigger.cpp:83 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:167 +#: src/editor/particle_editor.cpp:212 msgid "Fade out" msgstr "Zoom ud" -#: src/trigger/climbable.hpp:37 +#: src/trigger/climbable.hpp:46 msgid "Climbable" msgstr "Kravle tilladt" -#: src/trigger/door.hpp:34 +#: src/trigger/text_area.hpp:47 +msgid "Text Area" +msgstr "Tekstområde" + +#: src/trigger/door.hpp:31 msgid "Door" msgstr "Dør" -#: src/trigger/switch.hpp:33 +#: src/trigger/switch.hpp:30 msgid "Switch" msgstr "Kontakt" @@ -167,85 +187,194 @@ msgstr "Kontakt" msgid "Secret Area" msgstr "Hemmeligt område" -#: src/object/thunderstorm.hpp:40 +#: src/math/anchor_point.cpp:33 +msgid "Top Left" +msgstr "Øverst venstre" + +#: src/math/anchor_point.cpp:34 +msgid "Top" +msgstr "Øverst" + +#: src/math/anchor_point.cpp:35 +msgid "Top Right" +msgstr "Øverst højre" + +#: src/math/anchor_point.cpp:36 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:38 +#: src/supertux/menu/joystick_menu.cpp:73 +msgid "Left" +msgstr "Venstre" + +#: src/math/anchor_point.cpp:37 +msgid "Middle" +msgstr "Midten" + +#: src/math/anchor_point.cpp:38 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:39 +#: src/supertux/menu/joystick_menu.cpp:74 +msgid "Right" +msgstr "Højre" + +#: src/math/anchor_point.cpp:39 +msgid "Bottom Left" +msgstr "Nederst venstre" + +#: src/math/anchor_point.cpp:40 +msgid "Bottom" +msgstr "Nederst" + +#: src/math/anchor_point.cpp:41 +msgid "Bottom Right" +msgstr "Nederst højre" + +#: src/object/thunderstorm.hpp:44 msgid "Thunderstorm" msgstr "Tordenvejr" -#: src/object/ispy.cpp:66 -msgid "Facing Down" -msgstr "Vender nedad" +#: src/object/cloud_particle_system.cpp:77 +#: src/object/rain_particle_system.cpp:100 +msgid "Intensity" +msgstr "Intensitet" -#: src/object/ispy.cpp:68 src/object/gradient.cpp:124 -#: src/badguy/willowisp.cpp:279 src/badguy/badguy.cpp:840 -#: src/editor/worldmap_objects.cpp:209 src/editor/worldmap_objects.cpp:276 -msgid "Direction" -msgstr "Retning" +#: src/object/custom_particle_system.hpp:46 +msgid "Custom Particles" +msgstr "Brugerdefinerede partikler" + +#: src/object/particle_zone.hpp:41 +msgid "Particle zone" +msgstr "Partikelzone" -#: src/object/path_gameobject.hpp:44 src/object/coin.cpp:262 -#: src/object/camera.cpp:212 src/object/platform.cpp:65 -#: src/object/path_gameobject.cpp:168 src/object/tilemap.cpp:234 -#: src/badguy/willowisp.cpp:286 +#: src/object/path_gameobject.hpp:45 src/object/coin.cpp:324 +#: src/object/camera.cpp:168 src/object/platform.cpp:76 +#: src/object/path_gameobject.cpp:175 src/object/tilemap.cpp:284 +#: src/badguy/willowisp.cpp:317 msgid "Path" msgstr "Sti" -#: src/object/decal.cpp:41 src/object/scripted_object.cpp:67 -#: src/object/particlesystem.cpp:62 src/object/background.cpp:164 -#: src/object/thunderstorm.cpp:68 src/object/tilemap.cpp:227 -#: src/object/gradient.cpp:122 -msgid "Z-pos" -msgstr "Z-pos." - -#: src/object/decal.cpp:42 src/object/scripted_object.cpp:70 -#: src/object/tilemap.cpp:216 +#: src/object/decal.cpp:48 src/object/scripted_object.cpp:70 +#: src/object/tilemap.cpp:266 msgid "Solid" msgstr "Fast" -#: src/object/decal.cpp:43 src/supertux/menu/keyboard_menu.cpp:37 -#: src/supertux/menu/joystick_menu.cpp:74 +#: src/object/decal.cpp:49 src/supertux/menu/keyboard_menu.cpp:41 +#: src/supertux/menu/joystick_menu.cpp:76 msgid "Action" msgstr "Handling" -#: src/object/weak_block.hpp:35 +#: src/object/weak_block.hpp:36 msgid "Weak Tile" -msgstr "Svag blok" +msgstr "Svagt felt" -#: src/object/gradient.hpp:42 +#: src/object/gradient.hpp:43 msgid "Gradient" msgstr "Overgang" -#: src/object/tilemap.hpp:53 +#: src/object/tilemap.hpp:58 msgid "Tilemap" msgstr "Feltkort" -#: src/object/brick.cpp:133 +#: src/object/sound_object.cpp:69 src/object/ambient_sound.cpp:85 +#: src/object/sound_object.hpp:42 src/supertux/menu/options_menu.cpp:128 +#: data//credits.stxt:367 +msgid "Sound" +msgstr "Lyd" + +#: src/object/sound_object.cpp:70 src/object/ambient_sound.cpp:87 +msgid "Volume" +msgstr "Lydstyrke" + +#: src/object/conveyor_belt.hpp:39 +msgid "Conveyor Belt" +msgstr "Transportbånd" + +#: src/object/unstable_tile.cpp:70 src/object/weak_block.cpp:97 +#: src/badguy/flame.cpp:86 +msgid "Ice" +msgstr "Is" + +#: src/object/unstable_tile.cpp:71 src/object/brick.hpp:34 +msgid "Brick" +msgstr "Mursten" + +#: src/object/unstable_tile.cpp:72 +msgid "Delayed" +msgstr "Forsinket" + +#: src/object/circleplatform.hpp:35 +msgid "Circular Platform" +msgstr "Cirkulær platform" + +#: src/object/brick.cpp:59 src/object/coin.cpp:69 +#: src/object/invisible_block.cpp:37 src/object/background.cpp:200 +#: src/object/tilemap.cpp:279 src/object/gradient.cpp:109 +#: src/badguy/viciousivy.cpp:44 src/badguy/snail.cpp:69 +#: src/badguy/smartball.cpp:34 src/badguy/bouncing_snowball.cpp:81 +#: src/badguy/kamikazesnowball.cpp:117 src/badguy/walkingleaf.cpp:35 +#: src/badguy/mrbomb.cpp:47 src/badguy/igel.cpp:188 src/badguy/snowball.cpp:40 +#: src/badguy/mrtree.cpp:50 src/badguy/mriceblock.cpp:62 +msgid "Normal" +msgstr "Normal" + +#: src/object/brick.cpp:60 src/object/bonus_block.cpp:175 +#: src/object/coin.cpp:70 src/object/invisible_block.cpp:38 +msgid "Retro" +msgstr "Retro" + +#: src/object/brick.cpp:166 msgid "Breakable" msgstr "Kan ødelægges" -#: src/object/trampoline.cpp:136 src/object/rusty_trampoline.cpp:66 +#: src/object/trampoline.cpp:66 src/object/rusty_trampoline.cpp:66 msgid "Portable" msgstr "Flytbar" -#: src/object/spotlight.cpp:62 +#: src/object/trampoline.cpp:67 +msgid "Stationary" +msgstr "Stationær" + +#: src/object/key.hpp:38 +msgid "Key" +msgstr "Nøgle" + +#: src/object/spotlight.cpp:102 src/object/particlesystem.cpp:64 +#: src/object/particle_zone.cpp:50 src/badguy/darttrap.cpp:149 +#: src/supertux/menu/addon_preview_menu.cpp:189 +msgid "Enabled" +msgstr "Aktiveret" + +#: src/object/spotlight.cpp:103 src/object/rain_particle_system.cpp:101 msgid "Angle" msgstr "Vinkel" -#: src/object/spotlight.cpp:63 src/object/magicblock.cpp:94 -#: src/object/candle.cpp:77 src/object/lantern.cpp:62 -#: src/object/ambient_light.cpp:131 src/badguy/walking_candle.cpp:82 +#: src/object/spotlight.cpp:104 src/object/magicblock.cpp:95 +#: src/object/candle.cpp:75 src/object/torch.cpp:96 src/object/rublight.cpp:55 +#: src/object/lantern.cpp:62 src/object/ambient_light.cpp:122 +#: src/object/key.cpp:192 src/badguy/willowisp.cpp:319 +#: src/badguy/walking_candle.cpp:91 msgid "Color" msgstr "Farve" -#: src/object/spotlight.cpp:64 src/object/textscroller.cpp:279 -#: src/badguy/flame.cpp:59 +#: src/object/spotlight.cpp:105 src/object/textscroller.cpp:350 +#: src/object/rain_particle_system.cpp:102 src/object/conveyor_belt.cpp:61 +#: src/object/circleplatform.cpp:58 src/badguy/flame.cpp:110 +#: src/editor/node_marker.cpp:125 msgid "Speed" msgstr "Hastighed" -#: src/object/spotlight.cpp:65 +#: src/object/spotlight.cpp:107 +msgid "Clockwise" +msgstr "Med uret" + +#: src/object/spotlight.cpp:107 msgid "Counter-clockwise" msgstr "Mod uret" -#: src/object/spotlight.cpp:66 src/object/candle.cpp:78 -#: src/object/torch.cpp:92 +#: src/object/spotlight.cpp:107 +msgid "Stopped" +msgstr "Stoppet" + +#: src/object/spotlight.cpp:110 src/object/lit_object.cpp:69 +#: src/object/candle.cpp:76 src/object/torch.cpp:95 msgid "Layer" msgstr "Lag" @@ -257,113 +386,200 @@ msgstr "Fysik aktiveret" msgid "Visible" msgstr "Synlig" -#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:282 +#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:313 msgid "Hit script" msgstr "Ram-skript" -#: src/object/bonus_block.cpp:204 +#: src/object/custom_particle_system_file.cpp:53 +#: src/object/textscroller.cpp:348 src/object/music_object.cpp:109 +#: src/supertux/menu/particle_editor_open.cpp:38 +msgid "File" +msgstr "Fil" + +#: src/object/bonus_block.cpp:154 +msgid "Only one custom object is allowed inside bonus blocks." +msgstr "Kun ét brugerdefineret objekt er tilladt indeni bonusblokke." + +#: src/object/bonus_block.cpp:172 +msgid "Blue" +msgstr "Blå" + +#: src/object/bonus_block.cpp:173 +msgid "Orange" +msgstr "Orange" + +#: src/object/bonus_block.cpp:174 +msgid "Purple" +msgstr "Lilla" + +#: src/object/bonus_block.cpp:265 src/supertux/menu/cheat_apply_menu.cpp:54 msgid "Count" msgstr "Antal" -#: src/object/bonus_block.cpp:205 +#: src/object/bonus_block.cpp:266 msgid "Content" msgstr "Indhold" -#: src/object/bonus_block.cpp:206 src/object/coin.hpp:43 +#: src/object/bonus_block.cpp:267 src/object/coin.hpp:44 msgid "Coin" msgstr "Mønt" -#: src/object/bonus_block.cpp:206 +#: src/object/bonus_block.cpp:267 msgid "Growth (fire flower)" msgstr "Vækst (ildblomst)" -#: src/object/bonus_block.cpp:206 +#: src/object/bonus_block.cpp:267 msgid "Growth (ice flower)" msgstr "Vækst (isblomst)" -#: src/object/bonus_block.cpp:206 +#: src/object/bonus_block.cpp:267 msgid "Growth (air flower)" msgstr "Vækst (luftblomst)" -#: src/object/bonus_block.cpp:207 +#: src/object/bonus_block.cpp:268 msgid "Growth (earth flower)" msgstr "Vækst (jordblomst)" -#: src/object/bonus_block.cpp:207 +#: src/object/bonus_block.cpp:268 +msgid "Growth (retro)" +msgstr "Vækst (retro)" + +#: src/object/bonus_block.cpp:268 src/object/powerup.cpp:66 msgid "Star" msgstr "Stjerne" -#: src/object/bonus_block.cpp:207 +#: src/object/bonus_block.cpp:268 +msgid "Star (retro)" +msgstr "Stjerne (retro)" + +#: src/object/bonus_block.cpp:268 msgid "Tux doll" msgstr "Tuxdukke" -#: src/object/bonus_block.cpp:207 +#: src/object/bonus_block.cpp:268 msgid "Custom" msgstr "Tilpasset" -#: src/object/bonus_block.cpp:207 +#: src/object/bonus_block.cpp:268 msgid "Light" msgstr "Lys" -#: src/object/bonus_block.cpp:208 src/object/trampoline.hpp:35 +#: src/object/bonus_block.cpp:268 +msgid "Light (On)" +msgstr "Lys (tændt)" + +#: src/object/bonus_block.cpp:269 src/object/trampoline.hpp:37 msgid "Trampoline" msgstr "Springbræt" -#: src/object/bonus_block.cpp:208 +#: src/object/bonus_block.cpp:269 +msgid "Portable trampoline" +msgstr "Transportabel trampolin" + +#: src/object/bonus_block.cpp:269 msgid "Coin rain" msgstr "Møntregn" -#: src/object/bonus_block.cpp:208 +#: src/object/bonus_block.cpp:269 msgid "Coin explosion" msgstr "Mønteksplosion" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 src/object/rock.hpp:43 +msgid "Rock" +msgstr "Sten" + +#: src/object/bonus_block.cpp:269 +msgid "Potion" +msgstr "Drik" + +#: src/object/bonus_block.cpp:275 msgid "Custom Content" msgstr "Tilpasset indhold" -#: src/object/pneumatic_platform.hpp:62 +#: src/object/bonus_block.cpp:278 +msgid "Coin sprite" +msgstr "Mønt sprite" + +#: src/object/pneumatic_platform.hpp:65 msgid "Pneumatic Platform" msgstr "Pneumatisk platform" -#: src/object/coin.cpp:264 src/object/tilemap.cpp:236 +#: src/object/coin.cpp:326 src/object/tilemap.cpp:287 msgid "Following path" msgstr "Følgesti" -#: src/object/coin.cpp:267 src/object/camera.cpp:215 -#: src/object/platform.cpp:66 src/object/tilemap.cpp:240 +#: src/object/coin.cpp:329 src/object/camera.cpp:171 +#: src/object/platform.cpp:77 src/object/tilemap.cpp:290 msgid "Path Mode" msgstr "Stitilstand" -#: src/object/coin.cpp:270 src/object/coin.cpp:298 +#: src/object/coin.cpp:330 src/object/camera.cpp:172 +#: src/object/platform.cpp:78 src/object/tilemap.cpp:291 +#: src/badguy/willowisp.cpp:322 +msgid "Adapt Speed" +msgstr "Tilpas hastighed" + +#: src/object/coin.cpp:331 src/object/platform.cpp:81 +#: src/object/tilemap.cpp:285 src/badguy/willowisp.cpp:318 +msgid "Starting Node" +msgstr "Startknude" + +#: src/object/coin.cpp:332 src/object/camera.cpp:173 +#: src/object/platform.cpp:82 src/object/tilemap.cpp:293 +#: src/badguy/willowisp.cpp:323 +msgid "Handle" +msgstr "Håndtag" + +#: src/object/coin.cpp:335 src/object/coin.cpp:371 msgid "Collect script" msgstr "Indsaml-skript" -#: src/object/ghost_particle_system.hpp:36 +#: src/object/ghost_particle_system.hpp:37 msgid "Ghost Particles" msgstr "Spøgelsespartikler" -#: src/object/camera.cpp:207 +#: src/object/camera.cpp:163 msgid "Mode" msgstr "Tilstand" -#: src/object/camera.cpp:208 +#: src/object/camera.cpp:164 msgid "normal" msgstr "normal" -#: src/object/camera.cpp:208 +#: src/object/camera.cpp:164 msgid "manual" msgstr "manual" -#: src/object/camera.cpp:208 +#: src/object/camera.cpp:164 msgid "autoscroll" msgstr "automatisk rulning" -#: src/object/textscroller.cpp:280 src/object/music_object.cpp:109 -msgid "File" -msgstr "Fil" +#: src/object/textscroller.cpp:349 +msgid "Finish Script" +msgstr "Afslut script" + +#: src/object/textscroller.cpp:351 +msgid "X-offset" +msgstr "X-offset" + +#: src/object/textscroller.cpp:352 +msgid "Controllable" +msgstr "Kontrollerbar" -#: src/object/spawnpoint.hpp:46 src/badguy/willowisp.cpp:281 -#: src/editor/worldmap_objects.cpp:173 +#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 +msgid "Center" +msgstr "Center" + +#: src/object/textscroller.cpp:357 +msgid "Text Alignment" +msgstr "Tekstjustering" + +#: src/object/lit_object.hpp:40 +msgid "Lit object" +msgstr "Tændt objekt" + +#: src/object/spawnpoint.hpp:48 src/badguy/willowisp.cpp:312 +#: src/worldmap/teleporter.cpp:48 msgid "Spawnpoint" msgstr "Startpunkt" @@ -371,255 +587,396 @@ msgstr "Startpunkt" msgid "Counter" msgstr "Tæller" -#: src/object/candle.hpp:36 +#: src/object/candle.hpp:37 msgid "Candle" msgstr "Lys" -#: src/object/particlesystem.cpp:61 src/badguy/darttrap.cpp:127 -msgid "Enabled" -msgstr "Aktiveret" +#: src/object/particlesystem.cpp:65 src/object/background.cpp:184 +#: src/object/thunderstorm.cpp:76 src/object/tilemap.cpp:277 +#: src/object/gradient.cpp:101 src/object/moving_sprite.cpp:193 +msgid "Z-pos" +msgstr "Z-pos." -#: src/object/invisible_block.hpp:31 +#: src/object/invisible_block.hpp:30 msgid "Invisible Block" msgstr "Usynlig blok" -#: src/object/snow_particle_system.hpp:35 +#: src/object/snow_particle_system.hpp:37 msgid "Snow Particles" msgstr "Snepartikler" -#: src/object/powerup.hpp:35 +#: src/object/powerup.hpp:40 msgid "Powerup" msgstr "Opgradering" -#: src/object/level_time.hpp:55 -msgid "Time Limit" -msgstr "Tidsbegrænsning" +#: src/object/infoblock.cpp:78 +msgid "Front Color" +msgstr "Forsidefarve" -#: src/object/ambient_sound.cpp:119 src/supertux/menu/options_menu.cpp:365 -#: data//credits.stxt:335 -msgid "Sound" -msgstr "Lyd" +#: src/object/infoblock.cpp:80 +msgid "Back Color" +msgstr "Bagsidefarve" -#: src/object/ambient_sound.cpp:120 -msgid "Distance factor" -msgstr "Afstandsfaktor" +#: src/object/infoblock.cpp:82 +msgid "Roundness" +msgstr "Rundhed" -#: src/object/ambient_sound.cpp:121 -msgid "Distance bias" -msgstr "Afstandsbias" +#: src/object/infoblock.cpp:84 +msgid "Fade Transition" +msgstr "Fade-overgang" -#: src/object/ambient_sound.cpp:122 -msgid "Volume" -msgstr "Lydstyrke" +#: src/object/fallblock.hpp:41 +msgid "Falling Platform" +msgstr "Faldende platform" + +#: src/object/level_time.hpp:56 +msgid "Time Limit" +msgstr "Tidsbegrænsning" + +#: src/object/ambient_sound.cpp:86 +msgid "Radius (in tiles)" +msgstr "Radius (i felter)" #: src/object/torch.hpp:41 msgid "Torch" msgstr "Fakkel" -#: src/object/icecrusher.hpp:48 -msgid "Icecrusher" -msgstr "Isbryder" +#: src/object/rublight.hpp:34 +msgid "Rublight" +msgstr "Rublight" -#: src/object/background.hpp:42 +#: src/object/background.hpp:45 msgid "Background" msgstr "Baggrund" -#: src/object/firefly.hpp:36 +#: src/object/text_object.hpp:44 src/gui/menu_string_array.cpp:77 +msgid "Text" +msgstr "Tekst" + +#: src/object/firefly.hpp:38 msgid "Checkpoint" msgstr "Kontrolpunkt" -#: src/object/ambient_light.hpp:36 +#: src/object/ambient_light.hpp:37 msgid "Ambient Light" msgstr "Omgivende lys" -#: src/object/lantern.hpp:37 +#: src/object/lantern.hpp:38 msgid "Lantern" msgstr "Lanterne" -#: src/object/wind.hpp:40 +#: src/object/wind.hpp:43 msgid "Wind" msgstr "Vind" -#: src/object/bicycle_platform.cpp:190 +#: src/object/bicycle_platform.cpp:203 src/object/background.cpp:180 +#: src/object/pneumatic_platform.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:65 +#: src/worldmap/worldmap_object.cpp:77 +msgid "X" +msgstr "X" + +#: src/object/bicycle_platform.cpp:204 src/object/background.cpp:181 +#: src/object/pneumatic_platform.cpp:163 +#: src/supertux/menu/joystick_menu.cpp:174 src/supertux/moving_object.cpp:66 +#: src/worldmap/worldmap_object.cpp:78 +msgid "Y" +msgstr "Y" + +#: src/object/bicycle_platform.cpp:206 msgid "Platforms" msgstr "Platforme" -#: src/object/bicycle_platform.cpp:191 src/badguy/flame.cpp:58 -#: src/badguy/crystallo.cpp:36 +#: src/object/bicycle_platform.cpp:207 src/object/circleplatform.cpp:57 +#: src/badguy/fish_swimming.cpp:76 src/badguy/flame.cpp:109 +#: src/badguy/rcrystallo.cpp:83 src/badguy/crystallo.cpp:50 msgid "Radius" msgstr "Radius" -#: src/object/bicycle_platform.cpp:192 +#: src/object/bicycle_platform.cpp:208 msgid "Momentum change rate" msgstr "Ændringshastighed for momentum" -#: src/object/rain_particle_system.hpp:34 +#: src/object/rain_particle_system.hpp:41 msgid "Rain Particles" msgstr "Regnpartikler" -#: src/object/platform.hpp:45 +#: src/object/platform.hpp:46 msgid "Platform" msgstr "Platform" -#: src/object/rock.hpp:42 -msgid "Rock" -msgstr "Sten" - -#: src/object/music_object.hpp:41 src/supertux/menu/options_menu.cpp:367 -#: data//credits.stxt:277 +#: src/object/music_object.hpp:42 src/supertux/menu/options_menu.cpp:130 +#: data//credits.stxt:309 msgid "Music" msgstr "Musik" -#: src/object/rusty_trampoline.hpp:39 +#: src/object/lit_object.cpp:68 +msgid "Light sprite" +msgstr "Lys sprite" + +#: src/object/lit_object.cpp:71 +msgid "Sprite starting action" +msgstr "Sprite starthandling" + +#: src/object/lit_object.cpp:72 +msgid "Light sprite starting action" +msgstr "Lys sprite starthandling" + +#: src/object/lit_object.cpp:74 +msgid "Light sprite offset X" +msgstr "Lys sprite forskydning X" + +#: src/object/lit_object.cpp:75 +msgid "Light sprite offset Y" +msgstr "Lys sprite forskydning Y" + +#: src/object/rusty_trampoline.hpp:40 msgid "Rusty Trampoline" msgstr "Rusten springbræt" -#: src/object/particlesystem.hpp:57 +#: src/object/particlesystem.hpp:58 msgid "Particle system" msgstr "Partikelsystem" -#: src/object/candle.cpp:75 src/object/torch.cpp:90 +#: src/object/candle.cpp:73 src/object/torch.cpp:94 msgid "Burning" msgstr "Brændende" -#: src/object/candle.cpp:76 +#: src/object/candle.cpp:74 msgid "Flicker" msgstr "Flimmer" -#: src/object/text_array_object.hpp:50 +#: src/object/snow_particle_system.cpp:104 +msgid "Epsilon" +msgstr "Epsilon" + +#: src/object/snow_particle_system.cpp:105 +msgid "Spin Speed" +msgstr "Omdrejningshastighed" + +#: src/object/snow_particle_system.cpp:106 +msgid "State Length" +msgstr "Tilstandslængde" + +#: src/object/snow_particle_system.cpp:107 +msgid "Wind Speed" +msgstr "Vindhastighed" + +#: src/object/text_array_object.hpp:47 msgid "Text array" msgstr "Teksttabel" -#: src/object/infoblock.hpp:36 +#: src/object/infoblock.hpp:37 msgid "Info Block" msgstr "Infoblok" -#: src/object/powerup.cpp:191 +#: src/object/powerup.cpp:61 +msgid "Egg" +msgstr "Æg" + +#: src/object/powerup.cpp:62 +msgid "Fire Flower" +msgstr "Ildblomst" + +#: src/object/powerup.cpp:63 +msgid "Ice Flower" +msgstr "Isblomst" + +#: src/object/powerup.cpp:64 +msgid "Air Flower" +msgstr "Luftblomst" + +#: src/object/powerup.cpp:65 +msgid "Earth Flower" +msgstr "Jordblomst" + +#: src/object/powerup.cpp:67 +msgid "Tux Doll" +msgstr "Tux dukke" + +#: src/object/powerup.cpp:68 +msgid "Flip Potion" +msgstr "Flip-drik" + +#: src/object/powerup.cpp:69 +msgid "Mints" +msgstr "Mintpastiller" + +#: src/object/powerup.cpp:70 +msgid "Coffee" +msgstr "Kaffe" + +#: src/object/powerup.cpp:71 +msgid "Herring" +msgstr "Sild" + +#: src/object/powerup.cpp:302 msgid "Disable gravity" msgstr "Deaktiver tyngekraft" -#: src/object/ambient_sound.hpp:62 +#: src/object/powerup.cpp:312 src/object/weak_block.cpp:266 +msgid "" +"Sprites no longer define the behaviour of the object.\n" +"Object types are used instead." +msgstr "Sprites definerer ikke længere opførslen af objektet.\nI stedet anvendes objekttyper." + +#: src/object/ambient_sound.hpp:43 msgid "Ambient Sound" msgstr "Omgivende lyd" -#: src/object/level_time.cpp:51 src/supertux/statistics.cpp:288 -#: src/editor/node_marker.cpp:80 +#: src/object/level_time.cpp:52 src/supertux/statistics.cpp:297 +#: src/editor/node_marker.cpp:124 msgid "Time" msgstr "Tid" -#: src/object/hurting_platform.hpp:30 +#: src/object/hurting_platform.hpp:31 msgid "Hurting Platform" msgstr "Skadende platform" -#: src/object/background.cpp:163 +#: src/object/background.cpp:183 msgid "Fill" msgstr "Fyld" -#: src/object/background.cpp:165 +#: src/object/background.cpp:185 msgid "Alignment" msgstr "Justering" -#: src/object/background.cpp:166 +#: src/object/background.cpp:186 src/supertux/direction.cpp:61 msgid "none" msgstr "ingen" -#: src/object/background.cpp:166 src/editor/object_settings.cpp:112 +#: src/object/background.cpp:186 src/supertux/direction.cpp:63 msgid "left" msgstr "venstre" -#: src/object/background.cpp:166 src/editor/object_settings.cpp:112 +#: src/object/background.cpp:186 src/supertux/direction.cpp:65 msgid "right" msgstr "højre" -#: src/object/background.cpp:166 +#: src/object/background.cpp:186 msgid "top" msgstr "Top" -#: src/object/background.cpp:166 +#: src/object/background.cpp:186 msgid "bottom" msgstr "Bund" -#: src/object/background.cpp:169 +#: src/object/background.cpp:189 msgid "Scroll offset x" msgstr "Rulleforskydning x" -#: src/object/background.cpp:170 +#: src/object/background.cpp:190 msgid "Scroll offset y" msgstr "Rulleforskydning y" -#: src/object/background.cpp:171 +#: src/object/background.cpp:191 msgid "Scroll speed x" msgstr "Rullehastighed x" -#: src/object/background.cpp:172 +#: src/object/background.cpp:192 msgid "Scroll speed y" msgstr "Rullehastighed y" -#: src/object/background.cpp:173 +#: src/object/background.cpp:193 msgid "Parallax Speed x" msgstr "Parallaksehastighed x" -#: src/object/background.cpp:174 +#: src/object/background.cpp:194 msgid "Parallax Speed y" msgstr "Parallaksehastighed y" -#: src/object/background.cpp:175 +#: src/object/background.cpp:195 msgid "Top image" msgstr "Top billede" -#: src/object/background.cpp:176 +#: src/object/background.cpp:196 msgid "Image" msgstr "Billede" -#: src/object/background.cpp:177 +#: src/object/background.cpp:197 msgid "Bottom image" msgstr "Bundbillede" -#: src/object/background.cpp:178 src/object/tilemap.cpp:228 -#: src/object/gradient.cpp:129 +#: src/object/background.cpp:198 +msgid "Colour" +msgstr "Farve" + +#: src/object/background.cpp:199 src/object/tilemap.cpp:278 +#: src/object/gradient.cpp:108 msgid "Draw target" msgstr "Tegn mål" -#: src/object/background.cpp:179 src/object/tilemap.cpp:229 -#: src/object/gradient.cpp:130 -msgid "Normal" -msgstr "Normal" - -#: src/object/background.cpp:179 src/object/tilemap.cpp:229 -#: src/object/gradient.cpp:130 +#: src/object/background.cpp:200 src/object/tilemap.cpp:279 +#: src/object/gradient.cpp:109 msgid "Lightmap" msgstr "Lyskort" -#: src/object/wind.cpp:63 +#: src/object/shard.hpp:35 +msgid "Shard" +msgstr "Skår" + +#: src/object/rublight.cpp:56 +msgid "Fading Speed" +msgstr "Faldende hastighed" + +#: src/object/rublight.cpp:57 +msgid "Glowing Strength" +msgstr "Glødende styrke" + +#: src/object/wind.cpp:78 src/object/custom_particle_system.cpp:499 msgid "Speed X" msgstr "Hastighed X" -#: src/object/wind.cpp:64 +#: src/object/wind.cpp:79 src/object/custom_particle_system.cpp:500 msgid "Speed Y" msgstr "Hastighed Y" -#: src/object/wind.cpp:65 +#: src/object/wind.cpp:80 msgid "Acceleration" msgstr "Acceleration" -#: src/object/wind.cpp:66 +#: src/object/wind.cpp:81 msgid "Blowing" msgstr "Blæsende" -#: src/object/bicycle_platform.hpp:64 +#: src/object/wind.cpp:82 +msgid "Affects Badguys" +msgstr "Påvirker slemme fyre" + +#: src/object/wind.cpp:83 +msgid "Affects Objects" +msgstr "Påvirker objekter" + +#: src/object/wind.cpp:84 +msgid "Affects Player" +msgstr "Påvirker spiller" + +#: src/object/wind.cpp:85 +msgid "Fancy Particles" +msgstr "Fancy partikler" + +#: src/object/bicycle_platform.hpp:67 msgid "Bicycle Platform" msgstr "Cykelplatform" -#: src/object/platform.cpp:67 src/object/thunderstorm.cpp:69 -#: src/object/tilemap.cpp:241 +#: src/object/platform.cpp:80 src/object/thunderstorm.cpp:77 +#: src/object/tilemap.cpp:292 src/object/conveyor_belt.cpp:62 msgid "Running" msgstr "Løbende" -#: src/object/rock.cpp:182 +#: src/object/rock.cpp:71 +msgid "Small" +msgstr "Lille" + +#: src/object/rock.cpp:72 +msgid "Large" +msgstr "Stor" + +#: src/object/rock.cpp:234 msgid "On-grab script" msgstr "On grab-skript" -#: src/object/rock.cpp:183 +#: src/object/rock.cpp:235 msgid "On-ungrab script" msgstr "On-ungrab-skript" @@ -627,802 +984,1712 @@ msgstr "On-ungrab-skript" msgid "Interactive particle system" msgstr "Interaktivt partikelsystem" -#: src/object/thunderstorm.cpp:70 +#: src/object/thunderstorm.cpp:78 msgid "Interval" msgstr "Interval" -#: src/object/thunderstorm.cpp:71 +#: src/object/thunderstorm.cpp:79 msgid "Strike Script" msgstr "Angrebsskript" -#: src/object/cloud_particle_system.hpp:36 +#: src/object/cloud_particle_system.hpp:42 msgid "Cloud Particles" msgstr "Skypartikler" -#: src/object/ispy.hpp:33 +#: src/object/custom_particle_system.cpp:423 +msgid "Texture" +msgstr "Struktur" + +#: src/object/custom_particle_system.cpp:425 +msgid "Amount" +msgstr "Mængde" + +#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:59 +#: src/editor/particle_editor.cpp:141 +msgid "Delay" +msgstr "Forsinkelse" + +#: src/object/custom_particle_system.cpp:427 +msgid "Lifetime" +msgstr "Livstid" + +#: src/object/custom_particle_system.cpp:428 +msgid "Lifetime variation" +msgstr "Livstidsvariation" + +#: src/object/custom_particle_system.cpp:429 +#: src/editor/particle_editor.cpp:164 +msgid "Birth mode" +msgstr "Fødselstilstand" + +#: src/object/custom_particle_system.cpp:430 +#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:115 +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/joystick_menu.cpp:108 +#: src/supertux/menu/joystick_menu.cpp:215 src/editor/object_settings.cpp:129 +#: src/editor/particle_editor.cpp:162 src/editor/particle_editor.cpp:168 +msgid "None" +msgstr "Ingen" + +#: src/object/custom_particle_system.cpp:430 +#: src/object/custom_particle_system.cpp:465 +#: src/editor/particle_editor.cpp:166 +msgid "Shrink" +msgstr "Krympe" + +#: src/object/custom_particle_system.cpp:434 +#: src/editor/particle_editor.cpp:172 +msgid "Birth easing" +msgstr "Fødselslempelse" + +#: src/object/custom_particle_system.cpp:436 +#: src/object/custom_particle_system.cpp:471 src/editor/node_marker.cpp:129 +msgid "No easing" +msgstr "Ingen lempelse" + +#: src/object/custom_particle_system.cpp:437 +#: src/object/custom_particle_system.cpp:472 src/editor/node_marker.cpp:130 +msgid "Quad in" +msgstr "Quad ind" + +#: src/object/custom_particle_system.cpp:437 +#: src/object/custom_particle_system.cpp:472 src/editor/node_marker.cpp:130 +msgid "Quad out" +msgstr "Quad ud" + +#: src/object/custom_particle_system.cpp:437 +#: src/object/custom_particle_system.cpp:472 src/editor/node_marker.cpp:130 +msgid "Quad in/out" +msgstr "Quad ind/ud" + +#: src/object/custom_particle_system.cpp:438 +#: src/object/custom_particle_system.cpp:473 src/editor/node_marker.cpp:131 +msgid "Cubic in" +msgstr "Kubik ind" + +#: src/object/custom_particle_system.cpp:438 +#: src/object/custom_particle_system.cpp:473 src/editor/node_marker.cpp:131 +msgid "Cubic out" +msgstr "Kubik ud" + +#: src/object/custom_particle_system.cpp:438 +#: src/object/custom_particle_system.cpp:473 src/editor/node_marker.cpp:131 +msgid "Cubic in/out" +msgstr "Kubik ind/ud" + +#: src/object/custom_particle_system.cpp:439 +#: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 +msgid "Quart in" +msgstr "Kvart ind" + +#: src/object/custom_particle_system.cpp:439 +#: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 +msgid "Quart out" +msgstr "Kvart ud" + +#: src/object/custom_particle_system.cpp:439 +#: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 +msgid "Quart in/out" +msgstr "Kvart ind/ud" + +#: src/object/custom_particle_system.cpp:440 +#: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 +msgid "Quint in" +msgstr "Kvint ind" + +#: src/object/custom_particle_system.cpp:440 +#: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 +msgid "Quint out" +msgstr "Kvint ud" + +#: src/object/custom_particle_system.cpp:440 +#: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 +msgid "Quint in/out" +msgstr "Kvint ind/ud" + +#: src/object/custom_particle_system.cpp:441 +#: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 +msgid "Sine in" +msgstr "Sinus ind" + +#: src/object/custom_particle_system.cpp:441 +#: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 +msgid "Sine out" +msgstr "Sinus ud" + +#: src/object/custom_particle_system.cpp:441 +#: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 +msgid "Sine in/out" +msgstr "Sinus ind/ud" + +#: src/object/custom_particle_system.cpp:442 +#: src/object/custom_particle_system.cpp:477 src/editor/node_marker.cpp:135 +msgid "Circular in" +msgstr "Cirkulær ind" + +#: src/object/custom_particle_system.cpp:442 +#: src/object/custom_particle_system.cpp:477 src/editor/node_marker.cpp:135 +msgid "Circular out" +msgstr "Cirkulær ud" + +#: src/object/custom_particle_system.cpp:442 +#: src/object/custom_particle_system.cpp:477 src/editor/node_marker.cpp:135 +msgid "Circular in/out" +msgstr "Cirkulær ind/ud" + +#: src/object/custom_particle_system.cpp:443 +#: src/object/custom_particle_system.cpp:478 src/editor/node_marker.cpp:136 +msgid "Exponential in" +msgstr "Eksponentiel ind" + +#: src/object/custom_particle_system.cpp:443 +#: src/object/custom_particle_system.cpp:478 src/editor/node_marker.cpp:136 +msgid "Exponential out" +msgstr "Eksponentiel ud" + +#: src/object/custom_particle_system.cpp:443 +#: src/object/custom_particle_system.cpp:478 src/editor/node_marker.cpp:136 +msgid "Exponential in/out" +msgstr "Eksponentiel ind/ud" + +#: src/object/custom_particle_system.cpp:444 +#: src/object/custom_particle_system.cpp:479 src/editor/node_marker.cpp:137 +msgid "Elastic in" +msgstr "Elastisk ind" + +#: src/object/custom_particle_system.cpp:444 +#: src/object/custom_particle_system.cpp:479 src/editor/node_marker.cpp:137 +msgid "Elastic out" +msgstr "Elastisk ud" + +#: src/object/custom_particle_system.cpp:444 +#: src/object/custom_particle_system.cpp:479 src/editor/node_marker.cpp:137 +msgid "Elastic in/out" +msgstr "Elastisk ind/ud" + +#: src/object/custom_particle_system.cpp:445 +#: src/object/custom_particle_system.cpp:480 src/editor/node_marker.cpp:138 +msgid "Back in" +msgstr "Baglæns ind" + +#: src/object/custom_particle_system.cpp:445 +#: src/object/custom_particle_system.cpp:480 src/editor/node_marker.cpp:138 +msgid "Back out" +msgstr "Baglæns ud" + +#: src/object/custom_particle_system.cpp:445 +#: src/object/custom_particle_system.cpp:480 src/editor/node_marker.cpp:138 +msgid "Back in/out" +msgstr "Baglæns ind/ud" + +#: src/object/custom_particle_system.cpp:446 +#: src/object/custom_particle_system.cpp:481 src/editor/node_marker.cpp:139 +msgid "Bounce in" +msgstr "Hop ind" + +#: src/object/custom_particle_system.cpp:446 +#: src/object/custom_particle_system.cpp:481 src/editor/node_marker.cpp:139 +msgid "Bounce out" +msgstr "Hop ud" + +#: src/object/custom_particle_system.cpp:446 +#: src/object/custom_particle_system.cpp:481 src/editor/node_marker.cpp:139 +msgid "Bounce in/out" +msgstr "Hop ind/ud" + +#: src/object/custom_particle_system.cpp:462 +msgid "Birth time" +msgstr "Fødselstid" + +#: src/object/custom_particle_system.cpp:463 +msgid "Birth time variation" +msgstr "Fødselstidsvariation" + +#: src/object/custom_particle_system.cpp:464 +#: src/editor/particle_editor.cpp:170 +msgid "Death mode" +msgstr "Dødstilstand" + +#: src/object/custom_particle_system.cpp:469 +#: src/editor/particle_editor.cpp:173 +msgid "Death easing" +msgstr "Dødslempelse" + +#: src/object/custom_particle_system.cpp:497 +msgid "Death time" +msgstr "Dødstid" + +#: src/object/custom_particle_system.cpp:498 +msgid "Death time variation" +msgstr "Dødstidsvariation" + +#: src/object/custom_particle_system.cpp:501 +msgid "Speed X (variation)" +msgstr "Hastighed X (variation)" + +#: src/object/custom_particle_system.cpp:502 +msgid "Speed Y (variation)" +msgstr "Hastighed Y (variation)" + +#: src/object/custom_particle_system.cpp:503 +msgid "Acceleration X" +msgstr "Acceleration X" + +#: src/object/custom_particle_system.cpp:504 +msgid "Acceleration Y" +msgstr "Acceleration Y" + +#: src/object/custom_particle_system.cpp:505 +msgid "Friction X" +msgstr "Friktion X" + +#: src/object/custom_particle_system.cpp:506 +msgid "Friction Y" +msgstr "Friktion Y" + +#: src/object/custom_particle_system.cpp:507 +#: src/editor/particle_editor.cpp:189 +msgid "Feather factor" +msgstr "Fjerfaktor" + +#: src/object/custom_particle_system.cpp:508 +msgid "Rotation" +msgstr "Rotering" + +#: src/object/custom_particle_system.cpp:509 +msgid "Rotation (variation)" +msgstr "Rotering (variation)" + +#: src/object/custom_particle_system.cpp:510 +#: src/editor/particle_editor.cpp:195 +msgid "Rotation speed" +msgstr "Roteringshastighed" + +#: src/object/custom_particle_system.cpp:511 +msgid "Rotation speed (variation)" +msgstr "Roteringshastighed (variation)" + +#: src/object/custom_particle_system.cpp:512 +#: src/editor/particle_editor.cpp:200 +msgid "Rotation acceleration" +msgstr "Roteringsacceleration" + +#: src/object/custom_particle_system.cpp:513 +msgid "Rotation friction" +msgstr "Roteringsfriktion" + +#: src/object/custom_particle_system.cpp:514 +#: src/editor/particle_editor.cpp:208 +msgid "Rotation mode" +msgstr "Roteringstilstand" + +#: src/object/custom_particle_system.cpp:515 +#: src/editor/particle_editor.cpp:206 +msgid "Fixed" +msgstr "Låst" + +#: src/object/custom_particle_system.cpp:515 +#: src/editor/particle_editor.cpp:205 +msgid "Facing" +msgstr "Overfor" + +#: src/object/custom_particle_system.cpp:515 +#: src/editor/particle_editor.cpp:204 +msgid "Wiggling" +msgstr "Vrikkende" + +#: src/object/custom_particle_system.cpp:519 +#: src/editor/particle_editor.cpp:219 +msgid "Collision mode" +msgstr "Kollisionstilstand" + +#: src/object/custom_particle_system.cpp:520 +msgid "None (pass through)" +msgstr "Ingen (kommer gennem)" + +#: src/object/custom_particle_system.cpp:520 +msgid "Stick" +msgstr "Holde" + +#: src/object/custom_particle_system.cpp:520 +msgid "Stick Forever" +msgstr "Hold for evigt" + +#: src/object/custom_particle_system.cpp:520 +#: src/editor/particle_editor.cpp:214 +msgid "Bounce (heavy)" +msgstr "Hoppe (tungt)" + +#: src/object/custom_particle_system.cpp:520 +#: src/editor/particle_editor.cpp:213 +msgid "Bounce (light)" +msgstr "Hoppe (let)" + +#: src/object/custom_particle_system.cpp:520 +msgid "Kill particle" +msgstr "Dræberpartikel" + +#: src/object/custom_particle_system.cpp:520 +msgid "Fade out particle" +msgstr "Svind bort-partikel" + +#: src/object/custom_particle_system.cpp:524 +msgid "Delete if off-screen" +msgstr "Slet hvis udenfor skærmen" + +#: src/object/custom_particle_system.cpp:525 +#: src/editor/particle_editor.cpp:224 +msgid "Never" +msgstr "Aldrig" + +#: src/object/custom_particle_system.cpp:525 +#: src/editor/particle_editor.cpp:223 +msgid "Only on exit" +msgstr "Kun ved udgang" + +#: src/object/custom_particle_system.cpp:525 +msgid "Always" +msgstr "Altid" + +#: src/object/custom_particle_system.cpp:529 +msgid "Cover screen" +msgstr "Dækskærm" + +#: src/object/ispy.hpp:35 msgid "Ispy" msgstr "Ispy" -#: src/object/skull_tile.hpp:31 -msgid "Skull Tile" -msgstr "Kraniumblok" +#: src/object/particle_zone.cpp:51 +msgid "Particle Name" +msgstr "Partikelnavn" -#: src/object/weak_block.cpp:211 -msgid "Linked" -msgstr "Forbundet" +#: src/object/particle_zone.cpp:62 +msgid "Spawn" +msgstr "Start" -#: src/object/decal.hpp:34 +#: src/object/particle_zone.cpp:63 +msgid "Life zone" +msgstr "Livszone" + +#: src/object/particle_zone.cpp:64 +msgid "Life zone (clear)" +msgstr "Livszone (fri bane)" + +#: src/object/particle_zone.cpp:65 +msgid "Kill particles" +msgstr "Dræberpartikler" + +#: src/object/particle_zone.cpp:66 +msgid "Clear particles" +msgstr "Klare partikler" + +#: src/object/weak_block.cpp:98 +msgid "Hay" +msgstr "Hø" + +#: src/object/decal.hpp:41 msgid "Decal" msgstr "Mærkat" -#: src/object/tilemap.cpp:217 +#: src/object/tilemap.cpp:267 msgid "Resize offset x" msgstr "Ændr forskydning x" -#: src/object/tilemap.cpp:218 +#: src/object/tilemap.cpp:268 msgid "Resize offset y" msgstr "Ændr forskydning y" -#: src/object/tilemap.cpp:223 +#: src/object/tilemap.cpp:270 src/supertux/menu/editor_sector_menu.cpp:41 +#: src/editor/object_option.cpp:178 +msgid "Width" +msgstr "Bredde" + +#: src/object/tilemap.cpp:271 src/supertux/menu/editor_sector_menu.cpp:42 +#: src/editor/object_option.cpp:179 +msgid "Height" +msgstr "Højde" + +#: src/object/tilemap.cpp:273 msgid "Alpha" msgstr "Alfa" -#: src/object/tilemap.cpp:224 +#: src/object/tilemap.cpp:274 msgid "Speed x" msgstr "Hastighed x" -#: src/object/tilemap.cpp:225 +#: src/object/tilemap.cpp:275 msgid "Speed y" msgstr "Hastighed y" -#: src/object/tilemap.cpp:226 +#: src/object/tilemap.cpp:276 msgid "Tint" msgstr "Toning" -#: src/object/tilemap.cpp:244 src/supertux/menu/editor_tilegroup_menu.cpp:26 -#: src/editor/toolbox_widget.cpp:90 +#: src/object/tilemap.cpp:296 src/supertux/menu/editor_tilegroup_menu.cpp:26 +#: src/editor/toolbox_widget.cpp:98 msgid "Tiles" msgstr "Felter" -#: src/object/gradient.cpp:115 -msgid "Left Colour" -msgstr "Venstre farve" - -#: src/object/gradient.cpp:116 -msgid "Right Colour" -msgstr "Højre farve" - -#: src/object/gradient.cpp:118 -msgid "Top Colour" -msgstr "Topfarve" +#: src/object/gradient.cpp:98 +msgid "Primary Colour" +msgstr "Grundfarve" -#: src/object/gradient.cpp:119 -msgid "Bottom Colour" -msgstr "Bundfarve" +#: src/object/gradient.cpp:99 +msgid "Secondary Colour" +msgstr "Sekundær farve" -#: src/object/gradient.cpp:125 +#: src/object/gradient.cpp:104 msgid "Vertical" msgstr "Lodret" -#: src/object/gradient.cpp:125 +#: src/object/gradient.cpp:104 msgid "Horizontal" msgstr "Vandret" -#: src/object/gradient.cpp:125 +#: src/object/gradient.cpp:104 msgid "Vertical (whole sector)" msgstr "Lodret (hel sektor)" -#: src/object/gradient.cpp:125 +#: src/object/gradient.cpp:104 msgid "Horizontal (whole sector)" msgstr "Vandret (hel sektor)" -#: src/object/gradient.cpp:135 +#: src/object/gradient.cpp:114 msgid "Blend mode" msgstr "Blandingstilstand" -#: src/object/gradient.cpp:136 +#: src/object/gradient.cpp:115 msgid "Blend" msgstr "Blanding" -#: src/object/gradient.cpp:136 +#: src/object/gradient.cpp:115 msgid "Additive" msgstr "Tilsætningsstof" -#: src/object/gradient.cpp:136 +#: src/object/gradient.cpp:115 msgid "Modulate" msgstr "Modulere" -#: src/object/gradient.cpp:136 src/supertux/menu/keyboard_menu.cpp:60 -#: src/supertux/menu/joystick_menu.cpp:106 -#: src/supertux/menu/joystick_menu.cpp:213 src/editor/object_settings.cpp:124 -msgid "None" -msgstr "Ingen" +#: src/object/bumper.hpp:38 +msgid "Bumper" +msgstr "Kofanger" + +#: src/object/conveyor_belt.cpp:63 +msgid "Length" +msgstr "Længde" -#: src/object/unstable_tile.hpp:34 +#: src/object/moving_sprite.cpp:192 src/object/pneumatic_platform.cpp:161 +msgid "Sprite" +msgstr "Computergrafik" + +#: src/object/unstable_tile.hpp:42 msgid "Unstable Tile" -msgstr "Ustabil blok" +msgstr "Ustabilt felt" -#: src/object/brick.hpp:31 -msgid "Brick" -msgstr "Mursten" +#: src/object/brick.hpp:70 +msgid "Heavy Brick" +msgstr "Tung mursten" -#: src/object/invisible_wall.hpp:34 +#: src/object/invisible_wall.hpp:37 msgid "Invisible Wall" msgstr "Usynlig væg" -#: src/object/spotlight.hpp:38 +#: src/object/spotlight.hpp:52 msgid "Spotlight" msgstr "Spotlys" -#: src/object/scripted_object.hpp:39 +#: src/object/scripted_object.hpp:40 msgid "Scripted Object" msgstr "Skriptopbygget objekt" -#: src/object/coin.hpp:75 +#: src/object/custom_particle_system_file.hpp:40 +msgid "Custom Particles from file" +msgstr "Brugerdefinerede partikler fra fil" + +#: src/object/coin.hpp:97 msgid "Heavy Coin" msgstr "Tung mønt" -#: src/object/bonus_block.hpp:55 +#: src/object/explosion.hpp:35 +msgid "Explosion" +msgstr "Eksplosion" + +#: src/object/bonus_block.hpp:62 msgid "Bonus Block" msgstr "Bonusblok" -#: src/object/magicblock.hpp:41 +#: src/object/magicblock.hpp:42 msgid "Magic Tile" -msgstr "Magisk blok" +msgstr "Magisk felt" -#: src/object/camera.hpp:67 +#: src/object/camera.hpp:61 msgid "Camera" msgstr "Kamera" -#: src/object/textscroller.hpp:44 -msgid "TextScroller" +#: src/object/textscroller.hpp:45 +msgid "Text Scroller" msgstr "Tekstruller" -#: src/gui/menu_badguy_select.cpp:93 -msgid "List of enemies" -msgstr "Liste over fjender" +#: src/gui/notification.cpp:57 +msgid "Click for more details." +msgstr "Klik for flere detaljer." + +#: src/gui/notification.cpp:150 +msgid "Do not show again" +msgstr "Vis ikke igen" + +#: src/gui/notification.cpp:157 src/supertux/menu/download_dialog.cpp:124 +msgid "Close" +msgstr "Luk" + +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#, c++-format +msgid "Selected item: {}" +msgstr "Valgt: {}" -#: src/gui/menu_badguy_select.cpp:95 -msgid "Enemy" -msgstr "Fjende" +#: src/gui/menu_string_array.cpp:70 +msgid "Edit string array" +msgstr "Redigér streng-array" -#: src/gui/menu_badguy_select.cpp:96 +#: src/gui/menu_string_array.cpp:79 src/gui/menu_object_select.cpp:50 +#: src/supertux/menu/profile_menu.cpp:88 msgid "Add" msgstr "Tilføj" -#: src/gui/menu_badguy_select.cpp:106 src/gui/menu_color.cpp:34 -#: src/gui/dialog.hpp:80 src/gui/menu_script.cpp:47 -#: src/supertux/menu/editor_sector_menu.cpp:46 -#: src/supertux/menu/editor_levelset_menu.cpp:62 -#: src/supertux/menu/addon_menu.cpp:349 +#: src/gui/menu_string_array.cpp:80 +msgid "Insert" +msgstr "Indsæt" + +#: src/gui/menu_string_array.cpp:81 +#: src/supertux/menu/addon_preview_menu.cpp:177 src/editor/object_menu.cpp:61 +msgid "Update" +msgstr "Opdatér" + +#: src/gui/menu_string_array.cpp:82 src/supertux/menu/profile_menu.cpp:108 +#: src/supertux/menu/profile_menu.cpp:110 +msgid "Delete" +msgstr "Slet" + +#: src/gui/menu_string_array.cpp:84 src/gui/menu_object_select.cpp:61 +#: src/gui/menu_color.cpp:37 src/gui/dialog.hpp:87 src/gui/menu_script.cpp:46 +#: src/supertux/menu/editor_sector_menu.cpp:48 +#: src/supertux/menu/editor_levelset_menu.cpp:58 #: src/supertux/menu/editor_new_levelset_menu.cpp:37 -#: src/supertux/menu/editor_level_menu.cpp:44 src/editor/object_menu.cpp:43 +#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:71 msgid "OK" msgstr "O.k." -#: src/gui/menu_badguy_select.cpp:135 -msgid "Do you want to delete this badguy from the list?" -msgstr "Ønsker du at slette denne fjende fra listen?" +#: src/gui/menu_object_select.cpp:46 +msgid "List of objects" +msgstr "Objektliste" -#: src/gui/menu_badguy_select.cpp:136 src/gui/dialog.hpp:89 -#: src/supertux/menu/editor_menu.cpp:123 src/editor/editor.cpp:478 -msgid "Yes" -msgstr "Ja" +#: src/gui/menu_object_select.cpp:48 +#, c++-format +msgid "Select object ({})" +msgstr "Vælg objekt ({})" -#: src/gui/menu_badguy_select.cpp:139 src/gui/dialog.hpp:90 -#: src/supertux/menu/editor_menu.cpp:126 src/editor/editor.cpp:485 -msgid "No" -msgstr "Nej" +#: src/gui/menu_object_select.cpp:114 +msgid "Are you sure you want to remove this object from the list?" +msgstr "Er du sikker på, du vil fjerne objektet fra listen?" #: src/gui/menu_color.cpp:24 msgid "Mix the colour" msgstr "Bland farven" -#: src/gui/menu_filesystem.cpp:111 +#: src/gui/dialog.hpp:96 src/supertux/menu/editor_level_select_menu.cpp:181 +#: src/editor/editor.cpp:663 +msgid "Yes" +msgstr "Ja" + +#: src/gui/dialog.hpp:97 src/supertux/menu/editor_level_select_menu.cpp:185 +#: src/editor/particle_editor.cpp:781 src/editor/editor.cpp:670 +msgid "No" +msgstr "Nej" + +#: src/gui/menu_list.cpp:38 src/gui/menu_filesystem.cpp:120 +#: src/gui/menu_paths.cpp:48 src/supertux/menu/particle_editor_save_as.cpp:42 #: src/supertux/menu/editor_sectors_menu.cpp:45 -#: src/supertux/menu/editor_sectors_menu.cpp:95 -#: src/supertux/menu/editor_sectors_menu.cpp:100 +#: src/supertux/menu/editor_sectors_menu.cpp:94 +#: src/supertux/menu/editor_sectors_menu.cpp:99 #: src/supertux/menu/editor_objectgroup_menu.cpp:42 -#: src/supertux/menu/editor_tilegroup_menu.cpp:36 src/editor/editor.cpp:489 +#: src/supertux/menu/editor_tilegroup_menu.cpp:36 +#: src/supertux/menu/editor_level_select_menu.cpp:190 +#: src/supertux/menu/editor_save_as.cpp:42 +#: src/supertux/menu/particle_editor_open.cpp:43 +#: src/editor/particle_editor.cpp:785 src/editor/editor.cpp:674 msgid "Cancel" msgstr "Annuller" +#: src/gui/menu_filesystem.cpp:118 +msgid "Open Directory" +msgstr "Åbn folder" + #: src/gui/menu_script.cpp:28 msgid "Edit script" msgstr "Rediger skript" -#: src/badguy/toad.hpp:37 -msgid "Toad" -msgstr "Tudse" +#: src/gui/menu_paths.cpp:32 +msgid "Clone" +msgstr "Klon" -#: src/badguy/mrtree.hpp:29 -msgid "Walking Tree" -msgstr "Vandrende træ" - -#: src/badguy/plant.hpp:33 -msgid "Plant" -msgstr "Plante" +#: src/gui/menu_paths.cpp:41 +msgid "" +"An error occurred and the game could\n" +"not clone the path. Please contact\n" +"the developers for support." +msgstr "Der opstod en fejl, og spillet kunne\nikke klone stien. Kontakt venligst\nudviklerne for at få hjælp." -#: src/badguy/crystallo.hpp:30 -msgid "Crystallo" -msgstr "Crystallo" +#: src/gui/menu_paths.cpp:44 +msgid "Bind" +msgstr "Binde" -#: src/badguy/totem.hpp:36 -msgid "Totem" -msgstr "Totem" +#: src/gui/menu_paths.cpp:49 +msgid "" +"Do you wish to clone the path to edit it separately,\n" +"or do you want to bind both paths together\n" +"so that any edit on one edits the other?" +msgstr "Vil du klone stien, så du kan rette den,\neller vil du binde andre stier sammen\nså tilretninger på en sti også rettes i den anden?" + +#: src/gui/menu_paths.cpp:56 +#, c++-format +msgid "Path {}" +msgstr "Sti {}" + +#: src/gui/menu_paths.cpp:67 src/supertux/menu/integrations_menu.cpp:60 +#: src/supertux/menu/editor_converters_menu.cpp:79 +#: src/supertux/menu/video_system_menu.cpp:45 +#: src/supertux/menu/contrib_menu.cpp:102 src/supertux/menu/debug_menu.cpp:77 +#: src/supertux/menu/multiplayer_menu.cpp:39 +#: src/supertux/menu/custom_menu_menu.cpp:65 +#: src/supertux/menu/editor_level_select_menu.cpp:98 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:63 +#: src/supertux/menu/worldmap_cheat_menu.cpp:57 +#: src/supertux/menu/worldmap_cheat_menu.cpp:196 +#: src/supertux/menu/editor_levelset_select_menu.cpp:114 +#: src/supertux/menu/options_menu.cpp:223 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:69 +#: src/supertux/menu/addon_preview_menu.cpp:193 +#: src/supertux/menu/profile_menu.cpp:118 +#: src/supertux/menu/multiplayer_players_menu.cpp:91 +#: src/supertux/menu/addon_menu.cpp:153 +#: src/supertux/menu/editor_new_levelset_menu.cpp:40 +#: src/supertux/menu/options_select_menu.cpp:44 +#: src/supertux/menu/world_set_menu.cpp:33 +#: src/supertux/menu/addon_browse_menu.cpp:162 +#: src/supertux/menu/web_asset_menu.cpp:48 +#: src/supertux/menu/profile_name_menu.cpp:45 +#: src/supertux/menu/keyboard_menu.cpp:71 +#: src/supertux/menu/sorted_contrib_menu.cpp:51 +#: src/supertux/menu/language_menu.cpp:63 +#: src/supertux/menu/joystick_menu.cpp:99 +#: src/supertux/menu/contrib_levelset_menu.cpp:67 +#: src/supertux/menu/cheat_menu.cpp:58 +#: src/supertux/menu/addon_file_install_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:43 +#: src/supertux/menu/cheat_apply_menu.cpp:63 +#: src/supertux/menu/multiplayer_player_menu.cpp:205 +#: src/supertux/menu/editor_delete_level_menu.cpp:68 +msgid "Back" +msgstr "Tilbage" -#: src/badguy/stalactite.hpp:38 -msgid "Stalactite" -msgstr "Stalaktit" +#: src/addon/addon_manager.cpp:562 +msgid "Only one resource pack is allowed to be enabled at a time." +msgstr "Kun én ressourcepakke kan være slået til af gangen." -#: src/badguy/haywire.hpp:42 -msgid "Haywire" -msgstr "Skuddermudder" +#: src/addon/addon_manager.cpp:837 +#, c++-format +msgid "Add-on {} by {} is already installed." +msgstr "Tilføjelse {} af {} er allerede installeret." -#: src/badguy/dispenser.hpp:48 -msgid "Dispenser" -msgstr "Affaldskværn" +#: src/addon/addon_manager.cpp:857 +#, c++-format +msgid "Add-on {} by {} successfully installed." +msgstr "Tilføjelse {} af {} installeret OK." -#: src/badguy/short_fuse.hpp:29 -msgid "Short Fuse" -msgstr "Kort lunte" +#: src/addon/addon.cpp:71 src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Levelset" +msgstr "Banesæt" -#: src/badguy/zeekling.hpp:36 -msgid "Zeekling" -msgstr "Zeekling" +#: src/addon/addon.cpp:74 src/supertux/menu/editor_levelset_menu.cpp:54 +#: data//images/engine/editor/objects.stoi:389 +msgid "Worldmap" +msgstr "Verdenskort" -#: src/badguy/mriceblock.hpp:46 -msgid "Iceblock" -msgstr "Isblok" +#: src/addon/addon.cpp:77 +msgid "World" +msgstr "Verden" -#: src/badguy/jumpy.hpp:36 +#: src/addon/addon.cpp:80 +msgid "Add-on" +msgstr "Tilføjelse" + +#: src/addon/addon.cpp:83 +msgid "Language Pack" +msgstr "Sprogpakke" + +#: src/addon/addon.cpp:86 +msgid "Resource Pack" +msgstr "Ressourcepakke" + +#: src/addon/addon.cpp:89 +msgid "Unknown" +msgstr "Ukendt" + +#: src/addon/addon.cpp:100 +#, c++-format +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" af \"{}\"" + +#: src/addon/addon.cpp:114 +msgid "add-on" +msgstr "tilføjelse" + +#: src/addon/addon.cpp:114 +msgid "add-ons" +msgstr "tilføjelser" + +#: src/badguy/toad.hpp:38 +msgid "Toad" +msgstr "Tudse" + +#: src/badguy/mrtree.hpp:32 +msgid "Mr. Tree" +msgstr "Hr. træ" + +#: src/badguy/plant.hpp:34 +msgid "Plant" +msgstr "Plante" + +#: src/badguy/tarantula.hpp:39 src/badguy/tarantula.cpp:353 +msgid "Tarantula" +msgstr "Tarantel" + +#: src/badguy/granito_giant.cpp:71 +msgid "Awake" +msgstr "Vågen" + +#: src/badguy/granito_giant.cpp:72 +msgid "Sleeping" +msgstr "Sover" + +#: src/badguy/granito_giant.cpp:73 +msgid "Corrupted A" +msgstr "Beskadiget A" + +#: src/badguy/granito_giant.cpp:74 +msgid "Corrupted B" +msgstr "Beskadiget B" + +#: src/badguy/granito_giant.cpp:75 +msgid "Corrupted C" +msgstr "Beskadiget C" + +#: src/badguy/crystallo.hpp:33 +msgid "Crystallo" +msgstr "Crystallo" + +#: src/badguy/viciousivy.cpp:45 src/badguy/snail.cpp:70 +#: src/badguy/kamikazesnowball.cpp:118 src/badguy/walkingleaf.cpp:36 +#: src/badguy/jumpy.cpp:46 src/badguy/igel.cpp:189 src/badguy/mrtree.cpp:51 +msgid "Corrupted" +msgstr "Beskadiget" + +#: src/badguy/totem.hpp:37 +msgid "Totem" +msgstr "Totem" + +#: src/badguy/stalactite.hpp:42 +msgid "Stalactite" +msgstr "Stalaktit" + +#: src/badguy/fish_chasing.cpp:198 +msgid "Tracking Distance" +msgstr "Sporingsafstand" + +#: src/badguy/fish_chasing.cpp:199 +msgid "Losing Distance" +msgstr "Tabsafstand" + +#: src/badguy/fish_chasing.cpp:200 +msgid "Chase Speed" +msgstr "Forfølgelseshastighed" + +#: src/badguy/root_sapling.hpp:41 +msgid "Root Sapling" +msgstr "Rodplantning" + +#: src/badguy/haywire.hpp:46 +msgid "Haywire" +msgstr "Skuddermudder" + +#: src/badguy/dispenser.hpp:52 +msgid "Dispenser" +msgstr "Affaldskværn" + +#: src/badguy/short_fuse.hpp:30 +msgid "Short Fuse" +msgstr "Kort lunte" + +#: src/badguy/zeekling.hpp:39 +msgid "Zeekling" +msgstr "Zeekling" + +#: src/badguy/smartball.cpp:35 +msgid "Pumpkin" +msgstr "Græskar" + +#: src/badguy/bouncing_snowball.cpp:82 +msgid "Fatbat" +msgstr "Fatbat" + +#: src/badguy/dive_mine.hpp:50 +msgid "Dive Mine" +msgstr "Dykkermine" + +#: src/badguy/granito_big.hpp:33 +msgid "Big Granito" +msgstr "Stor granit" + +#: src/badguy/mriceblock.hpp:49 +msgid "Mr. Iceblock" +msgstr "Hr. Isblok" + +#: src/badguy/granito.hpp:39 src/badguy/darttrap.cpp:163 +#: src/badguy/corrupted_granito.cpp:175 src/badguy/dispenser.cpp:438 +msgid "Granito" +msgstr "Granit" + +#: src/badguy/fish_swimming.cpp:54 src/badguy/jumpy.cpp:44 +#: data//images/ice_world.strf:10 data//images/tiles.strf:28 +#: data//images/worldmap.strf:41 +msgid "Snow" +msgstr "Sne" + +#: src/badguy/fish_swimming.cpp:55 data//images/ice_world.strf:211 +#: data//images/tiles.strf:366 data//images/worldmap.strf:67 +msgid "Forest" +msgstr "Skov" + +#: src/badguy/crusher.hpp:71 +msgid "Crusher" +msgstr "Knuser" + +#: src/badguy/flame.cpp:84 +msgid "Fire" +msgstr "Ild" + +#: src/badguy/flame.cpp:85 +msgid "Ghost" +msgstr "Spøgelse" + +#: src/badguy/corrupted_granito_big.hpp:35 +msgid "Corrupted Big Granito" +msgstr "Beskadiget stor granit" + +#: src/badguy/scrystallo.cpp:57 +msgid "Walk Radius" +msgstr "Gangradius" + +#: src/badguy/scrystallo.cpp:58 +msgid "Awakening Radius" +msgstr "Opvågningsradius" + +#: src/badguy/scrystallo.cpp:59 +msgid "Roof-attached" +msgstr "Tagmonteret" + +#: src/badguy/jumpy.hpp:40 msgid "Jumpy" msgstr "Nervøs" -#: src/badguy/captainsnowball.hpp:31 +#: src/badguy/captainsnowball.hpp:32 msgid "Captain Snowball" msgstr "Kaptajn Snebold" -#: src/badguy/ghosttree.hpp:42 +#: src/badguy/ghosttree.hpp:43 msgid "Ghost Tree" msgstr "Spøgelsestræ" -#: src/badguy/willowisp.cpp:283 +#: src/badguy/willowisp.cpp:314 msgid "Track range" msgstr "Baneinterval" -#: src/badguy/willowisp.cpp:284 +#: src/badguy/willowisp.cpp:315 msgid "Vanish range" msgstr "Ude af syne-interval" -#: src/badguy/willowisp.cpp:285 +#: src/badguy/willowisp.cpp:316 msgid "Fly speed" msgstr "Flyvehastighed" -#: src/badguy/kugelblitz.hpp:39 +#: src/badguy/kugelblitz.hpp:40 msgid "Kugelblitz" msgstr "Lyskoncentration" -#: src/badguy/mole_rock.hpp:42 +#: src/badguy/mole_rock.hpp:44 msgid "Mole's rock" msgstr "Muldvarps sten" -#: src/badguy/badguy.cpp:841 +#: src/badguy/badguy.cpp:1064 msgid "Death script" msgstr "Dødt skript" -#: src/badguy/sspiky.hpp:36 +#: src/badguy/sspiky.hpp:37 msgid "Sleeping Spiky" msgstr "Sovende spiky" -#: src/badguy/yeti_stalactite.hpp:33 +#: src/badguy/yeti_stalactite.hpp:34 msgid "Yeti's Stalactite" msgstr "Yetis stalaktit" -#: src/badguy/livefire.hpp:37 +#: src/badguy/fish_harmless.hpp:30 +msgid "Harmless Fish" +msgstr "Harmløs fisk" + +#: src/badguy/livefire.hpp:38 msgid "Walking Flame" msgstr "Vandrende flamme" -#: src/badguy/livefire.hpp:67 +#: src/badguy/livefire.hpp:71 msgid "Sleeping Flame" msgstr "Sovende flamme" -#: src/badguy/livefire.hpp:83 +#: src/badguy/livefire.hpp:89 msgid "Dormant Flame" msgstr "Hvilende flamme" -#: src/badguy/owl.hpp:39 +#: src/badguy/owl.hpp:45 msgid "Owl" msgstr "Ugle" -#: src/badguy/igel.hpp:34 +#: src/badguy/igel.hpp:38 msgid "Igel" msgstr "Igel" -#: src/badguy/darttrap.cpp:126 +#: src/badguy/darttrap.cpp:148 msgid "Initial delay" msgstr "Opstartsforsinkelse" -#: src/badguy/darttrap.cpp:128 +#: src/badguy/darttrap.cpp:150 msgid "Fire delay" msgstr "Ildforsinkelse" -#: src/badguy/darttrap.cpp:129 +#: src/badguy/darttrap.cpp:151 msgid "Ammo" msgstr "Ammu." -#: src/badguy/snowball.hpp:29 -msgid "Snowball" -msgstr "Snebold" +#: src/badguy/darttrap.cpp:152 +msgid "Dart sprite" +msgstr "Pil sprite" + +#: src/badguy/darttrap.cpp:164 +msgid "Skull" +msgstr "Dødningehovede" + +#: src/badguy/snowball.hpp:30 +msgid "Mr. Snowball" +msgstr "Hr. Snebold" -#: src/badguy/smartblock.hpp:29 -msgid "Smartblock" -msgstr "Smartblok" +#: src/badguy/smartblock.hpp:30 +msgid "Mrs. Iceblock" +msgstr "Fru Isblok" -#: src/badguy/yeti.cpp:369 +#: src/badguy/yeti.cpp:370 msgid "Fixed position" msgstr "Fast position" -#: src/badguy/yeti.cpp:370 +#: src/badguy/yeti.cpp:371 msgid "Lives" msgstr "Liv" -#: src/badguy/goldbomb.hpp:49 +#: src/badguy/goldbomb.hpp:50 msgid "Gold Bomb" msgstr "Gylden bombe" -#: src/badguy/flyingsnowball.hpp:32 +#: src/badguy/corrupted_granito.hpp:44 +msgid "Corrupted Granito" +msgstr "Beskadiget sten" + +#: src/badguy/mrbomb.cpp:48 +msgid "Classic" +msgstr "Klassisk" + +#: src/badguy/flyingsnowball.hpp:33 msgid "Flying Snowball" msgstr "Flyvende snebold" -#: src/badguy/skullyhop.hpp:37 -msgid "Skullyhop" -msgstr "Skullyhop" +#: src/badguy/crusher.cpp:75 +msgid "Ice (normal)" +msgstr "Is (normal)" + +#: src/badguy/crusher.cpp:76 +msgid "Ice (big)" +msgstr "Is (stor)" + +#: src/badguy/crusher.cpp:77 +msgid "Rock (normal)" +msgstr "Sten (normal)" -#: src/badguy/kamikazesnowball.hpp:32 -msgid "Snowshot" -msgstr "Sneskud" +#: src/badguy/crusher.cpp:78 +msgid "Rock (big)" +msgstr "Sten (stor)" -#: src/badguy/kamikazesnowball.hpp:52 +#: src/badguy/crusher.cpp:79 +msgid "Corrupted (normal)" +msgstr "Beskadiget (normal)" + +#: src/badguy/crusher.cpp:80 +msgid "Corrupted (big)" +msgstr "Beskadiget (stor)" + +#: src/badguy/crusher.cpp:492 +msgid "Sideways" +msgstr "Sidelæns" + +#: src/badguy/kamikazesnowball.hpp:34 +msgid "Kamikaze Snowball" +msgstr "Kamikaze snebold" + +#: src/badguy/kamikazesnowball.hpp:64 msgid "Leafshot" msgstr "Bladskud" -#: src/badguy/flame.hpp:41 +#: src/badguy/fish_swimming.hpp:40 +msgid "Swimming Fish" +msgstr "Svømmende fisk" + +#: src/badguy/flame.hpp:47 msgid "Flame" msgstr "Flamme" -#: src/badguy/poisonivy.hpp:30 -msgid "Spring Leaf" -msgstr "Forårsblad" +#: src/badguy/scrystallo.hpp:31 +msgid "Sleeping Crystallo" +msgstr "Sovende Krystallo" + +#: src/badguy/jumpy.cpp:45 +msgid "Wooden" +msgstr "Træagtig" + +#: src/badguy/jumpy.cpp:47 +msgid "Metal" +msgstr "Metal" + +#: src/badguy/jumpy.cpp:48 +msgid "Bag" +msgstr "Pose" -#: src/badguy/willowisp.hpp:55 +#: src/badguy/willowisp.hpp:57 msgid "Will o' Wisp" msgstr "Will o' Wisp" -#: src/badguy/badguy.hpp:53 +#: src/badguy/fish_jumping.hpp:41 +msgid "Jumping Fish" +msgstr "Flyvefisk" + +#: src/badguy/badguy.hpp:61 msgid "Badguy" msgstr "Slem fyr" -#: src/badguy/ghostflame.hpp:30 -msgid "Ghost Flame" -msgstr "Spøgelsesflamme" +#: src/badguy/rcrystallo.hpp:33 +msgid "Roof Crystallo" +msgstr "Tagskrystallo" -#: src/badguy/spiky.hpp:30 +#: src/badguy/spiky.hpp:31 msgid "Spiky" msgstr "Spiky" -#: src/badguy/walkingleaf.hpp:30 -msgid "Autumn Leaf" -msgstr "Forårsblad" +#: src/badguy/walkingleaf.hpp:33 +msgid "Walking Leaf" +msgstr "Vandrende blad" + +#: src/badguy/root.hpp:39 +msgid "Root" +msgstr "Rod" -#: src/badguy/owl.cpp:227 +#: src/badguy/owl.cpp:241 msgid "Carry" msgstr "Bær mig" -#: src/badguy/darttrap.hpp:33 +#: src/badguy/darttrap.hpp:35 msgid "Dart Trap" msgstr "Dartfælde" -#: src/badguy/skydive.hpp:38 +#: src/badguy/skydive.hpp:43 msgid "Skydive" msgstr "Faldskærmsudspring" -#: src/badguy/yeti.hpp:37 +#: src/badguy/yeti.hpp:38 msgid "Yeti" msgstr "Yeti" -#: src/badguy/mole.hpp:39 +#: src/badguy/snowball.cpp:41 +msgid "Bumpkin" +msgstr "Bøf" + +#: src/badguy/snowball.cpp:42 +msgid "BSOD" +msgstr "BSOD" + +#: src/badguy/mole.hpp:38 msgid "Mole" msgstr "Muldvarp" -#: src/badguy/mrbomb.hpp:42 -msgid "Bomb" -msgstr "Bombe" +#: src/badguy/corrupted_granito.cpp:176 +msgid "Skullyhop" +msgstr "Skullyhop" -#: src/badguy/walking_candle.hpp:40 +#: src/badguy/mrbomb.hpp:40 +msgid "Mr. Bomb" +msgstr "Hr. Bombe" + +#: src/badguy/walking_candle.hpp:41 msgid "Walking Candle" msgstr "Vandrende lys" -#: src/badguy/angrystone.hpp:34 +#: src/badguy/angrystone.hpp:39 msgid "Angry Stone" msgstr "Vred sten" -#: src/badguy/spidermite.hpp:35 -msgid "Spider" -msgstr "Edderkop" +#: src/badguy/tarantula.cpp:354 +msgid "Spidermite" +msgstr "Edderkoppemide" + +#: src/badguy/tarantula.cpp:374 +msgid "Static" +msgstr "Hvidstøj" -#: src/badguy/ghoul.hpp:28 +#: src/badguy/ghoul.hpp:30 msgid "Ghoul" msgstr "Ond ånd" -#: src/badguy/snowman.hpp:28 +#: src/badguy/granito_giant.hpp:32 +msgid "Giant Granito" +msgstr "Gigant granit" + +#: src/badguy/snowman.hpp:29 msgid "Snowman" msgstr "Snemand" -#: src/badguy/stumpy.hpp:35 -msgid "Walking Stump" -msgstr "Vandrende stump" +#: src/badguy/viciousivy.hpp:33 +msgid "Vicious Ivy" +msgstr "Ondskabsfuld efeu" + +#: src/badguy/stalactite.cpp:156 +msgid "ice" +msgstr "Is" + +#: src/badguy/stalactite.cpp:157 +msgid "rock" +msgstr "sten" -#: src/badguy/fish.hpp:40 -msgid "Fish" -msgstr "Fisk" +#: src/badguy/fish_chasing.hpp:33 +msgid "Chasing Fish" +msgstr "Fiskejagt" -#: src/badguy/dispenser.cpp:439 +#: src/badguy/stumpy.hpp:38 +msgid "Stumpy" +msgstr "Stumpy" + +#: src/badguy/dispenser.cpp:412 msgid "Interval (seconds)" msgstr "Interval (sekunder)" -#: src/badguy/dispenser.cpp:440 +#: src/badguy/dispenser.cpp:413 msgid "Random" msgstr "Vilkårlig" -#: src/badguy/dispenser.cpp:441 data//images/engine/editor/objects.stoi:4 -msgid "Enemies" -msgstr "Fjender" +#: src/badguy/dispenser.cpp:416 +#: src/supertux/menu/editor_objectgroup_menu.cpp:30 +#: src/editor/toolbox_widget.cpp:101 +msgid "Objects" +msgstr "Objekter" -#: src/badguy/dispenser.cpp:442 +#: src/badguy/dispenser.cpp:419 msgid "Limit dispensed badguys" msgstr "Begræns antallet af onde folk" -#: src/badguy/dispenser.cpp:444 +#: src/badguy/dispenser.cpp:421 +msgid "Obey Gravity" +msgstr "Adlyd tyngdekraften" + +#: src/badguy/dispenser.cpp:423 msgid "Max concurrent badguys" msgstr "Maks samtidige onde folk" -#: src/badguy/dispenser.cpp:446 src/supertux/menu/editor_levelset_menu.cpp:60 -msgid "Type" -msgstr "Type" - -#: src/badguy/dispenser.cpp:447 -msgid "dropper" -msgstr "dropper" +#: src/badguy/dispenser.cpp:435 +msgid "Dropper" +msgstr "Dropper" -#: src/badguy/dispenser.cpp:447 -msgid "rocket launcher" -msgstr "raketstyr" +#: src/badguy/dispenser.cpp:436 +msgid "Cannon" +msgstr "Kanon" -#: src/badguy/dispenser.cpp:447 -msgid "cannon" -msgstr "kanon" - -#: src/badguy/dispenser.cpp:447 -msgid "invisible" -msgstr "usynlig" +#: src/badguy/dispenser.cpp:437 src/worldmap/special_tile.cpp:77 +msgid "Invisible" +msgstr "Usynlig" -#: src/badguy/snail.hpp:42 +#: src/badguy/snail.hpp:43 msgid "Snail" msgstr "Snegl" -#: src/badguy/smartball.hpp:31 -msgid "Smartball" -msgstr "Smartbold" +#: src/badguy/smartball.hpp:32 +msgid "Mrs. Snowball" +msgstr "Fru Snebold" -#: src/badguy/bouncing_snowball.hpp:31 +#: src/badguy/bouncing_snowball.hpp:39 msgid "Bouncing Snowball" msgstr "Hoppende snebold" -#: src/badguy/iceflame.hpp:33 -msgid "Ice Flame" -msgstr "Isflamme" +#: src/badguy/granito_big.cpp:52 src/badguy/granito.cpp:263 +msgid "Default" +msgstr "Standard" + +#: src/badguy/granito_big.cpp:53 src/badguy/granito.cpp:264 +msgid "Standing" +msgstr "Stående" + +#: src/badguy/granito_big.cpp:54 src/badguy/granito.cpp:265 +msgid "Walking" +msgstr "Gående" + +#: src/badguy/mriceblock.cpp:63 +msgid "Laptop" +msgstr "Bærbar" -#: src/badguy/dart.hpp:43 +#: src/badguy/dart.hpp:44 msgid "Dart" msgstr "Dart" -#: src/supertux/statistics.cpp:47 +#: src/badguy/granito.cpp:268 +msgid "Sitting" +msgstr "Siddende" + +#: src/supertux/statistics.cpp:54 msgid "Max coins collected:" msgstr "Flest mønter indsamlet:" -#: src/supertux/statistics.cpp:48 +#: src/supertux/statistics.cpp:55 msgid "Max fragging:" msgstr "Flest fjender nedlagt:" -#: src/supertux/statistics.cpp:49 +#: src/supertux/statistics.cpp:56 msgid "Max secrets found:" msgstr "Flest hemmeligheder fundet:" -#: src/supertux/statistics.cpp:50 +#: src/supertux/statistics.cpp:57 msgid "Best time completed:" msgstr "Bedste tid:" -#: src/supertux/statistics.cpp:51 +#: src/supertux/statistics.cpp:58 msgid "Level target time:" -msgstr "Banens måltid:" +msgstr "Banens tidsmål:" -#: src/supertux/statistics.cpp:139 src/supertux/levelintro.cpp:160 +#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:175 msgid "Best Level Statistics" msgstr "Bedste bane-statistikker" -#: src/supertux/statistics.cpp:228 +#: src/supertux/statistics.cpp:238 msgid "You" msgstr "Din" -#: src/supertux/statistics.cpp:230 +#: src/supertux/statistics.cpp:240 msgid "Best" msgstr "Bedste" -#: src/supertux/statistics.cpp:232 src/supertux/levelintro.cpp:166 +#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:181 msgid "Coins" msgstr "Mønter" -#: src/supertux/statistics.cpp:255 +#: src/supertux/statistics.cpp:265 msgid "Badguys" msgstr "Slemme fyre" -#: src/supertux/statistics.cpp:271 src/supertux/levelintro.cpp:172 +#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:187 msgid "Secrets" msgstr "Hemmeligheder" -#: src/supertux/game_object.hpp:77 +#: src/supertux/game_object.hpp:88 msgid "Unknown object" msgstr "Ukendt objekt" -#: src/supertux/command_line_arguments.cpp:74 -#, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Brug: %s [TILVALG] [BANEFIL]" +#: src/supertux/sector.cpp:507 +msgid "Press escape to skip" +msgstr "Tryk escape for at springe" + +#: src/supertux/command_line_arguments.cpp:92 +#, c++-format +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Anvendelse: {} [VALGMULIGHEDER] [BANEFIL]" -#: src/supertux/command_line_arguments.cpp:75 +#: src/supertux/command_line_arguments.cpp:93 msgid "General Options:" msgstr "Generelle tilvalg:" -#: src/supertux/command_line_arguments.cpp:76 +#: src/supertux/command_line_arguments.cpp:94 msgid " -h, --help Show this help message and quit" msgstr " -h, --help Vis denne hjælpetekst og afslut" -#: src/supertux/command_line_arguments.cpp:77 +#: src/supertux/command_line_arguments.cpp:95 msgid " -v, --version Show SuperTux version and quit" msgstr " -v, --version Vis SuperTux-version og afslut" -#: src/supertux/command_line_arguments.cpp:78 +#: src/supertux/command_line_arguments.cpp:96 msgid " --verbose Print verbose messages" msgstr " --verbose Vis uddybende beskeder" -#: src/supertux/command_line_arguments.cpp:79 +#: src/supertux/command_line_arguments.cpp:97 msgid " --debug Print extra verbose messages" msgstr " --debug Vis ekstra uddybende beskeder" -#: src/supertux/command_line_arguments.cpp:80 +#: src/supertux/command_line_arguments.cpp:98 msgid "" " --print-datadir Print SuperTux's primary data directory." msgstr " --print-datadir Vis SuperTux's primære datamappe." -#: src/supertux/command_line_arguments.cpp:82 +#: src/supertux/command_line_arguments.cpp:99 +msgid "" +" --acknowledgements Print the licenses of libraries used by " +"SuperTux." +msgstr " --anerkendelser Udskriv licenserne for biblioteker anvendt i SuperTux." + +#: src/supertux/command_line_arguments.cpp:101 msgid "Video Options:" msgstr "Videotilvalg:" -#: src/supertux/command_line_arguments.cpp:83 +#: src/supertux/command_line_arguments.cpp:102 msgid " -f, --fullscreen Run in fullscreen mode" msgstr " -f, --fullscreen Kør i fuldskærmtilstand" -#: src/supertux/command_line_arguments.cpp:84 +#: src/supertux/command_line_arguments.cpp:103 msgid " -w, --window Run in window mode" msgstr " -w, --window Kør i vinduestilstand" -#: src/supertux/command_line_arguments.cpp:85 +#: src/supertux/command_line_arguments.cpp:104 msgid " -g, --geometry WIDTHxHEIGHT Run SuperTux in given resolution" msgstr " -g, --geometry BREDDExHØJDE Kør SuperTux i angiven opløsning" -#: src/supertux/command_line_arguments.cpp:86 +#: src/supertux/command_line_arguments.cpp:105 msgid " -a, --aspect WIDTH:HEIGHT Run SuperTux with given aspect ratio" msgstr " -a, --aspect BREDDE:HØJDE Kør SuperTux med angivne størrelsesforhold" -#: src/supertux/command_line_arguments.cpp:87 +#: src/supertux/command_line_arguments.cpp:106 msgid " -d, --default Reset video settings to default values" msgstr " -d, --default Nulstil videotilvalg til standardværdierne" -#: src/supertux/command_line_arguments.cpp:88 +#: src/supertux/command_line_arguments.cpp:107 msgid " --renderer RENDERER Use sdl, opengl, or auto to render" msgstr " --renderer OPTEGNER Brug sdl, opengl eller auto til at optegne" -#: src/supertux/command_line_arguments.cpp:90 +#: src/supertux/command_line_arguments.cpp:109 msgid "Audio Options:" msgstr "Lydtilvalg:" -#: src/supertux/command_line_arguments.cpp:91 +#: src/supertux/command_line_arguments.cpp:110 msgid " --disable-sound Disable sound effects" msgstr " --disable-sound Deaktiver lydeffekter" -#: src/supertux/command_line_arguments.cpp:92 +#: src/supertux/command_line_arguments.cpp:111 msgid " --disable-music Disable music" msgstr " --disable-music Deaktiver musik" -#: src/supertux/command_line_arguments.cpp:94 +#: src/supertux/command_line_arguments.cpp:113 msgid "Game Options:" msgstr "Spiltilvalg:" -#: src/supertux/command_line_arguments.cpp:95 +#: src/supertux/command_line_arguments.cpp:114 msgid " --edit-level Open given level in editor" -msgstr " --edit-level Åbn angivet bane i redigeringsprogrammet" +msgstr " --edit-level Åbn angivet bane i Baneredigering" -#: src/supertux/command_line_arguments.cpp:96 +#: src/supertux/command_line_arguments.cpp:115 msgid " --resave Loads given level and saves it" msgstr " --resave Indlæser bane og gemmer den" -#: src/supertux/command_line_arguments.cpp:97 +#: src/supertux/command_line_arguments.cpp:116 msgid " --show-fps Display framerate in levels" -msgstr " --show-fps Vis billedhastighed i baner" +msgstr " --show-fps Vis billedfrekvens på baner" -#: src/supertux/command_line_arguments.cpp:98 +#: src/supertux/command_line_arguments.cpp:117 msgid " --no-show-fps Do not display framerate in levels" -msgstr " --no-show-fps Vis ikke billedhastighed i baner" +msgstr " --no-show-fps Vis ikke billedfrekvens på baner" -#: src/supertux/command_line_arguments.cpp:99 +#: src/supertux/command_line_arguments.cpp:118 msgid " --show-pos Display player's current position" msgstr " --show-pos Vis spillerens nuværende postion" -#: src/supertux/command_line_arguments.cpp:100 +#: src/supertux/command_line_arguments.cpp:119 msgid " --no-show-pos Do not display player's position" msgstr " --no-show-pos Vis ikke spillerens position" -#: src/supertux/command_line_arguments.cpp:101 +#: src/supertux/command_line_arguments.cpp:120 msgid " --developer Switch on developer feature" msgstr " --developer Aktiver udviklerfunktion" -#: src/supertux/command_line_arguments.cpp:102 +#: src/supertux/command_line_arguments.cpp:121 msgid " -s, --debug-scripts Enable script debugger." msgstr " -s, --debug-scripts Aktiver skriptfejlsøger" -#: src/supertux/command_line_arguments.cpp:103 +#: src/supertux/command_line_arguments.cpp:122 msgid "" " --spawn-pos X,Y Where in the level to spawn Tux. Only used if" " level is specified." -msgstr " --spawn-pos X,Y Hvor på banen Tux skal dukke op. Kun anvendt hvis banen er angivet." +msgstr " --start-pos X,Y Hvor på banen Tux skal dukke op. Kun anvendt hvis banen er angivet." -#: src/supertux/command_line_arguments.cpp:104 +#: src/supertux/command_line_arguments.cpp:123 msgid " --sector SECTOR Spawn Tux in SECTOR\n" msgstr " --sector SEKTOR Start med Tux i SEKTOR\n" -#: src/supertux/command_line_arguments.cpp:105 +#: src/supertux/command_line_arguments.cpp:124 msgid " --spawnpoint SPAWNPOINT Spawn Tux at SPAWNPOINT\n" msgstr " --spawnpoint STARTPUNKT Start med Tux ved STARTPUNKT\n" -#: src/supertux/command_line_arguments.cpp:107 -msgid "Demo Recording Options:" -msgstr "Tilvalg for demooptagelse:" - -#: src/supertux/command_line_arguments.cpp:108 -msgid " --record-demo FILE LEVEL Record a demo to FILE" -msgstr " --record-demo FIL BANE Optage en demo til FIL" - -#: src/supertux/command_line_arguments.cpp:109 -msgid " --play-demo FILE LEVEL Play a recorded demo" -msgstr " --play-demo FIL BANE Afspil en optaget demo" - -#: src/supertux/command_line_arguments.cpp:111 +#: src/supertux/command_line_arguments.cpp:126 msgid "Directory Options:" msgstr "Mappetilvalg:" -#: src/supertux/command_line_arguments.cpp:112 +#: src/supertux/command_line_arguments.cpp:127 msgid "" " --datadir DIR Set the directory for the games datafiles" msgstr " --datadir MAPPE Angiv mappen for spildatafilerne" -#: src/supertux/command_line_arguments.cpp:113 +#: src/supertux/command_line_arguments.cpp:128 msgid "" " --userdir DIR Set the directory for user data (savegames, " "etc.)" msgstr " --userdir MAPPE Angiv mappen for brugerdata (gemte spil etc.)" -#: src/supertux/command_line_arguments.cpp:115 +#: src/supertux/command_line_arguments.cpp:130 msgid "Add-On Options:" -msgstr "Indstillinger for udvidelse:" +msgstr "Indstillinger for tilføjelser:" -#: src/supertux/command_line_arguments.cpp:116 +#: src/supertux/command_line_arguments.cpp:131 msgid " --repository-url URL Set the URL to the Add-On repository" -msgstr " --repository-url URL Angiv adressen for udvidelsens arkiv" +msgstr " --repository-url URL Angiv URL til tilføjelsesarkiv" -#: src/supertux/command_line_arguments.cpp:118 +#: src/supertux/command_line_arguments.cpp:133 msgid "Environment variables:" msgstr "Miljøvariabler" -#: src/supertux/command_line_arguments.cpp:119 +#: src/supertux/command_line_arguments.cpp:134 msgid "" " SUPERTUX2_USER_DIR Directory for user data (savegames, etc.)" msgstr " SUPERTUX2_USER_DIR Mappe for brugerdata (gemte spil etc.)" -#: src/supertux/command_line_arguments.cpp:120 +#: src/supertux/command_line_arguments.cpp:135 msgid " SUPERTUX2_DATA_DIR Directory for the games datafiles" msgstr " SUPERTUX2_DATA_DIR Mappe for spillenes datafiler" -#: src/supertux/title_screen.cpp:43 +#: src/supertux/title_screen.cpp:272 msgid "Copyright" msgstr "Ophavsret" -#: src/supertux/title_screen.cpp:44 +#: src/supertux/title_screen.cpp:273 msgid "" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to\n" "redistribute it under certain conditions; see the license file for details.\n" msgstr "Dette spil kommer UDEN NOGET GARANTI. Det er et frit program, og du er velkommen til\nat videredistribuere det under visse forhold; se licensfilen for detaljer.\n" -#: src/supertux/menu/contrib_menu.cpp:79 +#: src/supertux/game_object.cpp:114 +msgid "Version" +msgstr "Version" + +#: src/supertux/game_object.cpp:129 +#: src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Type" +msgstr "Type" + +#: src/supertux/menu/integrations_menu.cpp:49 +msgid "Integrations" +msgstr "Integrationer" + +#: src/supertux/menu/integrations_menu.cpp:51 +msgid "Do not share level names when editing" +msgstr "Del ikke banenavne under redigering" + +#: src/supertux/menu/integrations_menu.cpp:52 +msgid "" +"Enable this if you want to work on secret levels and don't want the names to" +" be spoiled" +msgstr "Slå det til hvis du vil arbejde med hemmelige baner, og du ikke ønsker at spoile navnene" + +#: src/supertux/menu/integrations_menu.cpp:54 +msgid "Enable Discord integration" +msgstr "Slå Discordintegration til" + +#: src/supertux/menu/integrations_menu.cpp:55 +msgid "" +"Sends information to your Discord application about what you're doing in the" +" game." +msgstr "Sender information om det, du gør i spillet, til din Discord app." + +#: src/supertux/menu/integrations_menu.cpp:57 +msgid "Discord (disabled; not compiled)" +msgstr "Discord (slået fra, ikke kompileret)" + +#: src/supertux/menu/editor_converters_menu.cpp:61 +#: src/supertux/menu/editor_menu.cpp:85 +msgid "Convert Tiles" +msgstr "Konvertér fliser" + +#: src/supertux/menu/editor_converters_menu.cpp:64 +msgid "Select Tile Conversion File" +msgstr "Vælg feltkonverteringsfil" + +#: src/supertux/menu/editor_converters_menu.cpp:72 +#, c++-format +msgid "By: {}" +msgstr "Af: {}" + +#: src/supertux/menu/editor_converters_menu.cpp:75 +msgid "Convert Tiles By File" +msgstr "Konvertér felter med fil" + +#: src/supertux/menu/editor_converters_menu.cpp:76 +msgid "Convert all tiles in the current level by a file, specified above." +msgstr "Konvertér alle felter på denne bane via fil valgt ovenfor." + +#: src/supertux/menu/editor_converters_menu.cpp:89 +msgid "No tile conversion file selected." +msgstr "Der er ikke valgt en feltkonverteringsfil." + +#: src/supertux/menu/editor_converters_menu.cpp:93 +msgid "" +"This will convert all tiles in the level. Proceed?\n" +"\n" +"Note: This should not be ran more than once on a level.\n" +"Creating a separate copy of the level is highly recommended." +msgstr "Dette vil konvertere alle felter på banen. Fortsæt?\n\nNB: Bør ikke udføres mere end en gang på pr. bane.\nOprettelse af særskilt kopi af banen anbefales stærkt." + +#: src/supertux/menu/video_system_menu.cpp:36 +msgid "Select Video System" +msgstr "Vælg videosystem" + +#: src/supertux/menu/video_system_menu.cpp:37 +#, c++-format +msgid "Used video system: {}" +msgstr "Anvendt videosystem: {}" + +#: src/supertux/menu/video_system_menu.cpp:54 +msgid "Restart game for the changes to take effect" +msgstr "Genstart spillet for at aktivere ændringerne." + +#: src/supertux/menu/contrib_menu.cpp:68 #: src/supertux/menu/world_set_menu.cpp:31 msgid "Contrib Levels" -msgstr "Andre baner" +msgstr "Bidrag til baner" + +#: src/supertux/menu/contrib_menu.cpp:98 +#: src/supertux/menu/contrib_menu.cpp:112 +msgid "Official Contrib Levels" +msgstr "Officielle bidrag til baner" + +#: src/supertux/menu/contrib_menu.cpp:99 +#: src/supertux/menu/contrib_menu.cpp:118 +msgid "Community Contrib Levels" +msgstr "Fællesskabets bidrag til baner" + +#: src/supertux/menu/contrib_menu.cpp:100 +#: src/supertux/menu/contrib_menu.cpp:124 +msgid "User Contrib Levels" +msgstr "Brugerbidrag til baner" + +#: src/supertux/menu/contrib_menu.cpp:113 +msgid "How is this possible? There are no Official Contrib Levels!" +msgstr "Hvordan er det muligt? Der er ingen officielle bidrag til baner!" #: src/supertux/menu/contrib_menu.cpp:119 -#: src/supertux/menu/contrib_menu.cpp:150 -msgid "*NEW*" -msgstr "*NY*" +msgid "No Community Contrib Levels yet. Download them from the Add-ons Menu." +msgstr "Der er ingen banebidrag fra fællesskabet endnu. Hent dem fra tilføjelsesmenuen." -#: src/supertux/menu/contrib_menu.cpp:172 src/supertux/menu/debug_menu.cpp:75 -#: src/supertux/menu/editor_level_select_menu.cpp:84 -#: src/supertux/menu/worldmap_cheat_menu.cpp:55 -#: src/supertux/menu/worldmap_cheat_menu.cpp:153 -#: src/supertux/menu/editor_levelset_select_menu.cpp:96 -#: src/supertux/menu/options_menu.cpp:405 -#: src/supertux/menu/profile_menu.cpp:47 src/supertux/menu/addon_menu.cpp:213 -#: src/supertux/menu/editor_new_levelset_menu.cpp:40 -#: src/supertux/menu/world_set_menu.cpp:33 -#: src/supertux/menu/keyboard_menu.cpp:51 -#: src/supertux/menu/language_menu.cpp:56 -#: src/supertux/menu/joystick_menu.cpp:97 -#: src/supertux/menu/contrib_levelset_menu.cpp:67 -#: src/supertux/menu/cheat_menu.cpp:44 -msgid "Back" -msgstr "Tilbage" +#: src/supertux/menu/contrib_menu.cpp:125 +msgid "No User Contrib Levels yet. Create some with the Level Editor." +msgstr "Der er ingen brugerbidrag til baner endnu. Skab nogen med Baneredigering." -#: src/supertux/menu/debug_menu.cpp:32 +#: src/supertux/menu/debug_menu.cpp:34 msgid "Debug" msgstr "Fejlsøg" -#: src/supertux/menu/debug_menu.cpp:56 +#: src/supertux/menu/debug_menu.cpp:58 msgid "Game Speed" msgstr "Spilhastighed" -#: src/supertux/menu/debug_menu.cpp:57 +#: src/supertux/menu/debug_menu.cpp:59 msgid "Adjust Game Speed" msgstr "Juster spilhastighed" -#: src/supertux/menu/debug_menu.cpp:63 +#: src/supertux/menu/debug_menu.cpp:65 msgid "Show Collision Rects" msgstr "Vis kollisionsrects" -#: src/supertux/menu/debug_menu.cpp:64 +#: src/supertux/menu/debug_menu.cpp:66 msgid "Show Worldmap Path" msgstr "Vis stier på verdenskort" -#: src/supertux/menu/debug_menu.cpp:65 +#: src/supertux/menu/debug_menu.cpp:67 msgid "Show Controller" msgstr "Vis controller" -#: src/supertux/menu/debug_menu.cpp:66 +#: src/supertux/menu/debug_menu.cpp:68 msgid "Show Framerate" msgstr "Vis billedhastighed" -#: src/supertux/menu/debug_menu.cpp:67 +#: src/supertux/menu/debug_menu.cpp:69 msgid "Draw Redundant Frames" msgstr "Tegn redundante billeder" -#: src/supertux/menu/debug_menu.cpp:68 +#: src/supertux/menu/debug_menu.cpp:70 msgid "Show Player Position" msgstr "Vis spillerposition" -#: src/supertux/menu/debug_menu.cpp:69 +#: src/supertux/menu/debug_menu.cpp:71 msgid "Use Bitmap Fonts" msgstr "Brug bitmap-skrifttyper" -#: src/supertux/menu/debug_menu.cpp:72 +#: src/supertux/menu/debug_menu.cpp:74 msgid "Dump Texture Cache" -msgstr "Dump teksturmellemlager" +msgstr "Dump strukturcache" + +#: src/supertux/menu/particle_editor_save_as.cpp:33 +msgid "Save particle as" +msgstr "Gem partikel som" + +#: src/supertux/menu/particle_editor_save_as.cpp:37 +#: src/supertux/menu/editor_save_as.cpp:37 +msgid "File name" +msgstr "Filnavn" + +#: src/supertux/menu/particle_editor_save_as.cpp:38 +#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:767 +msgid "Save" +msgstr "Gem" + +#: src/supertux/menu/multiplayer_menu.cpp:27 +#: src/supertux/menu/multiplayer_players_menu.cpp:34 +msgid "Multiplayer" +msgstr "Flere spillere" + +#: src/supertux/menu/multiplayer_menu.cpp:30 +msgid "Auto-manage Players" +msgstr "Automatisk styring af spillere" + +#: src/supertux/menu/multiplayer_menu.cpp:31 +msgid "" +"Automatically add and remove players when controllers are plugged or " +"unplugged" +msgstr "Tilføj og fjern spillere automatisk når controllere isættes eller tages ud" + +#: src/supertux/menu/multiplayer_menu.cpp:33 +msgid "Allow Multibind" +msgstr "Tillad multibinding" + +#: src/supertux/menu/multiplayer_menu.cpp:34 +msgid "Allow binding multiple joysticks to a single player" +msgstr "Tillad binding af flere joysticks til en enkelt spiller" + +#: src/supertux/menu/multiplayer_menu.cpp:36 +msgid "Manage Players" +msgstr "Styr spillere" #: src/supertux/menu/editor_sectors_menu.cpp:31 msgid "Choose Sector" @@ -1440,45 +2707,98 @@ msgstr "Opret sektor" msgid "Delete Sector" msgstr "Slet sektor" -#: src/supertux/menu/editor_sectors_menu.cpp:93 +#: src/supertux/menu/editor_sectors_menu.cpp:92 msgid "Each level must have at least one sector." msgstr "Hver bane skal have mindst en sektor." -#: src/supertux/menu/editor_sectors_menu.cpp:98 +#: src/supertux/menu/editor_sectors_menu.cpp:97 msgid "Do you really want to delete this sector?" msgstr "Ønsker du virkelig at slette denne sektor?" -#: src/supertux/menu/editor_sectors_menu.cpp:101 +#: src/supertux/menu/editor_sectors_menu.cpp:100 msgid "Delete sector" msgstr "Slet sektor" -#: src/supertux/menu/editor_objectgroup_menu.cpp:30 -#: src/editor/toolbox_widget.cpp:93 -msgid "Objects" -msgstr "Objekter" +#: src/supertux/menu/custom_menu_menu.cpp:49 +#: src/supertux/menu/options_menu.cpp:191 +msgid "Menu Customization" +msgstr "Brugerdefinering af menu" + +#: src/supertux/menu/custom_menu_menu.cpp:51 +msgid "Menu Back Color" +msgstr "Menu baggrundsfarve" + +#: src/supertux/menu/custom_menu_menu.cpp:52 +msgid "Menu Front Color" +msgstr "Menu forgrundsfarve" + +#: src/supertux/menu/custom_menu_menu.cpp:53 +msgid "Menu Help Back Color" +msgstr "Menuhjælp baggrundsfarve" + +#: src/supertux/menu/custom_menu_menu.cpp:54 +msgid "Menu Help Front Color" +msgstr "Menuhjælp forgrundsfarve" -#: src/supertux/menu/editor_level_select_menu.cpp:58 +#: src/supertux/menu/custom_menu_menu.cpp:55 +msgid "Label Text Color" +msgstr "Mærkat tekstfarve" + +#: src/supertux/menu/custom_menu_menu.cpp:56 +msgid "Active Text Color" +msgstr "Aktiv tekstfarve" + +#: src/supertux/menu/custom_menu_menu.cpp:57 +msgid "Divider Line Color" +msgstr "Liniedelerfarve" + +#: src/supertux/menu/custom_menu_menu.cpp:58 +msgid "Menu Roundness" +msgstr "Menu rundhed" + +#: src/supertux/menu/custom_menu_menu.cpp:60 +msgid "Editor Interface Color" +msgstr "Redigeringsfarve for grænseflade" + +#: src/supertux/menu/custom_menu_menu.cpp:61 +msgid "Editor Hover Color" +msgstr "Redigeringsfarve for Svævning" + +#: src/supertux/menu/custom_menu_menu.cpp:62 +msgid "Editor Grab Color" +msgstr "Redigeringsfarve for Grib" + +#: src/supertux/menu/custom_menu_menu.cpp:64 +msgid "Reset to defaults" +msgstr "Nulstil til standard" + +#: src/supertux/menu/editor_level_select_menu.cpp:72 msgid "Empty World" msgstr "Tom verden" -#: src/supertux/menu/editor_level_select_menu.cpp:73 +#: src/supertux/menu/editor_level_select_menu.cpp:87 msgid "Create Level" msgstr "Opret bane" -#: src/supertux/menu/editor_level_select_menu.cpp:77 +#: src/supertux/menu/editor_level_select_menu.cpp:91 msgid "Edit Worldmap" msgstr "Rediger verdenskort" -#: src/supertux/menu/editor_level_select_menu.cpp:79 +#: src/supertux/menu/editor_level_select_menu.cpp:93 msgid "Create Worldmap" msgstr "Opret verdenskort" -#: src/supertux/menu/editor_level_select_menu.cpp:83 -#: src/supertux/menu/editor_levelset_menu.cpp:56 +#: src/supertux/menu/editor_level_select_menu.cpp:95 +#: src/supertux/menu/editor_delete_level_menu.cpp:55 +msgid "Delete level" +msgstr "Slet bane" + +#: src/supertux/menu/editor_level_select_menu.cpp:97 +#: src/supertux/menu/editor_levelset_menu.cpp:50 msgid "World Settings" msgstr "Verdenindstillinger" -#: src/supertux/menu/editor_level_select_menu.cpp:123 +#: src/supertux/menu/editor_level_select_menu.cpp:141 msgid "" "Share this worldmap under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -1486,410 +2806,823 @@ msgid "" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." msgstr "Del dette kort under licensen CC-BY-SA 4.0 International (anbefalet).\nDen tillader ændringer og videredistribution af tredjepart.\nHvis du ikke er enig med denne licens, så ændr den under egenskaber for verdenskort.\nANSVARSFRASKRIVELSE: Forfatterne af SuperTux påtager sig intet ansvar for dit valg af licens." -#: src/supertux/menu/editor_level_select_menu.cpp:130 +#: src/supertux/menu/editor_level_select_menu.cpp:148 msgid "" "Share this level under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" "If you don't agree with this license, change it in level properties.\n" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." -msgstr "Del denne bane under licensen CC-BY-SA 4.0 International (anbefalet).\nDen tillader ændringer og videredistribution af tredjepart.\nHvis du ikke er enig med denne licens, så ændr den under baneegenskaber.\nANSVARSFRASKRIVELSE: Forfatterne af SuperTux påtager sig intet ansvar for dit valg af licens." +msgstr "Del denne bane under licensen CC-BY-SA 4.0 International (anbefalet).\nDet muliggør ændringer og videredistribution af tredjepart.\nHvis du ikke er enig i valg af licens, så skift licenstype under baneegenskaber.\nANSVARSFRASKRIVELSE: Forfatterne af SuperTux påtager sig intet ansvar for dit valg af licens." + +#: src/supertux/menu/editor_level_select_menu.cpp:179 +msgid "" +"An auto-save recovery file was found. Would you like to restore the recovery\n" +"file and resume where you were before the editor crashed?" +msgstr "En automatisk gemt genskabningsfil blev fundet. Ønsker du at gendanne med genskabningsfilen\nog fortsætte fra det sted, du var, da Redigering gik ned?" + +#: src/supertux/menu/editor_level_select_menu.cpp:186 +msgid "This will delete the auto-save file. Are you sure?" +msgstr "Det vil slette den automatisk gemte fil. Er du sikker?" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:35 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:52 +#: src/supertux/menu/cheat_apply_menu.cpp:33 +#: src/supertux/menu/cheat_apply_menu.cpp:51 +msgid "Apply cheat to player" +msgstr "Tilføj snydekode til spiller" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:60 +#: src/supertux/menu/multiplayer_players_menu.cpp:39 +#: src/supertux/menu/keyboard_menu.cpp:63 +#: src/supertux/menu/cheat_apply_menu.cpp:39 +#: src/supertux/menu/cheat_apply_menu.cpp:59 +#: src/supertux/menu/multiplayer_player_menu.cpp:37 +#, c++-format +msgid "Player {}" +msgstr "Spiller {}" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:57 +#: src/supertux/menu/cheat_apply_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:56 +msgid "All Players" +msgstr "Alle spillere" -#: src/supertux/menu/worldmap_cheat_menu.cpp:34 -#: src/supertux/menu/cheat_menu.cpp:30 +#: src/supertux/menu/worldmap_cheat_menu.cpp:36 +#: src/supertux/menu/cheat_menu.cpp:31 msgid "Cheats" msgstr "Snyd" -#: src/supertux/menu/worldmap_cheat_menu.cpp:36 -#: src/supertux/menu/cheat_menu.cpp:32 +#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:33 msgid "Bonus: Grow" msgstr "Bonus: Voks" -#: src/supertux/menu/worldmap_cheat_menu.cpp:37 -#: src/supertux/menu/cheat_menu.cpp:33 +#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:34 msgid "Bonus: Fire" msgstr "Bonus: Ild" -#: src/supertux/menu/worldmap_cheat_menu.cpp:38 -#: src/supertux/menu/cheat_menu.cpp:34 +#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/cheat_menu.cpp:35 msgid "Bonus: Ice" msgstr "Bonus: Is" -#: src/supertux/menu/worldmap_cheat_menu.cpp:39 -#: src/supertux/menu/cheat_menu.cpp:35 +#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/cheat_menu.cpp:36 msgid "Bonus: Air" msgstr "Bonus: Luft" -#: src/supertux/menu/worldmap_cheat_menu.cpp:40 -#: src/supertux/menu/cheat_menu.cpp:36 +#: src/supertux/menu/worldmap_cheat_menu.cpp:42 +#: src/supertux/menu/cheat_menu.cpp:37 msgid "Bonus: Earth" msgstr "Bonus: Jord" -#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/worldmap_cheat_menu.cpp:43 msgid "Bonus: None" msgstr "Bonus: Ingen" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:51 msgid "Leave Ghost Mode" msgstr "Forlag spøgelsestilstand" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:50 msgid "Activate Ghost Mode" msgstr "Aktiver spøgelsestilstand" -#: src/supertux/menu/worldmap_cheat_menu.cpp:46 -#: src/supertux/menu/cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:48 +#: src/supertux/menu/cheat_menu.cpp:41 msgid "Finish Level" msgstr "Afslut bane" -#: src/supertux/menu/worldmap_cheat_menu.cpp:47 +#: src/supertux/menu/worldmap_cheat_menu.cpp:49 msgid "Reset Level" msgstr "Nulstil bane" -#: src/supertux/menu/worldmap_cheat_menu.cpp:49 +#: src/supertux/menu/worldmap_cheat_menu.cpp:51 msgid "Finish Worldmap" msgstr "Afslut verdenskort" -#: src/supertux/menu/worldmap_cheat_menu.cpp:50 +#: src/supertux/menu/worldmap_cheat_menu.cpp:52 msgid "Reset Worldmap" msgstr "Nulstil verdenskort" -#: src/supertux/menu/worldmap_cheat_menu.cpp:52 +#: src/supertux/menu/worldmap_cheat_menu.cpp:54 msgid "Go to level" msgstr "Gå til bane" -#: src/supertux/menu/worldmap_cheat_menu.cpp:53 +#: src/supertux/menu/worldmap_cheat_menu.cpp:55 msgid "Go to main spawnpoint" -msgstr "Gå til hovedspawnpunktet" +msgstr "Gå til hovedstartpunkt" -#: src/supertux/menu/worldmap_cheat_menu.cpp:145 +#: src/supertux/menu/worldmap_cheat_menu.cpp:188 msgid "Select level" msgstr "Vælg bane" -#: src/supertux/menu/editor_levelset_select_menu.cpp:54 +#: src/supertux/menu/editor_save_as.cpp:33 +#: src/supertux/menu/editor_menu.cpp:63 +msgid "Save Level as" +msgstr "Gem bane som" + +#: src/supertux/menu/editor_save_as.cpp:33 +#: src/supertux/menu/editor_menu.cpp:64 +msgid "Save Copy" +msgstr "Gem kopi" + +#: src/supertux/menu/editor_levelset_select_menu.cpp:71 msgid "Choose World" msgstr "Vælg verden" -#: src/supertux/menu/editor_levelset_select_menu.cpp:82 -#, c-format -msgid "%d level" -msgid_plural "%d levels" -msgstr[0] "%d bane" -msgstr[1] "%d baner" +#: src/supertux/menu/editor_levelset_select_menu.cpp:99 +#, c++-format +msgid "{} level" +msgid_plural "{} levels" +msgstr[0] "{} baner" +msgstr[1] "{} baner" -#: src/supertux/menu/editor_levelset_select_menu.cpp:95 +#: src/supertux/menu/editor_levelset_select_menu.cpp:112 msgid "Create World" msgstr "Opret verden" -#: src/supertux/menu/options_menu.cpp:85 src/supertux/menu/main_menu.cpp:53 -#: src/supertux/menu/game_menu.cpp:61 src/supertux/menu/worldmap_menu.cpp:31 -msgid "Options" -msgstr "Indstillinger" - -#: src/supertux/menu/options_menu.cpp:91 -#: src/supertux/menu/options_menu.cpp:127 -#: src/supertux/menu/options_menu.cpp:418 -#: src/supertux/menu/options_menu.cpp:439 src/editor/object_settings.cpp:112 -msgid "auto" -msgstr "auto" +#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:41 +msgid "Delete World" +msgstr "Slet verden" -#: src/supertux/menu/options_menu.cpp:206 -msgid "Desktop" -msgstr "Skrivebord" +#: src/supertux/menu/options_menu.cpp:72 +#: src/supertux/menu/options_select_menu.cpp:35 +msgid "Locale" +msgstr "Lokalitet" -#: src/supertux/menu/options_menu.cpp:332 +#: src/supertux/menu/options_menu.cpp:76 msgid "Select Language" msgstr "Vælg sprog " -#: src/supertux/menu/options_menu.cpp:333 +#: src/supertux/menu/options_menu.cpp:77 msgid "Select a different language to display text in" msgstr "Vælg et andet sprog at vise teksten på" -#: src/supertux/menu/options_menu.cpp:335 +#: src/supertux/menu/options_menu.cpp:79 msgid "Language Packs" msgstr "Sprogpakker" -#: src/supertux/menu/options_menu.cpp:336 +#: src/supertux/menu/options_menu.cpp:80 msgid "Language packs contain up-to-date translations" msgstr "Sprogpakker indeholder opdaterede oversættelser" -#: src/supertux/menu/options_menu.cpp:338 -#: src/supertux/menu/profile_menu.cpp:30 -msgid "Select Profile" -msgstr "Vælg profil" - -#: src/supertux/menu/options_menu.cpp:339 -msgid "Select a profile to play with" -msgstr "Vælg hvilken profil du vil spille på" +#: src/supertux/menu/options_menu.cpp:88 +#: src/supertux/menu/options_select_menu.cpp:37 +msgid "Video" +msgstr "Video" -#: src/supertux/menu/options_menu.cpp:342 +#: src/supertux/menu/options_menu.cpp:91 msgid "Window Resizable" msgstr "Ændr størrelse på vindue" -#: src/supertux/menu/options_menu.cpp:343 +#: src/supertux/menu/options_menu.cpp:92 msgid "Allow window resizing, might require a restart to take effect" msgstr "Tillad at ændre størrelse på vinduet, kan kræve en genstart for at træde i kraft" -#: src/supertux/menu/options_menu.cpp:345 -msgid "Window Resolution" -msgstr "Vinduesopløsning" - -#: src/supertux/menu/options_menu.cpp:346 -msgid "Resize the window to the given size" -msgstr "Ændr størrelse på vinduet til den angivne størrelse" - -#: src/supertux/menu/options_menu.cpp:348 +#: src/supertux/menu/options_menu.cpp:96 msgid "Fullscreen" msgstr "Fuldskærm" -#: src/supertux/menu/options_menu.cpp:349 +#: src/supertux/menu/options_menu.cpp:97 msgid "Fill the entire screen" msgstr "Udfyld hele skærmen" -#: src/supertux/menu/options_menu.cpp:351 -msgid "Fullscreen Resolution" -msgstr "Opløsning for fuldskærm" +#: src/supertux/menu/options_menu.cpp:104 +msgid "Fit to browser" +msgstr "Tilpas browser" -#: src/supertux/menu/options_menu.cpp:352 -msgid "" -"Determine the resolution used in fullscreen mode (you must toggle fullscreen" -" to complete the change)" -msgstr "Vælg den opløsning der skal bruges i fuldskærm (du skal også slå fuldskærm til)" +#: src/supertux/menu/options_menu.cpp:105 +msgid "Fit the resolution to the size of your browser" +msgstr "Tilpas opløsningen til størrelsen af din browser" -#: src/supertux/menu/options_menu.cpp:354 -msgid "Magnification" -msgstr "Forstørrelse" +#: src/supertux/menu/options_menu.cpp:116 +msgid "Change Video System" +msgstr "Skift videosystem" -#: src/supertux/menu/options_menu.cpp:355 -msgid "Change the magnification of the game area" -msgstr "Vælg hvor meget spillet skal forstørres" - -#: src/supertux/menu/options_menu.cpp:357 -msgid "VSync" -msgstr "VSync" +#: src/supertux/menu/options_menu.cpp:117 +msgid "Change video system used to render graphics" +msgstr "Skift videosystem til visning af grafik" -#: src/supertux/menu/options_menu.cpp:358 -msgid "Set the VSync mode" -msgstr "Angiv VSync-tilstanden" - -#: src/supertux/menu/options_menu.cpp:360 -msgid "Aspect Ratio" -msgstr "Højde-bredde-forhold" - -#: src/supertux/menu/options_menu.cpp:361 -msgid "Adjust the aspect ratio" -msgstr "Indstil højde-bredde-forhold" +#: src/supertux/menu/options_menu.cpp:124 +#: src/supertux/menu/options_select_menu.cpp:38 +msgid "Audio" +msgstr "Lyd" -#: src/supertux/menu/options_menu.cpp:366 +#: src/supertux/menu/options_menu.cpp:129 msgid "Disable all sound effects" msgstr "Slå alle lydeffekter fra" -#: src/supertux/menu/options_menu.cpp:368 +#: src/supertux/menu/options_menu.cpp:131 msgid "Disable all music" msgstr "Slå musikken fra" -#: src/supertux/menu/options_menu.cpp:370 -msgid "Sound Volume" -msgstr "Lydstyrke" - -#: src/supertux/menu/options_menu.cpp:371 -msgid "Adjust sound volume" -msgstr "Juster lydstyrke" - -#: src/supertux/menu/options_menu.cpp:373 -msgid "Music Volume" -msgstr "Musiklydstyrke" - -#: src/supertux/menu/options_menu.cpp:374 -msgid "Adjust music volume" -msgstr "Juster musiklydstyrke" - -#: src/supertux/menu/options_menu.cpp:378 +#: src/supertux/menu/options_menu.cpp:138 msgid "Sound (disabled)" msgstr "Lyd (slået fra)" -#: src/supertux/menu/options_menu.cpp:379 +#: src/supertux/menu/options_menu.cpp:139 msgid "Music (disabled)" msgstr "Musik (slået fra)" -#: src/supertux/menu/options_menu.cpp:382 -#: src/supertux/menu/keyboard_menu.cpp:30 +#: src/supertux/menu/options_menu.cpp:147 +#: src/supertux/menu/options_select_menu.cpp:39 +msgid "Controls" +msgstr "Kontroller" + +#: src/supertux/menu/options_menu.cpp:151 +msgid "Enable Rumbling Controllers" +msgstr "Slå rumlende controllere til" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "Enable vibrating the game controllers." +msgstr "Slå vibrerende controllere til" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "This feature is currently only used in the multiplayer options menu." +msgstr "Denne funktion kan for nu kun anvendes i Flere spillere menumuligheden." + +#: src/supertux/menu/options_menu.cpp:154 +#: src/supertux/menu/keyboard_menu.cpp:34 msgid "Setup Keyboard" msgstr "Indstil tastatur" -#: src/supertux/menu/options_menu.cpp:383 +#: src/supertux/menu/options_menu.cpp:155 msgid "Configure key-action mappings" msgstr "Indstil taster" -#: src/supertux/menu/options_menu.cpp:385 -#: src/supertux/menu/joystick_menu.cpp:52 +#: src/supertux/menu/options_menu.cpp:158 +#: src/supertux/menu/joystick_menu.cpp:54 msgid "Setup Joystick" msgstr "Indstil joystick" -#: src/supertux/menu/options_menu.cpp:386 +#: src/supertux/menu/options_menu.cpp:159 msgid "Configure joystick control-action mappings" msgstr "Indstil joystick-knapperne" -#: src/supertux/menu/options_menu.cpp:388 +#: src/supertux/menu/options_menu.cpp:167 +#: src/supertux/menu/options_select_menu.cpp:40 +msgid "Extras" +msgstr "Ekstraudstyr" + +#: src/supertux/menu/options_menu.cpp:170 +#: src/supertux/menu/profile_menu.cpp:56 +msgid "Select Profile" +msgstr "Vælg profil" + +#: src/supertux/menu/options_menu.cpp:171 +msgid "Select a profile to play with" +msgstr "Vælg hvilken profil du vil spille på" + +#: src/supertux/menu/options_menu.cpp:174 +msgid "Multiplayer settings" +msgstr "Flere spillere indstillinger" + +#: src/supertux/menu/options_menu.cpp:175 +msgid "Configure settings specific to multiplayer" +msgstr "Konfigurér indstillinger specifikt til flere spillere" + +#: src/supertux/menu/options_menu.cpp:178 msgid "Enable transitions" msgstr "Aktiver transitioner" -#: src/supertux/menu/options_menu.cpp:389 +#: src/supertux/menu/options_menu.cpp:179 msgid "Enable screen transitions and smooth menu animation" msgstr "Aktiver skærmtransitioner og blød menuanimation" -#: src/supertux/menu/options_menu.cpp:393 -msgid "Developer Mode" -msgstr "Udviklertilstand" +#: src/supertux/menu/options_menu.cpp:181 +msgid "Custom title screen levels" +msgstr "Brugerdefinerede titelskærmbaner" -#: src/supertux/menu/options_menu.cpp:398 +#: src/supertux/menu/options_menu.cpp:182 +msgid "Allow overriding the title screen level, when loading certain worlds" +msgstr "Tillad tilsidesættelse af titelskærmsbanen, når bestemte verdener indlæses" + +#: src/supertux/menu/options_menu.cpp:185 msgid "Christmas Mode" msgstr "Juletilstand" -#: src/supertux/menu/options_menu.cpp:401 +#: src/supertux/menu/options_menu.cpp:187 +msgid "Integrations and presence" +msgstr "Integration og tilstedeværelse" + +#: src/supertux/menu/options_menu.cpp:188 +msgid "" +"Manage whether SuperTux should display the levels you play on your social " +"media profiles (Discord)" +msgstr "Administrér om SuperTux skal vise banerne du spiller på dine sociale medieprofiler (Discord)" + +#: src/supertux/menu/options_menu.cpp:192 +msgid "Customize the appearance of the menus" +msgstr "Tilpas menuudseende" + +#: src/supertux/menu/options_menu.cpp:199 +#: src/supertux/menu/options_select_menu.cpp:41 +msgid "Advanced" +msgstr "Avanceret" + +#: src/supertux/menu/options_menu.cpp:204 +msgid "Developer Mode" +msgstr "Udviklertilstand" + +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirmation Dialog" msgstr "Bekræftelsedialog" -#: src/supertux/menu/options_menu.cpp:401 +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirm aborting level" -msgstr "Bekræft afbryd bane" +msgstr "Bekræft afbrydning af banen" -#: src/supertux/menu/options_menu.cpp:402 +#: src/supertux/menu/options_menu.cpp:208 msgid "Pause on focus loss" msgstr "Pause ved tab af fokus" +#: src/supertux/menu/options_menu.cpp:209 +msgid "Automatically pause the game when the window loses focus" +msgstr "Sæt automatisk spillet på pause, når vinduet mister fokus" + +#: src/supertux/menu/options_menu.cpp:211 +msgid "Use custom mouse cursor" +msgstr "Anvend brugerdefineret mus" + +#: src/supertux/menu/options_menu.cpp:211 +msgid "Whether the game renders its own cursor or uses the system's cursor" +msgstr "Når spillet viser sin egen markør eller bruger systemets markør" + +#: src/supertux/menu/options_menu.cpp:214 +msgid "Check for new releases" +msgstr "Check for nye udgaver" + +#: src/supertux/menu/options_menu.cpp:215 +msgid "" +"Allows the game to perform checks for new SuperTux releases on startup and " +"notify if any found." +msgstr "Tillad spillet at udføre check for nye SuperTux-udgaver ved start og giv besked hvis der er opdateringer" + +#: src/supertux/menu/options_menu.cpp:245 +#: src/supertux/menu/options_menu.cpp:288 src/supertux/direction.cpp:76 +msgid "auto" +msgstr "auto" + +#: src/supertux/menu/options_menu.cpp:281 +msgid "Magnification" +msgstr "Forstørrelse" + +#: src/supertux/menu/options_menu.cpp:282 +msgid "Change the magnification of the game area" +msgstr "Vælg hvor meget spillet skal forstørres" + +#: src/supertux/menu/options_menu.cpp:318 +msgid "Aspect Ratio" +msgstr "Højde-bredde-forhold" + +#: src/supertux/menu/options_menu.cpp:319 +msgid "Adjust the aspect ratio" +msgstr "Indstil højde-bredde-forhold" + +#: src/supertux/menu/options_menu.cpp:346 +msgid "Window Resolution" +msgstr "Vinduesopløsning" + +#: src/supertux/menu/options_menu.cpp:347 +msgid "Resize the window to the given size" +msgstr "Ændr størrelse på vinduet til den angivne størrelse" + +#: src/supertux/menu/options_menu.cpp:377 +msgid "Desktop" +msgstr "Skrivebord" + +#: src/supertux/menu/options_menu.cpp:404 +msgid "Fullscreen Resolution" +msgstr "Opløsning for fuldskærm" + +#: src/supertux/menu/options_menu.cpp:405 +msgid "" +"Determine the resolution used in fullscreen mode (you must toggle fullscreen" +" to complete the change)" +msgstr "Vælg den opløsning der skal bruges i fuldskærm (du skal også slå fuldskærm til)" + +#: src/supertux/menu/options_menu.cpp:411 +msgid "on" +msgstr "slået til" + +#: src/supertux/menu/options_menu.cpp:412 +msgid "off" +msgstr "slået fra" + +#: src/supertux/menu/options_menu.cpp:413 +msgid "adaptive" +msgstr "Adaptiv" + +#: src/supertux/menu/options_menu.cpp:431 +msgid "VSync" +msgstr "VSync" + +#: src/supertux/menu/options_menu.cpp:432 +msgid "Set the VSync mode" +msgstr "Angiv VSync-tilstanden" + +#: src/supertux/menu/options_menu.cpp:467 +msgid "Sound Volume" +msgstr "Lydstyrke" + +#: src/supertux/menu/options_menu.cpp:468 +msgid "Adjust sound volume" +msgstr "Juster lydstyrke" + +#: src/supertux/menu/options_menu.cpp:503 +msgid "Music Volume" +msgstr "Musiklydstyrke" + +#: src/supertux/menu/options_menu.cpp:504 +msgid "Adjust music volume" +msgstr "Juster musiklydstyrke" + +#: src/supertux/menu/options_menu.cpp:517 +msgid "On-screen controls scale" +msgstr "Skærmkontrolskalering" + +#: src/supertux/menu/options_menu.cpp:638 +msgid "" +"The game couldn't detect your browser resolution.\n" +"This most likely happens because it is not embedded\n" +"in the SuperTux custom HTML template.\n" +msgstr "Spillet kunne ikke detektere din browseropløsning.\nDet sker for det meste, når spillet ikke er indlejret\ni SuperTux's brugerdefinerede HTML-skabelon.\n" + +#: src/supertux/menu/editor_delete_levelset_menu.cpp:80 +msgid "You cannot delete the world that you are editing" +msgstr "Du kan ikke slette den verden du redigerer" + +#: src/supertux/menu/editor_delete_levelset_menu.cpp:83 +#, c++-format +msgid "You are about to delete world \"{}\". Are you sure?" +msgstr "Du er ved at slette verden \"{}\". Skal verdenen slettes?" + +#: src/supertux/menu/addon_preview_menu.cpp:82 +#, c++-format +msgid "{} \"{}\"" +msgstr "{} \"{}\"" + +#: src/supertux/menu/addon_preview_menu.cpp:87 +msgid "Some information about this add-on is not available." +msgstr "Noget af informationen om denne tilføjelse er ikke tilgængelig." + +#: src/supertux/menu/addon_preview_menu.cpp:88 +msgid "Perform a \"Check Online\" to try retrieving it." +msgstr "Udfør et \"Check online\" for at forsøge at finde det." + +#: src/supertux/menu/addon_preview_menu.cpp:92 +msgid "No author specified." +msgstr "Ingen forfatter angivet." + +#: src/supertux/menu/addon_preview_menu.cpp:92 +#, c++-format +msgid "Author: {}" +msgstr "Forfatter: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:93 +#, c++-format +msgid "Type: {}" +msgstr "Type: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:94 +msgid "No license specified." +msgstr "Uspecificeret licens." + +#: src/supertux/menu/addon_preview_menu.cpp:94 +#, c++-format +msgid "License: {}" +msgstr "Licens: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:99 +msgid "Dependencies:" +msgstr "Afhængigheder:" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Installed" +msgstr "Installeret" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Not installed" +msgstr "Ikke installeret" + +#: src/supertux/menu/addon_preview_menu.cpp:113 +msgid "Not available!" +msgstr "Ikke tilgængelig!" + +#: src/supertux/menu/addon_preview_menu.cpp:120 +msgid "Description:" +msgstr "Beskrivelse:" + +#: src/supertux/menu/addon_preview_menu.cpp:123 +msgid "No description available." +msgstr "Ingen beskrivelse er tilgængelig." + +#: src/supertux/menu/addon_preview_menu.cpp:147 +msgid "Failed to load all available screenshot previews." +msgstr "Kunne ikke hente alle tilgængelige forhåndsvisninger af skærmbillede." + +#: src/supertux/menu/addon_preview_menu.cpp:152 +msgid "Show screenshots" +msgstr "Vis skærmbillede" + +#: src/supertux/menu/addon_preview_menu.cpp:165 +msgid "Screenshot previews are disabled for automatic installs." +msgstr "Skærmbillede forhåndsvisninger er slået fra for automatiserede installeringer." + +#: src/supertux/menu/addon_preview_menu.cpp:169 +msgid "No screenshot previews available." +msgstr "Ingen skærmbillede forhåndsvisninger er tilgængelige." + +#: src/supertux/menu/addon_preview_menu.cpp:177 +msgid "Install" +msgstr "Installér" + +#: src/supertux/menu/addon_preview_menu.cpp:190 +msgid "Uninstall" +msgstr "Afinstallér" + +#: src/supertux/menu/addon_preview_menu.cpp:214 +#, c++-format +msgid "Are you sure you want to uninstall \"{}\"?" +msgstr "Er du sikker på du vil afinstallere \"{}\"?" + +#: src/supertux/menu/addon_preview_menu.cpp:215 +msgid "" +"\n" +"Your progress won't be lost." +msgstr "\nDin fremgang vil ikke være tabt." + +#: src/supertux/menu/addon_preview_menu.cpp:227 +#, c++-format +msgid "" +"NOTE: The add-on \"{}\" is a dependency of {} other installed {}.\n" +"Are you sure you wish to uninstall?" +msgstr "NB: Tilføjelsen \"{}\" er en forudsætning for {} andre installerede {}.\nEr du sikker på, du ønsker at afinstallere?" + +#: src/supertux/menu/addon_preview_menu.cpp:246 +#, c++-format +msgid "" +"Cannot toggle add-on \"{}\":\n" +"{}" +msgstr "Kan ikke slå til eller fra for tilføjelsen \"{}\":\n{}" + +#: src/supertux/menu/addon_preview_menu.cpp:279 +msgid "Fetching screenshot previews..." +msgstr "Henter skærmbillede forhåndsvisninger..." + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Updating" +msgstr "Opdaterer" + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Downloading" +msgstr "Henter" + +#: src/supertux/menu/addon_preview_menu.cpp:328 +msgid "Add-on uninstalled successfully." +msgstr "Tilføjelse afinstalleret med kæmpestor succes." + +#: src/supertux/menu/addon_preview_menu.cpp:333 +#, c++-format +msgid "" +"Error uninstalling add-on:\n" +"{}" +msgstr "Det gik bare helt galt. Kunne ikke afinstallere tilføjelsen:\n{}" + +#: src/supertux/menu/addon_preview_menu.cpp:361 +msgid "" +"Please restart SuperTux\n" +"for these changes to take effect." +msgstr "Genstart venligst SuperTux\nfor at disse ændringer kan træde i kraft." + #: src/supertux/menu/main_menu.cpp:51 src/supertux/menu/world_set_menu.cpp:28 msgid "Start Game" msgstr "Start spil" -#: src/supertux/menu/main_menu.cpp:52 src/supertux/menu/addon_menu.cpp:122 +#: src/supertux/menu/main_menu.cpp:55 msgid "Add-ons" msgstr "Tilføjelser" -#: src/supertux/menu/main_menu.cpp:54 src/supertux/menu/editor_menu.cpp:39 +#: src/supertux/menu/main_menu.cpp:57 src/supertux/menu/web_asset_menu.cpp:38 +msgid "Manage Assets" +msgstr "Forvalt aktiver" + +#: src/supertux/menu/main_menu.cpp:59 +#: src/supertux/menu/options_select_menu.cpp:29 +#: src/supertux/menu/game_menu.cpp:58 src/supertux/menu/worldmap_menu.cpp:31 +#: src/supertux/menu/editor_menu.cpp:70 +msgid "Options" +msgstr "Indstillinger" + +#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/editor_menu.cpp:58 msgid "Level Editor" -msgstr "Baneredigeringsprogram" +msgstr "Baneredigering" -#: src/supertux/menu/main_menu.cpp:55 +#: src/supertux/menu/main_menu.cpp:61 msgid "Credits" msgstr "Rulletekst" -#: src/supertux/menu/main_menu.cpp:56 +#: src/supertux/menu/main_menu.cpp:64 msgid "Donate" msgstr "Doner" -#: src/supertux/menu/main_menu.cpp:57 +#: src/supertux/menu/main_menu.cpp:67 msgid "Quit" msgstr "Afslut spil" -#: src/supertux/menu/editor_sector_menu.cpp:35 +#: src/supertux/menu/main_menu.cpp:106 +msgid "" +"This will take you to the SuperTux donation page. Are you sure you want to " +"continue?" +msgstr "Vil føre dig til SuperTux doneringssiden. Er du sikker på du vil fortsætte?" + +#: src/supertux/menu/editor_sector_menu.cpp:34 +#, c++-format +msgid "Sector {}" +msgstr "Sektor {}" + +#: src/supertux/menu/editor_sector_menu.cpp:37 msgid "Initialization script" msgstr "Opstartsskript" -#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_sector_menu.cpp:38 msgid "Gravity" msgstr "Tyngdekraft" -#: src/supertux/menu/editor_sector_menu.cpp:41 +#: src/supertux/menu/editor_sector_menu.cpp:43 msgid "Resize offset X" msgstr "Ændr forskydning X" -#: src/supertux/menu/editor_sector_menu.cpp:42 +#: src/supertux/menu/editor_sector_menu.cpp:44 msgid "Resize offset Y" msgstr "Ændr forskydning Y" -#: src/supertux/menu/editor_sector_menu.cpp:43 +#: src/supertux/menu/editor_sector_menu.cpp:45 msgid "Resize" msgstr "Ændr str." -#: src/supertux/menu/profile_menu.cpp:37 -#, c-format -msgid "[Profile %s]" -msgstr "[Profil %s]" +#: src/supertux/menu/profile_menu.cpp:60 +msgid "No profiles found." +msgstr "Ingen profiler fundet." + +#: src/supertux/menu/profile_menu.cpp:68 +#: src/supertux/menu/profile_menu.cpp:149 +#: src/supertux/menu/profile_menu.cpp:168 +#, c++-format +msgid "Profile {}" +msgstr "Profil {}" + +#: src/supertux/menu/profile_menu.cpp:69 +#, c++-format +msgid "{} (Profile {})" +msgstr "{} (Profil {})" + +#: src/supertux/menu/profile_menu.cpp:84 +msgid "No profile selected." +msgstr "Profil ikke valgt." + +#: src/supertux/menu/profile_menu.cpp:91 src/supertux/menu/profile_menu.cpp:93 +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Rename" +msgstr "Omdøb" + +#: src/supertux/menu/profile_menu.cpp:98 +#: src/supertux/menu/profile_menu.cpp:100 +msgid "Reset" +msgstr "Nulstil" + +#: src/supertux/menu/profile_menu.cpp:103 +#: src/supertux/menu/profile_menu.cpp:105 +msgid "Reset all" +msgstr "Nulstil alt" + +#: src/supertux/menu/profile_menu.cpp:113 +#: src/supertux/menu/profile_menu.cpp:115 +msgid "Delete all" +msgstr "Slet alt" + +#: src/supertux/menu/profile_menu.cpp:148 +#, c++-format +msgid "" +"This will reset all game progress on the profile \"{}\".\n" +"Are you sure?" +msgstr "Vil nulstille al spilfremgang for profilen \"{}\".\nEr du sikker?" + +#: src/supertux/menu/profile_menu.cpp:157 +msgid "This will reset your game progress on all profiles. Are you sure?" +msgstr "Det vil nulstille dine spilfremskridt i alle profiler. Er du sikker?" + +#: src/supertux/menu/profile_menu.cpp:167 +#, c++-format +msgid "" +"This will delete the profile \"{}\",\n" +"including all game progress on it. Are you sure?" +msgstr "Vil slette profilen \"{}\",\ninklusive al spilfremgang på den. Er du sikker?" -#: src/supertux/menu/profile_menu.cpp:41 -#, c-format -msgid "Profile %s" -msgstr "Profil %s" +#: src/supertux/menu/profile_menu.cpp:178 +msgid "" +"This will delete all profiles, including all game progress on them.\n" +"Are you sure?" +msgstr "Vil slette alle profiler inklusive al spilfremgang på dem.\nEr du sikker?" -#: src/supertux/menu/editor_levelset_menu.cpp:59 +#: src/supertux/menu/editor_levelset_menu.cpp:53 #: src/supertux/menu/editor_new_levelset_menu.cpp:35 msgid "Description" msgstr "Beskrivelse" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:48 -#: data//images/engine/editor/objects.stoi:332 -msgid "Worldmap" -msgstr "Verdenskort" +#: src/supertux/menu/editor_levelset_menu.cpp:55 +msgid "Title Screen Level" +msgstr "Titelskærmsbane" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:45 -msgid "Levelset" -msgstr "Banesæt" +#: src/supertux/menu/editor_levelset_menu.cpp:56 +msgid "A level to be used for the title screen, after exiting the world." +msgstr "Bane, der anvendes på titelskærmen, efter verdenen forlades." -#: src/supertux/menu/addon_menu.cpp:51 -msgid "World" -msgstr "Verden" +#: src/supertux/menu/multiplayer_players_menu.cpp:46 +msgid "Add Player" +msgstr "Tilføj spiller" -#: src/supertux/menu/addon_menu.cpp:54 -msgid "Add-on" -msgstr "Tilføjelse" +#: src/supertux/menu/multiplayer_players_menu.cpp:59 +msgid "Remove Last Player" +msgstr "Fjern sidste spiller" -#: src/supertux/menu/addon_menu.cpp:60 -msgid "Unknown" -msgstr "Ukendt" +#: src/supertux/menu/multiplayer_players_menu.cpp:62 +msgid "" +"Warning: The player you are trying to\n" +"remove is currently in-game.\n" +"\n" +"Do you wish to remove them anyways?" +msgstr "Advarsel: Spilleren du forsøger at\nfjerne er i gang med et spil.\n\nVil du virkelig slette spilleren alligevel?" + +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Language Packs" +msgstr "Installerede sprogpakker" + +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Add-ons" +msgstr "Installerede tilføjelser" -#: src/supertux/menu/addon_menu.cpp:71 -#, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s »%s« af »%s«" +#: src/supertux/menu/addon_menu.cpp:76 src/supertux/menu/addon_menu.cpp:117 +msgid "No language packs installed" +msgstr "Ingen sprogpakker er installeret" -#: src/supertux/menu/addon_menu.cpp:129 +#: src/supertux/menu/addon_menu.cpp:76 msgid "No Add-ons installed" -msgstr "Ingen udvidelser installeret" +msgstr "Ingen tilføjelser er installeret" -#: src/supertux/menu/addon_menu.cpp:133 -msgid "No Add-ons found" -msgstr "Der blev ikke fundet udvidelser" +#: src/supertux/menu/addon_menu.cpp:124 +#, c++-format +msgid "{} {}*UPDATE*" +msgstr "{} {}*OPDATÉR*" -#: src/supertux/menu/addon_menu.cpp:179 -#, c-format -msgid "Install %s *NEW*" -msgstr "Installer %s *NY*" +#: src/supertux/menu/addon_menu.cpp:130 +#, c++-format +msgid "{}{}" +msgstr "{}{}" -#: src/supertux/menu/addon_menu.cpp:190 -#, c-format -msgid "Install %s" -msgstr "Installer %s" +#: src/supertux/menu/addon_menu.cpp:140 +msgid "No updates available." +msgstr "Ingen tilgængelige opdateringer." -#: src/supertux/menu/addon_menu.cpp:199 -msgid "No new Add-ons found" -msgstr "Der blev ikke fundet nye udvidelser" +#: src/supertux/menu/addon_menu.cpp:144 +#, c++-format +msgid "{} {} available" +msgstr "{} {} tilgængelig" -#: src/supertux/menu/addon_menu.cpp:205 -msgid "Check Online (disabled)" -msgstr "Tjek online (slået fra)" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "update" +msgstr "opdatering" -#: src/supertux/menu/addon_menu.cpp:209 -msgid "Check Online" -msgstr "Tjek online" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "updates" +msgstr "opdateringer" -#: src/supertux/menu/addon_menu.cpp:286 -msgid "Downloading Add-On Repository Index" -msgstr "Henter arkivindeks for udvidelser" +#: src/supertux/menu/addon_menu.cpp:146 +msgid "Check for updates" +msgstr "Check for opdateringer" -#: src/supertux/menu/addon_menu.cpp:301 -#, c-format -msgid "Downloading %s" -msgstr "Henter %s" +#: src/supertux/menu/addon_menu.cpp:150 +msgid "Browse language packs" +msgstr "Gennemse sprogpakker" -#: src/supertux/menu/addon_menu.cpp:348 -msgid "" -"Please restart SuperTux\n" -"for these changes to take effect." -msgstr "Genstart venligst SuperTux\nfor at disse ændringer kan træde i kraft." +#: src/supertux/menu/addon_menu.cpp:150 +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Add-ons" +msgstr "Gennemse tilføjelser" + +#: src/supertux/menu/addon_menu.cpp:151 +msgid "Install from file" +msgstr "Installér fra fil" + +#: src/supertux/menu/addon_menu.cpp:208 +msgid "Checking for updates..." +msgstr "Checker for opdateringer..." #: src/supertux/menu/editor_new_levelset_menu.cpp:31 msgid "New World" @@ -1903,217 +3636,302 @@ msgstr "Indtast venligst et navn for dette baneundersæt." msgid "Story Mode" msgstr "Historietilstand" -#: src/supertux/menu/game_menu.cpp:31 -msgid "Are you sure?" -msgstr "Er du sikker?" +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Language Packs" +msgstr "Gennemse sprogpakker" + +#: src/supertux/menu/addon_browse_menu.cpp:112 +#, c++-format +msgid "Page {}/{}" +msgstr "Side {}/{}" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new language packs available" +msgstr "Ingen nye sprogpakker er tilgængelige" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new Add-ons available" +msgstr "Der er ingen nye tilføjelser tilgængelige" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No language packs available" +msgstr "Ingen sprogpakker er tilgængelige" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No Add-ons available" +msgstr "Ingen tilføjelser er tilgængelige" + +#: src/supertux/menu/addon_browse_menu.cpp:135 +#: src/supertux/menu/addon_browse_menu.cpp:139 +msgid "Previous page" +msgstr "Sidste side" + +#: src/supertux/menu/addon_browse_menu.cpp:143 +#: src/supertux/menu/addon_browse_menu.cpp:147 +msgid "Next page" +msgstr "Næste side" + +#: src/supertux/menu/addon_browse_menu.cpp:154 +msgid "Check Online (disabled)" +msgstr "Tjek online (slået fra)" -#: src/supertux/menu/game_menu.cpp:54 src/supertux/menu/worldmap_menu.cpp:30 +#: src/supertux/menu/addon_browse_menu.cpp:158 +msgid "Check Online" +msgstr "Tjek online" + +#: src/supertux/menu/addon_browse_menu.cpp:195 +msgid "Downloading Add-On Repository Index" +msgstr "Henter arkivindeks for tilføjelser" + +#: src/supertux/menu/web_asset_menu.cpp:42 +msgid "New files location" +msgstr "Ny filplacering" + +#: src/supertux/menu/web_asset_menu.cpp:43 +msgid "Add Files" +msgstr "Tilføj filer" + +#: src/supertux/menu/web_asset_menu.cpp:44 +msgid "Download Files" +msgstr "Hent filer" + +#: src/supertux/menu/particle_editor_open.cpp:32 +msgid "Load particle file" +msgstr "Hent partikelfil" + +#: src/supertux/menu/particle_editor_open.cpp:39 +msgid "Open" +msgstr "Åbn" + +#: src/supertux/menu/game_menu.cpp:51 src/supertux/menu/worldmap_menu.cpp:30 msgid "Continue" msgstr "Fortsæt" -#: src/supertux/menu/game_menu.cpp:55 +#: src/supertux/menu/game_menu.cpp:52 msgid "Restart Level" msgstr "Genstart bane" -#: src/supertux/menu/game_menu.cpp:58 +#: src/supertux/menu/game_menu.cpp:55 msgid "Restart from Checkpoint" msgstr "Genstart fra kontrolpunkt" -#: src/supertux/menu/game_menu.cpp:63 +#: src/supertux/menu/game_menu.cpp:60 msgid "Abort Level" msgstr "Forlad bane" -#: src/supertux/menu/keyboard_menu.cpp:32 -#: src/supertux/menu/joystick_menu.cpp:69 -msgid "Up" -msgstr "Op" +#: src/supertux/menu/game_menu.cpp:76 src/supertux/menu/game_menu.cpp:87 +#: src/supertux/menu/game_menu.cpp:99 +msgid "Are you sure?" +msgstr "Er du sikker?" -#: src/supertux/menu/keyboard_menu.cpp:33 -#: src/supertux/menu/joystick_menu.cpp:70 -msgid "Down" -msgstr "Ned" +#: src/supertux/menu/profile_name_menu.cpp:36 +#, c++-format +msgid "Rename \"{}\"" +msgstr "Omdøb \"{}\"" -#: src/supertux/menu/keyboard_menu.cpp:34 +#: src/supertux/menu/profile_name_menu.cpp:36 +msgid "Add profile" +msgstr "Tilføj profil" + +#: src/supertux/menu/profile_name_menu.cpp:40 +msgid "Profile names must have a maximum of 20 characters." +msgstr "Profilnavne skal mindst have 20 karakterer." + +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Create" +msgstr "Skab" + +#: src/supertux/menu/profile_name_menu.cpp:56 +msgid "" +"Profile names must have a maximum of 20 characters.\n" +"Please choose a different name." +msgstr "Profilnavne skal mindst have 20 tegn.\nVælg venligst et andet navn." + +#: src/supertux/menu/profile_name_menu.cpp:77 +msgid "An error occurred while creating the profile." +msgstr "Der opstod en fejl ved oprettelsen af profilen." + +#: src/supertux/menu/keyboard_menu.cpp:36 #: src/supertux/menu/joystick_menu.cpp:71 -msgid "Left" -msgstr "Venstre" +msgid "Up" +msgstr "Op" -#: src/supertux/menu/keyboard_menu.cpp:35 +#: src/supertux/menu/keyboard_menu.cpp:37 #: src/supertux/menu/joystick_menu.cpp:72 -msgid "Right" -msgstr "Højre" +msgid "Down" +msgstr "Ned" -#: src/supertux/menu/keyboard_menu.cpp:36 -#: src/supertux/menu/joystick_menu.cpp:73 +#: src/supertux/menu/keyboard_menu.cpp:40 +#: src/supertux/menu/joystick_menu.cpp:75 msgid "Jump" msgstr "Hop" -#: src/supertux/menu/keyboard_menu.cpp:38 -#: src/supertux/menu/joystick_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:43 +#: src/supertux/menu/joystick_menu.cpp:78 msgid "Peek Left" msgstr "Kig højre" -#: src/supertux/menu/keyboard_menu.cpp:39 -#: src/supertux/menu/joystick_menu.cpp:77 +#: src/supertux/menu/keyboard_menu.cpp:44 +#: src/supertux/menu/joystick_menu.cpp:79 msgid "Peek Right" msgstr "Kig venstre" -#: src/supertux/menu/keyboard_menu.cpp:40 -#: src/supertux/menu/joystick_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:45 +#: src/supertux/menu/joystick_menu.cpp:80 msgid "Peek Up" msgstr "Kig op" -#: src/supertux/menu/keyboard_menu.cpp:41 -#: src/supertux/menu/joystick_menu.cpp:79 +#: src/supertux/menu/keyboard_menu.cpp:46 +#: src/supertux/menu/joystick_menu.cpp:81 msgid "Peek Down" msgstr "Kig ned" -#: src/supertux/menu/keyboard_menu.cpp:43 -#: src/supertux/menu/joystick_menu.cpp:81 +#: src/supertux/menu/keyboard_menu.cpp:51 +#: src/supertux/menu/joystick_menu.cpp:83 msgid "Console" msgstr "Konsol" -#: src/supertux/menu/keyboard_menu.cpp:46 -#: src/supertux/menu/joystick_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:52 +#: src/supertux/menu/joystick_menu.cpp:84 msgid "Cheat Menu" msgstr "Snydemenu" -#: src/supertux/menu/keyboard_menu.cpp:47 -#: src/supertux/menu/joystick_menu.cpp:83 +#: src/supertux/menu/keyboard_menu.cpp:53 +#: src/supertux/menu/joystick_menu.cpp:85 msgid "Debug Menu" msgstr "Fejlsøgningsmenu" -#: src/supertux/menu/keyboard_menu.cpp:49 -#: src/supertux/menu/joystick_menu.cpp:85 +#: src/supertux/menu/keyboard_menu.cpp:56 +#: src/supertux/menu/joystick_menu.cpp:87 msgid "Jump with Up" msgstr "Hop med op-tasten" -#: src/supertux/menu/keyboard_menu.cpp:62 +#: src/supertux/menu/keyboard_menu.cpp:82 msgid "Up cursor" msgstr "Pil op" -#: src/supertux/menu/keyboard_menu.cpp:64 +#: src/supertux/menu/keyboard_menu.cpp:84 msgid "Down cursor" msgstr "Pil ned" -#: src/supertux/menu/keyboard_menu.cpp:66 +#: src/supertux/menu/keyboard_menu.cpp:86 msgid "Left cursor" msgstr "Pil til venstre" -#: src/supertux/menu/keyboard_menu.cpp:68 +#: src/supertux/menu/keyboard_menu.cpp:88 msgid "Right cursor" msgstr "Pil til højre" -#: src/supertux/menu/keyboard_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:90 msgid "Return" msgstr "Retur" -#: src/supertux/menu/keyboard_menu.cpp:72 +#: src/supertux/menu/keyboard_menu.cpp:92 msgid "Space" msgstr "Mellemrum" -#: src/supertux/menu/keyboard_menu.cpp:74 +#: src/supertux/menu/keyboard_menu.cpp:94 msgid "Right Shift" msgstr "Højre skift" -#: src/supertux/menu/keyboard_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:96 msgid "Left Shift" msgstr "Venstre skift" -#: src/supertux/menu/keyboard_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:98 msgid "Right Control" msgstr "Højre ctrl" -#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/keyboard_menu.cpp:100 msgid "Left Control" msgstr "Venstre ctrl" -#: src/supertux/menu/keyboard_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:102 msgid "Right Alt" msgstr "Højre alt" -#: src/supertux/menu/keyboard_menu.cpp:84 +#: src/supertux/menu/keyboard_menu.cpp:104 msgid "Left Alt" msgstr "Venstre alt" -#: src/supertux/menu/keyboard_menu.cpp:86 +#: src/supertux/menu/keyboard_menu.cpp:106 msgid "Right Command" msgstr "Højre kommando" -#: src/supertux/menu/keyboard_menu.cpp:88 +#: src/supertux/menu/keyboard_menu.cpp:108 msgid "Left Command" msgstr "Venstre kommando" -#: src/supertux/menu/keyboard_menu.cpp:102 +#: src/supertux/menu/keyboard_menu.cpp:122 msgid "Press Key" msgstr "Tryk på en tast" -#: src/supertux/menu/language_menu.cpp:40 +#: src/supertux/menu/language_menu.cpp:43 msgid "Language" msgstr "Sprog" -#: src/supertux/menu/language_menu.cpp:42 +#: src/supertux/menu/language_menu.cpp:45 msgid "" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:55 +#: src/supertux/menu/joystick_menu.cpp:57 msgid "Manual Configuration" msgstr "Manuel konfiguration" -#: src/supertux/menu/joystick_menu.cpp:57 +#: src/supertux/menu/joystick_menu.cpp:59 msgid "" "Use manual configuration instead of SDL2's automatic GameController support" msgstr "Brug manuel konfiguration i stedet for SDL2's automatiske GameController-understøttelse" -#: src/supertux/menu/joystick_menu.cpp:75 +#: src/supertux/menu/joystick_menu.cpp:77 msgid "Pause/Menu" msgstr "Pause/Menu" -#: src/supertux/menu/joystick_menu.cpp:91 +#: src/supertux/menu/joystick_menu.cpp:93 msgid "No Joysticks found" msgstr "Intet joystick fundet" -#: src/supertux/menu/joystick_menu.cpp:92 +#: src/supertux/menu/joystick_menu.cpp:94 msgid "Scan for Joysticks" msgstr "Skan efter joysticks" -#: src/supertux/menu/joystick_menu.cpp:125 +#: src/supertux/menu/joystick_menu.cpp:127 msgid "Press Button" msgstr "Tryk på en knap" -#: src/supertux/menu/joystick_menu.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:164 msgid "Axis " msgstr "Akse" -#: src/supertux/menu/joystick_menu.cpp:165 +#: src/supertux/menu/joystick_menu.cpp:167 msgid "-" msgstr "-" -#: src/supertux/menu/joystick_menu.cpp:167 +#: src/supertux/menu/joystick_menu.cpp:169 msgid "+" msgstr "+" -#: src/supertux/menu/joystick_menu.cpp:174 +#: src/supertux/menu/joystick_menu.cpp:176 msgid "X2" msgstr "X2" -#: src/supertux/menu/joystick_menu.cpp:176 +#: src/supertux/menu/joystick_menu.cpp:178 msgid "Y2" msgstr "Y2" -#: src/supertux/menu/joystick_menu.cpp:189 +#: src/supertux/menu/joystick_menu.cpp:191 msgid "Hat Up" msgstr "Hat op" -#: src/supertux/menu/joystick_menu.cpp:193 +#: src/supertux/menu/joystick_menu.cpp:195 msgid "Hat Down" msgstr "Hat ned" -#: src/supertux/menu/joystick_menu.cpp:197 +#: src/supertux/menu/joystick_menu.cpp:199 msgid "Hat Left" msgstr "Hat venstre" -#: src/supertux/menu/joystick_menu.cpp:201 +#: src/supertux/menu/joystick_menu.cpp:203 msgid "Hat Right" msgstr "Hat højre" @@ -2125,37 +3943,103 @@ msgstr "Pause" msgid "Leave World" msgstr "Forlad verden" -#: src/supertux/menu/download_dialog.cpp:27 -msgid "Abort Download" -msgstr "Afbryd overførsel" +#: src/supertux/menu/download_dialog.cpp:42 +msgid "Abort Download" +msgstr "Afbryd overførsel" + +#: src/supertux/menu/download_dialog.cpp:59 +#, c++-format +msgid "" +"Error:\n" +"{}" +msgstr "Fejl:\n{}" + +#: src/supertux/menu/cheat_menu.cpp:38 +msgid "Bonus: Star" +msgstr "Bonus: Stjerne" + +#: src/supertux/menu/cheat_menu.cpp:39 +msgid "Shrink Tux" +msgstr "Formindsk Tux" + +#: src/supertux/menu/cheat_menu.cpp:40 +msgid "Kill Tux" +msgstr "Dræb Tux" + +#: src/supertux/menu/cheat_menu.cpp:55 +msgid "Prevent Death" +msgstr "Forebyg død" + +#: src/supertux/menu/addon_file_install_menu.cpp:32 +msgid "Install Add-on from file" +msgstr "Installér tilføjelse fra fil" + +#: src/supertux/menu/addon_file_install_menu.cpp:34 +msgid "Drag and drop add-on ZIP archive" +msgstr "Træk og slip tilføjelse ZIP-arkiv" + +#: src/supertux/menu/particle_editor_menu.cpp:32 +msgid "Particle Editor" +msgstr "Partikelredigering" + +#: src/supertux/menu/particle_editor_menu.cpp:36 +#: src/supertux/menu/editor_menu.cpp:60 +msgid "Return to Editor" +msgstr "Returnér til Redigering" + +#: src/supertux/menu/particle_editor_menu.cpp:37 +msgid "New Particle Config" +msgstr "Ny partikelkonfiguration" + +#: src/supertux/menu/particle_editor_menu.cpp:38 +msgid "Save Particle Config" +msgstr "Gem partikelkonfiguration" + +#: src/supertux/menu/particle_editor_menu.cpp:39 +msgid "Save Particle Config as..." +msgstr "Gem partikelkonfiguration som..." -#: src/supertux/menu/download_dialog.cpp:42 -msgid "Error:\n" -msgstr "Fejl:\n" +#: src/supertux/menu/particle_editor_menu.cpp:40 +msgid "Load Another Particle Config" +msgstr "Hent en anden partikelkonfiguration" -#: src/supertux/menu/download_dialog.cpp:96 -msgid "Close" -msgstr "Luk" +#: src/supertux/menu/particle_editor_menu.cpp:44 +msgid "Open Particle Directory" +msgstr "Åbn partikelfolder" -#: src/supertux/menu/cheat_menu.cpp:37 -msgid "Bonus: Star" -msgstr "Bonus: Stjerne" +#: src/supertux/menu/particle_editor_menu.cpp:45 +#: src/supertux/menu/editor_menu.cpp:118 +msgid "Keyboard Shortcuts" +msgstr "Genvejstaster" -#: src/supertux/menu/cheat_menu.cpp:38 -msgid "Shrink Tux" -msgstr "Formindsk Tux" +#: src/supertux/menu/particle_editor_menu.cpp:49 +msgid "Exit Particle Editor" +msgstr "Afslut partikelredigering" -#: src/supertux/menu/cheat_menu.cpp:39 -msgid "Kill Tux" -msgstr "Dræb Tux" +#: src/supertux/menu/particle_editor_menu.cpp:121 +msgid "" +"Keyboard Shortcuts:\n" +"---------------------\n" +"Esc = Open Menu\n" +"Ctrl+S = Save\n" +"Ctrl+Shift+S = Save as\n" +"Ctrl+O = Open\n" +"Ctrl+Z = Undo\n" +"Ctrl+Y = Redo" +msgstr "Tastaturgenveje:\n---------------------\nEsc = Åbn Menu\nCtrl+S = Gem\nCtrl+Shift+S = Gem som\nCtrl+O = Åbn\nCtrl+Z = Fortryd\nCtrl+Y = Gendan" + +#: src/supertux/menu/particle_editor_menu.cpp:122 +#: src/supertux/menu/editor_menu.cpp:206 +msgid "Got it!" +msgstr "Forstod det!" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:70 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Worldmap Settings" msgstr "Indstillinger for verdenskortet" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:70 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Level Settings" msgstr "Baneindstillinger" @@ -2163,7 +4047,7 @@ msgstr "Baneindstillinger" msgid "Author" msgstr "Forfatter" -#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1129 +#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1253 msgid "Contact" msgstr "Kontakt" @@ -2172,114 +4056,160 @@ msgid "License" msgstr "Licens" #: src/supertux/menu/editor_level_menu.cpp:37 +msgid "Level Note" +msgstr "Banekommentar" + +#: src/supertux/menu/editor_level_menu.cpp:38 msgid "Tileset" msgstr "Feltsæt" -#: src/supertux/menu/editor_level_menu.cpp:40 +#: src/supertux/menu/editor_level_menu.cpp:41 msgid "Target Time" msgstr "Måltid" -#: src/supertux/menu/editor_level_menu.cpp:82 +#: src/supertux/menu/editor_level_menu.cpp:83 msgid "Please enter a name for this level." -msgstr "Indtast venligst et navn for denne bane." +msgstr "Indtast venligst et navn til denne bane." -#: src/supertux/menu/editor_level_menu.cpp:86 +#: src/supertux/menu/editor_level_menu.cpp:87 msgid "Please enter a level author for this level." -msgstr "Indtast venligst et forfatternavn for denne bane." +msgstr "Indtast venligst et forfatternavn til denne bane." -#: src/supertux/menu/editor_level_menu.cpp:90 +#: src/supertux/menu/editor_level_menu.cpp:91 msgid "Please enter a license for this level." -msgstr "Indtast venligst en licens for denne bane." +msgstr "Indtast venligst en licens til denne bane." -#: src/supertux/menu/editor_menu.cpp:34 -msgid "1/8 tile (4px)" -msgstr "1/8 felt (4px)" +#: src/supertux/menu/editor_menu.cpp:53 +msgid "tiny tile (4px)" +msgstr "Lillebitte felt (4px)" -#: src/supertux/menu/editor_menu.cpp:35 -msgid "1/4 tile (8px)" -msgstr "1/4 felt (8px)" - -#: src/supertux/menu/editor_menu.cpp:36 -msgid "1/2 tile (16px)" -msgstr "1/2 felt (16px)" +#: src/supertux/menu/editor_menu.cpp:54 +msgid "small tile (8px)" +msgstr "Lille felt (8px)" -#: src/supertux/menu/editor_menu.cpp:37 -msgid "1 tile (32px)" -msgstr "1 felt (32px)" +#: src/supertux/menu/editor_menu.cpp:55 +msgid "medium tile (16px)" +msgstr "Middel felt (16px)" -#: src/supertux/menu/editor_menu.cpp:41 -msgid "Return to Editor" -msgstr "Returner til redigeringsprogram" +#: src/supertux/menu/editor_menu.cpp:56 +msgid "big tile (32px)" +msgstr "Stort felt (32px)" -#: src/supertux/menu/editor_menu.cpp:42 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Worldmap" msgstr "Gem verdenskort" -#: src/supertux/menu/editor_menu.cpp:42 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Level" msgstr "Gem bane" -#: src/supertux/menu/editor_menu.cpp:45 +#: src/supertux/menu/editor_menu.cpp:65 msgid "Test Level" msgstr "Test bane" -#: src/supertux/menu/editor_menu.cpp:49 +#: src/supertux/menu/editor_menu.cpp:67 msgid "Test Worldmap" msgstr "Test verdenskort" -#: src/supertux/menu/editor_menu.cpp:52 +#: src/supertux/menu/editor_menu.cpp:72 msgid "Share Level" msgstr "Del bane" -#: src/supertux/menu/editor_menu.cpp:54 +#: src/supertux/menu/editor_menu.cpp:74 +msgid "Package Add-On" +msgstr "Pakketilføjelse" + +#: src/supertux/menu/editor_menu.cpp:76 msgid "Open Level Directory" msgstr "Åbn banemappe" -#: src/supertux/menu/editor_menu.cpp:57 +#: src/supertux/menu/editor_menu.cpp:79 msgid "Edit Another Level" msgstr "Rediger en anden bane" -#: src/supertux/menu/editor_menu.cpp:60 +#: src/supertux/menu/editor_menu.cpp:81 msgid "Edit Another World" msgstr "Rediger en anden verden" -#: src/supertux/menu/editor_menu.cpp:64 +#: src/supertux/menu/editor_menu.cpp:86 +msgid "Convert all tiles in the level using converters." +msgstr "Konvertér alle felter på banen med konvertere." + +#: src/supertux/menu/editor_menu.cpp:90 msgid "Grid Size" msgstr "Gitterstørrelse" -#: src/supertux/menu/editor_menu.cpp:65 +#: src/supertux/menu/editor_menu.cpp:91 msgid "Show Grid" msgstr "Vis gitter" -#: src/supertux/menu/editor_menu.cpp:66 +#: src/supertux/menu/editor_menu.cpp:92 msgid "Grid Snapping" msgstr "Gittertilpasning" -#: src/supertux/menu/editor_menu.cpp:67 +#: src/supertux/menu/editor_menu.cpp:93 msgid "Render Background" msgstr "Optegn baggrund" -#: src/supertux/menu/editor_menu.cpp:68 +#: src/supertux/menu/editor_menu.cpp:94 msgid "Render Light" msgstr "Optegn lys" -#: src/supertux/menu/editor_menu.cpp:72 -msgid "Keyboard Shortcuts" -msgstr "Genvejstaster" +#: src/supertux/menu/editor_menu.cpp:95 +msgid "Autotile Mode" +msgstr "Automatisk felttilstand" + +#: src/supertux/menu/editor_menu.cpp:96 +msgid "Enable Autotile Help" +msgstr "Slå automatisk felthjælp til" + +#: src/supertux/menu/editor_menu.cpp:97 +msgid "Enable Object Undo Tracking" +msgstr "Slå objekt fortryd sporing til" + +#: src/supertux/menu/editor_menu.cpp:100 +msgid "Undo Stack Size" +msgstr "Fortryd stakstørrelse" + +#: src/supertux/menu/editor_menu.cpp:102 +msgid "Autosave Frequency" +msgstr "Frekvens for at gemme automatisk" -#: src/supertux/menu/editor_menu.cpp:75 +#: src/supertux/menu/editor_menu.cpp:108 +msgid "Check for Deprecated Tiles" +msgstr "Check for forældede felter" + +#: src/supertux/menu/editor_menu.cpp:109 +msgid "Check if any deprecated tiles are currently present in the level." +msgstr "Check om der er forældede felter på banen." + +#: src/supertux/menu/editor_menu.cpp:110 +msgid "Show Deprecated Tiles" +msgstr "Vis forældede felter" + +#: src/supertux/menu/editor_menu.cpp:111 +msgid "" +"Indicate all deprecated tiles on the active tilemap, without the need of " +"hovering over." +msgstr "Indikér alle forældede felter på det aktive feltkort uden behov for at svæve over dem." + +#: src/supertux/menu/editor_menu.cpp:121 msgid "Exit Level Editor" -msgstr "Forlad baneredigeringsprogrammet" +msgstr "Afslut Baneredigering" + +#: src/supertux/menu/editor_menu.cpp:170 +msgid "Do you want to package this world as an add-on?" +msgstr "Ønsker du at pakke denne verden som en tilføjelse?" -#: src/supertux/menu/editor_menu.cpp:122 +#: src/supertux/menu/editor_menu.cpp:196 msgid "" "We encourage you to share your levels in the SuperTux forum.\n" "To find your level, click the\n" "\"Open Level directory\" menu item.\n" "Do you want to go to the forum now?" -msgstr "Vi opfordrer til at du deler dine baner i SuperTux-forummet.\nFor at finde din bane, klik på\nmenuelementet »Åbn banemappe«.\nØnsker du at gå til forummet nu?" +msgstr "Vi opfordrer til at du deler dine baner i SuperTux-forummet.\nFor at finde din bane, klik på\nmenuelementet \"Åbn banemappe\".\nØnsker du at gå til forummet nu?" -#: src/supertux/menu/editor_menu.cpp:134 +#: src/supertux/menu/editor_menu.cpp:205 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -2290,560 +4220,920 @@ msgid "" "Ctrl+Y = Redo\n" "F6 = Render Light\n" "F7 = Grid Snapping\n" -"F8 = Show Grid" -msgstr "Genvejstaster:\n---------------------\nEsc = Åbn menu\nCtrl+S = Gem\nCtrl+T = Test\nCtrl+Z = Genskab\nCtrl+Y = Omgør\nF6 = Optegn lys\nF7 = Gittertilpasning\nF8 = Vis gitter" +"F8 = Show Grid\n" +"Ctrl++ or Ctrl+Scroll Up = Zoom In\n" +"Ctrl+- or Ctrl+Scroll Down = Zoom Out\n" +"Ctrl+D = Reset Zoom\n" +"\n" +"Scripting Shortcuts:\n" +" ------------- \n" +"Home = Go to beginning of line\n" +"End = Go to end of line\n" +"Left arrow = Go back in text\n" +"Right arrow = Go forward in text\n" +"Backspace = Delete in front of text cursor\n" +"Delete = Delete behind text cursor\n" +"Ctrl+X = Cut whole line\n" +"Ctrl+C = Copy whole line\n" +"Ctrl+V = Paste\n" +"Ctrl+D = Duplicate line\n" +"Ctrl+Z = Undo\n" +"Ctrl+Y = Redo" +msgstr "Genvejstaster:\n---------------------\nEsc = Åbn menu\nCtrl+S = Gem\nCtrl+T = Test\nCtrl+Z = Fortryd\nCtrl+Y = Gør det om\nF6 = Renderingslys\nF7 = Gitterplacering\nF8 = Vis gitter\nCtrl++ eller Ctrl+Scroll Up = Zoom ind\nCtrl+- eller Ctrl+Scroll Down = Zoom ud\nCtrl+D = Nulstil zoom\n\nScriptgenvejstaster:\n ------------- \nHome = Hop til linjestart\nEnd = Hop til linjeslut\nLeft arrow = Gå tilbage i tekst\nRight arrow = Gå frem i tekst\nBackspace = Slet foran markør\nDelete = Slet bag markør\nCtrl+X = Klip hel linje\nCtrl+C = Kopiér hel linje\nCtrl+V = Indsæt\nCtrl+D = Duplikér linje\nCtrl+Z = Fortryd\nCtrl+Y = Gør det om" -#: src/supertux/menu/editor_menu.cpp:135 -msgid "Got it!" -msgstr "Forstod det!" +#: src/supertux/menu/editor_menu.cpp:232 +msgid "Deprecated tiles are still present in the level." +msgstr "Der er stadig forældede felter på banen." + +#: src/supertux/menu/editor_menu.cpp:239 +msgid "Do you want to show all deprecated tiles on active tilemaps?" +msgstr "Vil du vise alle forældede felter på aktive feltkort?" + +#: src/supertux/menu/editor_menu.cpp:246 +msgid "There are no more deprecated tiles in the level!" +msgstr "Der er ikke flere forældede felter på banen!" + +#: src/supertux/menu/multiplayer_player_menu.cpp:40 +msgid "Play with the keyboard" +msgstr "Spil med tastaturet" + +#: src/supertux/menu/multiplayer_player_menu.cpp:58 +msgid "Remove Player" +msgstr "Fjern spiller" + +#: src/supertux/menu/multiplayer_player_menu.cpp:82 +msgid "Respawn Player" +msgstr "Reinkarnér spiller" + +#: src/supertux/menu/multiplayer_player_menu.cpp:108 +msgid "Spawn Player" +msgstr "Inkarnér spiller" + +#: src/supertux/menu/multiplayer_player_menu.cpp:136 +msgid "Controllers" +msgstr "Controllere" -#: src/supertux/levelintro.cpp:136 -#, c-format -msgid "contributed by %s" -msgstr "lavet af %s" +#: src/supertux/menu/multiplayer_player_menu.cpp:152 +msgid "" +"This controller does not support rumbling;\n" +"please check the controllers manually." +msgstr "Denne controller understøtter ikke rumling;\ncheck controllerne manuelt." + +#: src/supertux/menu/multiplayer_player_menu.cpp:157 +msgid "" +"This SuperTux build does not support rumbling\n" +"controllers; please check the controllers manually." +msgstr "Dette SuperTux build understøtter ikke rumlende\ncontrollere; check controllerne manuelt." + +#: src/supertux/menu/multiplayer_player_menu.cpp:184 +msgid "" +"This joystick does not support rumbling;\n" +"please check the joysticks manually." +msgstr "Dette joystick understøtter ikke rumling;\ncheck joysticks manuelt." + +#: src/supertux/menu/multiplayer_player_menu.cpp:189 +msgid "" +"This SuperTux build does not support rumbling\n" +"joysticks; please check the joysticks manually." +msgstr "Dette SuperTux build understøtter ikke rumlende\njoysticks; check joysticks manuelt." + +#: src/supertux/menu/editor_delete_level_menu.cpp:59 +msgid "No levels available" +msgstr "Der er ingen baner tilgængelige" -#: src/supertux/levelintro.cpp:169 +#: src/supertux/menu/editor_delete_level_menu.cpp:79 +msgid "You cannot delete the level that you are editing!" +msgstr "Du kan ikke slette den bane, du redigerer!" + +#: src/supertux/menu/editor_delete_level_menu.cpp:82 +#, c++-format +msgid "You are about to delete level \"{}\". Are you sure?" +msgstr "Du er i færd med at slette banen \"{}\". Er du sikker?" + +#: src/supertux/levelintro.cpp:137 +#, c++-format +msgid "contributed by {}" +msgstr "Bidrag fra {}" + +#: src/supertux/levelintro.cpp:184 msgid "Badguys killed" msgstr "Antal dræbte slemme fyre" -#: src/supertux/levelintro.cpp:177 +#: src/supertux/levelintro.cpp:192 msgid "Best time" msgstr "Bedste tid" -#: src/supertux/levelintro.cpp:181 +#: src/supertux/levelintro.cpp:196 msgid "Level target time" -msgstr "Banens måltid" +msgstr "Banens tidsmål" -#: src/supertux/tile_set.cpp:92 +#: src/supertux/tile_set.cpp:113 msgid "Others" msgstr "Andre" -#: src/supertux/moving_object.cpp:44 +#: src/supertux/direction.cpp:67 +msgid "up" +msgstr "op" + +#: src/supertux/direction.cpp:69 +msgid "down" +msgstr "ned" + +#: src/supertux/moving_object.cpp:63 msgid "Region" msgstr "Region" +#: src/supertux/main.cpp:801 +#, c++-format +msgid "New release: SuperTux v{}!" +msgstr "Ny udgave: SuperTux v{}!" + +#: src/supertux/main.cpp:804 +#, c++-format +msgid "" +"A new release of SuperTux (v{}) is available!\n" +"For more information, you can visit the SuperTux website.\n" +"\n" +"Do you want to visit the website now?" +msgstr "En ny udgave af SuperTux (v{}) er tilgængelig!\nGå til SuperTux websiden for mere information.\n\nVil du besøge websiden nu?" + +#: src/supertux/main.cpp:815 +msgid "Checking for new releases..." +msgstr "Checker om der er nye udgaver..." + #: src/control/joystick_config.cpp:85 msgid "Joystick Mappings" msgstr "Kortlægning af joystick" -#: src/worldmap/worldmap_parser.cpp:167 +#: src/worldmap/sprite_change.cpp:91 +msgid "Stay action" +msgstr "Holdhandling" + +#: src/worldmap/sprite_change.cpp:92 +msgid "Initial stay action" +msgstr "Holdhandling for opstart" + +#: src/worldmap/sprite_change.cpp:93 +msgid "Stay group" +msgstr "Holdgruppe" + +#: src/worldmap/sprite_change.cpp:94 +msgid "Change on touch" +msgstr "Ændr ved berøring" + +#: src/worldmap/special_tile.hpp:36 +msgid "Special Tile" +msgstr "Specialfelt" + +#: src/worldmap/level_tile.hpp:36 src/worldmap/level_tile.cpp:161 +msgid "Level" +msgstr "Bane" + +#: src/worldmap/teleporter.cpp:50 +msgid "Automatic" +msgstr "Automatisk" + +#: src/worldmap/teleporter.cpp:51 +msgid "Target worldmap" +msgstr "Målret verdenskort" + +#: src/worldmap/sprite_change.hpp:35 +msgid "Sprite Change" +msgstr "Ændring af computergrafik" + +#: src/worldmap/special_tile.cpp:75 +msgid "Show message" +msgstr "Vis besked" + +#: src/worldmap/level_tile.cpp:84 msgid "" msgstr "" -#: src/editor/node_marker.cpp:79 +#: src/worldmap/level_tile.cpp:162 +msgid "Outro script" +msgstr "Outro-skript" + +#: src/worldmap/level_tile.cpp:163 +msgid "Auto play" +msgstr "Automatisk spil" + +#: src/worldmap/level_tile.cpp:164 +msgid "Title colour" +msgstr "Titelfarve" + +#: src/worldmap/teleporter.hpp:34 +msgid "Teleporter" +msgstr "Teleport" + +#: src/editor/tip.cpp:80 +msgid "" +"This object's current functionality is deprecated.\n" +"Updating to get its latest functionality is recommended." +msgstr "Objektets nuværende funktion er forældet.\nOpdatering for at få nyeste funktionalitet anbefales." + +#: src/editor/node_marker.cpp:122 msgid "Path Node" msgstr "Stiknude" -#: src/editor/object_settings.cpp:112 -msgid "up" -msgstr "op" +#: src/editor/node_marker.cpp:123 +msgid "Press CTRL to move Bezier handles" +msgstr "Tryk på Ctrl for at flytte Bezier håndteringer" -#: src/editor/object_settings.cpp:112 -msgid "down" -msgstr "ned" +#: src/editor/node_marker.cpp:127 +msgid "Easing" +msgstr "Lempelser" -#: src/editor/object_settings.cpp:124 +#: src/editor/object_settings.cpp:129 msgid "West" msgstr "Vest" -#: src/editor/object_settings.cpp:124 +#: src/editor/object_settings.cpp:129 msgid "East" msgstr "Øst" -#: src/editor/object_settings.cpp:124 +#: src/editor/object_settings.cpp:129 msgid "North" msgstr "Nord" -#: src/editor/object_settings.cpp:124 +#: src/editor/object_settings.cpp:129 msgid "South" msgstr "Syd" -#: src/editor/object_settings.cpp:137 +#: src/editor/object_settings.cpp:142 msgid "One shot" msgstr "Et skud" -#: src/editor/object_settings.cpp:137 +#: src/editor/object_settings.cpp:142 msgid "Ping-pong" msgstr "Ping pong" -#: src/editor/object_settings.cpp:137 +#: src/editor/object_settings.cpp:142 msgid "Circular" msgstr "Cirkulær" -#: src/editor/object_settings.cpp:137 -msgid "Unordered" -msgstr "Ikke ordnet" +#: src/editor/layers_widget.cpp:331 +#, c++-format +msgid "Sector: {}" +msgstr "Sektor: {}" -#: src/editor/object_option.cpp:83 +#: src/editor/object_option.cpp:92 msgid "true" msgstr "sand" -#: src/editor/object_option.cpp:83 +#: src/editor/object_option.cpp:92 msgid "false" msgstr "falsk" -#: src/editor/object_option.cpp:246 src/editor/object_option.cpp:295 +#: src/editor/object_option.cpp:308 src/editor/object_option.cpp:356 msgid "invalid" msgstr "Ugyldig" -#: src/editor/object_option.cpp:553 +#: src/editor/object_option.cpp:665 +msgid "Scale X" +msgstr "Skala X" + +#: src/editor/object_option.cpp:666 +msgid "Scale Y" +msgstr "Skala Y" + +#: src/editor/object_option.cpp:667 +msgid "Offset X" +msgstr "Forskydning X" + +#: src/editor/object_option.cpp:668 +msgid "Offset Y" +msgstr "Forskydning Y" + +#: src/editor/object_option.cpp:672 src/editor/object_menu.cpp:67 msgid "Remove" msgstr "Fjern" -#: src/editor/worldmap_objects.hpp:56 src/editor/worldmap_objects.cpp:129 -msgid "Level" -msgstr "Bane" +#: src/editor/object_option.cpp:689 +msgid "Test from here" +msgstr "Test herfra" -#: src/editor/worldmap_objects.hpp:79 -msgid "Teleporter" -msgstr "Teleport" +#: src/editor/object_option.cpp:706 +msgid "Open Particle Editor" +msgstr "Åbn partikelredigering" -#: src/editor/worldmap_objects.hpp:119 -msgid "Sprite Change" -msgstr "Ændring af computergrafik" +#: src/editor/particle_editor.cpp:114 +msgid "Change texture... ->" +msgstr "Skift struktur... ->" + +#: src/editor/particle_editor.cpp:126 +msgid "Max amount" +msgstr "Maksimal mængde" + +#: src/editor/particle_editor.cpp:142 +msgid "Spawn anywhere" +msgstr "Start hvorsomhelst" + +#: src/editor/particle_editor.cpp:143 +msgid "Life duration" +msgstr "Levetid" + +#: src/editor/particle_editor.cpp:148 +msgid "Birth duration" +msgstr "Fødselsvarighed" + +#: src/editor/particle_editor.cpp:153 +msgid "Death duration" +msgstr "Dødsvarighed" + +#: src/editor/particle_editor.cpp:160 +msgid "Grow" +msgstr "Voks" + +#: src/editor/particle_editor.cpp:175 +msgid "Horizontal speed" +msgstr "Horisontal hastighed" + +#: src/editor/particle_editor.cpp:180 +msgid "Vertical speed" +msgstr "Vertikal hastighed" + +#: src/editor/particle_editor.cpp:185 +msgid "Horizontal acceleration" +msgstr "Horisontal acceleration" + +#: src/editor/particle_editor.cpp:186 +msgid "Vertical acceleration" +msgstr "Vertikal acceleration" + +#: src/editor/particle_editor.cpp:187 +msgid "Horizontal friction" +msgstr "Horisontal friktion" + +#: src/editor/particle_editor.cpp:188 +msgid "Vertical friction" +msgstr "Vertikal friktion" + +#: src/editor/particle_editor.cpp:190 +msgid "Initial rotation" +msgstr "Initiel rotation" + +#: src/editor/particle_editor.cpp:201 +msgid "Rotation friction/decceleration" +msgstr "Rotation friktion/deceleration" + +#: src/editor/particle_editor.cpp:211 +msgid "Destroy" +msgstr "Destruer" + +#: src/editor/particle_editor.cpp:215 +msgid "Stick to surface" +msgstr "Klæb til overfladen" + +#: src/editor/particle_editor.cpp:216 +msgid "Stick and stay" +msgstr "Klæb og forbliv" + +#: src/editor/particle_editor.cpp:217 +msgid "No collision" +msgstr "Ingen kollision" + +#: src/editor/particle_editor.cpp:222 +msgid "Always destroy" +msgstr "Destruer altid" -#: src/editor/worldmap_objects.hpp:140 -msgid "Special tile" -msgstr "Specielt felt" +#: src/editor/particle_editor.cpp:226 +msgid "Offscreen mode" +msgstr "Tilstand udenfor skærmen" -#: src/editor/editor.cpp:477 +#: src/editor/particle_editor.cpp:229 +msgid "Clear" +msgstr "Slet" + +#: src/editor/particle_editor.cpp:245 +msgid "<- General settings" +msgstr "Generelle indstillinger" + +#: src/editor/particle_editor.cpp:255 +msgid "Likeliness" +msgstr "Sandsynlighed" + +#: src/editor/particle_editor.cpp:266 +msgid "Color (RGBA)" +msgstr "Farve (RGBA)" + +#: src/editor/particle_editor.cpp:311 +msgid "Scale (x, y)" +msgstr "Skala (x, y)" + +#: src/editor/particle_editor.cpp:332 +msgid "Hitbox scale (x, y)" +msgstr "Hitboksskala (x, y)" + +#: src/editor/particle_editor.cpp:353 +msgid "Hitbox offset relative to scale" +msgstr "Hitboxforskydning relativt til skala" + +#: src/editor/particle_editor.cpp:372 +msgid "Change texture..." +msgstr "Skift struktur..." + +#: src/editor/particle_editor.cpp:766 +msgid "" +"This particle configuration contains unsaved changes,\n" +"do you want to save?" +msgstr "Partikelkonfigurationen har ændringer, der ikke er gemt.\nØnsker du at gemme?" + +#: src/editor/particle_editor.cpp:774 +msgid "Save as" +msgstr "Gem som" + +#: src/editor/editor.cpp:577 +msgid "" +"This level contains deprecated tiles.\n" +"It is strongly recommended to replace all deprecated tiles\n" +"to avoid loss of compatibility in future versions." +msgstr "Banen har forældede felter.\nDet anbefales stærkt at erstatte alle forældede felter\nfor at undgå tab af kompatibilitet i fremtidige versioner." + +#: src/editor/editor.cpp:579 +msgid "Tip: Turn on \"Show Deprecated Tiles\" from the level editor menu." +msgstr "Tip: Slå \"Vis forældede felter\" til i baneredigeringsmenuen." + +#: src/editor/editor.cpp:626 +msgid "" +"Don't forget that your levels and assets\n" +"aren't saved between sessions!\n" +"If you want to keep your levels, download them\n" +"from the \"Manage Assets\" menu." +msgstr "Glem ikke at dine baner og aktiver\nikke gemmes mellem sessioner!\nHvis du ønsker at bevare dine baner så gem dem\ni \"Administrer aktiver\"-menuen." + +#: src/editor/editor.cpp:661 msgid "This level contains unsaved changes, do you want to save?" msgstr "Denne bane indeholder ændringer, der ikke er gemt. Ønsker du at gemme?" -#: src/editor/editor.cpp:517 +#: src/editor/editor.cpp:662 +msgid "This level may contain unsaved changes, do you want to save?" +msgstr "Banen er måske ændret. Ønsker du at gemme den?" + +#: src/editor/editor.cpp:797 msgid "" "Some obsolete add-ons are still active\n" "and might cause collisions with default Super Tux structure.\n" "You can still enable these add-ons in the menu.\n" "Disabling these add-ons will not delete your game progress." -msgstr "Nogle forældede udvidelser er stadig aktive og \nkan medføre kollision med standardstrukturen for Super Tux.\nDu kan stadig aktivere disse udvidelser i menuen.\nDeaktiver af disse udvidelser vil ikke slette status for dit spil." +msgstr "Nogle forældede tilføjelser er stadig aktive, og \ndet kolliderer måske med standardstrukturen for Super Tux.\nDu kan stadig aktivere disse tilføjelser i menuen.\nDeaktivering af tilføjelserne vil ikke slette spilhistorik eller spilstatus." -#: src/editor/editor.cpp:520 +#: src/editor/editor.cpp:800 msgid "Disable add-ons" -msgstr "Deaktivere udvidelser" +msgstr "Deaktivér tilføjelser" -#: src/editor/editor.cpp:525 +#: src/editor/editor.cpp:805 msgid "Ignore (not advised)" msgstr "Ignorer (anbefales ikke)" -#: src/editor/editor.cpp:529 +#: src/editor/editor.cpp:809 msgid "Leave editor" -msgstr "Forlad redigeringsprogrammet" +msgstr "Forlad Redigering" -#: src/editor/editor.cpp:740 +#: src/editor/editor.cpp:1023 msgid "" "Couldn't find a \"main\" sector.\n" "Please change the name of the sector where\n" "you'd like the player to start to \"main\"" msgstr "Kunne ikke finde en »hovedsektor«.\nÆndr venligst navnet på sektoren, hvor\ndu ønsker at spillere skal starte, til »main«" -#: src/editor/editor.cpp:744 +#: src/editor/editor.cpp:1027 msgid "" "Couldn't find a \"main\" spawnpoint.\n" " Please change the name of the spawnpoint where\n" "you'd like the player to start to \"main\"" msgstr "Kunne ikke finde et »hovedstartpunkt«.\nÆndr venligst navnet på startpunktet, hvor\ndu ønsker at spillere skal starte, til »main«" -#: src/editor/worldmap_objects.cpp:130 -msgid "Outro script" -msgstr "Outro-skript" - -#: src/editor/worldmap_objects.cpp:131 -msgid "Auto play" -msgstr "Automatisk spil" - -#: src/editor/worldmap_objects.cpp:133 -msgid "Title colour" -msgstr "Titelfarve" - -#: src/editor/worldmap_objects.cpp:175 -msgid "Automatic" -msgstr "Automatisk" - -#: src/editor/worldmap_objects.cpp:177 -msgid "Target worldmap" -msgstr "Målret verdenskort" - -#: src/editor/worldmap_objects.cpp:240 -msgid "Stay action" -msgstr "Holdhandling" - -#: src/editor/worldmap_objects.cpp:241 -msgid "Initial stay action" -msgstr "Holdhandling for opstart" - -#: src/editor/worldmap_objects.cpp:242 -msgid "Stay group" -msgstr "Holdgruppe" +#: src/editor/object_menu.cpp:60 +msgid "Patch Notes" +msgstr "Opdateringsnoter" -#: src/editor/worldmap_objects.cpp:243 -msgid "Change on touch" -msgstr "Ændr ved berøring" - -#: src/editor/worldmap_objects.cpp:273 -msgid "Show message" -msgstr "Vis besked" - -#: src/editor/worldmap_objects.cpp:275 -msgid "Invisible" -msgstr "Usynlig" +#: src/editor/object_menu.cpp:84 +msgid "" +"This will update the object to its latest functionality.\n" +"Check the \"Patch Notes\" for more information.\n" +"\n" +"Keep in mind this is very likely to break the proper behaviour of the object.\n" +"Make sure to re-check any behaviour, related to the object." +msgstr "Vil opdatere objektet til nyeste funktionalitet.\nTjek \"Patch-noter\" for mere information.\n\nHusk at det meget sandsynligt ødelægger sædvanlig objektopførsel.\nSørg for at tjekke alle objektrelaterede opførsler igen." + +#: src/editor/object_menu.cpp:98 +#, c++-format +msgid "Patch notes for v{}:" +msgstr "Opdateringsnoter for v{}:" + +#: src/editor/overlay_widget.cpp:1062 +msgid "Cannot select deprecated tiles" +msgstr "Kan ikke vælge forældede felter" + +#: src/editor/overlay_widget.cpp:1567 +msgid "Autotile mode is on" +msgstr "Automatisk felttilstand er slået til" + +#: src/editor/overlay_widget.cpp:1571 +msgid "Hold Ctrl to enable autotile" +msgstr "Hold Ctrl nede for at slå automatisk felt til" + +#: src/editor/overlay_widget.cpp:1578 +msgid "Autotile erasing mode is on" +msgstr "Automatisk feltsletningstilstand er slået til" + +#: src/editor/overlay_widget.cpp:1582 +msgid "Selected tile isn't autotileable" +msgstr "Valgt felt kan ikke være automatisk" + +#: src/editor/overlay_widget.cpp:1587 +msgid "Hold Ctrl to enable autotile erasing" +msgstr "Hold Ctrl nede for at slå automatisk feltsletning til" #: data//credits.stxt:25 msgid "Current SuperTux Team" msgstr "Nuværende SuperTux-hold" #: data//credits.stxt:30 -msgid "Programming, project lead ad interim" -msgstr "Programmering, midlertidig projektledelse" +msgid "Maintainer, Programming" +msgstr "Vedligeholder, Programmering" #: data//credits.stxt:35 msgid "Graphics, Level Design, Story" msgstr "Grafik, banedesign, historie" #: data//credits.stxt:40 -msgid "Graphics, Story, Optimisation" -msgstr "Grafik, historie, optimering" +msgid "Level Design, Story, Optimisation, Coordination" +msgstr "Banedesign, historie, optimering, koordinering" -#: data//credits.stxt:45 data//credits.stxt:100 data//credits.stxt:186 -#: data//credits.stxt:498 +#: data//credits.stxt:45 data//credits.stxt:120 data//credits.stxt:206 +#: data//credits.stxt:538 msgid "Graphics" msgstr "Grafik" -#: data//credits.stxt:50 data//credits.stxt:60 data//credits.stxt:82 -#: data//credits.stxt:88 +#: data//credits.stxt:50 data//credits.stxt:102 data//credits.stxt:108 msgid "Graphics, Programming, Level Design" msgstr "Grafik, programmering, banedesign" #: data//credits.stxt:55 +msgid "Features and Programming" +msgstr "Funktioner og programmering" + +#: data//credits.stxt:60 +msgid "Minor features and programming" +msgstr "Mindre funktioner og programmering" + +#: data//credits.stxt:65 +msgid "Programming, Level Updates" +msgstr "Programmering, baneopdateringer" + +#: data//credits.stxt:70 msgid "Graphics, Programming" msgstr "Grafik, programmering" -#: data//credits.stxt:65 data//credits.stxt:130 data//credits.stxt:135 -#: data//credits.stxt:140 data//credits.stxt:145 data//credits.stxt:160 -#: data//credits.stxt:165 data//credits.stxt:494 data//credits.stxt:506 +#: data//credits.stxt:75 data//credits.stxt:85 data//credits.stxt:150 +#: data//credits.stxt:155 data//credits.stxt:160 data//credits.stxt:165 +#: data//credits.stxt:180 data//credits.stxt:185 data//credits.stxt:534 +#: data//credits.stxt:546 msgid "Programming" msgstr "Programmering" -#: data//credits.stxt:71 +#: data//credits.stxt:80 data//credits.stxt:266 +msgid "Level Design" +msgstr "Banedesign" + +#: data//credits.stxt:91 msgid "Original Developers" msgstr "Oprindelige udviklere" -#: data//credits.stxt:76 +#: data//credits.stxt:96 msgid "Original Developer" msgstr "Oprindelig udvikler" -#: data//credits.stxt:94 +#: data//credits.stxt:114 msgid "Music, Level Design" msgstr "Musik, banedesign" -#: data//credits.stxt:106 +#: data//credits.stxt:126 msgid "Programming, Graphics, Level Design" msgstr "Programmering, grafik, banedesign" -#: data//credits.stxt:112 +#: data//credits.stxt:132 msgid "Programming, Level Design" msgstr "Programmering, banedesign" -#: data//credits.stxt:118 +#: data//credits.stxt:138 msgid "Graphics, Story" msgstr "Grafik, historie" -#: data//credits.stxt:124 +#: data//credits.stxt:144 msgid "Programming, Documentation" msgstr "Programmering, dokumentation" -#: data//credits.stxt:150 +#: data//credits.stxt:170 msgid "Coordination" msgstr "Koordinering" -#: data//credits.stxt:155 +#: data//credits.stxt:175 msgid "Programming, \"Flexlay\" Level editor" -msgstr "Programmering, »Flexlay«-baneredigeringsprogram" +msgstr "Programmering, \"Flexlay\" Baneredigering" -#: data//credits.stxt:170 +#: data//credits.stxt:190 msgid "Windows build fixes" msgstr "Byggerettelser for Windows" -#: data//credits.stxt:175 +#: data//credits.stxt:195 msgid "Packaging, Nightly builds" msgstr "Pakning, natlige bygninger" -#: data//credits.stxt:180 +#: data//credits.stxt:200 msgid "Translation Guru (and many details anyone else could have done)" msgstr "Oversættelsesguru (og mange detaljer andre kunne have udført)" -#: data//credits.stxt:240 -msgid "Level Design" -msgstr "Banedesign" - -#: data//credits.stxt:414 +#: data//credits.stxt:450 msgid "Additional contributors" msgstr "Yderligere bidragydere" -#: data//credits.stxt:419 +#: data//credits.stxt:455 msgid "Bug fixes" msgstr "Fejlrettelser" -#: data//credits.stxt:423 +#: data//credits.stxt:459 msgid "Scripting functions, Level fixes" msgstr "Skriptfunktioner, banerettelser" -#: data//credits.stxt:427 +#: data//credits.stxt:463 msgid "Code quality fixes" msgstr "Rettelser til kodekvaliteten" -#: data//credits.stxt:431 data//credits.stxt:435 data//credits.stxt:439 -#: data//credits.stxt:466 +#: data//credits.stxt:467 data//credits.stxt:471 data//credits.stxt:475 +#: data//credits.stxt:502 msgid "Various contributions" msgstr "Diverse bidrag" -#: data//credits.stxt:443 +#: data//credits.stxt:479 msgid "Build issue fix" msgstr "Rettelse til byggeproblemer" -#: data//credits.stxt:447 data//credits.stxt:451 +#: data//credits.stxt:483 data//credits.stxt:487 msgid "Code contributions" msgstr "Kodebidrag" -#: data//credits.stxt:454 +#: data//credits.stxt:490 msgid "Code contribution, AppData file" msgstr "Kodebidrag, AppData-fil" -#: data//credits.stxt:458 +#: data//credits.stxt:494 msgid "Bug fix" msgstr "Fejlrettelse" -#: data//credits.stxt:462 +#: data//credits.stxt:498 msgid "Menu reorganization" msgstr "Ny organisering af menu" -#: data//credits.stxt:470 +#: data//credits.stxt:506 msgid "Fixing tile bugs" msgstr "Rettelse af feltfejl" -#: data//credits.stxt:474 +#: data//credits.stxt:510 msgid "Build error fix" msgstr "Rettelse af byggefejl" -#: data//credits.stxt:478 +#: data//credits.stxt:514 msgid "Scripting function fix" msgstr "Rettelse af skriptfunktion" -#: data//credits.stxt:482 +#: data//credits.stxt:518 +msgid "New features and notable updates" +msgstr "Nye funktioner og bemærkelsesværdige opdateringer" + +#: data//credits.stxt:522 msgid "Support for \"glbinding\" as optional OpenGL binding" msgstr "Understøttelse for »glbinding« som valgfri OpenGL-binding" -#: data//credits.stxt:486 +#: data//credits.stxt:526 msgid "New menu code" msgstr "Ny menukode" -#: data//credits.stxt:490 +#: data//credits.stxt:530 msgid "Big Tux Walking Sprites improvements" msgstr "Forbedringer af computergrafik for den store gående Tux" -#: data//credits.stxt:502 data//credits.stxt:510 +#: data//credits.stxt:542 data//credits.stxt:550 msgid "Contrib Programming" msgstr "Contrib-programmering" -#: data//credits.stxt:514 +#: data//credits.stxt:554 msgid "Programming, Previous Maintainer" msgstr "Programmering, tidligere vedligeholder" -#: data//credits.stxt:518 +#: data//credits.stxt:558 msgid "Various Contributions" msgstr "Diverse bidrag" -#: data//credits.stxt:522 data//credits.stxt:526 data//credits.stxt:530 -#: data//credits.stxt:534 data//credits.stxt:538 data//credits.stxt:542 -#: data//credits.stxt:546 data//credits.stxt:550 data//credits.stxt:554 +#: data//credits.stxt:562 data//credits.stxt:566 data//credits.stxt:570 +#: data//credits.stxt:574 data//credits.stxt:578 data//credits.stxt:582 +#: data//credits.stxt:586 data//credits.stxt:590 data//credits.stxt:594 +#: data//credits.stxt:598 data//credits.stxt:602 data//credits.stxt:606 +#: data//credits.stxt:610 data//credits.stxt:614 data//credits.stxt:618 +#: data//credits.stxt:622 data//credits.stxt:626 data//credits.stxt:630 +#: data//credits.stxt:634 data//credits.stxt:638 data//credits.stxt:642 +#: data//credits.stxt:646 data//credits.stxt:650 data//credits.stxt:654 +#: data//credits.stxt:658 data//credits.stxt:662 msgid "Contributions" msgstr "Bidrag" -#: data//credits.stxt:560 +#: data//credits.stxt:668 msgid "Localization" msgstr "Oversættelse" -#: data//credits.stxt:1107 +#: data//credits.stxt:1231 msgid " Special Thanks to" msgstr "Specielt tak til" -#: data//credits.stxt:1112 +#: data//credits.stxt:1236 msgid "Creator of Tux, the Linux penguin" msgstr "Opretter af Tux, Linuxpingvinen" -#: data//credits.stxt:1116 +#: data//credits.stxt:1240 msgid "SDL, OpenAL and OpenGL" msgstr "SDL, OpenAL og OpenGL" -#: data//credits.stxt:1117 +#: data//credits.stxt:1241 msgid "" "For making such a great gaming experience\n" " possible on Linux" msgstr "For at gøre en så vidunderlig spiloplevelse\nmulig på Linux" -#: data//credits.stxt:1122 +#: data//credits.stxt:1246 msgid "and you, the player" msgstr "og dig, spilleren" -#: data//credits.stxt:1123 +#: data//credits.stxt:1247 msgid "for giving this game a chance and playing it" msgstr "for at give dette spil en chance" -#: data//credits.stxt:1134 +#: data//credits.stxt:1258 msgid "Visit our webpage at" msgstr "Besøg vores hjemmeside på" -#: data//credits.stxt:1143 +#: data//credits.stxt:1267 msgid "Or visit us directly at IRC:" msgstr "Eller besøg os direkte på IRC:" -#: data//credits.stxt:1147 -msgid "#supertux at webchat.freenode.net" -msgstr "#supertux på webchat.freenode.net" +#: data//credits.stxt:1271 +msgid "#supertux at web.libera.chat" +msgstr "#supertux på web.libera.chat" -#: data//credits.stxt:1152 +#: data//credits.stxt:1276 msgid "Or at our Forum:" msgstr "Eller i vores fora:" -#: data//credits.stxt:1161 +#: data//credits.stxt:1285 msgid "Comments, ideas and suggestions" msgstr "Kommentarer, ideer og forslag" -#: data//credits.stxt:1165 +#: data//credits.stxt:1289 msgid "go to our mailing list" msgstr "gå til postlisten" #. l10n: typo contact -#: data//credits.stxt:1175 +#: data//credits.stxt:1299 msgid "Typographical errors can be" msgstr "Typografiske fejl kan være" #. l10n: typo contact -#: data//credits.stxt:1180 +#: data//credits.stxt:1304 msgid "reported to" msgstr "rapporteret til" #. l10n: typo contact, see -#: data//credits.stxt:1185 +#: data//credits.stxt:1309 msgid "supertux-devel@lists.lethargik.org" msgstr "supertux-devel@lists.lethargik.org" -#: data//credits.stxt:1192 +#: data//credits.stxt:1316 msgid "Want to help…" msgstr "Ønsker du at hjælpe ..." -#: data//credits.stxt:1197 +#: data//credits.stxt:1321 msgid "…with localization?" msgstr "... med oversættelse?" -#: data//credits.stxt:1207 +#: data//credits.stxt:1331 msgid "…with something else?" msgstr "... med noget andet?" -#: data//credits.stxt:1218 +#: data//credits.stxt:1342 msgid "Thank you for" msgstr "Tak fordi du" -#: data//credits.stxt:1222 +#: data//credits.stxt:1346 msgid "playing" msgstr "spillede" -#: data//credits.stxt:1232 +#: data//credits.stxt:1356 msgid "Penny awaits you in warmer temperatures!" msgstr "Penny venter på dig under varmere temperaturer!" -#: data//images/engine/editor/objects.stoi:156 +#: data//images/engine/editor/objects.stoi:4 +msgid "Enemies" +msgstr "Fjender" + +#: data//images/engine/editor/objects.stoi:162 msgid "Bosses" msgstr "Bosser" -#: data//images/engine/editor/objects.stoi:167 +#: data//images/engine/editor/objects.stoi:173 msgid "Projectiles" msgstr "Projektiler" -#: data//images/engine/editor/objects.stoi:181 +#: data//images/engine/editor/objects.stoi:184 msgid "Environment" msgstr "Miljø" -#: data//images/ice_world.strf:6 data//images/tiles.strf:327 -#: data//images/worldmap.strf:67 -msgid "Forest" -msgstr "Skov" - -#: data//images/ice_world.strf:106 +#: data//images/ice_world.strf:80 msgid "Ice Cave & Crystal" msgstr "Ishule og krystal" -#: data//images/ice_world.strf:153 +#: data//images/ice_world.strf:127 msgid "Embellishments" msgstr "Dekorationer" -#: data//images/ice_world.strf:237 -msgid "Ice" -msgstr "Is" +#: data//images/ice_world.strf:320 +msgid "Underground Forest" +msgstr "Undergrundsskov" -#: data//images/ice_world.strf:282 data//images/tiles.strf:693 -msgid "Castle" -msgstr "Borg" +#: data//images/ice_world.strf:375 +msgid "Trees & Bushes" +msgstr "Træer & buske" + +#: data//images/ice_world.strf:406 +msgid "Seasonal" +msgstr "Sæsonbestemt" -#: data//images/ice_world.strf:328 +#: data//images/ice_world.strf:496 +msgid "Structure" +msgstr "Struktur" + +#: data//images/ice_world.strf:557 msgid "Pathing" msgstr "Stier" -#: data//images/ice_world.strf:424 +#: data//images/ice_world.strf:718 msgid "Water" msgstr "Vand" -#: data//images/tiles.strf:19 data//images/worldmap.strf:41 -msgid "Snow" -msgstr "Sne" - -#: data//images/tiles.strf:124 +#: data//images/tiles.strf:252 msgid "Snow Background" msgstr "Snebaggrund" -#: data//images/tiles.strf:162 -msgid "Snow Mountain" -msgstr "Snebjerg" - -#: data//images/tiles.strf:236 +#: data//images/tiles.strf:300 msgid "Crystal" msgstr "Krystal" -#: data//images/tiles.strf:457 +#: data//images/tiles.strf:539 msgid "Forest Background" msgstr "Skovbaggrund" -#: data//images/tiles.strf:572 +#: data//images/tiles.strf:690 +msgid "Corrupted Forest" +msgstr "Ødelagt skov" + +#: data//images/tiles.strf:868 +msgid "Corrupted Background" +msgstr "Ødelagt baggrund" + +#: data//images/tiles.strf:991 msgid "Block + Bonus" msgstr "Blok + bonus" -#: data//images/tiles.strf:618 +#: data//images/tiles.strf:1069 msgid "Pole + Signs" msgstr "Pæle + skilte" -#: data//images/tiles.strf:661 +#: data//images/tiles.strf:1113 msgid "Liquid" msgstr "Væske" -#: data//images/tiles.strf:833 data//images/worldmap.strf:199 +#: data//images/tiles.strf:1131 +msgid "Castle" +msgstr "Borg" + +#: data//images/tiles.strf:1231 data//images/worldmap.strf:199 msgid "Halloween" msgstr "Allehelgensaften" -#: data//images/tiles.strf:861 +#: data//images/tiles.strf:1272 msgid "Industrial" msgstr "Industri" -#: data//images/tiles.strf:876 +#: data//images/tiles.strf:1287 msgid "Unisolid + Lightmap" msgstr "Unisolid + lyskort" -#: data//images/tiles.strf:893 +#: data//images/tiles.strf:1314 msgid "Miscellaneous" msgstr "Diverse" -#: data//images/tiles.strf:927 -msgid "Old/Unused" -msgstr "Gammel/ubrugt" +#: data//images/tiles.strf:1342 +msgid "Retro Tiles" +msgstr "Retrofelter" #: data//images/worldmap.strf:24 msgid "Water paths" @@ -2856,3 +5146,19 @@ msgstr "Borgstier" #: data//images/worldmap.strf:135 msgid "Darker Forest" msgstr "Mørkere skov" + +#: data//images/converters/data.stcd:3 +msgid "Nightly Tiles" +msgstr "Natfelter" + +#: data//images/converters/data.stcd:5 +msgid "For levels, created in previous Nightly builds." +msgstr "Til baner skabt i tidligere Nightly builds." + +#: data//images/converters/data.stcd:8 +msgid "Pre-0.6.3 Crystal Tiles" +msgstr "Før-0.6.3 krystalfelter" + +#: data//images/converters/data.stcd:10 +msgid "For levels, created in pre-0.6.3 versions, which use crystal tiles." +msgstr "Til baner skabt i pre-0.6.3-versioner, der bruger krystalfelter." diff --git a/data/locale/de.po b/data/locale/de.po index 9f89649d0a7..6cfa8b3f9e1 100644 --- a/data/locale/de.po +++ b/data/locale/de.po @@ -4,156 +4,200 @@ # # Translators: # afba88cf42cbdff57149d4a6d53a94f9, 2018 -# Wuzzy , 2015-2016 +# Wuzzy , 2015-2016 # Anonymouse , 2013-2014 # TheTrueBrot , 2015 # Christoph Sommer , 2006,2013 # cvcxc , 2013 -# divVerent , 2011,2013 +# divVerent , 2011,2013 # Ettore Atalan , 2014-2016 +# Iwan Gabovitch, 2024 # Larson März , 2016 # Marcel Haring , 2013-2014 # Matthias Braun , 2004 +# Moritz Hofmann , 2024 # mteufel, 2018 # mteufel, 2018 # Sless , 2014 # TheTrueBrot , 2015 # Tobias Markus , 2013-2017 -# Tobias Markus , 2018-2021 -# Wuzzy , 2016 +# Tobias Markus , 2018-2021,2024 +# Wuzzy , 2016 # Yepoleb , 2013 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-19 14:34+0000\n" -"Last-Translator: Tobias Markus \n" -"Language-Team: German (http://www.transifex.com/arctic-games/supertux/language/de/)\n" +"POT-Creation-Date: 2024-05-30 16:19+0200\n" +"PO-Revision-Date: 2013-08-10 22:56+0000\n" +"Last-Translator: Moritz Hofmann , 2024\n" +"Language-Team: German (http://app.transifex.com/arctic-games/supertux/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/trigger/secretarea_trigger.cpp:53 src/trigger/secretarea_trigger.cpp:61 +#: src/trigger/secretarea_trigger.cpp:47 msgid "You found a secret area!" msgstr "Du hast ein Versteck gefunden!" -#: src/trigger/secretarea_trigger.cpp:77 src/supertux/game_object.cpp:90 -#: src/supertux/menu/editor_sector_menu.cpp:34 -#: src/supertux/menu/editor_levelset_menu.cpp:58 +#: src/trigger/secretarea_trigger.cpp:55 src/supertux/game_object.cpp:115 +#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_levelset_menu.cpp:52 #: src/supertux/menu/editor_new_levelset_menu.cpp:34 +#: src/supertux/menu/profile_name_menu.cpp:39 #: src/supertux/menu/editor_level_menu.cpp:33 msgid "Name" msgstr "Name" -#: src/trigger/secretarea_trigger.cpp:78 +#: src/trigger/secretarea_trigger.cpp:56 msgid "Fade tilemap" msgstr "Verblassende Tilemap" -#: src/trigger/secretarea_trigger.cpp:79 src/trigger/climbable.cpp:81 -#: src/object/infoblock.cpp:57 src/editor/worldmap_objects.cpp:172 -#: src/editor/worldmap_objects.cpp:270 +#: src/trigger/secretarea_trigger.cpp:57 src/trigger/climbable.cpp:59 +#: src/object/infoblock.cpp:76 src/worldmap/teleporter.cpp:49 +#: src/worldmap/special_tile.cpp:74 msgid "Message" msgstr "Nachricht" -#: src/trigger/secretarea_trigger.cpp:80 src/trigger/scripttrigger.cpp:75 -#: src/trigger/door.cpp:73 src/object/ispy.cpp:67 -#: src/object/bonus_block.cpp:207 src/object/bonus_block.cpp:211 -#: src/object/pushbutton.cpp:51 src/object/powerup.cpp:190 -#: src/editor/worldmap_objects.cpp:272 +#: src/trigger/secretarea_trigger.cpp:58 src/trigger/scripttrigger.cpp:51 +#: src/trigger/door.cpp:79 src/object/ispy.cpp:53 +#: src/object/bonus_block.cpp:264 src/object/bonus_block.cpp:268 +#: src/object/pushbutton.cpp:62 src/object/powerup.cpp:301 +#: src/worldmap/special_tile.cpp:76 msgid "Script" msgstr "Skript" -#: src/trigger/scripttrigger.cpp:76 src/object/pushbutton.hpp:31 +#: src/trigger/scripttrigger.cpp:52 src/object/pushbutton.hpp:32 msgid "Button" msgstr "Knopf" -#: src/trigger/scripttrigger.cpp:77 +#: src/trigger/scripttrigger.cpp:53 msgid "Oneshot" msgstr "Einmalig" -#: src/trigger/sequence_trigger.hpp:33 +#: src/trigger/sequence_trigger.hpp:31 msgid "Sequence Trigger" msgstr "Sequenz-Trigger" -#: src/trigger/door.cpp:74 src/badguy/willowisp.cpp:320 -#: src/supertux/menu/editor_sector_menu.cpp:32 -#: src/editor/layers_widget.cpp:342 -#: data//images/engine/editor/objects.stoi:321 +#: src/trigger/text_area.cpp:141 +msgid "Once" +msgstr "Einmalig" + +#: src/trigger/text_area.cpp:142 +msgid "Text change time" +msgstr "Text-Änderungszeit" + +#: src/trigger/text_area.cpp:143 +msgid "Fade time" +msgstr "Überblendezeit" + +#: src/trigger/text_area.cpp:144 src/object/textscroller.cpp:353 +msgid "Anchor" +msgstr "Anker" + +#: src/trigger/text_area.cpp:148 +msgid "Anchor offset X" +msgstr "Ankerversatz X" + +#: src/trigger/text_area.cpp:149 +msgid "Anchor offset Y" +msgstr "Ankerversatz Y" + +#: src/trigger/text_area.cpp:150 +msgid "Texts" +msgstr "Texts" + +#: src/trigger/door.cpp:80 src/badguy/willowisp.cpp:311 +#: src/worldmap/teleporter.cpp:47 data//images/engine/editor/objects.stoi:342 msgid "Sector" msgstr "Sektor" -#: src/trigger/door.cpp:75 src/editor/worldmap_objects.hpp:101 +#: src/trigger/door.cpp:81 src/worldmap/spawn_point.hpp:58 msgid "Spawn point" msgstr "Startpunkt" -#: src/trigger/switch.cpp:61 src/object/block.cpp:224 src/object/torch.cpp:102 -#: src/object/moving_sprite.cpp:156 src/object/pneumatic_platform.cpp:146 -msgid "Sprite" -msgstr "Sprite" +#: src/trigger/door.cpp:82 +msgid "Locked?" +msgstr "Verschlossen?" + +#: src/trigger/door.cpp:83 +msgid "Lock Color" +msgstr "Farbe des Schlosses" -#: src/trigger/switch.cpp:62 +#: src/trigger/switch.cpp:62 src/object/ispy.cpp:54 src/object/bumper.cpp:53 +#: src/object/spotlight.cpp:106 src/object/pushbutton.cpp:61 +#: src/object/gradient.cpp:103 src/object/conveyor_belt.cpp:60 +#: src/badguy/badguy.cpp:1063 src/worldmap/spawn_point.cpp:79 +#: src/worldmap/special_tile.cpp:78 +msgid "Direction" +msgstr "Richtung" + +#: src/trigger/switch.cpp:65 msgid "Turn on script" msgstr "Einschaltskript" -#: src/trigger/switch.cpp:63 +#: src/trigger/switch.cpp:66 msgid "Turn off script" msgstr "Ausschaltskript" -#: src/trigger/scripttrigger.hpp:32 +#: src/trigger/scripttrigger.hpp:29 msgid "Script Trigger" msgstr "Skript-Trigger" -#: src/trigger/sequence_trigger.cpp:75 +#: src/trigger/sequence_trigger.cpp:48 msgid "Sequence" msgstr "Sequenz" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "end sequence" msgstr "Endsequenz" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "stop Tux" msgstr "Tux stoppen" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "fireworks" msgstr "Feuerwerk" -#: src/trigger/sequence_trigger.cpp:80 +#: src/trigger/sequence_trigger.cpp:53 msgid "New worldmap spawnpoint" msgstr "Neuer Startpunkt auf der Weltkarte" -#: src/trigger/sequence_trigger.cpp:81 +#: src/trigger/sequence_trigger.cpp:54 msgid "Worldmap fade tilemap" msgstr "Verblassende Tilemap auf der Weltkarte" -#: src/trigger/sequence_trigger.cpp:82 +#: src/trigger/sequence_trigger.cpp:55 #: src/object/custom_particle_system.cpp:430 #: src/object/custom_particle_system.cpp:465 msgid "Fade" msgstr "Verblassen" -#: src/trigger/sequence_trigger.cpp:83 src/editor/particle_editor.cpp:161 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:161 msgid "Fade in" msgstr "Einblenden" -#: src/trigger/sequence_trigger.cpp:83 src/editor/particle_editor.cpp:167 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:167 #: src/editor/particle_editor.cpp:212 msgid "Fade out" msgstr "Ausblenden" -#: src/trigger/climbable.hpp:37 +#: src/trigger/climbable.hpp:46 msgid "Climbable" msgstr "Kletterbar" -#: src/trigger/door.hpp:34 +#: src/trigger/text_area.hpp:47 +msgid "Text Area" +msgstr "Textbereich" + +#: src/trigger/door.hpp:31 msgid "Door" msgstr "Tür" -#: src/trigger/switch.hpp:33 +#: src/trigger/switch.hpp:30 msgid "Switch" msgstr "Schalter" @@ -161,118 +205,194 @@ msgstr "Schalter" msgid "Secret Area" msgstr "Versteck" -#: src/object/thunderstorm.hpp:40 +#: src/math/anchor_point.cpp:33 +msgid "Top Left" +msgstr "Oben links" + +#: src/math/anchor_point.cpp:34 +msgid "Top" +msgstr "Oben" + +#: src/math/anchor_point.cpp:35 +msgid "Top Right" +msgstr "Oben rechts" + +#: src/math/anchor_point.cpp:36 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:38 +#: src/supertux/menu/joystick_menu.cpp:73 +msgid "Left" +msgstr "Links" + +#: src/math/anchor_point.cpp:37 +msgid "Middle" +msgstr "Mittel" + +#: src/math/anchor_point.cpp:38 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:39 +#: src/supertux/menu/joystick_menu.cpp:74 +msgid "Right" +msgstr "Rechts" + +#: src/math/anchor_point.cpp:39 +msgid "Bottom Left" +msgstr "Unten links" + +#: src/math/anchor_point.cpp:40 +msgid "Bottom" +msgstr "Unten" + +#: src/math/anchor_point.cpp:41 +msgid "Bottom Right" +msgstr "Unten rechts" + +#: src/object/thunderstorm.hpp:44 msgid "Thunderstorm" msgstr "Gewitter" -#: src/object/cloud_particle_system.cpp:79 +#: src/object/cloud_particle_system.cpp:77 #: src/object/rain_particle_system.cpp:100 msgid "Intensity" msgstr "Intensität" -#: src/object/custom_particle_system.hpp:45 +#: src/object/custom_particle_system.hpp:46 msgid "Custom Particles" msgstr "Benutzerdefinierte Partikel" -#: src/object/ispy.cpp:66 -msgid "Facing Down" -msgstr "Nach unten zeigend" - -#: src/object/ispy.cpp:68 src/object/spotlight.cpp:103 -#: src/object/gradient.cpp:137 src/badguy/willowisp.cpp:319 -#: src/badguy/badguy.cpp:848 src/editor/worldmap_objects.cpp:207 -#: src/editor/worldmap_objects.cpp:274 -msgid "Direction" -msgstr "Richtung" - -#: src/object/particle_zone.hpp:39 +#: src/object/particle_zone.hpp:41 msgid "Particle zone" msgstr "Partikelzone" -#: src/object/path_gameobject.hpp:44 src/object/coin.cpp:301 -#: src/object/camera.cpp:224 src/object/platform.cpp:73 -#: src/object/path_gameobject.cpp:173 src/object/tilemap.cpp:246 -#: src/gui/menu_paths.cpp:52 src/badguy/willowisp.cpp:326 +#: src/object/path_gameobject.hpp:45 src/object/coin.cpp:324 +#: src/object/camera.cpp:168 src/object/platform.cpp:76 +#: src/object/path_gameobject.cpp:175 src/object/tilemap.cpp:284 +#: src/badguy/willowisp.cpp:317 msgid "Path" msgstr "Pfad" -#: src/object/decal.cpp:49 src/object/scripted_object.cpp:67 -#: src/object/particlesystem.cpp:65 src/object/background.cpp:183 -#: src/object/thunderstorm.cpp:68 src/object/tilemap.cpp:239 -#: src/object/gradient.cpp:135 -msgid "Z-pos" -msgstr "Z-Position" - -#: src/object/decal.cpp:50 src/object/scripted_object.cpp:70 -#: src/object/tilemap.cpp:228 +#: src/object/decal.cpp:48 src/object/scripted_object.cpp:70 +#: src/object/tilemap.cpp:266 msgid "Solid" msgstr "Fest" -#: src/object/decal.cpp:51 src/supertux/menu/keyboard_menu.cpp:37 -#: src/supertux/menu/joystick_menu.cpp:74 +#: src/object/decal.cpp:49 src/supertux/menu/keyboard_menu.cpp:41 +#: src/supertux/menu/joystick_menu.cpp:76 msgid "Action" msgstr "Aktion" -#: src/object/weak_block.hpp:35 +#: src/object/weak_block.hpp:36 msgid "Weak Tile" msgstr "Schwacher Block" -#: src/object/bumper.cpp:46 -msgid "Facing Left" -msgstr "Links ausrichten" - -#: src/object/gradient.hpp:42 +#: src/object/gradient.hpp:43 msgid "Gradient" msgstr "Verlauf" -#: src/object/tilemap.hpp:57 +#: src/object/tilemap.hpp:58 msgid "Tilemap" msgstr "Tilemap" -#: src/object/circleplatform.hpp:32 +#: src/object/sound_object.cpp:69 src/object/ambient_sound.cpp:85 +#: src/object/sound_object.hpp:42 src/supertux/menu/options_menu.cpp:128 +#: data//credits.stxt:367 +msgid "Sound" +msgstr "Ton" + +#: src/object/sound_object.cpp:70 src/object/ambient_sound.cpp:87 +msgid "Volume" +msgstr "Lautstärke" + +#: src/object/conveyor_belt.hpp:39 +msgid "Conveyor Belt" +msgstr "Laufband" + +#: src/object/unstable_tile.cpp:70 src/object/weak_block.cpp:97 +#: src/badguy/flame.cpp:86 +msgid "Ice" +msgstr "Eis" + +#: src/object/unstable_tile.cpp:71 src/object/brick.hpp:34 +msgid "Brick" +msgstr "Ziegel" + +#: src/object/unstable_tile.cpp:72 +msgid "Delayed" +msgstr "Verzögert" + +#: src/object/circleplatform.hpp:35 msgid "Circular Platform" msgstr "Kreisende Plattform" -#: src/object/brick.cpp:133 +#: src/object/brick.cpp:59 src/object/coin.cpp:69 +#: src/object/invisible_block.cpp:37 src/object/background.cpp:200 +#: src/object/tilemap.cpp:279 src/object/gradient.cpp:109 +#: src/badguy/viciousivy.cpp:44 src/badguy/snail.cpp:69 +#: src/badguy/smartball.cpp:34 src/badguy/bouncing_snowball.cpp:81 +#: src/badguy/kamikazesnowball.cpp:117 src/badguy/walkingleaf.cpp:35 +#: src/badguy/mrbomb.cpp:47 src/badguy/igel.cpp:188 src/badguy/snowball.cpp:40 +#: src/badguy/mrtree.cpp:50 src/badguy/mriceblock.cpp:62 +msgid "Normal" +msgstr "Normal" + +#: src/object/brick.cpp:60 src/object/bonus_block.cpp:175 +#: src/object/coin.cpp:70 src/object/invisible_block.cpp:38 +msgid "Retro" +msgstr "Retro" + +#: src/object/brick.cpp:166 msgid "Breakable" msgstr "Zerbrechlich" -#: src/object/trampoline.cpp:136 src/object/rusty_trampoline.cpp:66 +#: src/object/trampoline.cpp:66 src/object/rusty_trampoline.cpp:66 msgid "Portable" msgstr "Tragbar" -#: src/object/spotlight.cpp:100 src/object/rain_particle_system.cpp:101 +#: src/object/trampoline.cpp:67 +msgid "Stationary" +msgstr "Stationär" + +#: src/object/key.hpp:38 +msgid "Key" +msgstr "Schlüssel" + +#: src/object/spotlight.cpp:102 src/object/particlesystem.cpp:64 +#: src/object/particle_zone.cpp:50 src/badguy/darttrap.cpp:149 +#: src/supertux/menu/addon_preview_menu.cpp:189 +msgid "Enabled" +msgstr "Aktiviert" + +#: src/object/spotlight.cpp:103 src/object/rain_particle_system.cpp:101 msgid "Angle" msgstr "Winkel" -#: src/object/spotlight.cpp:101 src/object/magicblock.cpp:94 -#: src/object/candle.cpp:77 src/object/torch.cpp:104 -#: src/object/rublight.cpp:54 src/object/lantern.cpp:62 -#: src/object/ambient_light.cpp:131 src/badguy/willowisp.cpp:328 -#: src/badguy/walking_candle.cpp:82 +#: src/object/spotlight.cpp:104 src/object/magicblock.cpp:95 +#: src/object/candle.cpp:75 src/object/torch.cpp:96 src/object/rublight.cpp:55 +#: src/object/lantern.cpp:62 src/object/ambient_light.cpp:122 +#: src/object/key.cpp:192 src/badguy/willowisp.cpp:319 +#: src/badguy/walking_candle.cpp:91 msgid "Color" msgstr "Farbe" -#: src/object/spotlight.cpp:102 src/object/textscroller.cpp:350 -#: src/object/rain_particle_system.cpp:102 src/object/circleplatform.cpp:55 -#: src/badguy/flame.cpp:59 src/editor/node_marker.cpp:125 +#: src/object/spotlight.cpp:105 src/object/textscroller.cpp:350 +#: src/object/rain_particle_system.cpp:102 src/object/conveyor_belt.cpp:61 +#: src/object/circleplatform.cpp:58 src/badguy/flame.cpp:110 +#: src/editor/node_marker.cpp:125 msgid "Speed" msgstr "Geschwindigkeit" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Clockwise" msgstr "Im Uhrzeigersinn" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Counter-clockwise" msgstr "Gegen den Uhrzeigersinn" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Stopped" msgstr "Gestoppt" -#: src/object/spotlight.cpp:107 src/object/candle.cpp:78 -#: src/object/torch.cpp:103 +#: src/object/spotlight.cpp:110 src/object/lit_object.cpp:69 +#: src/object/candle.cpp:76 src/object/torch.cpp:95 msgid "Layer" msgstr "Ebene" @@ -284,125 +404,171 @@ msgstr "Physik aktiviert" msgid "Visible" msgstr "Sichtbar" -#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:322 +#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:313 msgid "Hit script" msgstr "Treffer-Skript" -#: src/object/custom_particle_system_file.cpp:50 +#: src/object/custom_particle_system_file.cpp:53 #: src/object/textscroller.cpp:348 src/object/music_object.cpp:109 #: src/supertux/menu/particle_editor_open.cpp:38 msgid "File" msgstr "Datei" -#: src/object/bonus_block.cpp:208 +#: src/object/bonus_block.cpp:154 +msgid "Only one custom object is allowed inside bonus blocks." +msgstr "In Bonusblöcken ist nur ein benutzerdefiniertes Objekt erlaubt." + +#: src/object/bonus_block.cpp:172 +msgid "Blue" +msgstr "Blau" + +#: src/object/bonus_block.cpp:173 +msgid "Orange" +msgstr "Orange" + +#: src/object/bonus_block.cpp:174 +msgid "Purple" +msgstr "Lila" + +#: src/object/bonus_block.cpp:265 src/supertux/menu/cheat_apply_menu.cpp:54 msgid "Count" msgstr "Anzahl" -#: src/object/bonus_block.cpp:209 +#: src/object/bonus_block.cpp:266 msgid "Content" msgstr "Inhalt" -#: src/object/bonus_block.cpp:210 src/object/coin.hpp:43 +#: src/object/bonus_block.cpp:267 src/object/coin.hpp:44 msgid "Coin" msgstr "Münze" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (fire flower)" msgstr "Wachstum (Feuerblume)" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (ice flower)" msgstr "Wachstum (Eisblume)" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (air flower)" msgstr "Wachstum (Luftblume)" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Growth (earth flower)" msgstr "Wachstum (Erdblume)" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 +msgid "Growth (retro)" +msgstr "Wachstum (Retro)" + +#: src/object/bonus_block.cpp:268 src/object/powerup.cpp:66 msgid "Star" msgstr "Stern" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 +msgid "Star (retro)" +msgstr "Stern (Retro)" + +#: src/object/bonus_block.cpp:268 msgid "Tux doll" msgstr "Tux-Puppe" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Custom" msgstr "Benutzerdefiniert" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Light" msgstr "Licht" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Light (On)" msgstr "Licht (An)" -#: src/object/bonus_block.cpp:212 src/object/trampoline.hpp:35 +#: src/object/bonus_block.cpp:269 src/object/trampoline.hpp:37 msgid "Trampoline" msgstr "Trampolin" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 +msgid "Portable trampoline" +msgstr "Tragbares Trampolin" + +#: src/object/bonus_block.cpp:269 msgid "Coin rain" msgstr "Münzregen" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 msgid "Coin explosion" msgstr "Münzexplosion" -#: src/object/bonus_block.cpp:216 +#: src/object/bonus_block.cpp:269 src/object/rock.hpp:43 +msgid "Rock" +msgstr "Fels" + +#: src/object/bonus_block.cpp:269 +msgid "Potion" +msgstr "Trank" + +#: src/object/bonus_block.cpp:275 msgid "Custom Content" msgstr "Eigene Inhalte" -#: src/object/pneumatic_platform.hpp:62 +#: src/object/bonus_block.cpp:278 +msgid "Coin sprite" +msgstr "Münz-Sprite" + +#: src/object/pneumatic_platform.hpp:65 msgid "Pneumatic Platform" msgstr "Pneumatische Plattform" -#: src/object/coin.cpp:303 src/object/tilemap.cpp:249 +#: src/object/coin.cpp:326 src/object/tilemap.cpp:287 msgid "Following path" msgstr "Folgt Pfad" -#: src/object/coin.cpp:306 src/object/camera.cpp:227 -#: src/object/platform.cpp:74 src/object/tilemap.cpp:252 +#: src/object/coin.cpp:329 src/object/camera.cpp:171 +#: src/object/platform.cpp:77 src/object/tilemap.cpp:290 msgid "Path Mode" msgstr "Pfadmodus" -#: src/object/coin.cpp:307 src/object/camera.cpp:228 -#: src/object/platform.cpp:75 src/object/tilemap.cpp:253 -#: src/badguy/willowisp.cpp:331 +#: src/object/coin.cpp:330 src/object/camera.cpp:172 +#: src/object/platform.cpp:78 src/object/tilemap.cpp:291 +#: src/badguy/willowisp.cpp:322 msgid "Adapt Speed" msgstr "Geschwindigkeit: anpassen" -#: src/object/coin.cpp:308 src/object/platform.cpp:77 -#: src/object/tilemap.cpp:247 src/badguy/willowisp.cpp:327 +#: src/object/coin.cpp:331 src/object/platform.cpp:81 +#: src/object/tilemap.cpp:285 src/badguy/willowisp.cpp:318 msgid "Starting Node" msgstr "Start-Node" -#: src/object/coin.cpp:311 src/object/coin.cpp:339 +#: src/object/coin.cpp:332 src/object/camera.cpp:173 +#: src/object/platform.cpp:82 src/object/tilemap.cpp:293 +#: src/badguy/willowisp.cpp:323 +msgid "Handle" +msgstr "Anfasser" + +#: src/object/coin.cpp:335 src/object/coin.cpp:371 msgid "Collect script" msgstr "Sammel-Skript" -#: src/object/ghost_particle_system.hpp:36 +#: src/object/ghost_particle_system.hpp:37 msgid "Ghost Particles" msgstr "Geistpartikel" -#: src/object/camera.cpp:219 +#: src/object/camera.cpp:163 msgid "Mode" msgstr "Modus" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "normal" msgstr "normal" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "manual" msgstr "manuell" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "autoscroll" msgstr "Autoscrollen" @@ -418,32 +584,20 @@ msgstr "X-Versatz" msgid "Controllable" msgstr "Steuerbar" -#: src/object/textscroller.cpp:353 -msgid "Anchor" -msgstr "Anker" - -#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 -#: src/supertux/menu/keyboard_menu.cpp:34 -#: src/supertux/menu/joystick_menu.cpp:71 -msgid "Left" -msgstr "Links" - #: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 msgid "Center" msgstr "Mittig" -#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 -#: src/supertux/menu/keyboard_menu.cpp:35 -#: src/supertux/menu/joystick_menu.cpp:72 -msgid "Right" -msgstr "Rechts" - #: src/object/textscroller.cpp:357 msgid "Text Alignment" msgstr "Textausrichtung" -#: src/object/spawnpoint.hpp:46 src/badguy/willowisp.cpp:321 -#: src/editor/worldmap_objects.cpp:171 +#: src/object/lit_object.hpp:40 +msgid "Lit object" +msgstr "Beleuchtetes Objekt" + +#: src/object/spawnpoint.hpp:48 src/badguy/willowisp.cpp:312 +#: src/worldmap/teleporter.cpp:48 msgid "Spawnpoint" msgstr "Startpunkt" @@ -451,266 +605,339 @@ msgstr "Startpunkt" msgid "Counter" msgstr "Zähler" -#: src/object/candle.hpp:36 +#: src/object/candle.hpp:37 msgid "Candle" msgstr "Kerze" -#: src/object/particlesystem.cpp:64 src/object/particle_zone.cpp:79 -#: src/badguy/darttrap.cpp:127 -msgid "Enabled" -msgstr "Aktiviert" +#: src/object/particlesystem.cpp:65 src/object/background.cpp:184 +#: src/object/thunderstorm.cpp:76 src/object/tilemap.cpp:277 +#: src/object/gradient.cpp:101 src/object/moving_sprite.cpp:193 +msgid "Z-pos" +msgstr "Z-Position" -#: src/object/invisible_block.hpp:31 +#: src/object/invisible_block.hpp:30 msgid "Invisible Block" msgstr "Unsichtbarer Block" -#: src/object/snow_particle_system.hpp:35 +#: src/object/snow_particle_system.hpp:37 msgid "Snow Particles" msgstr "Schneepartikel" -#: src/object/powerup.hpp:35 +#: src/object/powerup.hpp:40 msgid "Powerup" msgstr "Powerup" -#: src/object/fallblock.hpp:39 +#: src/object/infoblock.cpp:78 +msgid "Front Color" +msgstr "Vordergrundfarbe" + +#: src/object/infoblock.cpp:80 +msgid "Back Color" +msgstr "Hintergrundfarbe" + +#: src/object/infoblock.cpp:82 +msgid "Roundness" +msgstr "Rundheit" + +#: src/object/infoblock.cpp:84 +msgid "Fade Transition" +msgstr "Überblende-Übergang" + +#: src/object/fallblock.hpp:41 msgid "Falling Platform" msgstr "Fallende Plattform" -#: src/object/level_time.hpp:55 +#: src/object/level_time.hpp:56 msgid "Time Limit" msgstr "Zeitlimit" -#: src/object/ambient_sound.cpp:119 src/supertux/menu/options_menu.cpp:391 -#: data//credits.stxt:352 -msgid "Sound" -msgstr "Ton" - -#: src/object/ambient_sound.cpp:120 -msgid "Distance factor" -msgstr "Distanzfaktor" - -#: src/object/ambient_sound.cpp:121 -msgid "Distance bias" -msgstr "Distanzverzerrung" - -#: src/object/ambient_sound.cpp:122 -msgid "Volume" -msgstr "Lautstärke" +#: src/object/ambient_sound.cpp:86 +msgid "Radius (in tiles)" +msgstr "Radius (in Kacheln)" #: src/object/torch.hpp:41 msgid "Torch" msgstr "Fackel" -#: src/object/icecrusher.hpp:53 -msgid "Icecrusher" -msgstr "Eisrammer" - -#: src/object/rublight.hpp:33 +#: src/object/rublight.hpp:34 msgid "Rublight" msgstr "Rublight" -#: src/object/background.hpp:43 +#: src/object/background.hpp:45 msgid "Background" msgstr "Hintergrund" -#: src/object/firefly.hpp:36 +#: src/object/text_object.hpp:44 src/gui/menu_string_array.cpp:77 +msgid "Text" +msgstr "Text" + +#: src/object/firefly.hpp:38 msgid "Checkpoint" msgstr "Kontrollpunkt" -#: src/object/ambient_light.hpp:36 +#: src/object/ambient_light.hpp:37 msgid "Ambient Light" msgstr "Umgebungslicht" -#: src/object/lantern.hpp:37 +#: src/object/lantern.hpp:38 msgid "Lantern" msgstr "Laterne" -#: src/object/wind.hpp:40 +#: src/object/wind.hpp:43 msgid "Wind" msgstr "Wind" -#: src/object/bicycle_platform.cpp:189 src/object/background.cpp:179 -#: src/object/pneumatic_platform.cpp:147 -#: src/supertux/menu/joystick_menu.cpp:170 src/supertux/moving_object.cpp:58 -#: src/editor/worldmap_objects.cpp:73 +#: src/object/bicycle_platform.cpp:203 src/object/background.cpp:180 +#: src/object/pneumatic_platform.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:65 +#: src/worldmap/worldmap_object.cpp:77 msgid "X" msgstr "X" -#: src/object/bicycle_platform.cpp:190 src/object/background.cpp:180 -#: src/object/pneumatic_platform.cpp:148 -#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:59 -#: src/editor/worldmap_objects.cpp:74 +#: src/object/bicycle_platform.cpp:204 src/object/background.cpp:181 +#: src/object/pneumatic_platform.cpp:163 +#: src/supertux/menu/joystick_menu.cpp:174 src/supertux/moving_object.cpp:66 +#: src/worldmap/worldmap_object.cpp:78 msgid "Y" msgstr "Y" -#: src/object/bicycle_platform.cpp:192 +#: src/object/bicycle_platform.cpp:206 msgid "Platforms" msgstr "Plattformen" -#: src/object/bicycle_platform.cpp:193 src/object/circleplatform.cpp:54 -#: src/badguy/flame.cpp:58 src/badguy/rcrystallo.cpp:50 -#: src/badguy/crystallo.cpp:35 +#: src/object/bicycle_platform.cpp:207 src/object/circleplatform.cpp:57 +#: src/badguy/fish_swimming.cpp:76 src/badguy/flame.cpp:109 +#: src/badguy/rcrystallo.cpp:83 src/badguy/crystallo.cpp:50 msgid "Radius" msgstr "Radius" -#: src/object/bicycle_platform.cpp:194 +#: src/object/bicycle_platform.cpp:208 msgid "Momentum change rate" msgstr "Impulsänderungsrate" -#: src/object/rain_particle_system.hpp:40 +#: src/object/rain_particle_system.hpp:41 msgid "Rain Particles" msgstr "Regenpartikel" -#: src/object/platform.hpp:45 +#: src/object/platform.hpp:46 msgid "Platform" msgstr "Plattform" -#: src/object/rock.hpp:42 -msgid "Rock" -msgstr "Fels" - -#: src/object/music_object.hpp:41 src/supertux/menu/options_menu.cpp:393 -#: data//credits.stxt:294 +#: src/object/music_object.hpp:42 src/supertux/menu/options_menu.cpp:130 +#: data//credits.stxt:309 msgid "Music" msgstr "Musik" -#: src/object/rusty_trampoline.hpp:39 +#: src/object/lit_object.cpp:68 +msgid "Light sprite" +msgstr "Licht-Sprite" + +#: src/object/lit_object.cpp:71 +msgid "Sprite starting action" +msgstr "Sprite-Startaktion" + +#: src/object/lit_object.cpp:72 +msgid "Light sprite starting action" +msgstr "Licht-Sprite-Startaktion" + +#: src/object/lit_object.cpp:74 +msgid "Light sprite offset X" +msgstr "Licht-Sprite-Versatz X" + +#: src/object/lit_object.cpp:75 +msgid "Light sprite offset Y" +msgstr "Licht-Sprite-Versatz Y" + +#: src/object/rusty_trampoline.hpp:40 msgid "Rusty Trampoline" msgstr "Rostiges Trampolin" -#: src/object/particlesystem.hpp:57 +#: src/object/particlesystem.hpp:58 msgid "Particle system" msgstr "Partikelsystem" -#: src/object/candle.cpp:75 src/object/torch.cpp:101 +#: src/object/candle.cpp:73 src/object/torch.cpp:94 msgid "Burning" msgstr "Brennen" -#: src/object/candle.cpp:76 +#: src/object/candle.cpp:74 msgid "Flicker" msgstr "Flackern" -#: src/object/text_array_object.hpp:50 +#: src/object/snow_particle_system.cpp:104 +msgid "Epsilon" +msgstr "Epsilon" + +#: src/object/snow_particle_system.cpp:105 +msgid "Spin Speed" +msgstr "Drehgeschwindigkeit" + +#: src/object/snow_particle_system.cpp:106 +msgid "State Length" +msgstr "Statuslänge" + +#: src/object/snow_particle_system.cpp:107 +msgid "Wind Speed" +msgstr "Windgeschwindigkeit" + +#: src/object/text_array_object.hpp:47 msgid "Text array" msgstr "Text-Array" -#: src/object/infoblock.hpp:36 +#: src/object/infoblock.hpp:37 msgid "Info Block" msgstr "Infoblock" -#: src/object/powerup.cpp:191 +#: src/object/powerup.cpp:61 +msgid "Egg" +msgstr "Ei" + +#: src/object/powerup.cpp:62 +msgid "Fire Flower" +msgstr "Feuerblume" + +#: src/object/powerup.cpp:63 +msgid "Ice Flower" +msgstr "Eisblume" + +#: src/object/powerup.cpp:64 +msgid "Air Flower" +msgstr "Luftblume" + +#: src/object/powerup.cpp:65 +msgid "Earth Flower" +msgstr "Erdblume" + +#: src/object/powerup.cpp:67 +msgid "Tux Doll" +msgstr "Tux-Puppe" + +#: src/object/powerup.cpp:68 +msgid "Flip Potion" +msgstr "Umdreh-Trank" + +#: src/object/powerup.cpp:69 +msgid "Mints" +msgstr "Pfefferminzbonbons" + +#: src/object/powerup.cpp:70 +msgid "Coffee" +msgstr "Kaffee" + +#: src/object/powerup.cpp:71 +msgid "Herring" +msgstr "Hering" + +#: src/object/powerup.cpp:302 msgid "Disable gravity" msgstr "Schwerkraft deaktivieren" -#: src/object/ambient_sound.hpp:62 +#: src/object/powerup.cpp:312 src/object/weak_block.cpp:266 +msgid "" +"Sprites no longer define the behaviour of the object.\n" +"Object types are used instead." +msgstr "Sprites definieren nicht mehr das Verhalten eines Objektes.\nStattdessen werden jetzt Objekttypen verwendet." + +#: src/object/ambient_sound.hpp:43 msgid "Ambient Sound" msgstr "Umgebungsgeräusch" -#: src/object/level_time.cpp:51 src/supertux/statistics.cpp:297 +#: src/object/level_time.cpp:52 src/supertux/statistics.cpp:297 #: src/editor/node_marker.cpp:124 msgid "Time" msgstr "Zeit" -#: src/object/hurting_platform.hpp:30 +#: src/object/hurting_platform.hpp:31 msgid "Hurting Platform" msgstr "Verletzende Plattform" -#: src/object/icecrusher.cpp:83 -msgid "Sideways" -msgstr "Seitwärts" - -#: src/object/background.cpp:182 +#: src/object/background.cpp:183 msgid "Fill" msgstr "Füllen" -#: src/object/background.cpp:184 +#: src/object/background.cpp:185 msgid "Alignment" msgstr "Ausrichtung" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 src/supertux/direction.cpp:61 msgid "none" msgstr "keine" -#: src/object/background.cpp:185 src/editor/object_settings.cpp:119 +#: src/object/background.cpp:186 src/supertux/direction.cpp:63 msgid "left" msgstr "links" -#: src/object/background.cpp:185 src/editor/object_settings.cpp:119 +#: src/object/background.cpp:186 src/supertux/direction.cpp:65 msgid "right" msgstr "rechts" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 msgid "top" msgstr "oben" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 msgid "bottom" msgstr "unten" -#: src/object/background.cpp:188 +#: src/object/background.cpp:189 msgid "Scroll offset x" msgstr "Scrollvesatz X" -#: src/object/background.cpp:189 +#: src/object/background.cpp:190 msgid "Scroll offset y" msgstr "Scrollversatz Y" -#: src/object/background.cpp:190 +#: src/object/background.cpp:191 msgid "Scroll speed x" msgstr "Scrollgeschwindigkeit X" -#: src/object/background.cpp:191 +#: src/object/background.cpp:192 msgid "Scroll speed y" msgstr "Scrollgeschwindigkeit Y" -#: src/object/background.cpp:192 +#: src/object/background.cpp:193 msgid "Parallax Speed x" msgstr "Scrollgeschwindigkeit X" -#: src/object/background.cpp:193 +#: src/object/background.cpp:194 msgid "Parallax Speed y" msgstr "Scrollgeschwindigkeit Y" -#: src/object/background.cpp:194 +#: src/object/background.cpp:195 msgid "Top image" msgstr "Bild oben" -#: src/object/background.cpp:195 +#: src/object/background.cpp:196 msgid "Image" msgstr "Bild" -#: src/object/background.cpp:196 +#: src/object/background.cpp:197 msgid "Bottom image" msgstr "Bild unten" -#: src/object/background.cpp:197 +#: src/object/background.cpp:198 msgid "Colour" msgstr "Farbe" -#: src/object/background.cpp:198 src/object/tilemap.cpp:240 -#: src/object/gradient.cpp:142 +#: src/object/background.cpp:199 src/object/tilemap.cpp:278 +#: src/object/gradient.cpp:108 msgid "Draw target" msgstr "Zeichenziel" -#: src/object/background.cpp:199 src/object/tilemap.cpp:241 -#: src/object/gradient.cpp:143 -msgid "Normal" -msgstr "Normal" - -#: src/object/background.cpp:199 src/object/tilemap.cpp:241 -#: src/object/gradient.cpp:143 +#: src/object/background.cpp:200 src/object/tilemap.cpp:279 +#: src/object/gradient.cpp:109 msgid "Lightmap" msgstr "Lightmap" -#: src/object/shard.hpp:34 +#: src/object/shard.hpp:35 msgid "Shard" msgstr "Scherbe" -#: src/object/rublight.cpp:55 +#: src/object/rublight.cpp:56 msgid "Fading Speed" msgstr "Verblassensgeschwindigkeit" -#: src/object/rublight.cpp:56 +#: src/object/rublight.cpp:57 msgid "Glowing Strength" msgstr "Leuchtstärke" @@ -746,20 +973,28 @@ msgstr "Beeinflusst Spieler" msgid "Fancy Particles" msgstr "Schöne Partikel" -#: src/object/bicycle_platform.hpp:64 +#: src/object/bicycle_platform.hpp:67 msgid "Bicycle Platform" msgstr "Fahrrad-Plattform" -#: src/object/platform.cpp:76 src/object/thunderstorm.cpp:69 -#: src/object/tilemap.cpp:254 +#: src/object/platform.cpp:80 src/object/thunderstorm.cpp:77 +#: src/object/tilemap.cpp:292 src/object/conveyor_belt.cpp:62 msgid "Running" msgstr "Laufend" -#: src/object/rock.cpp:192 +#: src/object/rock.cpp:71 +msgid "Small" +msgstr "Klein" + +#: src/object/rock.cpp:72 +msgid "Large" +msgstr "Groß" + +#: src/object/rock.cpp:234 msgid "On-grab script" msgstr "Aufnehmskript" -#: src/object/rock.cpp:193 +#: src/object/rock.cpp:235 msgid "On-ungrab script" msgstr "Ablegskript" @@ -767,15 +1002,15 @@ msgstr "Ablegskript" msgid "Interactive particle system" msgstr "Interaktives Partikelsystem" -#: src/object/thunderstorm.cpp:70 +#: src/object/thunderstorm.cpp:78 msgid "Interval" msgstr "Intervall" -#: src/object/thunderstorm.cpp:71 +#: src/object/thunderstorm.cpp:79 msgid "Strike Script" msgstr "Treffer-Skript" -#: src/object/cloud_particle_system.hpp:41 +#: src/object/cloud_particle_system.hpp:42 msgid "Cloud Particles" msgstr "Wolkenpartikel" @@ -787,7 +1022,7 @@ msgstr "Textur" msgid "Amount" msgstr "Menge" -#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:56 +#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:59 #: src/editor/particle_editor.cpp:141 msgid "Delay" msgstr "Verzögerung" @@ -806,10 +1041,11 @@ msgid "Birth mode" msgstr "Geburtsmodus" #: src/object/custom_particle_system.cpp:430 -#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:149 -#: src/supertux/menu/keyboard_menu.cpp:58 -#: src/supertux/menu/joystick_menu.cpp:106 -#: src/supertux/menu/joystick_menu.cpp:213 src/editor/object_settings.cpp:131 +#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:115 +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/joystick_menu.cpp:108 +#: src/supertux/menu/joystick_menu.cpp:215 src/editor/object_settings.cpp:129 #: src/editor/particle_editor.cpp:162 src/editor/particle_editor.cpp:168 msgid "None" msgstr "Keine" @@ -1138,597 +1374,916 @@ msgstr "Immer" msgid "Cover screen" msgstr "Bildschirm bedecken" -#: src/object/ispy.hpp:33 +#: src/object/ispy.hpp:35 msgid "Ispy" msgstr "Ispy" -#: src/object/skull_tile.hpp:32 -msgid "Skull Tile" -msgstr "Schädel-Kachel" - -#: src/object/particle_zone.cpp:80 +#: src/object/particle_zone.cpp:51 msgid "Particle Name" msgstr "Partikelname" -#: src/object/particle_zone.cpp:81 -msgid "Zone Type" -msgstr "Zonentyp" - -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:62 msgid "Spawn" msgstr "Spawn" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:63 msgid "Life zone" msgstr "Lebenszone" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:64 msgid "Life zone (clear)" msgstr "Lebenszone (Löschen)" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:65 msgid "Kill particles" msgstr "Tötungspartikel" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:66 msgid "Clear particles" msgstr "Partikel entfernen" -#: src/object/weak_block.cpp:211 -msgid "Linked" -msgstr "Verbunden" +#: src/object/weak_block.cpp:98 +msgid "Hay" +msgstr "Heu" -#: src/object/decal.hpp:40 +#: src/object/decal.hpp:41 msgid "Decal" msgstr "Dekor" -#: src/object/tilemap.cpp:229 +#: src/object/tilemap.cpp:267 msgid "Resize offset x" msgstr "Versatz beim Ändern der Größe in X-Richtung" -#: src/object/tilemap.cpp:230 +#: src/object/tilemap.cpp:268 msgid "Resize offset y" msgstr "Versatz beim Ändern der Größe in X-Richtung" -#: src/object/tilemap.cpp:232 src/supertux/menu/editor_sector_menu.cpp:39 -#: src/editor/object_option.cpp:173 +#: src/object/tilemap.cpp:270 src/supertux/menu/editor_sector_menu.cpp:41 +#: src/editor/object_option.cpp:178 msgid "Width" msgstr "Breite" -#: src/object/tilemap.cpp:233 src/supertux/menu/editor_sector_menu.cpp:40 -#: src/editor/object_option.cpp:174 +#: src/object/tilemap.cpp:271 src/supertux/menu/editor_sector_menu.cpp:42 +#: src/editor/object_option.cpp:179 msgid "Height" msgstr "Höhe" -#: src/object/tilemap.cpp:235 +#: src/object/tilemap.cpp:273 msgid "Alpha" msgstr "Alpha" -#: src/object/tilemap.cpp:236 +#: src/object/tilemap.cpp:274 msgid "Speed x" msgstr "X-Geschwindigkeit" -#: src/object/tilemap.cpp:237 +#: src/object/tilemap.cpp:275 msgid "Speed y" msgstr "Y-Geschwindigkeit" -#: src/object/tilemap.cpp:238 +#: src/object/tilemap.cpp:276 msgid "Tint" msgstr "Farbton" -#: src/object/tilemap.cpp:257 src/supertux/menu/editor_tilegroup_menu.cpp:26 -#: src/editor/toolbox_widget.cpp:90 +#: src/object/tilemap.cpp:296 src/supertux/menu/editor_tilegroup_menu.cpp:26 +#: src/editor/toolbox_widget.cpp:98 msgid "Tiles" msgstr "Kacheln" -#: src/object/gradient.cpp:128 -msgid "Left Colour" -msgstr "Farbe links" - -#: src/object/gradient.cpp:129 -msgid "Right Colour" -msgstr "Farbe rechts" - -#: src/object/gradient.cpp:131 -msgid "Top Colour" -msgstr "Farbe oben" +#: src/object/gradient.cpp:98 +msgid "Primary Colour" +msgstr "Primärfarbe" -#: src/object/gradient.cpp:132 -msgid "Bottom Colour" -msgstr "Farbe unten" +#: src/object/gradient.cpp:99 +msgid "Secondary Colour" +msgstr "Sekundärfarbe" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Vertical" msgstr "Vertikal" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Horizontal" msgstr "Horizontal" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Vertical (whole sector)" msgstr "Vertikal (Gesamter Sektor)" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Horizontal (whole sector)" msgstr "Horizontal (Gesamter Sektor)" -#: src/object/gradient.cpp:148 +#: src/object/gradient.cpp:114 msgid "Blend mode" msgstr "Übergangsmodus" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Blend" msgstr "Übergang" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Additive" msgstr "Additiv" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Modulate" msgstr "Modulieren" -#: src/object/bumper.hpp:35 +#: src/object/bumper.hpp:38 msgid "Bumper" msgstr "Bumper" -#: src/object/unstable_tile.hpp:37 +#: src/object/conveyor_belt.cpp:63 +msgid "Length" +msgstr "Länge" + +#: src/object/moving_sprite.cpp:192 src/object/pneumatic_platform.cpp:161 +msgid "Sprite" +msgstr "Sprite" + +#: src/object/unstable_tile.hpp:42 msgid "Unstable Tile" msgstr "Instabile Kachel" -#: src/object/brick.hpp:31 -msgid "Brick" -msgstr "Ziegel" +#: src/object/brick.hpp:70 +msgid "Heavy Brick" +msgstr "Schwerer Stein" -#: src/object/invisible_wall.hpp:34 +#: src/object/invisible_wall.hpp:37 msgid "Invisible Wall" msgstr "Unsichtbare Mauer" -#: src/object/spotlight.hpp:51 +#: src/object/spotlight.hpp:52 msgid "Spotlight" msgstr "Scheinwerferlicht" -#: src/object/scripted_object.hpp:39 +#: src/object/scripted_object.hpp:40 msgid "Scripted Object" msgstr "Geskriptetes Objekt" -#: src/object/custom_particle_system_file.hpp:39 +#: src/object/custom_particle_system_file.hpp:40 msgid "Custom Particles from file" -msgstr "Benutzerdefnierte Partikel aus Datei" +msgstr "Benutzerdefinierte Partikel aus Datei" -#: src/object/coin.hpp:78 +#: src/object/coin.hpp:97 msgid "Heavy Coin" msgstr "Schwere Münze" -#: src/object/bonus_block.hpp:56 +#: src/object/explosion.hpp:35 +msgid "Explosion" +msgstr "Explosion" + +#: src/object/bonus_block.hpp:62 msgid "Bonus Block" msgstr "Bonusblock" -#: src/object/magicblock.hpp:41 +#: src/object/magicblock.hpp:42 msgid "Magic Tile" msgstr "Magische Kachel" -#: src/object/camera.hpp:67 +#: src/object/camera.hpp:61 msgid "Camera" msgstr "Kamera" -#: src/object/textscroller.hpp:44 +#: src/object/textscroller.hpp:45 msgid "Text Scroller" msgstr "Textscroller" -#: src/gui/menu_badguy_select.cpp:94 -msgid "List of enemies" -msgstr "Liste von Gegnern" +#: src/gui/notification.cpp:57 +msgid "Click for more details." +msgstr "Für weitere Details klicken." + +#: src/gui/notification.cpp:150 +msgid "Do not show again" +msgstr "Nicht erneut anzeigen" -#: src/gui/menu_badguy_select.cpp:96 -msgid "Select enemy" -msgstr "Gegner auswählen" +#: src/gui/notification.cpp:157 src/supertux/menu/download_dialog.cpp:124 +msgid "Close" +msgstr "Schließen" + +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#, c++-format +msgid "Selected item: {}" +msgstr "Ausgewählter Eintrag: {}" + +#: src/gui/menu_string_array.cpp:70 +msgid "Edit string array" +msgstr "String-Array bearbeiten" -#: src/gui/menu_badguy_select.cpp:97 +#: src/gui/menu_string_array.cpp:79 src/gui/menu_object_select.cpp:50 +#: src/supertux/menu/profile_menu.cpp:88 msgid "Add" msgstr "Hinzufügen" -#: src/gui/menu_badguy_select.cpp:107 src/gui/menu_color.cpp:37 -#: src/gui/dialog.hpp:81 src/gui/menu_script.cpp:47 -#: src/supertux/menu/editor_sector_menu.cpp:46 -#: src/supertux/menu/editor_levelset_menu.cpp:62 -#: src/supertux/menu/addon_menu.cpp:349 +#: src/gui/menu_string_array.cpp:80 +msgid "Insert" +msgstr "Einfügen" + +#: src/gui/menu_string_array.cpp:81 +#: src/supertux/menu/addon_preview_menu.cpp:177 src/editor/object_menu.cpp:61 +msgid "Update" +msgstr "Aktualisieren" + +#: src/gui/menu_string_array.cpp:82 src/supertux/menu/profile_menu.cpp:108 +#: src/supertux/menu/profile_menu.cpp:110 +msgid "Delete" +msgstr "Löschen" + +#: src/gui/menu_string_array.cpp:84 src/gui/menu_object_select.cpp:61 +#: src/gui/menu_color.cpp:37 src/gui/dialog.hpp:87 src/gui/menu_script.cpp:46 +#: src/supertux/menu/editor_sector_menu.cpp:48 +#: src/supertux/menu/editor_levelset_menu.cpp:58 #: src/supertux/menu/editor_new_levelset_menu.cpp:37 -#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:43 +#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:71 msgid "OK" msgstr "OK" -#: src/gui/menu_badguy_select.cpp:136 -msgid "Do you want to delete this badguy from the list?" -msgstr "Möchtest du diesen Gegner von der Liste entfernen?" +#: src/gui/menu_object_select.cpp:46 +msgid "List of objects" +msgstr "Liste von Objekten" -#: src/gui/menu_badguy_select.cpp:137 src/gui/dialog.hpp:90 -#: src/supertux/menu/editor_level_select_menu.cpp:164 -#: src/supertux/menu/editor_menu.cpp:164 src/editor/editor.cpp:583 -msgid "Yes" -msgstr "Ja" +#: src/gui/menu_object_select.cpp:48 +#, c++-format +msgid "Select object ({})" +msgstr "Objekt auswählen ({})" -#: src/gui/menu_badguy_select.cpp:140 src/gui/dialog.hpp:91 -#: src/supertux/menu/editor_level_select_menu.cpp:168 -#: src/supertux/menu/editor_menu.cpp:167 src/editor/particle_editor.cpp:780 -#: src/editor/editor.cpp:590 -msgid "No" -msgstr "Nein" +#: src/gui/menu_object_select.cpp:114 +msgid "Are you sure you want to remove this object from the list?" +msgstr "Sind Sie sicher, dass Sie das Objekt von der Liste entfernen möchten?" #: src/gui/menu_color.cpp:24 msgid "Mix the colour" msgstr "Farbe zusammenmischen" -#: src/gui/menu_filesystem.cpp:112 src/gui/menu_paths.cpp:44 -#: src/supertux/menu/particle_editor_save_as.cpp:42 +#: src/gui/dialog.hpp:96 src/supertux/menu/editor_level_select_menu.cpp:181 +#: src/editor/editor.cpp:663 +msgid "Yes" +msgstr "Ja" + +#: src/gui/dialog.hpp:97 src/supertux/menu/editor_level_select_menu.cpp:185 +#: src/editor/particle_editor.cpp:781 src/editor/editor.cpp:670 +msgid "No" +msgstr "Nein" + +#: src/gui/menu_list.cpp:38 src/gui/menu_filesystem.cpp:120 +#: src/gui/menu_paths.cpp:48 src/supertux/menu/particle_editor_save_as.cpp:42 #: src/supertux/menu/editor_sectors_menu.cpp:45 -#: src/supertux/menu/editor_sectors_menu.cpp:95 -#: src/supertux/menu/editor_sectors_menu.cpp:100 +#: src/supertux/menu/editor_sectors_menu.cpp:94 +#: src/supertux/menu/editor_sectors_menu.cpp:99 #: src/supertux/menu/editor_objectgroup_menu.cpp:42 #: src/supertux/menu/editor_tilegroup_menu.cpp:36 -#: src/supertux/menu/editor_level_select_menu.cpp:173 +#: src/supertux/menu/editor_level_select_menu.cpp:190 #: src/supertux/menu/editor_save_as.cpp:42 #: src/supertux/menu/particle_editor_open.cpp:43 -#: src/editor/particle_editor.cpp:784 src/editor/editor.cpp:594 +#: src/editor/particle_editor.cpp:785 src/editor/editor.cpp:674 msgid "Cancel" msgstr "Abbrechen" +#: src/gui/menu_filesystem.cpp:118 +msgid "Open Directory" +msgstr "Verzeichnis öffnen" + #: src/gui/menu_script.cpp:28 msgid "Edit script" msgstr "Skript bearbeiten" -#: src/gui/menu_paths.cpp:30 +#: src/gui/menu_paths.cpp:32 msgid "Clone" msgstr "Klonen" -#: src/gui/menu_paths.cpp:38 +#: src/gui/menu_paths.cpp:41 msgid "" -"An error occured and the game could\n" +"An error occurred and the game could\n" "not clone the path. Please contact\n" "the developers for support." -msgstr "Ein Fehler ist aufgetreten und das\nSpiel konnte den Pfad nicht klonen.\nBitte nimm mit den Entwicklern\nKontakt auf für eine Unterstützung." +msgstr "Ein Fehler ist aufgetreten und das Spiel\nkonnte den Pfad nicht klonen. Bitte kon-\ntaktieren Sie die Entwickler, um Unter-\nstützung zu erhalten." -#: src/gui/menu_paths.cpp:41 +#: src/gui/menu_paths.cpp:44 msgid "Bind" msgstr "Verbinden" -#: src/gui/menu_paths.cpp:63 src/supertux/menu/integrations_menu.cpp:60 -#: src/supertux/menu/contrib_menu.cpp:161 src/supertux/menu/debug_menu.cpp:75 -#: src/supertux/menu/editor_level_select_menu.cpp:88 -#: src/supertux/menu/worldmap_cheat_menu.cpp:55 -#: src/supertux/menu/worldmap_cheat_menu.cpp:153 +#: src/gui/menu_paths.cpp:49 +msgid "" +"Do you wish to clone the path to edit it separately,\n" +"or do you want to bind both paths together\n" +"so that any edit on one edits the other?" +msgstr "Möchtest du den Pfad klonen, um ihn separat zu bearbeiten,\noder möchtest du beide Pfade miteinander verbinden\nso dass jede Bearbeitung des einen Pfads auch den anderen Pfad bearbeitet?" + +#: src/gui/menu_paths.cpp:56 +#, c++-format +msgid "Path {}" +msgstr "Pfad {}" + +#: src/gui/menu_paths.cpp:67 src/supertux/menu/integrations_menu.cpp:60 +#: src/supertux/menu/editor_converters_menu.cpp:79 +#: src/supertux/menu/video_system_menu.cpp:45 +#: src/supertux/menu/contrib_menu.cpp:102 src/supertux/menu/debug_menu.cpp:77 +#: src/supertux/menu/multiplayer_menu.cpp:39 +#: src/supertux/menu/custom_menu_menu.cpp:65 +#: src/supertux/menu/editor_level_select_menu.cpp:98 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:63 +#: src/supertux/menu/worldmap_cheat_menu.cpp:57 +#: src/supertux/menu/worldmap_cheat_menu.cpp:196 #: src/supertux/menu/editor_levelset_select_menu.cpp:114 -#: src/supertux/menu/options_menu.cpp:442 -#: src/supertux/menu/profile_menu.cpp:54 src/supertux/menu/addon_menu.cpp:213 +#: src/supertux/menu/options_menu.cpp:223 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:69 +#: src/supertux/menu/addon_preview_menu.cpp:193 +#: src/supertux/menu/profile_menu.cpp:118 +#: src/supertux/menu/multiplayer_players_menu.cpp:91 +#: src/supertux/menu/addon_menu.cpp:153 #: src/supertux/menu/editor_new_levelset_menu.cpp:40 +#: src/supertux/menu/options_select_menu.cpp:44 #: src/supertux/menu/world_set_menu.cpp:33 +#: src/supertux/menu/addon_browse_menu.cpp:162 #: src/supertux/menu/web_asset_menu.cpp:48 -#: src/supertux/menu/keyboard_menu.cpp:49 -#: src/supertux/menu/language_menu.cpp:56 -#: src/supertux/menu/joystick_menu.cpp:97 +#: src/supertux/menu/profile_name_menu.cpp:45 +#: src/supertux/menu/keyboard_menu.cpp:71 +#: src/supertux/menu/sorted_contrib_menu.cpp:51 +#: src/supertux/menu/language_menu.cpp:63 +#: src/supertux/menu/joystick_menu.cpp:99 #: src/supertux/menu/contrib_levelset_menu.cpp:67 -#: src/supertux/menu/cheat_menu.cpp:44 -#: src/supertux/menu/editor_delete_level_menu.cpp:43 +#: src/supertux/menu/cheat_menu.cpp:58 +#: src/supertux/menu/addon_file_install_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:43 +#: src/supertux/menu/cheat_apply_menu.cpp:63 +#: src/supertux/menu/multiplayer_player_menu.cpp:205 +#: src/supertux/menu/editor_delete_level_menu.cpp:68 msgid "Back" msgstr "Zurück" -#: src/badguy/toad.hpp:37 +#: src/addon/addon_manager.cpp:562 +msgid "Only one resource pack is allowed to be enabled at a time." +msgstr "Es darf nur ein Ressourcenpack zur Zeit aktiviert sein." + +#: src/addon/addon_manager.cpp:837 +#, c++-format +msgid "Add-on {} by {} is already installed." +msgstr "Add-on {} von {} ist bereits installiert." + +#: src/addon/addon_manager.cpp:857 +#, c++-format +msgid "Add-on {} by {} successfully installed." +msgstr "Add-on {} von {} erfolgreich installiert." + +#: src/addon/addon.cpp:71 src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Levelset" +msgstr "Levelsammlung" + +#: src/addon/addon.cpp:74 src/supertux/menu/editor_levelset_menu.cpp:54 +#: data//images/engine/editor/objects.stoi:389 +msgid "Worldmap" +msgstr "Weltkarte" + +#: src/addon/addon.cpp:77 +msgid "World" +msgstr "Welt" + +#: src/addon/addon.cpp:80 +msgid "Add-on" +msgstr "Add-on" + +#: src/addon/addon.cpp:83 +msgid "Language Pack" +msgstr "Sprachpaket" + +#: src/addon/addon.cpp:86 +msgid "Resource Pack" +msgstr "Ressourcenpaket" + +#: src/addon/addon.cpp:89 +msgid "Unknown" +msgstr "Unbekannt" + +#: src/addon/addon.cpp:100 +#, c++-format +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" von \"{}\"" + +#: src/addon/addon.cpp:114 +msgid "add-on" +msgstr "Add-on" + +#: src/addon/addon.cpp:114 +msgid "add-ons" +msgstr "Add-ons" + +#: src/badguy/toad.hpp:38 msgid "Toad" msgstr "Kröte" -#: src/badguy/mrtree.hpp:29 -msgid "Walking Tree" -msgstr "Wandelnder Baum" +#: src/badguy/mrtree.hpp:32 +msgid "Mr. Tree" +msgstr "Baumwesen" -#: src/badguy/plant.hpp:33 +#: src/badguy/plant.hpp:34 msgid "Plant" msgstr "Pflanze" -#: src/badguy/crystallo.hpp:30 +#: src/badguy/tarantula.hpp:39 src/badguy/tarantula.cpp:353 +msgid "Tarantula" +msgstr "Vogelspinne" + +#: src/badguy/granito_giant.cpp:71 +msgid "Awake" +msgstr "Wach" + +#: src/badguy/granito_giant.cpp:72 +msgid "Sleeping" +msgstr "Schlafend" + +#: src/badguy/granito_giant.cpp:73 +msgid "Corrupted A" +msgstr "Korrupt A" + +#: src/badguy/granito_giant.cpp:74 +msgid "Corrupted B" +msgstr "Korrupt B" + +#: src/badguy/granito_giant.cpp:75 +msgid "Corrupted C" +msgstr "Korrupt C" + +#: src/badguy/crystallo.hpp:33 msgid "Crystallo" msgstr "Kristallo" -#: src/badguy/totem.hpp:36 +#: src/badguy/viciousivy.cpp:45 src/badguy/snail.cpp:70 +#: src/badguy/kamikazesnowball.cpp:118 src/badguy/walkingleaf.cpp:36 +#: src/badguy/jumpy.cpp:46 src/badguy/igel.cpp:189 src/badguy/mrtree.cpp:51 +msgid "Corrupted" +msgstr "Korrupt" + +#: src/badguy/totem.hpp:37 msgid "Totem" msgstr "Totem" -#: src/badguy/stalactite.hpp:38 +#: src/badguy/stalactite.hpp:42 msgid "Stalactite" msgstr "Stalaktit" -#: src/badguy/haywire.hpp:45 +#: src/badguy/fish_chasing.cpp:198 +msgid "Tracking Distance" +msgstr "" + +#: src/badguy/fish_chasing.cpp:199 +msgid "Losing Distance" +msgstr "" + +#: src/badguy/fish_chasing.cpp:200 +msgid "Chase Speed" +msgstr "Verfolgungsgeschwindigkeit" + +#: src/badguy/root_sapling.hpp:41 +msgid "Root Sapling" +msgstr "" + +#: src/badguy/haywire.hpp:46 msgid "Haywire" msgstr "Verrückte Bombe" -#: src/badguy/dispenser.hpp:48 +#: src/badguy/dispenser.hpp:52 msgid "Dispenser" msgstr "Verteiler" -#: src/badguy/short_fuse.hpp:29 +#: src/badguy/short_fuse.hpp:30 msgid "Short Fuse" msgstr "Kurze Lunte" -#: src/badguy/zeekling.hpp:36 +#: src/badguy/zeekling.hpp:39 msgid "Zeekling" msgstr "Zeekling" -#: src/badguy/mriceblock.hpp:46 -msgid "Iceblock" -msgstr "Eisblock" +#: src/badguy/smartball.cpp:35 +msgid "Pumpkin" +msgstr "Kürbis" -#: src/badguy/scrystallo.cpp:52 -msgid "Walk Radius" -msgstr "Gehradius" +#: src/badguy/bouncing_snowball.cpp:82 +msgid "Fatbat" +msgstr "" -#: src/badguy/scrystallo.cpp:53 -msgid "Awakening Radius" -msgstr "Aufwachradius" +#: src/badguy/dive_mine.hpp:50 +msgid "Dive Mine" +msgstr "Tauchergrube" -#: src/badguy/jumpy.hpp:36 -msgid "Jumpy" -msgstr "Springer" +#: src/badguy/granito_big.hpp:33 +msgid "Big Granito" +msgstr "" -#: src/badguy/captainsnowball.hpp:31 -msgid "Captain Snowball" -msgstr "Käpt'n Schneeball" +#: src/badguy/mriceblock.hpp:49 +msgid "Mr. Iceblock" +msgstr "Mr. Eisblock" -#: src/badguy/ghosttree.hpp:42 +#: src/badguy/granito.hpp:39 src/badguy/darttrap.cpp:163 +#: src/badguy/corrupted_granito.cpp:175 src/badguy/dispenser.cpp:438 +msgid "Granito" +msgstr "Granito" + +#: src/badguy/fish_swimming.cpp:54 src/badguy/jumpy.cpp:44 +#: data//images/ice_world.strf:10 data//images/tiles.strf:28 +#: data//images/worldmap.strf:41 +msgid "Snow" +msgstr "Schnee" + +#: src/badguy/fish_swimming.cpp:55 data//images/ice_world.strf:211 +#: data//images/tiles.strf:366 data//images/worldmap.strf:67 +msgid "Forest" +msgstr "Wald" + +#: src/badguy/crusher.hpp:71 +msgid "Crusher" +msgstr "Crusher" + +#: src/badguy/flame.cpp:84 +msgid "Fire" +msgstr "Feuer" + +#: src/badguy/flame.cpp:85 +msgid "Ghost" +msgstr "Geist" + +#: src/badguy/corrupted_granito_big.hpp:35 +msgid "Corrupted Big Granito" +msgstr "" + +#: src/badguy/scrystallo.cpp:57 +msgid "Walk Radius" +msgstr "Gehradius" + +#: src/badguy/scrystallo.cpp:58 +msgid "Awakening Radius" +msgstr "Aufwachradius" + +#: src/badguy/scrystallo.cpp:59 +msgid "Roof-attached" +msgstr "" + +#: src/badguy/jumpy.hpp:40 +msgid "Jumpy" +msgstr "Springer" + +#: src/badguy/captainsnowball.hpp:32 +msgid "Captain Snowball" +msgstr "Käpt'n Schneeball" + +#: src/badguy/ghosttree.hpp:43 msgid "Ghost Tree" msgstr "Geisterbaum" -#: src/badguy/willowisp.cpp:323 +#: src/badguy/willowisp.cpp:314 msgid "Track range" msgstr "Verfolgungsreichweite" -#: src/badguy/willowisp.cpp:324 +#: src/badguy/willowisp.cpp:315 msgid "Vanish range" msgstr "Verschwinde-Entfernung" -#: src/badguy/willowisp.cpp:325 +#: src/badguy/willowisp.cpp:316 msgid "Fly speed" msgstr "Fluggeschwindigkeit" -#: src/badguy/kugelblitz.hpp:39 +#: src/badguy/kugelblitz.hpp:40 msgid "Kugelblitz" msgstr "Kugelblitz" -#: src/badguy/mole_rock.hpp:43 +#: src/badguy/mole_rock.hpp:44 msgid "Mole's rock" msgstr "Maulwurfsfelsen" -#: src/badguy/badguy.cpp:849 +#: src/badguy/badguy.cpp:1064 msgid "Death script" msgstr "Todesskript" -#: src/badguy/sspiky.hpp:36 +#: src/badguy/sspiky.hpp:37 msgid "Sleeping Spiky" msgstr "Schlafender Spiky" -#: src/badguy/yeti_stalactite.hpp:33 +#: src/badguy/yeti_stalactite.hpp:34 msgid "Yeti's Stalactite" msgstr "Yetis Stalaktit" -#: src/badguy/livefire.hpp:37 +#: src/badguy/fish_harmless.hpp:30 +msgid "Harmless Fish" +msgstr "Harmloser Fisch" + +#: src/badguy/livefire.hpp:38 msgid "Walking Flame" msgstr "Wandelnde Flamme" -#: src/badguy/livefire.hpp:68 +#: src/badguy/livefire.hpp:71 msgid "Sleeping Flame" msgstr "Schlafende Flamme" -#: src/badguy/livefire.hpp:84 +#: src/badguy/livefire.hpp:89 msgid "Dormant Flame" msgstr "Ruhende Flamme" -#: src/badguy/owl.hpp:39 +#: src/badguy/owl.hpp:45 msgid "Owl" msgstr "Eule" -#: src/badguy/igel.hpp:34 +#: src/badguy/igel.hpp:38 msgid "Igel" msgstr "Igel" -#: src/badguy/darttrap.cpp:126 +#: src/badguy/darttrap.cpp:148 msgid "Initial delay" msgstr "Anfangsverzögerung" -#: src/badguy/darttrap.cpp:128 +#: src/badguy/darttrap.cpp:150 msgid "Fire delay" msgstr "Feuerverzögerung" -#: src/badguy/darttrap.cpp:129 +#: src/badguy/darttrap.cpp:151 msgid "Ammo" msgstr "Munition" -#: src/badguy/snowball.hpp:29 -msgid "Snowball" -msgstr "Schneeball" +#: src/badguy/darttrap.cpp:152 +msgid "Dart sprite" +msgstr "" + +#: src/badguy/darttrap.cpp:164 +msgid "Skull" +msgstr "Schädel" -#: src/badguy/smartblock.hpp:29 -msgid "Smartblock" -msgstr "Schlaublock" +#: src/badguy/snowball.hpp:30 +msgid "Mr. Snowball" +msgstr "Herr Schneeball" -#: src/badguy/yeti.cpp:369 +#: src/badguy/smartblock.hpp:30 +msgid "Mrs. Iceblock" +msgstr "Frau Eisblock" + +#: src/badguy/yeti.cpp:370 msgid "Fixed position" msgstr "Feste Position" -#: src/badguy/yeti.cpp:370 +#: src/badguy/yeti.cpp:371 msgid "Lives" msgstr "Leben" -#: src/badguy/goldbomb.hpp:49 +#: src/badguy/goldbomb.hpp:50 msgid "Gold Bomb" msgstr "Goldbombe" -#: src/badguy/flyingsnowball.hpp:32 +#: src/badguy/corrupted_granito.hpp:44 +msgid "Corrupted Granito" +msgstr "Korrupter Granito" + +#: src/badguy/mrbomb.cpp:48 +msgid "Classic" +msgstr "Klassisch" + +#: src/badguy/flyingsnowball.hpp:33 msgid "Flying Snowball" msgstr "Fliegender Schneeball" -#: src/badguy/skullyhop.hpp:37 -msgid "Skullyhop" -msgstr "Skullyhop" +#: src/badguy/crusher.cpp:75 +msgid "Ice (normal)" +msgstr "Eis (normal)" + +#: src/badguy/crusher.cpp:76 +msgid "Ice (big)" +msgstr "Eis (groß)" -#: src/badguy/kamikazesnowball.hpp:32 -msgid "Snowshot" -msgstr "Schneeschuss" +#: src/badguy/crusher.cpp:77 +msgid "Rock (normal)" +msgstr "Felsen (normal)" + +#: src/badguy/crusher.cpp:78 +msgid "Rock (big)" +msgstr "Felsen (groß)" + +#: src/badguy/crusher.cpp:79 +msgid "Corrupted (normal)" +msgstr "" + +#: src/badguy/crusher.cpp:80 +msgid "Corrupted (big)" +msgstr "" + +#: src/badguy/crusher.cpp:492 +msgid "Sideways" +msgstr "Seitwärts" -#: src/badguy/kamikazesnowball.hpp:52 +#: src/badguy/kamikazesnowball.hpp:34 +msgid "Kamikaze Snowball" +msgstr "Kamikaze Schneeball" + +#: src/badguy/kamikazesnowball.hpp:64 msgid "Leafshot" msgstr "Blattschuss" -#: src/badguy/flame.hpp:41 +#: src/badguy/fish_swimming.hpp:40 +msgid "Swimming Fish" +msgstr "Schwimmender Fisch" + +#: src/badguy/flame.hpp:47 msgid "Flame" msgstr "Flamme" -#: src/badguy/scrystallo.hpp:30 +#: src/badguy/scrystallo.hpp:31 msgid "Sleeping Crystallo" msgstr "Schlafender Kristallo" -#: src/badguy/poisonivy.hpp:30 -msgid "Spring Leaf" -msgstr "Blattfeder" +#: src/badguy/jumpy.cpp:45 +msgid "Wooden" +msgstr "Holz" + +#: src/badguy/jumpy.cpp:47 +msgid "Metal" +msgstr "Metall" + +#: src/badguy/jumpy.cpp:48 +msgid "Bag" +msgstr "Sack" #: src/badguy/willowisp.hpp:57 msgid "Will o' Wisp" msgstr "Weidenwisp" -#: src/badguy/badguy.hpp:53 +#: src/badguy/fish_jumping.hpp:41 +msgid "Jumping Fish" +msgstr "Springender Fisch" + +#: src/badguy/badguy.hpp:61 msgid "Badguy" msgstr "Gegner" -#: src/badguy/ghostflame.hpp:30 -msgid "Ghost Flame" -msgstr "Geisterflamme" - -#: src/badguy/rcrystallo.hpp:30 +#: src/badguy/rcrystallo.hpp:33 msgid "Roof Crystallo" msgstr "Deckenkristallo" -#: src/badguy/spiky.hpp:30 +#: src/badguy/spiky.hpp:31 msgid "Spiky" msgstr "Spiky" -#: src/badguy/walkingleaf.hpp:30 -msgid "Autumn Leaf" -msgstr "Herbstblatt" +#: src/badguy/walkingleaf.hpp:33 +msgid "Walking Leaf" +msgstr "Laufendes Blatt" -#: src/badguy/owl.cpp:227 +#: src/badguy/root.hpp:39 +msgid "Root" +msgstr "Wurzel" + +#: src/badguy/owl.cpp:241 msgid "Carry" msgstr "Träger" -#: src/badguy/darttrap.hpp:33 +#: src/badguy/darttrap.hpp:35 msgid "Dart Trap" msgstr "Dartfalle" -#: src/badguy/skydive.hpp:38 +#: src/badguy/skydive.hpp:43 msgid "Skydive" msgstr "Himmelsstürmer" -#: src/badguy/yeti.hpp:37 +#: src/badguy/yeti.hpp:38 msgid "Yeti" msgstr "Yeti" -#: src/badguy/mole.hpp:39 +#: src/badguy/snowball.cpp:41 +msgid "Bumpkin" +msgstr "Tölpel" + +#: src/badguy/snowball.cpp:42 +msgid "BSOD" +msgstr "Bluescreen" + +#: src/badguy/mole.hpp:38 msgid "Mole" msgstr "Maulwurf" -#: src/badguy/mrbomb.hpp:42 -msgid "Bomb" +#: src/badguy/corrupted_granito.cpp:176 +msgid "Skullyhop" +msgstr "Skullyhop" + +#: src/badguy/mrbomb.hpp:40 +msgid "Mr. Bomb" msgstr "Bombe" -#: src/badguy/walking_candle.hpp:40 +#: src/badguy/walking_candle.hpp:41 msgid "Walking Candle" msgstr "Wandelnde Kerze" -#: src/badguy/angrystone.hpp:34 +#: src/badguy/angrystone.hpp:39 msgid "Angry Stone" msgstr "Wütender Stein" -#: src/badguy/spidermite.hpp:35 -msgid "Spider" +#: src/badguy/tarantula.cpp:354 +msgid "Spidermite" msgstr "Spinne" +#: src/badguy/tarantula.cpp:374 +msgid "Static" +msgstr "Statisch" + #: src/badguy/ghoul.hpp:30 msgid "Ghoul" msgstr "Ghul" -#: src/badguy/snowman.hpp:28 +#: src/badguy/granito_giant.hpp:32 +msgid "Giant Granito" +msgstr "Riesiger Granito" + +#: src/badguy/snowman.hpp:29 msgid "Snowman" msgstr "Schneemann" -#: src/badguy/stumpy.hpp:35 -msgid "Walking Stump" -msgstr "Wandelnder Baumstumpf" +#: src/badguy/viciousivy.hpp:33 +msgid "Vicious Ivy" +msgstr "Tückischer Efeu" + +#: src/badguy/stalactite.cpp:156 +msgid "ice" +msgstr "Eis" -#: src/badguy/fish.hpp:40 -msgid "Fish" -msgstr "Fisch" +#: src/badguy/stalactite.cpp:157 +msgid "rock" +msgstr "Felsen" -#: src/badguy/dispenser.cpp:445 +#: src/badguy/fish_chasing.hpp:33 +msgid "Chasing Fish" +msgstr "Verfolgender Fisch" + +#: src/badguy/stumpy.hpp:38 +msgid "Stumpy" +msgstr "Stumpfi" + +#: src/badguy/dispenser.cpp:412 msgid "Interval (seconds)" msgstr "Intervall (Sekunden)" -#: src/badguy/dispenser.cpp:446 +#: src/badguy/dispenser.cpp:413 msgid "Random" msgstr "Zufällig" -#: src/badguy/dispenser.cpp:447 data//images/engine/editor/objects.stoi:4 -msgid "Enemies" -msgstr "Gegner" +#: src/badguy/dispenser.cpp:416 +#: src/supertux/menu/editor_objectgroup_menu.cpp:30 +#: src/editor/toolbox_widget.cpp:101 +msgid "Objects" +msgstr "Objekte" -#: src/badguy/dispenser.cpp:448 +#: src/badguy/dispenser.cpp:419 msgid "Limit dispensed badguys" msgstr "Gleichzeitige Anzahl an Gegnern begrenzen" -#: src/badguy/dispenser.cpp:450 +#: src/badguy/dispenser.cpp:421 msgid "Obey Gravity" msgstr "Der Gravitation gehorchen" -#: src/badguy/dispenser.cpp:452 +#: src/badguy/dispenser.cpp:423 msgid "Max concurrent badguys" msgstr "Maximale Anzahl gleichzeitiger Gegner" -#: src/badguy/dispenser.cpp:454 src/supertux/menu/editor_levelset_menu.cpp:60 -msgid "Type" -msgstr "Art" - -#: src/badguy/dispenser.cpp:455 -msgid "dropper" -msgstr "Fallenlasser" +#: src/badguy/dispenser.cpp:435 +msgid "Dropper" +msgstr "Pipette" -#: src/badguy/dispenser.cpp:455 -msgid "rocket launcher" -msgstr "Raketenwerfer" - -#: src/badguy/dispenser.cpp:455 -msgid "cannon" +#: src/badguy/dispenser.cpp:436 +msgid "Cannon" msgstr "Kanone" -#: src/badguy/dispenser.cpp:455 -msgid "invisible" -msgstr "unsichtbar" +#: src/badguy/dispenser.cpp:437 src/worldmap/special_tile.cpp:77 +msgid "Invisible" +msgstr "Unsichtbar" -#: src/badguy/snail.hpp:42 +#: src/badguy/snail.hpp:43 msgid "Snail" msgstr "Schnecke" -#: src/badguy/smartball.hpp:31 -msgid "Smartball" -msgstr "Schlauball" +#: src/badguy/smartball.hpp:32 +msgid "Mrs. Snowball" +msgstr "Frau Schneeball" -#: src/badguy/bouncing_snowball.hpp:32 +#: src/badguy/bouncing_snowball.hpp:39 msgid "Bouncing Snowball" msgstr "Springender Schneeball" -#: src/badguy/iceflame.hpp:33 -msgid "Ice Flame" -msgstr "Eisflamme" +#: src/badguy/granito_big.cpp:52 src/badguy/granito.cpp:263 +msgid "Default" +msgstr "Standard" + +#: src/badguy/granito_big.cpp:53 src/badguy/granito.cpp:264 +msgid "Standing" +msgstr "Stehend" + +#: src/badguy/granito_big.cpp:54 src/badguy/granito.cpp:265 +msgid "Walking" +msgstr "Laufend" -#: src/badguy/dart.hpp:43 +#: src/badguy/mriceblock.cpp:63 +msgid "Laptop" +msgstr "Laptop" + +#: src/badguy/dart.hpp:44 msgid "Dart" msgstr "Dart" +#: src/badguy/granito.cpp:268 +msgid "Sitting" +msgstr "Sitzend" + #: src/supertux/statistics.cpp:54 msgid "Max coins collected:" msgstr "Meiste Münzen gesammelt:" @@ -1749,7 +2304,7 @@ msgstr "Rekordzeit:" msgid "Level target time:" msgstr "Levelzielzeit:" -#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:160 +#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:175 msgid "Best Level Statistics" msgstr "Levelrekorde" @@ -1761,7 +2316,7 @@ msgstr "Du" msgid "Best" msgstr "Rekord" -#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:166 +#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:181 msgid "Coins" msgstr "Münzen" @@ -1769,202 +2324,199 @@ msgstr "Münzen" msgid "Badguys" msgstr "Gegner" -#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:172 +#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:187 msgid "Secrets" msgstr "Verstecke" -#: src/supertux/game_object.hpp:78 +#: src/supertux/game_object.hpp:88 msgid "Unknown object" msgstr "Unbekanntes Objekt" -#: src/supertux/sector.cpp:414 +#: src/supertux/sector.cpp:507 msgid "Press escape to skip" msgstr "Escape drücken zum Überspringen" -#: src/supertux/command_line_arguments.cpp:94 -#, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Aufruf: %s [OPTIONEN] [LEVELDATEI]" +#: src/supertux/command_line_arguments.cpp:92 +#, c++-format +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Verwendung: {} [OPTIONEN] [LEVEL]" -#: src/supertux/command_line_arguments.cpp:95 +#: src/supertux/command_line_arguments.cpp:93 msgid "General Options:" msgstr "Allgemeine Einstellungen:" -#: src/supertux/command_line_arguments.cpp:96 +#: src/supertux/command_line_arguments.cpp:94 msgid " -h, --help Show this help message and quit" msgstr "-h, --help Diese Hilfenachricht anzeigen und beenden" -#: src/supertux/command_line_arguments.cpp:97 +#: src/supertux/command_line_arguments.cpp:95 msgid " -v, --version Show SuperTux version and quit" msgstr "-v, --version SuperTux-Version anzeigen und beenden" -#: src/supertux/command_line_arguments.cpp:98 +#: src/supertux/command_line_arguments.cpp:96 msgid " --verbose Print verbose messages" msgstr " --verbose Mehr Informationen ausgeben" -#: src/supertux/command_line_arguments.cpp:99 +#: src/supertux/command_line_arguments.cpp:97 msgid " --debug Print extra verbose messages" msgstr " --debug Noch mehr Informationen ausgeben" -#: src/supertux/command_line_arguments.cpp:100 +#: src/supertux/command_line_arguments.cpp:98 msgid "" " --print-datadir Print SuperTux's primary data directory." msgstr " --print-datadir SuperTux' primäres Datenverzeichnis ausgeben." -#: src/supertux/command_line_arguments.cpp:101 +#: src/supertux/command_line_arguments.cpp:99 msgid "" " --acknowledgements Print the licenses of libraries used by " "SuperTux." msgstr " --acknowledgements Die Lizenzen der Proprammierbibliotheken, die von SuperTux benutzt werden, ausgeben." -#: src/supertux/command_line_arguments.cpp:103 +#: src/supertux/command_line_arguments.cpp:101 msgid "Video Options:" msgstr "Grafikeinstellungen:" -#: src/supertux/command_line_arguments.cpp:104 +#: src/supertux/command_line_arguments.cpp:102 msgid " -f, --fullscreen Run in fullscreen mode" msgstr "-f, --fullscreen Im Vollbildmodus ausführen" -#: src/supertux/command_line_arguments.cpp:105 +#: src/supertux/command_line_arguments.cpp:103 msgid " -w, --window Run in window mode" msgstr "-w, --window Im Fenstermodus ausführen" -#: src/supertux/command_line_arguments.cpp:106 +#: src/supertux/command_line_arguments.cpp:104 msgid " -g, --geometry WIDTHxHEIGHT Run SuperTux in given resolution" msgstr "-g, --geometry BREITExHÖHE In der angegebenen Auflösung ausführen" -#: src/supertux/command_line_arguments.cpp:107 +#: src/supertux/command_line_arguments.cpp:105 msgid " -a, --aspect WIDTH:HEIGHT Run SuperTux with given aspect ratio" msgstr "-a, --aspect BREITE:HÖHE Im angegebenen Seitenverhältnis ausführen" -#: src/supertux/command_line_arguments.cpp:108 +#: src/supertux/command_line_arguments.cpp:106 msgid " -d, --default Reset video settings to default values" msgstr "-d, --default Videoeinstellungen auf Standardwerte zurücksetzen" -#: src/supertux/command_line_arguments.cpp:109 +#: src/supertux/command_line_arguments.cpp:107 msgid " --renderer RENDERER Use sdl, opengl, or auto to render" msgstr "--renderer RENDERER Renderer auswählen, verfügbar sind »sdl«, »opengl« oder »auto«" -#: src/supertux/command_line_arguments.cpp:111 +#: src/supertux/command_line_arguments.cpp:109 msgid "Audio Options:" msgstr "Audioeinstellungen:" -#: src/supertux/command_line_arguments.cpp:112 +#: src/supertux/command_line_arguments.cpp:110 msgid " --disable-sound Disable sound effects" msgstr "--disable-sound Toneffekte deaktivieren" -#: src/supertux/command_line_arguments.cpp:113 +#: src/supertux/command_line_arguments.cpp:111 msgid " --disable-music Disable music" msgstr "--disable-music Musik deaktivieren" -#: src/supertux/command_line_arguments.cpp:115 +#: src/supertux/command_line_arguments.cpp:113 msgid "Game Options:" msgstr "Spieleinstellungen:" -#: src/supertux/command_line_arguments.cpp:116 +#: src/supertux/command_line_arguments.cpp:114 msgid " --edit-level Open given level in editor" msgstr "--edit-level Angegebenes Level im Editor öffnen" -#: src/supertux/command_line_arguments.cpp:117 +#: src/supertux/command_line_arguments.cpp:115 msgid " --resave Loads given level and saves it" msgstr " --resave Lädt gegebenes Level und speichert es" -#: src/supertux/command_line_arguments.cpp:118 +#: src/supertux/command_line_arguments.cpp:116 msgid " --show-fps Display framerate in levels" msgstr " --show-fps Bildwechselfrequenz in Leveln anzeigen" -#: src/supertux/command_line_arguments.cpp:119 +#: src/supertux/command_line_arguments.cpp:117 msgid " --no-show-fps Do not display framerate in levels" msgstr " --no-show-fps Bildwechselfrequenz in Leveln nicht anzeigen" -#: src/supertux/command_line_arguments.cpp:120 +#: src/supertux/command_line_arguments.cpp:118 msgid " --show-pos Display player's current position" msgstr " --show-pos Die aktuelle Spielerposition zeigen" -#: src/supertux/command_line_arguments.cpp:121 +#: src/supertux/command_line_arguments.cpp:119 msgid " --no-show-pos Do not display player's position" msgstr " --no-show-pos Die aktuelle Spielerposition nicht zeigen" -#: src/supertux/command_line_arguments.cpp:122 +#: src/supertux/command_line_arguments.cpp:120 msgid " --developer Switch on developer feature" msgstr "--developer Entwicklerfunktionen einschalten" -#: src/supertux/command_line_arguments.cpp:123 +#: src/supertux/command_line_arguments.cpp:121 msgid " -s, --debug-scripts Enable script debugger." msgstr "-s, --debug-scripts Skriptdebugger aktivieren." -#: src/supertux/command_line_arguments.cpp:124 +#: src/supertux/command_line_arguments.cpp:122 msgid "" " --spawn-pos X,Y Where in the level to spawn Tux. Only used if" " level is specified." msgstr " --spawn-pos X,Y Startpunkt von Tux im Level. Wird nur benutzt, wenn Level angegeben wurde." -#: src/supertux/command_line_arguments.cpp:125 +#: src/supertux/command_line_arguments.cpp:123 msgid " --sector SECTOR Spawn Tux in SECTOR\n" msgstr " --sector SEKTOR Tux in SEKTOR spawnen\n" -#: src/supertux/command_line_arguments.cpp:126 +#: src/supertux/command_line_arguments.cpp:124 msgid " --spawnpoint SPAWNPOINT Spawn Tux at SPAWNPOINT\n" msgstr " --spawnpoint SPAWNPOINT Tux bei SPAWNPOINT spawnen\n" -#: src/supertux/command_line_arguments.cpp:128 -msgid "Demo Recording Options:" -msgstr "Wiederholungsaufnahmeoptionen:" - -#: src/supertux/command_line_arguments.cpp:129 -msgid " --record-demo FILE LEVEL Record a demo to FILE" -msgstr " --record-demo DATEI LEVEL Eine Wiederholung in DATEI aufnehmen" - -#: src/supertux/command_line_arguments.cpp:130 -msgid " --play-demo FILE LEVEL Play a recorded demo" -msgstr " --play-demo DATEI LEVEL Eine aufgenommene Wiederholung abspielen" - -#: src/supertux/command_line_arguments.cpp:132 +#: src/supertux/command_line_arguments.cpp:126 msgid "Directory Options:" msgstr "Verzeichnisoptionen:" -#: src/supertux/command_line_arguments.cpp:133 +#: src/supertux/command_line_arguments.cpp:127 msgid "" " --datadir DIR Set the directory for the games datafiles" msgstr " --datadir VERZEICHNIS Verzeichnis für die Spieldatendateien festlegen" -#: src/supertux/command_line_arguments.cpp:134 +#: src/supertux/command_line_arguments.cpp:128 msgid "" " --userdir DIR Set the directory for user data (savegames, " "etc.)" msgstr "--userdir VERZEICHNIS Verzeichnis für Benutzerdaten festlegen (gespeicherte Spiele, usw.)" -#: src/supertux/command_line_arguments.cpp:136 +#: src/supertux/command_line_arguments.cpp:130 msgid "Add-On Options:" msgstr "Add-On-Einstellungen:" -#: src/supertux/command_line_arguments.cpp:137 +#: src/supertux/command_line_arguments.cpp:131 msgid " --repository-url URL Set the URL to the Add-On repository" msgstr " --repository-url URL Die URL zur Add-on-Repository festlegen" -#: src/supertux/command_line_arguments.cpp:139 +#: src/supertux/command_line_arguments.cpp:133 msgid "Environment variables:" msgstr "Umgebungsvariablen:" -#: src/supertux/command_line_arguments.cpp:140 +#: src/supertux/command_line_arguments.cpp:134 msgid "" " SUPERTUX2_USER_DIR Directory for user data (savegames, etc.)" msgstr "´SUPERTUX2_USER_DIR Verzeichnis für Benutzerdaten (gespeicherte Spiele, usw.)" -#: src/supertux/command_line_arguments.cpp:141 +#: src/supertux/command_line_arguments.cpp:135 msgid " SUPERTUX2_DATA_DIR Directory for the games datafiles" msgstr " SUPERTUX2_DATA_DIR Verzeichnis für Spieldatendateien" -#: src/supertux/title_screen.cpp:44 +#: src/supertux/title_screen.cpp:272 msgid "Copyright" msgstr "Copyright" -#: src/supertux/title_screen.cpp:45 +#: src/supertux/title_screen.cpp:273 msgid "" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to\n" "redistribute it under certain conditions; see the license file for details.\n" msgstr "Dieses Spiel kommt mit KEINERLEI GARANTIE. Dies ist freie Software und du bist herzlich eingeladen,\nsie unter bestimmten Bedingungen weiterzuverbreiten; für Details lies die Lizenzdatei.\n" +#: src/supertux/game_object.cpp:114 +msgid "Version" +msgstr "Version" + +#: src/supertux/game_object.cpp:129 +#: src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Type" +msgstr "Art" + #: src/supertux/menu/integrations_menu.cpp:49 msgid "Integrations" msgstr "Integrationen" @@ -1973,60 +2525,146 @@ msgstr "Integrationen" msgid "Do not share level names when editing" msgstr "Levelnamen bei Bearbeitung nicht teilen" +#: src/supertux/menu/integrations_menu.cpp:52 +msgid "" +"Enable this if you want to work on secret levels and don't want the names to" +" be spoiled" +msgstr "Aktiviere dies, wenn du an geheimen Levels arbeitest und nicht möchtest, dass die Namen für alle sichtbar sind" + #: src/supertux/menu/integrations_menu.cpp:54 msgid "Enable Discord integration" msgstr "Discord-Integration aktivieren" +#: src/supertux/menu/integrations_menu.cpp:55 +msgid "" +"Sends information to your Discord application about what you're doing in the" +" game." +msgstr "Sendet Informationen an Discord darüber, was du im Spiel machst." + #: src/supertux/menu/integrations_menu.cpp:57 msgid "Discord (disabled; not compiled)" msgstr "Discord (deaktiviert; nicht integriert)" -#: src/supertux/menu/contrib_menu.cpp:80 +#: src/supertux/menu/editor_converters_menu.cpp:61 +#: src/supertux/menu/editor_menu.cpp:85 +msgid "Convert Tiles" +msgstr "Kacheln konvertieren" + +#: src/supertux/menu/editor_converters_menu.cpp:64 +msgid "Select Tile Conversion File" +msgstr "Kachel-Konvertierungsdatei auswählen" + +#: src/supertux/menu/editor_converters_menu.cpp:72 +#, c++-format +msgid "By: {}" +msgstr "Von: {}" + +#: src/supertux/menu/editor_converters_menu.cpp:75 +msgid "Convert Tiles By File" +msgstr "Kacheln mithilfe einer Datei konvertieren" + +#: src/supertux/menu/editor_converters_menu.cpp:76 +msgid "Convert all tiles in the current level by a file, specified above." +msgstr "Alle Kacheln des aktuellen Levels mithilfe der oben angegebenen Datei konvertieren" + +#: src/supertux/menu/editor_converters_menu.cpp:89 +msgid "No tile conversion file selected." +msgstr "Keine Kachel-Konvertierungsdatei ausgewählt." + +#: src/supertux/menu/editor_converters_menu.cpp:93 +msgid "" +"This will convert all tiles in the level. Proceed?\n" +"\n" +"Note: This should not be ran more than once on a level.\n" +"Creating a separate copy of the level is highly recommended." +msgstr "Alle Kacheln des aktuellen Levels werden konvertiert. Fortfahren?\n\nHinweis: Diese Aktion sollte nicht öfter als einmal pro Level durchgeführt werden.\nEs wird dringend geraten, eine Sicherungskopie des Levels zu erstellen." + +#: src/supertux/menu/video_system_menu.cpp:36 +msgid "Select Video System" +msgstr "Videosystem auswählen" + +#: src/supertux/menu/video_system_menu.cpp:37 +#, c++-format +msgid "Used video system: {}" +msgstr "Verwendetes Videosystem: {}" + +#: src/supertux/menu/video_system_menu.cpp:54 +msgid "Restart game for the changes to take effect" +msgstr "Starte das Spiel neu, um die Änderungen anzuwenden" + +#: src/supertux/menu/contrib_menu.cpp:68 #: src/supertux/menu/world_set_menu.cpp:31 msgid "Contrib Levels" msgstr "Zusatzlevel" -#: src/supertux/menu/debug_menu.cpp:32 +#: src/supertux/menu/contrib_menu.cpp:98 +#: src/supertux/menu/contrib_menu.cpp:112 +msgid "Official Contrib Levels" +msgstr "Offiziell beigesteuerte Levels" + +#: src/supertux/menu/contrib_menu.cpp:99 +#: src/supertux/menu/contrib_menu.cpp:118 +msgid "Community Contrib Levels" +msgstr "Community-beigesteuerte Levels" + +#: src/supertux/menu/contrib_menu.cpp:100 +#: src/supertux/menu/contrib_menu.cpp:124 +msgid "User Contrib Levels" +msgstr "Benutzer-beigesteuerte Levels" + +#: src/supertux/menu/contrib_menu.cpp:113 +msgid "How is this possible? There are no Official Contrib Levels!" +msgstr "Wie ist das möglich? Es gibt keine offiziell beigesteuerten Levels!" + +#: src/supertux/menu/contrib_menu.cpp:119 +msgid "No Community Contrib Levels yet. Download them from the Add-ons Menu." +msgstr "Es gibt hier noch keine von der Community erstellten Levels. Lade sie aus dem Add-ons-Menü herunter." + +#: src/supertux/menu/contrib_menu.cpp:125 +msgid "No User Contrib Levels yet. Create some with the Level Editor." +msgstr "Es gibt hier noch keine vom Benutzer erstellten Levels. Erstelle ein paar mit dem Level-Editor." + +#: src/supertux/menu/debug_menu.cpp:34 msgid "Debug" msgstr "Debug" -#: src/supertux/menu/debug_menu.cpp:56 +#: src/supertux/menu/debug_menu.cpp:58 msgid "Game Speed" msgstr "Spielgeschwindigkeit" -#: src/supertux/menu/debug_menu.cpp:57 +#: src/supertux/menu/debug_menu.cpp:59 msgid "Adjust Game Speed" msgstr "Spielgeschwindigkeit anpassen" -#: src/supertux/menu/debug_menu.cpp:63 +#: src/supertux/menu/debug_menu.cpp:65 msgid "Show Collision Rects" msgstr "Kollisionsrechtecke anzeigen" -#: src/supertux/menu/debug_menu.cpp:64 +#: src/supertux/menu/debug_menu.cpp:66 msgid "Show Worldmap Path" msgstr "Pfade auf der Weltkarte darstellen" -#: src/supertux/menu/debug_menu.cpp:65 +#: src/supertux/menu/debug_menu.cpp:67 msgid "Show Controller" msgstr "Controller zeigen" -#: src/supertux/menu/debug_menu.cpp:66 +#: src/supertux/menu/debug_menu.cpp:68 msgid "Show Framerate" msgstr "Framerate anzeigen" -#: src/supertux/menu/debug_menu.cpp:67 +#: src/supertux/menu/debug_menu.cpp:69 msgid "Draw Redundant Frames" msgstr "Redundante Frames zeichnen" -#: src/supertux/menu/debug_menu.cpp:68 +#: src/supertux/menu/debug_menu.cpp:70 msgid "Show Player Position" msgstr "Position des Spielers anzeigen" -#: src/supertux/menu/debug_menu.cpp:69 +#: src/supertux/menu/debug_menu.cpp:71 msgid "Use Bitmap Fonts" msgstr "Bitmap-Fonts verwenden" -#: src/supertux/menu/debug_menu.cpp:72 +#: src/supertux/menu/debug_menu.cpp:74 msgid "Dump Texture Cache" msgstr "Texturencache schreiben" @@ -2040,10 +2678,37 @@ msgid "File name" msgstr "Dateiname" #: src/supertux/menu/particle_editor_save_as.cpp:38 -#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:766 +#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:767 msgid "Save" msgstr "Speichern" +#: src/supertux/menu/multiplayer_menu.cpp:27 +#: src/supertux/menu/multiplayer_players_menu.cpp:34 +msgid "Multiplayer" +msgstr "Mehrspieler" + +#: src/supertux/menu/multiplayer_menu.cpp:30 +msgid "Auto-manage Players" +msgstr "Spieler automatisch verwalten" + +#: src/supertux/menu/multiplayer_menu.cpp:31 +msgid "" +"Automatically add and remove players when controllers are plugged or " +"unplugged" +msgstr "Spieler werden automatisch hinzugefügt und entfernt, wenn Controller verbunden oder getrennt werden." + +#: src/supertux/menu/multiplayer_menu.cpp:33 +msgid "Allow Multibind" +msgstr "Multibind erlauben" + +#: src/supertux/menu/multiplayer_menu.cpp:34 +msgid "Allow binding multiple joysticks to a single player" +msgstr "Erlaubt es, dass ein Spieler von mehreren Joysticks gesteuert wird" + +#: src/supertux/menu/multiplayer_menu.cpp:36 +msgid "Manage Players" +msgstr "Spieler verwalten" + #: src/supertux/menu/editor_sectors_menu.cpp:31 msgid "Choose Sector" msgstr "Sektor auswählen" @@ -2060,50 +2725,98 @@ msgstr "Sektor erstellen" msgid "Delete Sector" msgstr "Sektor löschen" -#: src/supertux/menu/editor_sectors_menu.cpp:93 +#: src/supertux/menu/editor_sectors_menu.cpp:92 msgid "Each level must have at least one sector." msgstr "Jedes Level muss mindestens einen Sektor haben." -#: src/supertux/menu/editor_sectors_menu.cpp:98 +#: src/supertux/menu/editor_sectors_menu.cpp:97 msgid "Do you really want to delete this sector?" msgstr "Möchtest du diesen Sektor wirklich löschen?" -#: src/supertux/menu/editor_sectors_menu.cpp:101 +#: src/supertux/menu/editor_sectors_menu.cpp:100 msgid "Delete sector" msgstr "Sektor löschen" -#: src/supertux/menu/editor_objectgroup_menu.cpp:30 -#: src/editor/toolbox_widget.cpp:93 -msgid "Objects" -msgstr "Objekte" +#: src/supertux/menu/custom_menu_menu.cpp:49 +#: src/supertux/menu/options_menu.cpp:191 +msgid "Menu Customization" +msgstr "Menü anpassen" + +#: src/supertux/menu/custom_menu_menu.cpp:51 +msgid "Menu Back Color" +msgstr "Menü-Hintergrundfarbe" + +#: src/supertux/menu/custom_menu_menu.cpp:52 +msgid "Menu Front Color" +msgstr "Menü-Vordergrundfarbe" -#: src/supertux/menu/editor_level_select_menu.cpp:62 +#: src/supertux/menu/custom_menu_menu.cpp:53 +msgid "Menu Help Back Color" +msgstr "Menühilfe-Hintergrundfarbe" + +#: src/supertux/menu/custom_menu_menu.cpp:54 +msgid "Menu Help Front Color" +msgstr "Menühilfe-Vordergrundfarbe" + +#: src/supertux/menu/custom_menu_menu.cpp:55 +msgid "Label Text Color" +msgstr "Beschriftungstext-Farbe" + +#: src/supertux/menu/custom_menu_menu.cpp:56 +msgid "Active Text Color" +msgstr "Aktive Textfarbe" + +#: src/supertux/menu/custom_menu_menu.cpp:57 +msgid "Divider Line Color" +msgstr "Trennstrichfarbe" + +#: src/supertux/menu/custom_menu_menu.cpp:58 +msgid "Menu Roundness" +msgstr "Menürundung" + +#: src/supertux/menu/custom_menu_menu.cpp:60 +msgid "Editor Interface Color" +msgstr "Farbe der Editor-Benutzeroberfläche" + +#: src/supertux/menu/custom_menu_menu.cpp:61 +msgid "Editor Hover Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:62 +msgid "Editor Grab Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:64 +msgid "Reset to defaults" +msgstr "Auf Standard zurücksetzen" + +#: src/supertux/menu/editor_level_select_menu.cpp:72 msgid "Empty World" msgstr "Leere Welt" -#: src/supertux/menu/editor_level_select_menu.cpp:77 +#: src/supertux/menu/editor_level_select_menu.cpp:87 msgid "Create Level" msgstr "Level erstellen" -#: src/supertux/menu/editor_level_select_menu.cpp:81 +#: src/supertux/menu/editor_level_select_menu.cpp:91 msgid "Edit Worldmap" msgstr "Weltkarte bearbeiten" -#: src/supertux/menu/editor_level_select_menu.cpp:83 +#: src/supertux/menu/editor_level_select_menu.cpp:93 msgid "Create Worldmap" msgstr "Weltkarte erstellen" -#: src/supertux/menu/editor_level_select_menu.cpp:85 -#: src/supertux/menu/editor_delete_level_menu.cpp:33 +#: src/supertux/menu/editor_level_select_menu.cpp:95 +#: src/supertux/menu/editor_delete_level_menu.cpp:55 msgid "Delete level" msgstr "Level speichern" -#: src/supertux/menu/editor_level_select_menu.cpp:87 -#: src/supertux/menu/editor_levelset_menu.cpp:56 +#: src/supertux/menu/editor_level_select_menu.cpp:97 +#: src/supertux/menu/editor_levelset_menu.cpp:50 msgid "World Settings" msgstr "Welteinstellungen" -#: src/supertux/menu/editor_level_select_menu.cpp:127 +#: src/supertux/menu/editor_level_select_menu.cpp:141 msgid "" "Share this worldmap under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -2111,7 +2824,7 @@ msgid "" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." msgstr "Diese Weltkarte wird unter der Lizenz CC-BY-SA 4.0 International (vorgeschlagene Lizenz) geteilt.\nDiese Lizenz erlaubt Modifikationen und Weiterverbreitung durch Dritte.\nWenn du dieser Lizenz nicht zustimmst, ändere sie in den Weltkarteneigenschaften.\nHAFTUNGSAUSSCHLUSS: Die SuperTux-Autoren übernehmen keine Verantwortung für deine Wahl der Lizenz." -#: src/supertux/menu/editor_level_select_menu.cpp:134 +#: src/supertux/menu/editor_level_select_menu.cpp:148 msgid "" "Share this level under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -2119,495 +2832,815 @@ msgid "" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." msgstr "Dieser Level wird unter der Lizenz CC-BY-SA 4.0 International (vorgeschlagene Lizenz) geteilt.\nDiese Lizenz erlaubt Modifikationen und Weiterverbreitung durch Dritte.\nWenn du dieser Lizenz nicht zustimmst, ändere sie in den Leveleigenschaften.\nHAFTUNGSAUSSCHLUSS: Die SuperTux-Autoren übernehmen keine Verantwortung für deine Wahl der Lizenz." -#: src/supertux/menu/editor_level_select_menu.cpp:162 +#: src/supertux/menu/editor_level_select_menu.cpp:179 msgid "" "An auto-save recovery file was found. Would you like to restore the recovery\n" "file and resume where you were before the editor crashed?" msgstr "Eine Autosicherungsdatei wurde gefunden. Möchtest du die Widerherstellungsdatei\nwiederherstellen und da fortfahren, wo du warst, bevor der Editor abgestürzt ist?" -#: src/supertux/menu/editor_level_select_menu.cpp:169 +#: src/supertux/menu/editor_level_select_menu.cpp:186 msgid "This will delete the auto-save file. Are you sure?" msgstr "Dies wird die Autosicherungsdatei löschen. Bist du dir sicher?" -#: src/supertux/menu/worldmap_cheat_menu.cpp:34 -#: src/supertux/menu/cheat_menu.cpp:30 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:35 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:52 +#: src/supertux/menu/cheat_apply_menu.cpp:33 +#: src/supertux/menu/cheat_apply_menu.cpp:51 +msgid "Apply cheat to player" +msgstr "Cheat auf Player anwenden" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:60 +#: src/supertux/menu/multiplayer_players_menu.cpp:39 +#: src/supertux/menu/keyboard_menu.cpp:63 +#: src/supertux/menu/cheat_apply_menu.cpp:39 +#: src/supertux/menu/cheat_apply_menu.cpp:59 +#: src/supertux/menu/multiplayer_player_menu.cpp:37 +#, c++-format +msgid "Player {}" +msgstr "Spieler {}" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:57 +#: src/supertux/menu/cheat_apply_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:56 +msgid "All Players" +msgstr "Alle Spieler" + +#: src/supertux/menu/worldmap_cheat_menu.cpp:36 +#: src/supertux/menu/cheat_menu.cpp:31 msgid "Cheats" msgstr "Cheats" -#: src/supertux/menu/worldmap_cheat_menu.cpp:36 -#: src/supertux/menu/cheat_menu.cpp:32 +#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:33 msgid "Bonus: Grow" msgstr "Bonus: Groß" -#: src/supertux/menu/worldmap_cheat_menu.cpp:37 +#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:34 msgid "Bonus: Fire" msgstr "Bonus: Feuer" -#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/cheat_menu.cpp:35 msgid "Bonus: Ice" msgstr "Bonus: Eis" -#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/cheat_menu.cpp:36 msgid "Bonus: Air" msgstr "Bonus: Luft" -#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:42 +#: src/supertux/menu/cheat_menu.cpp:37 msgid "Bonus: Earth" msgstr "Bonus: Erde" -#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/worldmap_cheat_menu.cpp:43 msgid "Bonus: None" msgstr "Bonus: Kein" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:51 msgid "Leave Ghost Mode" msgstr "Geistmodus deaktivieren" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:50 msgid "Activate Ghost Mode" msgstr "Geistmodus aktivieren" -#: src/supertux/menu/worldmap_cheat_menu.cpp:46 -#: src/supertux/menu/cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:48 +#: src/supertux/menu/cheat_menu.cpp:41 msgid "Finish Level" msgstr "Level abschließen" -#: src/supertux/menu/worldmap_cheat_menu.cpp:47 +#: src/supertux/menu/worldmap_cheat_menu.cpp:49 msgid "Reset Level" msgstr "Level neu starten" -#: src/supertux/menu/worldmap_cheat_menu.cpp:49 +#: src/supertux/menu/worldmap_cheat_menu.cpp:51 msgid "Finish Worldmap" msgstr "Weltkarte fertigstellen" -#: src/supertux/menu/worldmap_cheat_menu.cpp:50 +#: src/supertux/menu/worldmap_cheat_menu.cpp:52 msgid "Reset Worldmap" msgstr "Weltkarte zurücksetzen" -#: src/supertux/menu/worldmap_cheat_menu.cpp:52 +#: src/supertux/menu/worldmap_cheat_menu.cpp:54 msgid "Go to level" msgstr "Zu Level gehen" -#: src/supertux/menu/worldmap_cheat_menu.cpp:53 +#: src/supertux/menu/worldmap_cheat_menu.cpp:55 msgid "Go to main spawnpoint" msgstr "Zum Hauptstartpunkt gehen" -#: src/supertux/menu/worldmap_cheat_menu.cpp:145 +#: src/supertux/menu/worldmap_cheat_menu.cpp:188 msgid "Select level" msgstr "Level wählen" #: src/supertux/menu/editor_save_as.cpp:33 -#: src/supertux/menu/editor_menu.cpp:49 +#: src/supertux/menu/editor_menu.cpp:63 msgid "Save Level as" msgstr "Level speichern als" #: src/supertux/menu/editor_save_as.cpp:33 -#: src/supertux/menu/editor_menu.cpp:50 +#: src/supertux/menu/editor_menu.cpp:64 msgid "Save Copy" msgstr "Kopie speichern" -#: src/supertux/menu/editor_levelset_select_menu.cpp:72 +#: src/supertux/menu/editor_levelset_select_menu.cpp:71 msgid "Choose World" msgstr "Welt wählen" -#: src/supertux/menu/editor_levelset_select_menu.cpp:100 -#, c-format -msgid "%d level" -msgid_plural "%d levels" -msgstr[0] "%d Level" -msgstr[1] "%d Level" +#: src/supertux/menu/editor_levelset_select_menu.cpp:99 +#, c++-format +msgid "{} level" +msgid_plural "{} levels" +msgstr[0] "{} Level" +msgstr[1] "{} Levels" -#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_levelset_select_menu.cpp:112 msgid "Create World" msgstr "Welt erstellen" -#: src/supertux/menu/options_menu.cpp:98 src/supertux/menu/main_menu.cpp:64 -#: src/supertux/menu/game_menu.cpp:61 src/supertux/menu/worldmap_menu.cpp:31 -msgid "Options" -msgstr "Optionen" - -#: src/supertux/menu/options_menu.cpp:104 -#: src/supertux/menu/options_menu.cpp:142 -#: src/supertux/menu/options_menu.cpp:455 -#: src/supertux/menu/options_menu.cpp:476 src/editor/object_settings.cpp:119 -msgid "auto" -msgstr "auto" - -#: src/supertux/menu/options_menu.cpp:221 -msgid "Desktop" -msgstr "Desktop" - -#: src/supertux/menu/options_menu.cpp:251 -msgid "on" -msgstr "an" - -#: src/supertux/menu/options_menu.cpp:252 -msgid "off" -msgstr "aus" +#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:41 +msgid "Delete World" +msgstr "Welt löschen" -#: src/supertux/menu/options_menu.cpp:253 -msgid "adaptive" -msgstr "adaptiv" +#: src/supertux/menu/options_menu.cpp:72 +#: src/supertux/menu/options_select_menu.cpp:35 +msgid "Locale" +msgstr "Sprache" -#: src/supertux/menu/options_menu.cpp:347 +#: src/supertux/menu/options_menu.cpp:76 msgid "Select Language" msgstr "Sprache auswählen" -#: src/supertux/menu/options_menu.cpp:348 +#: src/supertux/menu/options_menu.cpp:77 msgid "Select a different language to display text in" msgstr "Wähle eine andere Sprache zur Anzeige des Textes aus" -#: src/supertux/menu/options_menu.cpp:350 +#: src/supertux/menu/options_menu.cpp:79 msgid "Language Packs" msgstr "Sprachpakete" -#: src/supertux/menu/options_menu.cpp:351 +#: src/supertux/menu/options_menu.cpp:80 msgid "Language packs contain up-to-date translations" msgstr "Sprachpakete enthalten aktuelle Übersetzungen" -#: src/supertux/menu/options_menu.cpp:353 -#: src/supertux/menu/profile_menu.cpp:34 -msgid "Select Profile" -msgstr "Profil auswählen" - -#: src/supertux/menu/options_menu.cpp:354 -msgid "Select a profile to play with" -msgstr "Wähle ein Profil zum Spielen aus" +#: src/supertux/menu/options_menu.cpp:88 +#: src/supertux/menu/options_select_menu.cpp:37 +msgid "Video" +msgstr "Video" -#: src/supertux/menu/options_menu.cpp:358 +#: src/supertux/menu/options_menu.cpp:91 msgid "Window Resizable" msgstr "Größe des Fensters veränderbar" -#: src/supertux/menu/options_menu.cpp:359 +#: src/supertux/menu/options_menu.cpp:92 msgid "Allow window resizing, might require a restart to take effect" msgstr "Ermöglicht es, die Fenstergröße zu verändern, möglicherweise ist ein Neustart erforderlich" -#: src/supertux/menu/options_menu.cpp:361 -msgid "Window Resolution" -msgstr "Fensterauflösung" - -#: src/supertux/menu/options_menu.cpp:362 -msgid "Resize the window to the given size" -msgstr "Die Größe des Fensters auf die angegebene Größe ändern" - -#: src/supertux/menu/options_menu.cpp:364 +#: src/supertux/menu/options_menu.cpp:96 msgid "Fullscreen" msgstr "Vollbild" -#: src/supertux/menu/options_menu.cpp:365 +#: src/supertux/menu/options_menu.cpp:97 msgid "Fill the entire screen" msgstr "Im Vollbildmodus spielen" -#: src/supertux/menu/options_menu.cpp:367 -msgid "Fullscreen Resolution" -msgstr "Vollbildauflösung" - -#: src/supertux/menu/options_menu.cpp:368 -msgid "" -"Determine the resolution used in fullscreen mode (you must toggle fullscreen" -" to complete the change)" -msgstr "Auflösung, die im Vollbildmodus verwendet wird. Änderung wird beim Wechsel in den Vollbildmodus wirksam" - -#: src/supertux/menu/options_menu.cpp:373 +#: src/supertux/menu/options_menu.cpp:104 msgid "Fit to browser" msgstr "An Browser anpassen" -#: src/supertux/menu/options_menu.cpp:374 +#: src/supertux/menu/options_menu.cpp:105 msgid "Fit the resolution to the size of your browser" msgstr "Die Auflösung an das Browserfenster anpassen" -#: src/supertux/menu/options_menu.cpp:378 -msgid "Magnification" -msgstr "Skalierung" - -#: src/supertux/menu/options_menu.cpp:379 -msgid "Change the magnification of the game area" -msgstr "Skalierung des Spielbereichs ändern" - -#: src/supertux/menu/options_menu.cpp:381 -msgid "VSync" -msgstr "VSync" +#: src/supertux/menu/options_menu.cpp:116 +msgid "Change Video System" +msgstr "Videosystem ändern" -#: src/supertux/menu/options_menu.cpp:382 -msgid "Set the VSync mode" -msgstr "VSync-Modus einstellen" +#: src/supertux/menu/options_menu.cpp:117 +msgid "Change video system used to render graphics" +msgstr "Das Videosystem zur Darstellung von Grafiken ändern" -#: src/supertux/menu/options_menu.cpp:385 -msgid "Aspect Ratio" -msgstr "Seitenverhältnis" +#: src/supertux/menu/options_menu.cpp:124 +#: src/supertux/menu/options_select_menu.cpp:38 +msgid "Audio" +msgstr "Audio" -#: src/supertux/menu/options_menu.cpp:386 -msgid "Adjust the aspect ratio" -msgstr "Seitenverhältnis anpassen" - -#: src/supertux/menu/options_menu.cpp:392 +#: src/supertux/menu/options_menu.cpp:129 msgid "Disable all sound effects" msgstr "Alle Toneffekte deaktivieren" -#: src/supertux/menu/options_menu.cpp:394 +#: src/supertux/menu/options_menu.cpp:131 msgid "Disable all music" msgstr "Sämtliche Musik deaktivieren" -#: src/supertux/menu/options_menu.cpp:396 -msgid "Sound Volume" -msgstr "Soundlautstärke" - -#: src/supertux/menu/options_menu.cpp:397 -msgid "Adjust sound volume" -msgstr "Soundlautstärke anpassen" - -#: src/supertux/menu/options_menu.cpp:399 -msgid "Music Volume" -msgstr "Musiklautstärke" - -#: src/supertux/menu/options_menu.cpp:400 -msgid "Adjust music volume" -msgstr "Musiklautstärke anpassen" - -#: src/supertux/menu/options_menu.cpp:404 +#: src/supertux/menu/options_menu.cpp:138 msgid "Sound (disabled)" msgstr "Ton (deaktiviert)" -#: src/supertux/menu/options_menu.cpp:405 +#: src/supertux/menu/options_menu.cpp:139 msgid "Music (disabled)" msgstr "Musik (deaktiviert)" -#: src/supertux/menu/options_menu.cpp:408 -#: src/supertux/menu/keyboard_menu.cpp:30 +#: src/supertux/menu/options_menu.cpp:147 +#: src/supertux/menu/options_select_menu.cpp:39 +msgid "Controls" +msgstr "Steuerung" + +#: src/supertux/menu/options_menu.cpp:151 +msgid "Enable Rumbling Controllers" +msgstr "Vibrierende Controller aktivieren" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "Enable vibrating the game controllers." +msgstr "Aktiviert, dass die Game-Controller vibrieren" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "This feature is currently only used in the multiplayer options menu." +msgstr "Diese Funktion wird derzeit nur in den Multiplayer-Optionen verwendet." + +#: src/supertux/menu/options_menu.cpp:154 +#: src/supertux/menu/keyboard_menu.cpp:34 msgid "Setup Keyboard" msgstr "Tastatureinrichtung" -#: src/supertux/menu/options_menu.cpp:409 +#: src/supertux/menu/options_menu.cpp:155 msgid "Configure key-action mappings" msgstr "Tastenbelegung der Tastatur konfigurieren" -#: src/supertux/menu/options_menu.cpp:412 -#: src/supertux/menu/joystick_menu.cpp:52 +#: src/supertux/menu/options_menu.cpp:158 +#: src/supertux/menu/joystick_menu.cpp:54 msgid "Setup Joystick" msgstr "Joystickeinrichtung" -#: src/supertux/menu/options_menu.cpp:413 +#: src/supertux/menu/options_menu.cpp:159 msgid "Configure joystick control-action mappings" msgstr "Tastenbelegung des Joysticks konfigurieren" -#: src/supertux/menu/options_menu.cpp:417 -msgid "On-screen controls" -msgstr "Bildschirmsteuerung" +#: src/supertux/menu/options_menu.cpp:167 +#: src/supertux/menu/options_select_menu.cpp:40 +msgid "Extras" +msgstr "Extras" + +#: src/supertux/menu/options_menu.cpp:170 +#: src/supertux/menu/profile_menu.cpp:56 +msgid "Select Profile" +msgstr "Profil auswählen" + +#: src/supertux/menu/options_menu.cpp:171 +msgid "Select a profile to play with" +msgstr "Wähle ein Profil zum Spielen aus" + +#: src/supertux/menu/options_menu.cpp:174 +msgid "Multiplayer settings" +msgstr "Multiplayer-Einstellungen" -#: src/supertux/menu/options_menu.cpp:418 -msgid "Toggle on-screen controls for mobile devices" -msgstr "Bildschirmsteuerelemente für mobile Geräte umschalten" +#: src/supertux/menu/options_menu.cpp:175 +msgid "Configure settings specific to multiplayer" +msgstr "Einstellungen, die speziell für Multiplayer sind, bearbeiten" -#: src/supertux/menu/options_menu.cpp:420 +#: src/supertux/menu/options_menu.cpp:178 msgid "Enable transitions" msgstr "Übergänge aktivieren" -#: src/supertux/menu/options_menu.cpp:421 +#: src/supertux/menu/options_menu.cpp:179 msgid "Enable screen transitions and smooth menu animation" msgstr "Bildschirmübergänge und sanfte Menüanimation aktivieren" -#: src/supertux/menu/options_menu.cpp:425 -msgid "Developer Mode" -msgstr "Entwicklermodus" +#: src/supertux/menu/options_menu.cpp:181 +msgid "Custom title screen levels" +msgstr "Benutzerdefinierte Titel-Bildschirm-Level" -#: src/supertux/menu/options_menu.cpp:430 +#: src/supertux/menu/options_menu.cpp:182 +msgid "Allow overriding the title screen level, when loading certain worlds" +msgstr "Erlaubt es, das Level, das auf dem Titel-Bildschirm angezeigt wird, wenn Welten geladen werden, zu überschreiben." + +#: src/supertux/menu/options_menu.cpp:185 msgid "Christmas Mode" msgstr "Weihnachtsmodus" -#: src/supertux/menu/options_menu.cpp:433 +#: src/supertux/menu/options_menu.cpp:187 +msgid "Integrations and presence" +msgstr "Integration und Präsenz" + +#: src/supertux/menu/options_menu.cpp:188 +msgid "" +"Manage whether SuperTux should display the levels you play on your social " +"media profiles (Discord)" +msgstr "Gibt an, ob SuperTux den Namen des aktuellen Levels in Sozialen Medien (Discord) anzeigen soll" + +#: src/supertux/menu/options_menu.cpp:192 +msgid "Customize the appearance of the menus" +msgstr "Darstellung der Menüs anpassen" + +#: src/supertux/menu/options_menu.cpp:199 +#: src/supertux/menu/options_select_menu.cpp:41 +msgid "Advanced" +msgstr "Erweitert" + +#: src/supertux/menu/options_menu.cpp:204 +msgid "Developer Mode" +msgstr "Entwicklermodus" + +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirmation Dialog" msgstr "Bestätigungsdialog" -#: src/supertux/menu/options_menu.cpp:433 +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirm aborting level" msgstr "Abbrechen des Levels bestätigen" -#: src/supertux/menu/options_menu.cpp:434 +#: src/supertux/menu/options_menu.cpp:208 msgid "Pause on focus loss" msgstr "Bei Verlust des Fokus pausieren" -#: src/supertux/menu/options_menu.cpp:435 +#: src/supertux/menu/options_menu.cpp:209 msgid "Automatically pause the game when the window loses focus" msgstr "Das Spiel automatisch pausieren, wenn das Fenster den Fokus verliert." -#: src/supertux/menu/options_menu.cpp:436 +#: src/supertux/menu/options_menu.cpp:211 msgid "Use custom mouse cursor" msgstr "Benutzerdefinierten Mauszeiger verwenden" -#: src/supertux/menu/options_menu.cpp:436 +#: src/supertux/menu/options_menu.cpp:211 msgid "Whether the game renders its own cursor or uses the system's cursor" msgstr "Gibt an, ob der Cursor des Spiels oder des Systems verwendet wird" -#: src/supertux/menu/options_menu.cpp:438 -msgid "Integrations and presence" -msgstr "Integration und Präsenz" +#: src/supertux/menu/options_menu.cpp:214 +msgid "Check for new releases" +msgstr "Auf neue Version überprüfen" -#: src/supertux/menu/options_menu.cpp:439 +#: src/supertux/menu/options_menu.cpp:215 msgid "" -"Manage whether SuperTux should display the levels you play on your social " -"media profiles (Discord)" -msgstr "Gibt an, ob SuperTux den Namen des aktuellen Levels in Sozialen Medien (Discord) anzeigen soll" +"Allows the game to perform checks for new SuperTux releases on startup and " +"notify if any found." +msgstr "Erlaubt es dem Spiel, beim Start eine Überprüfung auf neue Versionen durchzuführen und zu benachrichtigen, wenn neue gefunden wurden." + +#: src/supertux/menu/options_menu.cpp:245 +#: src/supertux/menu/options_menu.cpp:288 src/supertux/direction.cpp:76 +msgid "auto" +msgstr "auto" + +#: src/supertux/menu/options_menu.cpp:281 +msgid "Magnification" +msgstr "Skalierung" + +#: src/supertux/menu/options_menu.cpp:282 +msgid "Change the magnification of the game area" +msgstr "Skalierung des Spielbereichs ändern" + +#: src/supertux/menu/options_menu.cpp:318 +msgid "Aspect Ratio" +msgstr "Seitenverhältnis" + +#: src/supertux/menu/options_menu.cpp:319 +msgid "Adjust the aspect ratio" +msgstr "Seitenverhältnis anpassen" + +#: src/supertux/menu/options_menu.cpp:346 +msgid "Window Resolution" +msgstr "Fensterauflösung" -#: src/supertux/menu/options_menu.cpp:559 +#: src/supertux/menu/options_menu.cpp:347 +msgid "Resize the window to the given size" +msgstr "Die Größe des Fensters auf die angegebene Größe ändern" + +#: src/supertux/menu/options_menu.cpp:377 +msgid "Desktop" +msgstr "Desktop" + +#: src/supertux/menu/options_menu.cpp:404 +msgid "Fullscreen Resolution" +msgstr "Vollbildauflösung" + +#: src/supertux/menu/options_menu.cpp:405 +msgid "" +"Determine the resolution used in fullscreen mode (you must toggle fullscreen" +" to complete the change)" +msgstr "Auflösung, die im Vollbildmodus verwendet wird. Änderung wird beim Wechsel in den Vollbildmodus wirksam" + +#: src/supertux/menu/options_menu.cpp:411 +msgid "on" +msgstr "an" + +#: src/supertux/menu/options_menu.cpp:412 +msgid "off" +msgstr "aus" + +#: src/supertux/menu/options_menu.cpp:413 +msgid "adaptive" +msgstr "adaptiv" + +#: src/supertux/menu/options_menu.cpp:431 +msgid "VSync" +msgstr "VSync" + +#: src/supertux/menu/options_menu.cpp:432 +msgid "Set the VSync mode" +msgstr "VSync-Modus einstellen" + +#: src/supertux/menu/options_menu.cpp:467 +msgid "Sound Volume" +msgstr "Soundlautstärke" + +#: src/supertux/menu/options_menu.cpp:468 +msgid "Adjust sound volume" +msgstr "Soundlautstärke anpassen" + +#: src/supertux/menu/options_menu.cpp:503 +msgid "Music Volume" +msgstr "Musiklautstärke" + +#: src/supertux/menu/options_menu.cpp:504 +msgid "Adjust music volume" +msgstr "Musiklautstärke anpassen" + +#: src/supertux/menu/options_menu.cpp:517 +msgid "On-screen controls scale" +msgstr "Skalierung der On-Screen-Bedienelemente" + +#: src/supertux/menu/options_menu.cpp:638 msgid "" "The game couldn't detect your browser resolution.\n" "This most likely happens because it is not embedded\n" "in the SuperTux custom HTML template.\n" msgstr "Das Spiel konnte deine Browserauflösung nicht erkennen.\nDieser Fehler tritt wahrscheinlich dann auf, wenn die\nSuperTux-HTML-Vorlage nicht korrekt eingebunden wurde.\n" -#: src/supertux/menu/main_menu.cpp:56 src/supertux/menu/world_set_menu.cpp:28 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:80 +msgid "You cannot delete the world that you are editing" +msgstr "Du kannst die Welt nicht löschen, die du gerade bearbeitest" + +#: src/supertux/menu/editor_delete_levelset_menu.cpp:83 +#, c++-format +msgid "You are about to delete world \"{}\". Are you sure?" +msgstr "Sind sind dabei, die Welt \"{}\" zu löschen. Sind Sie sicher?" + +#: src/supertux/menu/addon_preview_menu.cpp:82 +#, c++-format +msgid "{} \"{}\"" +msgstr "{} \"{}\"" + +#: src/supertux/menu/addon_preview_menu.cpp:87 +msgid "Some information about this add-on is not available." +msgstr "Einige Informationen über dieses Add-on sind nicht verfügbar." + +#: src/supertux/menu/addon_preview_menu.cpp:88 +msgid "Perform a \"Check Online\" to try retrieving it." +msgstr "Führe eine \"Online-Prüfung\" durch, um zu versuchen, sie abzurufen." + +#: src/supertux/menu/addon_preview_menu.cpp:92 +msgid "No author specified." +msgstr "Kein Autor angegeben." + +#: src/supertux/menu/addon_preview_menu.cpp:92 +#, c++-format +msgid "Author: {}" +msgstr "Autor: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:93 +#, c++-format +msgid "Type: {}" +msgstr "Typ: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:94 +msgid "No license specified." +msgstr "Keine Lizenz angegeben." + +#: src/supertux/menu/addon_preview_menu.cpp:94 +#, c++-format +msgid "License: {}" +msgstr "Lizenz: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:99 +msgid "Dependencies:" +msgstr "Abhängigkeiten:" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Installed" +msgstr "Installiert" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Not installed" +msgstr "Nicht installiert" + +#: src/supertux/menu/addon_preview_menu.cpp:113 +msgid "Not available!" +msgstr "Nicht verfügbar!" + +#: src/supertux/menu/addon_preview_menu.cpp:120 +msgid "Description:" +msgstr "Beschreibung:" + +#: src/supertux/menu/addon_preview_menu.cpp:123 +msgid "No description available." +msgstr "Keine Beschreibung verfügbar." + +#: src/supertux/menu/addon_preview_menu.cpp:147 +msgid "Failed to load all available screenshot previews." +msgstr "Es konnten nicht alle verfügbaren Screenshots für die Vorschau geladen werden." + +#: src/supertux/menu/addon_preview_menu.cpp:152 +msgid "Show screenshots" +msgstr "Screenshots anzeigen" + +#: src/supertux/menu/addon_preview_menu.cpp:165 +msgid "Screenshot previews are disabled for automatic installs." +msgstr "Screenshot-Vorschau ist für automatische Installationen deaktiviert." + +#: src/supertux/menu/addon_preview_menu.cpp:169 +msgid "No screenshot previews available." +msgstr "Es ist keine Screenshot-Vorschau verfügbar." + +#: src/supertux/menu/addon_preview_menu.cpp:177 +msgid "Install" +msgstr "Installieren" + +#: src/supertux/menu/addon_preview_menu.cpp:190 +msgid "Uninstall" +msgstr "Deinstallieren" + +#: src/supertux/menu/addon_preview_menu.cpp:214 +#, c++-format +msgid "Are you sure you want to uninstall \"{}\"?" +msgstr "Bist du sicher, dass du \"{}\" deinstallieren möchtest?" + +#: src/supertux/menu/addon_preview_menu.cpp:215 +msgid "" +"\n" +"Your progress won't be lost." +msgstr "\nDein Fortschritt wird nicht gelöscht." + +#: src/supertux/menu/addon_preview_menu.cpp:227 +#, c++-format +msgid "" +"NOTE: The add-on \"{}\" is a dependency of {} other installed {}.\n" +"Are you sure you wish to uninstall?" +msgstr "HINWEIS: Das Add-on \"{}\" ist eine Abhängigkeit von {} anderen installierten {}.\nBist du sicher, dass du deinstallieren möchtest?" + +#: src/supertux/menu/addon_preview_menu.cpp:246 +#, c++-format +msgid "" +"Cannot toggle add-on \"{}\":\n" +"{}" +msgstr "Add-on \"{}\" konnte nicht aktiviert/deaktiviert werden:\n{}" + +#: src/supertux/menu/addon_preview_menu.cpp:279 +msgid "Fetching screenshot previews..." +msgstr "Screenshot-Vorschau wird abgerufen..." + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Updating" +msgstr "Aktualisieren" + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Downloading" +msgstr "Herunterladen" + +#: src/supertux/menu/addon_preview_menu.cpp:328 +msgid "Add-on uninstalled successfully." +msgstr "Add-on wurde erfolgreich deinstalliert." + +#: src/supertux/menu/addon_preview_menu.cpp:333 +#, c++-format +msgid "" +"Error uninstalling add-on:\n" +"{}" +msgstr "Fehler beim Deinstallieren des Add-ons:\n{}" + +#: src/supertux/menu/addon_preview_menu.cpp:361 +msgid "" +"Please restart SuperTux\n" +"for these changes to take effect." +msgstr "Bitte starte SuperTux neu,\ndamit die Änderungen wirksam werden." + +#: src/supertux/menu/main_menu.cpp:51 src/supertux/menu/world_set_menu.cpp:28 msgid "Start Game" msgstr "Spiel starten" -#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/addon_menu.cpp:122 +#: src/supertux/menu/main_menu.cpp:55 msgid "Add-ons" msgstr "Erweiterungen" -#: src/supertux/menu/main_menu.cpp:62 src/supertux/menu/web_asset_menu.cpp:38 +#: src/supertux/menu/main_menu.cpp:57 src/supertux/menu/web_asset_menu.cpp:38 msgid "Manage Assets" msgstr "Spieldaten verwalten" -#: src/supertux/menu/main_menu.cpp:65 src/supertux/menu/editor_menu.cpp:43 +#: src/supertux/menu/main_menu.cpp:59 +#: src/supertux/menu/options_select_menu.cpp:29 +#: src/supertux/menu/game_menu.cpp:58 src/supertux/menu/worldmap_menu.cpp:31 +#: src/supertux/menu/editor_menu.cpp:70 +msgid "Options" +msgstr "Optionen" + +#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/editor_menu.cpp:58 msgid "Level Editor" msgstr "Leveleditor" -#: src/supertux/menu/main_menu.cpp:66 +#: src/supertux/menu/main_menu.cpp:61 msgid "Credits" msgstr "Entwickler" -#: src/supertux/menu/main_menu.cpp:67 +#: src/supertux/menu/main_menu.cpp:64 msgid "Donate" msgstr "Spenden" -#: src/supertux/menu/main_menu.cpp:69 +#: src/supertux/menu/main_menu.cpp:67 msgid "Quit" msgstr "Beenden" -#: src/supertux/menu/editor_sector_menu.cpp:35 +#: src/supertux/menu/main_menu.cpp:106 +msgid "" +"This will take you to the SuperTux donation page. Are you sure you want to " +"continue?" +msgstr "Die SuperTux-Spendenseite wird aufgerufen. Möchtest du fortfahren?" + +#: src/supertux/menu/editor_sector_menu.cpp:34 +#, c++-format +msgid "Sector {}" +msgstr "Sektor {}" + +#: src/supertux/menu/editor_sector_menu.cpp:37 msgid "Initialization script" msgstr "Initialisierungsscript" -#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_sector_menu.cpp:38 msgid "Gravity" msgstr "Schwerkraft" -#: src/supertux/menu/editor_sector_menu.cpp:41 +#: src/supertux/menu/editor_sector_menu.cpp:43 msgid "Resize offset X" msgstr "Versatz beim Ändern der Größe in X-Richtung" -#: src/supertux/menu/editor_sector_menu.cpp:42 +#: src/supertux/menu/editor_sector_menu.cpp:44 msgid "Resize offset Y" msgstr "Versatz beim Ändern der Größe in Y-Richtung" -#: src/supertux/menu/editor_sector_menu.cpp:43 +#: src/supertux/menu/editor_sector_menu.cpp:45 msgid "Resize" msgstr "Größe ändern" -#: src/supertux/menu/profile_menu.cpp:41 -#, c-format -msgid "[Profile %s]" -msgstr "[Profil %s]" - -#: src/supertux/menu/profile_menu.cpp:45 -#, c-format -msgid "Profile %s" -msgstr "Profil %s" - -#: src/supertux/menu/profile_menu.cpp:50 -msgid "Reset profile" -msgstr "Profil zurücksetzen" - -#: src/supertux/menu/profile_menu.cpp:51 -msgid "Reset all profiles" -msgstr "Alle Profile zurücksetzen" - -#: src/supertux/menu/profile_menu.cpp:67 -msgid "Deleting your profile will reset your game progress. Are you sure?" -msgstr "Durch das Löschen des Profils wird dein Spielfortschritt zurückgesetzt. Bist du sicher?" +#: src/supertux/menu/profile_menu.cpp:60 +msgid "No profiles found." +msgstr "Keine Profile gefunden." + +#: src/supertux/menu/profile_menu.cpp:68 +#: src/supertux/menu/profile_menu.cpp:149 +#: src/supertux/menu/profile_menu.cpp:168 +#, c++-format +msgid "Profile {}" +msgstr "Profil {}" + +#: src/supertux/menu/profile_menu.cpp:69 +#, c++-format +msgid "{} (Profile {})" +msgstr "{} (Profil {})" + +#: src/supertux/menu/profile_menu.cpp:84 +msgid "No profile selected." +msgstr "Kein Profil ausgewählt." + +#: src/supertux/menu/profile_menu.cpp:91 src/supertux/menu/profile_menu.cpp:93 +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Rename" +msgstr "Umbenennen" + +#: src/supertux/menu/profile_menu.cpp:98 +#: src/supertux/menu/profile_menu.cpp:100 +msgid "Reset" +msgstr "Zurücksetzen" + +#: src/supertux/menu/profile_menu.cpp:103 +#: src/supertux/menu/profile_menu.cpp:105 +msgid "Reset all" +msgstr "Alle zurücksetzen" + +#: src/supertux/menu/profile_menu.cpp:113 +#: src/supertux/menu/profile_menu.cpp:115 +msgid "Delete all" +msgstr "Alle löschen" + +#: src/supertux/menu/profile_menu.cpp:148 +#, c++-format +msgid "" +"This will reset all game progress on the profile \"{}\".\n" +"Are you sure?" +msgstr "Der Spielfortschritt im Profil \"{}\" wird zurückgesetzt.\nMöchtest du fortfahren?" -#: src/supertux/menu/profile_menu.cpp:73 +#: src/supertux/menu/profile_menu.cpp:157 msgid "This will reset your game progress on all profiles. Are you sure?" msgstr "Der Spielfortschritt auf allen Profilen wird zurückgesetzt. Bist du sicher?" -#: src/supertux/menu/editor_levelset_menu.cpp:59 +#: src/supertux/menu/profile_menu.cpp:167 +#, c++-format +msgid "" +"This will delete the profile \"{}\",\n" +"including all game progress on it. Are you sure?" +msgstr "Das Profil \"{}\" inklusive dem gesamten\ndort enthaltenen Spielfortschritt wird gelöscht. Bist du sicher?" + +#: src/supertux/menu/profile_menu.cpp:178 +msgid "" +"This will delete all profiles, including all game progress on them.\n" +"Are you sure?" +msgstr "Alle Profile inklusive der dort enthaltenen Spielfortschritte werden gelöscht.\nBist du sicher?" + +#: src/supertux/menu/editor_levelset_menu.cpp:53 #: src/supertux/menu/editor_new_levelset_menu.cpp:35 msgid "Description" msgstr "Beschreibung" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:48 -#: data//images/engine/editor/objects.stoi:371 -msgid "Worldmap" -msgstr "Weltkarte" +#: src/supertux/menu/editor_levelset_menu.cpp:55 +msgid "Title Screen Level" +msgstr "Titelbildschirm-Level" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:45 -msgid "Levelset" -msgstr "Levelsammlung" +#: src/supertux/menu/editor_levelset_menu.cpp:56 +msgid "A level to be used for the title screen, after exiting the world." +msgstr "Das Level, das für den Titelbildschirm verwendet wird, nachdem eine Welt beendet wurde." -#: src/supertux/menu/addon_menu.cpp:51 -msgid "World" -msgstr "Welt" +#: src/supertux/menu/multiplayer_players_menu.cpp:46 +msgid "Add Player" +msgstr "Spieler hinzufügen" -#: src/supertux/menu/addon_menu.cpp:54 -msgid "Add-on" -msgstr "Add-on" +#: src/supertux/menu/multiplayer_players_menu.cpp:59 +msgid "Remove Last Player" +msgstr "Letzten Spieler entfernen" -#: src/supertux/menu/addon_menu.cpp:60 -msgid "Unknown" -msgstr "Unbekannt" +#: src/supertux/menu/multiplayer_players_menu.cpp:62 +msgid "" +"Warning: The player you are trying to\n" +"remove is currently in-game.\n" +"\n" +"Do you wish to remove them anyways?" +msgstr "Warnung: Der Spieler, den du versuchst,\nzu entfernen, ist derzeit in einem Spiel.\n\nMöchtest du ihn trotzdem entfernen?" + +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Language Packs" +msgstr "Installierte Sprachpakete" -#: src/supertux/menu/addon_menu.cpp:71 -#, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s »%s« von »%s«" +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Add-ons" +msgstr "Installierte Add-ons" -#: src/supertux/menu/addon_menu.cpp:129 +#: src/supertux/menu/addon_menu.cpp:76 src/supertux/menu/addon_menu.cpp:117 +msgid "No language packs installed" +msgstr "Keine Sprachpakete installiert" + +#: src/supertux/menu/addon_menu.cpp:76 msgid "No Add-ons installed" msgstr "Keine Add-ons installiert" -#: src/supertux/menu/addon_menu.cpp:133 -msgid "No Add-ons found" -msgstr "Keine Add-ons gefunden" +#: src/supertux/menu/addon_menu.cpp:124 +#, c++-format +msgid "{} {}*UPDATE*" +msgstr "{} {}*UPDATE*" -#: src/supertux/menu/addon_menu.cpp:179 -#, c-format -msgid "Install %s *NEW*" -msgstr "%s *NEU* installieren" +#: src/supertux/menu/addon_menu.cpp:130 +#, c++-format +msgid "{}{}" +msgstr "{}{}" -#: src/supertux/menu/addon_menu.cpp:190 -#, c-format -msgid "Install %s" -msgstr "%s installieren" +#: src/supertux/menu/addon_menu.cpp:140 +msgid "No updates available." +msgstr "Keine Updates verfügbar." -#: src/supertux/menu/addon_menu.cpp:199 -msgid "No new Add-ons found" -msgstr "Keine neuen Add-ons gefunden" +#: src/supertux/menu/addon_menu.cpp:144 +#, c++-format +msgid "{} {} available" +msgstr "{} {} verfügbar" -#: src/supertux/menu/addon_menu.cpp:205 -msgid "Check Online (disabled)" -msgstr "Online prüfen (deaktiviert)" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "update" +msgstr "Aktualisierung" -#: src/supertux/menu/addon_menu.cpp:209 -msgid "Check Online" -msgstr "Online prüfen" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "updates" +msgstr "Aktualisierungen" -#: src/supertux/menu/addon_menu.cpp:286 -msgid "Downloading Add-On Repository Index" -msgstr "Erweiterungs-Repositoriumsindex wird heruntergeladen" +#: src/supertux/menu/addon_menu.cpp:146 +msgid "Check for updates" +msgstr "Auf Updates überprüfen" -#: src/supertux/menu/addon_menu.cpp:301 -#, c-format -msgid "Downloading %s" -msgstr "%s herunterladen" +#: src/supertux/menu/addon_menu.cpp:150 +msgid "Browse language packs" +msgstr "Sprachpakete durchsuchen" -#: src/supertux/menu/addon_menu.cpp:348 -msgid "" -"Please restart SuperTux\n" -"for these changes to take effect." -msgstr "Bitte starte SuperTux neu,\ndamit die Änderungen wirksam werden." +#: src/supertux/menu/addon_menu.cpp:150 +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Add-ons" +msgstr "Add-ons durchsuchen" + +#: src/supertux/menu/addon_menu.cpp:151 +msgid "Install from file" +msgstr "Aus Datei installieren" + +#: src/supertux/menu/addon_menu.cpp:208 +msgid "Checking for updates..." +msgstr "Auf Updates überprüfen..." #: src/supertux/menu/editor_new_levelset_menu.cpp:31 msgid "New World" @@ -2621,6 +3654,53 @@ msgstr "Bitte gib einen Namen für dieses Levelset ein." msgid "Story Mode" msgstr "Geschichtsmodus" +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Language Packs" +msgstr "Sprachpakete durchsuchen" + +#: src/supertux/menu/addon_browse_menu.cpp:112 +#, c++-format +msgid "Page {}/{}" +msgstr "Seite {}/{}" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new language packs available" +msgstr "Keine neuen Sprachpakete verfügbar" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new Add-ons available" +msgstr "Keine neuen Add-ons verfügbar" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No language packs available" +msgstr "Keine Sprachpakete verfügbar" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No Add-ons available" +msgstr "Keine Add-ons verfügbar" + +#: src/supertux/menu/addon_browse_menu.cpp:135 +#: src/supertux/menu/addon_browse_menu.cpp:139 +msgid "Previous page" +msgstr "Vorherige Seite" + +#: src/supertux/menu/addon_browse_menu.cpp:143 +#: src/supertux/menu/addon_browse_menu.cpp:147 +msgid "Next page" +msgstr "Nächste Seite" + +#: src/supertux/menu/addon_browse_menu.cpp:154 +msgid "Check Online (disabled)" +msgstr "Online prüfen (deaktiviert)" + +#: src/supertux/menu/addon_browse_menu.cpp:158 +msgid "Check Online" +msgstr "Online prüfen" + +#: src/supertux/menu/addon_browse_menu.cpp:195 +msgid "Downloading Add-On Repository Index" +msgstr "Erweiterungs-Repositoriumsindex wird heruntergeladen" + #: src/supertux/menu/web_asset_menu.cpp:42 msgid "New files location" msgstr "Ort für neue Dateien" @@ -2641,207 +3721,235 @@ msgstr "Partikeldatei laden" msgid "Open" msgstr "Öffnen" -#: src/supertux/menu/game_menu.cpp:31 -msgid "Are you sure?" -msgstr "Bist du sicher?" - -#: src/supertux/menu/game_menu.cpp:54 src/supertux/menu/worldmap_menu.cpp:30 +#: src/supertux/menu/game_menu.cpp:51 src/supertux/menu/worldmap_menu.cpp:30 msgid "Continue" msgstr "Fortsetzen" -#: src/supertux/menu/game_menu.cpp:55 +#: src/supertux/menu/game_menu.cpp:52 msgid "Restart Level" msgstr "Level neu starten" -#: src/supertux/menu/game_menu.cpp:58 +#: src/supertux/menu/game_menu.cpp:55 msgid "Restart from Checkpoint" msgstr "Von Checkpunkt neu starten" -#: src/supertux/menu/game_menu.cpp:63 +#: src/supertux/menu/game_menu.cpp:60 msgid "Abort Level" msgstr "Level abbrechen" -#: src/supertux/menu/keyboard_menu.cpp:32 -#: src/supertux/menu/joystick_menu.cpp:69 +#: src/supertux/menu/game_menu.cpp:76 src/supertux/menu/game_menu.cpp:87 +#: src/supertux/menu/game_menu.cpp:99 +msgid "Are you sure?" +msgstr "Bist du sicher?" + +#: src/supertux/menu/profile_name_menu.cpp:36 +#, c++-format +msgid "Rename \"{}\"" +msgstr "\"{}\" umbenennen" + +#: src/supertux/menu/profile_name_menu.cpp:36 +msgid "Add profile" +msgstr "Profil hinzufügen" + +#: src/supertux/menu/profile_name_menu.cpp:40 +msgid "Profile names must have a maximum of 20 characters." +msgstr "Profilbezeichnungen dürfen maximal 20 Zeichen lang sein." + +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Create" +msgstr "Erstellen" + +#: src/supertux/menu/profile_name_menu.cpp:56 +msgid "" +"Profile names must have a maximum of 20 characters.\n" +"Please choose a different name." +msgstr "Profilbezeichnungen dürfen maximal 20 Zeichen lang sein.\nBitte wähle einen anderen Namen." + +#: src/supertux/menu/profile_name_menu.cpp:77 +msgid "An error occurred while creating the profile." +msgstr "Bei der Erstellung des Profils ist ein Fehler aufgetreten." + +#: src/supertux/menu/keyboard_menu.cpp:36 +#: src/supertux/menu/joystick_menu.cpp:71 msgid "Up" msgstr "Oben" -#: src/supertux/menu/keyboard_menu.cpp:33 -#: src/supertux/menu/joystick_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:37 +#: src/supertux/menu/joystick_menu.cpp:72 msgid "Down" msgstr "Unten" -#: src/supertux/menu/keyboard_menu.cpp:36 -#: src/supertux/menu/joystick_menu.cpp:73 +#: src/supertux/menu/keyboard_menu.cpp:40 +#: src/supertux/menu/joystick_menu.cpp:75 msgid "Jump" msgstr "Springen" -#: src/supertux/menu/keyboard_menu.cpp:38 -#: src/supertux/menu/joystick_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:43 +#: src/supertux/menu/joystick_menu.cpp:78 msgid "Peek Left" msgstr "Links umsehen" -#: src/supertux/menu/keyboard_menu.cpp:39 -#: src/supertux/menu/joystick_menu.cpp:77 +#: src/supertux/menu/keyboard_menu.cpp:44 +#: src/supertux/menu/joystick_menu.cpp:79 msgid "Peek Right" msgstr "Rechts umsehen" -#: src/supertux/menu/keyboard_menu.cpp:40 -#: src/supertux/menu/joystick_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:45 +#: src/supertux/menu/joystick_menu.cpp:80 msgid "Peek Up" msgstr "Oben umsehen" -#: src/supertux/menu/keyboard_menu.cpp:41 -#: src/supertux/menu/joystick_menu.cpp:79 +#: src/supertux/menu/keyboard_menu.cpp:46 +#: src/supertux/menu/joystick_menu.cpp:81 msgid "Peek Down" msgstr "Unten umsehen" -#: src/supertux/menu/keyboard_menu.cpp:43 -#: src/supertux/menu/joystick_menu.cpp:81 +#: src/supertux/menu/keyboard_menu.cpp:51 +#: src/supertux/menu/joystick_menu.cpp:83 msgid "Console" msgstr "Konsole" -#: src/supertux/menu/keyboard_menu.cpp:44 -#: src/supertux/menu/joystick_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:52 +#: src/supertux/menu/joystick_menu.cpp:84 msgid "Cheat Menu" msgstr "Cheatmenü" -#: src/supertux/menu/keyboard_menu.cpp:45 -#: src/supertux/menu/joystick_menu.cpp:83 +#: src/supertux/menu/keyboard_menu.cpp:53 +#: src/supertux/menu/joystick_menu.cpp:85 msgid "Debug Menu" msgstr "Debug-Menü" -#: src/supertux/menu/keyboard_menu.cpp:47 -#: src/supertux/menu/joystick_menu.cpp:85 +#: src/supertux/menu/keyboard_menu.cpp:56 +#: src/supertux/menu/joystick_menu.cpp:87 msgid "Jump with Up" msgstr "Mit Hoch springen" -#: src/supertux/menu/keyboard_menu.cpp:60 +#: src/supertux/menu/keyboard_menu.cpp:82 msgid "Up cursor" msgstr "Pfeil nach oben" -#: src/supertux/menu/keyboard_menu.cpp:62 +#: src/supertux/menu/keyboard_menu.cpp:84 msgid "Down cursor" msgstr "Pfeil nach unten" -#: src/supertux/menu/keyboard_menu.cpp:64 +#: src/supertux/menu/keyboard_menu.cpp:86 msgid "Left cursor" msgstr "Pfeil nach links" -#: src/supertux/menu/keyboard_menu.cpp:66 +#: src/supertux/menu/keyboard_menu.cpp:88 msgid "Right cursor" msgstr "Pfeil nach rechts" -#: src/supertux/menu/keyboard_menu.cpp:68 +#: src/supertux/menu/keyboard_menu.cpp:90 msgid "Return" msgstr "Eingabetaste" -#: src/supertux/menu/keyboard_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:92 msgid "Space" msgstr "Leertaste" -#: src/supertux/menu/keyboard_menu.cpp:72 +#: src/supertux/menu/keyboard_menu.cpp:94 msgid "Right Shift" msgstr "Umschalt (rechts)" -#: src/supertux/menu/keyboard_menu.cpp:74 +#: src/supertux/menu/keyboard_menu.cpp:96 msgid "Left Shift" msgstr "Umschalt (links)" -#: src/supertux/menu/keyboard_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:98 msgid "Right Control" msgstr "Strg (rechts)" -#: src/supertux/menu/keyboard_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:100 msgid "Left Control" msgstr "Strg (links)" -#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/keyboard_menu.cpp:102 msgid "Right Alt" msgstr "Alt (rechts)" -#: src/supertux/menu/keyboard_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:104 msgid "Left Alt" msgstr "Alt (links)" -#: src/supertux/menu/keyboard_menu.cpp:84 +#: src/supertux/menu/keyboard_menu.cpp:106 msgid "Right Command" msgstr "Rechts" -#: src/supertux/menu/keyboard_menu.cpp:86 +#: src/supertux/menu/keyboard_menu.cpp:108 msgid "Left Command" msgstr "Links" -#: src/supertux/menu/keyboard_menu.cpp:100 +#: src/supertux/menu/keyboard_menu.cpp:122 msgid "Press Key" msgstr "Taste drücken" -#: src/supertux/menu/language_menu.cpp:40 +#: src/supertux/menu/language_menu.cpp:43 msgid "Language" msgstr "Sprache" -#: src/supertux/menu/language_menu.cpp:42 +#: src/supertux/menu/language_menu.cpp:45 msgid "" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:55 +#: src/supertux/menu/joystick_menu.cpp:57 msgid "Manual Configuration" msgstr "Manuelle Konfiguration" -#: src/supertux/menu/joystick_menu.cpp:57 +#: src/supertux/menu/joystick_menu.cpp:59 msgid "" "Use manual configuration instead of SDL2's automatic GameController support" msgstr "Controller manuell konfigurieren anstatt die automatische Konfiguration von SDL2 zu verwenden" -#: src/supertux/menu/joystick_menu.cpp:75 +#: src/supertux/menu/joystick_menu.cpp:77 msgid "Pause/Menu" msgstr "Pause/Menü" -#: src/supertux/menu/joystick_menu.cpp:91 +#: src/supertux/menu/joystick_menu.cpp:93 msgid "No Joysticks found" msgstr "Keine Joysticks gefunden" -#: src/supertux/menu/joystick_menu.cpp:92 +#: src/supertux/menu/joystick_menu.cpp:94 msgid "Scan for Joysticks" msgstr "Nach Joysticks suchen" -#: src/supertux/menu/joystick_menu.cpp:125 +#: src/supertux/menu/joystick_menu.cpp:127 msgid "Press Button" msgstr "Taste drücken" -#: src/supertux/menu/joystick_menu.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:164 msgid "Axis " msgstr "Achse " -#: src/supertux/menu/joystick_menu.cpp:165 +#: src/supertux/menu/joystick_menu.cpp:167 msgid "-" msgstr "-" -#: src/supertux/menu/joystick_menu.cpp:167 +#: src/supertux/menu/joystick_menu.cpp:169 msgid "+" msgstr "+" -#: src/supertux/menu/joystick_menu.cpp:174 +#: src/supertux/menu/joystick_menu.cpp:176 msgid "X2" msgstr "X2" -#: src/supertux/menu/joystick_menu.cpp:176 +#: src/supertux/menu/joystick_menu.cpp:178 msgid "Y2" msgstr "Y2" -#: src/supertux/menu/joystick_menu.cpp:189 +#: src/supertux/menu/joystick_menu.cpp:191 msgid "Hat Up" msgstr "Hat oben" -#: src/supertux/menu/joystick_menu.cpp:193 +#: src/supertux/menu/joystick_menu.cpp:195 msgid "Hat Down" msgstr "Hat unten" -#: src/supertux/menu/joystick_menu.cpp:197 +#: src/supertux/menu/joystick_menu.cpp:199 msgid "Hat Left" msgstr "Hat links" -#: src/supertux/menu/joystick_menu.cpp:201 +#: src/supertux/menu/joystick_menu.cpp:203 msgid "Hat Right" msgstr "Hat rechts" @@ -2853,52 +3961,47 @@ msgstr "Pause" msgid "Leave World" msgstr "Welt verlassen" -#: src/supertux/menu/download_dialog.cpp:27 +#: src/supertux/menu/download_dialog.cpp:42 msgid "Abort Download" msgstr "Herunterladen abbrechen" -#: src/supertux/menu/download_dialog.cpp:42 -msgid "Error:\n" -msgstr "Fehler:\n" - -#: src/supertux/menu/download_dialog.cpp:96 -msgid "Close" -msgstr "Schließen" - -#: src/supertux/menu/cheat_menu.cpp:33 -msgid "Bonus: Fire x 64" -msgstr "Bonus: Feuer x 64" - -#: src/supertux/menu/cheat_menu.cpp:34 -msgid "Bonus: Ice x 64" -msgstr "Bonus: Eis x 64" - -#: src/supertux/menu/cheat_menu.cpp:35 -msgid "Bonus: Air x 64" -msgstr "Bonus: Luft x 64" - -#: src/supertux/menu/cheat_menu.cpp:36 -msgid "Bonus: Earth x 64" -msgstr "Bonus: Erde x 64" +#: src/supertux/menu/download_dialog.cpp:59 +#, c++-format +msgid "" +"Error:\n" +"{}" +msgstr "Fehler:\n{}" -#: src/supertux/menu/cheat_menu.cpp:37 +#: src/supertux/menu/cheat_menu.cpp:38 msgid "Bonus: Star" msgstr "Bonus: Stern" -#: src/supertux/menu/cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:39 msgid "Shrink Tux" msgstr "Tux schrumpfen" -#: src/supertux/menu/cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:40 msgid "Kill Tux" msgstr "Tux töten" +#: src/supertux/menu/cheat_menu.cpp:55 +msgid "Prevent Death" +msgstr "Tod verhindern" + +#: src/supertux/menu/addon_file_install_menu.cpp:32 +msgid "Install Add-on from file" +msgstr "Add-on aus Datei installieren" + +#: src/supertux/menu/addon_file_install_menu.cpp:34 +msgid "Drag and drop add-on ZIP archive" +msgstr "Add-on-ZIP-Archiv hier hinziehen und ablegen" + #: src/supertux/menu/particle_editor_menu.cpp:32 msgid "Particle Editor" msgstr "Partikeleditor" #: src/supertux/menu/particle_editor_menu.cpp:36 -#: src/supertux/menu/editor_menu.cpp:45 +#: src/supertux/menu/editor_menu.cpp:60 msgid "Return to Editor" msgstr "Zurück zum Editor" @@ -2923,7 +4026,7 @@ msgid "Open Particle Directory" msgstr "Partikelverzeichnis öffnen" #: src/supertux/menu/particle_editor_menu.cpp:45 -#: src/supertux/menu/editor_menu.cpp:88 +#: src/supertux/menu/editor_menu.cpp:118 msgid "Keyboard Shortcuts" msgstr "Tastenkürzel" @@ -2931,7 +4034,7 @@ msgstr "Tastenkürzel" msgid "Exit Particle Editor" msgstr "Partikeleditor verlassen" -#: src/supertux/menu/particle_editor_menu.cpp:120 +#: src/supertux/menu/particle_editor_menu.cpp:121 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -2943,18 +4046,18 @@ msgid "" "Ctrl+Y = Redo" msgstr "Tastenkürzel:\n---------------------\nEsc = Menü öffnen\nStrg+S = Speichern\nStrg+Umschalt+S = Speichern als\nStrg+O = Öffnen\nStrg+Z = Rückgängig\nStrg+Y = Wiederholen" -#: src/supertux/menu/particle_editor_menu.cpp:121 -#: src/supertux/menu/editor_menu.cpp:176 +#: src/supertux/menu/particle_editor_menu.cpp:122 +#: src/supertux/menu/editor_menu.cpp:206 msgid "Got it!" msgstr "Verstanden!" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:86 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Worldmap Settings" msgstr "Weltkarteneinstellungen" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:86 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Level Settings" msgstr "Leveleinstellungen" @@ -2962,7 +4065,7 @@ msgstr "Leveleinstellungen" msgid "Author" msgstr "Autor" -#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1166 +#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1253 msgid "Contact" msgstr "Kontakt" @@ -2994,99 +4097,129 @@ msgstr "Bitte gib einen Level-Autor für dieses Level an." msgid "Please enter a license for this level." msgstr "Bitte gib eine Lizenz für dieses Level an." -#: src/supertux/menu/editor_menu.cpp:38 +#: src/supertux/menu/editor_menu.cpp:53 msgid "tiny tile (4px)" msgstr "winzige Kachel (4px)" -#: src/supertux/menu/editor_menu.cpp:39 +#: src/supertux/menu/editor_menu.cpp:54 msgid "small tile (8px)" msgstr "kleine Kachel (8px)" -#: src/supertux/menu/editor_menu.cpp:40 +#: src/supertux/menu/editor_menu.cpp:55 msgid "medium tile (16px)" msgstr "mittlere Kachlel (16px)" -#: src/supertux/menu/editor_menu.cpp:41 +#: src/supertux/menu/editor_menu.cpp:56 msgid "big tile (32px)" msgstr "große Kachel (32px)" -#: src/supertux/menu/editor_menu.cpp:46 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Worldmap" msgstr "Weltkarte speichern" -#: src/supertux/menu/editor_menu.cpp:46 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Level" msgstr "Level speichern" -#: src/supertux/menu/editor_menu.cpp:55 +#: src/supertux/menu/editor_menu.cpp:65 msgid "Test Level" msgstr "Level testen" -#: src/supertux/menu/editor_menu.cpp:59 +#: src/supertux/menu/editor_menu.cpp:67 msgid "Test Worldmap" msgstr "Weltkarte testen" -#: src/supertux/menu/editor_menu.cpp:62 +#: src/supertux/menu/editor_menu.cpp:72 msgid "Share Level" msgstr "Level teilen" -#: src/supertux/menu/editor_menu.cpp:64 +#: src/supertux/menu/editor_menu.cpp:74 msgid "Package Add-On" msgstr "Add-on verpacken" -#: src/supertux/menu/editor_menu.cpp:66 +#: src/supertux/menu/editor_menu.cpp:76 msgid "Open Level Directory" msgstr "Levelverzeichnis öffnen" -#: src/supertux/menu/editor_menu.cpp:70 +#: src/supertux/menu/editor_menu.cpp:79 msgid "Edit Another Level" msgstr "Anderes Level bearbeiten" -#: src/supertux/menu/editor_menu.cpp:73 +#: src/supertux/menu/editor_menu.cpp:81 msgid "Edit Another World" msgstr "Andere Welt bearbeiten" -#: src/supertux/menu/editor_menu.cpp:77 +#: src/supertux/menu/editor_menu.cpp:86 +msgid "Convert all tiles in the level using converters." +msgstr "Alle Kacheln im Level konvertieren." + +#: src/supertux/menu/editor_menu.cpp:90 msgid "Grid Size" msgstr "Gittergröße" -#: src/supertux/menu/editor_menu.cpp:78 +#: src/supertux/menu/editor_menu.cpp:91 msgid "Show Grid" msgstr "Gitter anzeigen (F8)" -#: src/supertux/menu/editor_menu.cpp:79 +#: src/supertux/menu/editor_menu.cpp:92 msgid "Grid Snapping" msgstr "Ins Gitter schnappen" -#: src/supertux/menu/editor_menu.cpp:80 +#: src/supertux/menu/editor_menu.cpp:93 msgid "Render Background" msgstr "Hintergrund zeichnen" -#: src/supertux/menu/editor_menu.cpp:81 +#: src/supertux/menu/editor_menu.cpp:94 msgid "Render Light" msgstr "Licht zeichnen" -#: src/supertux/menu/editor_menu.cpp:82 +#: src/supertux/menu/editor_menu.cpp:95 msgid "Autotile Mode" msgstr "Kachel-Hilfsmodus" -#: src/supertux/menu/editor_menu.cpp:83 +#: src/supertux/menu/editor_menu.cpp:96 msgid "Enable Autotile Help" msgstr "Kachel-Hilfsmodus aktivieren" -#: src/supertux/menu/editor_menu.cpp:84 +#: src/supertux/menu/editor_menu.cpp:97 +msgid "Enable Object Undo Tracking" +msgstr "Objekt-Rückgängig-Verfolgung einschalten" + +#: src/supertux/menu/editor_menu.cpp:100 +msgid "Undo Stack Size" +msgstr "Stapelgröße rückgängig machen" + +#: src/supertux/menu/editor_menu.cpp:102 msgid "Autosave Frequency" msgstr "Autosicherungsfrequenz" -#: src/supertux/menu/editor_menu.cpp:91 +#: src/supertux/menu/editor_menu.cpp:108 +msgid "Check for Deprecated Tiles" +msgstr "Auf veraltete Kacheln überprüfen" + +#: src/supertux/menu/editor_menu.cpp:109 +msgid "Check if any deprecated tiles are currently present in the level." +msgstr "Überprüft, ob im aktuellen Level veraltete Kacheln vorhanden sind." + +#: src/supertux/menu/editor_menu.cpp:110 +msgid "Show Deprecated Tiles" +msgstr "Veraltete Kacheln anzeigen" + +#: src/supertux/menu/editor_menu.cpp:111 +msgid "" +"Indicate all deprecated tiles on the active tilemap, without the need of " +"hovering over." +msgstr "Zeigt alle verlateten Tiles der aktuellen Tilemap an, ohne dass mit der Maus über diese gefahren werden muss." + +#: src/supertux/menu/editor_menu.cpp:121 msgid "Exit Level Editor" msgstr "Level-Editor beenden" -#: src/supertux/menu/editor_menu.cpp:140 +#: src/supertux/menu/editor_menu.cpp:170 msgid "Do you want to package this world as an add-on?" msgstr "Möchtest du diese Welt als Add-on verpacken?" -#: src/supertux/menu/editor_menu.cpp:163 +#: src/supertux/menu/editor_menu.cpp:196 msgid "" "We encourage you to share your levels in the SuperTux forum.\n" "To find your level, click the\n" @@ -3094,7 +4227,7 @@ msgid "" "Do you want to go to the forum now?" msgstr "Wir möchten dich dazu ermuntern, dein Level im SuperTux-Forum mit anderen zu teilen.\nUm Dein Level zu finden, klicke den\nEintrag »Levelverzeichnis öffnen«.\nMöchtest du jetzt das SuperTux-Forum besuchen?" -#: src/supertux/menu/editor_menu.cpp:175 +#: src/supertux/menu/editor_menu.cpp:205 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -3105,54 +4238,217 @@ msgid "" "Ctrl+Y = Redo\n" "F6 = Render Light\n" "F7 = Grid Snapping\n" -"F8 = Show Grid" -msgstr "Tastenkürzel:\n---------------------\nEsc = Menü öffnen\nStrg+S = Speichern\nStrg+T = Testen\nStrg+Z = Rückgängig\nStrg+Y = Wiederholen\nF6 = Licht zeichnen\nF7 = Ins Gitter schnappen\nF8 = Gitter zeigen" +"F8 = Show Grid\n" +"Ctrl++ or Ctrl+Scroll Up = Zoom In\n" +"Ctrl+- or Ctrl+Scroll Down = Zoom Out\n" +"Ctrl+D = Reset Zoom\n" +"\n" +"Scripting Shortcuts:\n" +" ------------- \n" +"Home = Go to beginning of line\n" +"End = Go to end of line\n" +"Left arrow = Go back in text\n" +"Right arrow = Go forward in text\n" +"Backspace = Delete in front of text cursor\n" +"Delete = Delete behind text cursor\n" +"Ctrl+X = Cut whole line\n" +"Ctrl+C = Copy whole line\n" +"Ctrl+V = Paste\n" +"Ctrl+D = Duplicate line\n" +"Ctrl+Z = Undo\n" +"Ctrl+Y = Redo" +msgstr "Tastaturabkürzungen:\n---------------------\nEsc = Menü öffnen\nStrg+S = Speichern\nStrg+T = Testen\nStrg+Z = Rückgängig\nStrg+Y = Wiederholen\nF6 = Licht rendern\nF7 = Raster fangen\nF8 = Raster anzeigen\nStrg++ oder Strg+Scroll Up = Vergrößern\nStrg+- oder Strg+Scroll Down = Herauszoomen\nStrg+D = Zoom zurücksetzen\n\nSkripting-Kurzbefehle:\n------------- \nHome = Zum Anfang der Zeile gehen\nEnde = Zum Ende der Zeile gehen\nPfeil nach links = Im Text zurückgehen\nPfeil nach rechts = Im Text vorwärts gehen\nBackspace = Löschen vor dem Textcursor\nLöschen = Löschen hinter dem Textcursor\nStrg+X = Ganze Zeile ausschneiden\nStrg+C = Ganze Zeile kopieren\nStrg+V = Einfügen\nStrg+D = Zeile duplizieren\nStrg+Z = Rückgängig\nStrg+Y = Wiederholen" + +#: src/supertux/menu/editor_menu.cpp:232 +msgid "Deprecated tiles are still present in the level." +msgstr "In diesem Level sind immer noch veraltete Kacheln vorhanden." + +#: src/supertux/menu/editor_menu.cpp:239 +msgid "Do you want to show all deprecated tiles on active tilemaps?" +msgstr "Möchtest du alle veralteten Kacheln in aktiven Tilemaps anzeigen?" + +#: src/supertux/menu/editor_menu.cpp:246 +msgid "There are no more deprecated tiles in the level!" +msgstr "In diesem Level sind keine veralteten Kacheln mehr vorhanden!" + +#: src/supertux/menu/multiplayer_player_menu.cpp:40 +msgid "Play with the keyboard" +msgstr "Mit der Tastatur spielen" + +#: src/supertux/menu/multiplayer_player_menu.cpp:58 +msgid "Remove Player" +msgstr "Spieler entfernen" + +#: src/supertux/menu/multiplayer_player_menu.cpp:82 +msgid "Respawn Player" +msgstr "Spieler respawnen" + +#: src/supertux/menu/multiplayer_player_menu.cpp:108 +msgid "Spawn Player" +msgstr "Spieler spawnen" + +#: src/supertux/menu/multiplayer_player_menu.cpp:136 +msgid "Controllers" +msgstr "Controller" -#: src/supertux/menu/editor_delete_level_menu.cpp:53 -msgid "You cannot delete level that you are editing!" -msgstr "Du kannst das Level, das du gerade bearbeitest, nicht löschen." +#: src/supertux/menu/multiplayer_player_menu.cpp:152 +msgid "" +"This controller does not support rumbling;\n" +"please check the controllers manually." +msgstr "Dieser Controller unterstützt keine Vibration;\nbitte überprüfen Sie die Controller manuell." + +#: src/supertux/menu/multiplayer_player_menu.cpp:157 +msgid "" +"This SuperTux build does not support rumbling\n" +"controllers; please check the controllers manually." +msgstr "Diese Version von SuperTux unterstützt keine Controller-\nVibration; bitte überprüfen Sie die Controller manuell." + +#: src/supertux/menu/multiplayer_player_menu.cpp:184 +msgid "" +"This joystick does not support rumbling;\n" +"please check the joysticks manually." +msgstr "Dieser Joystick unterstützt keine Vibration;\nbitte überprüfen Sie die Joysticks manuell." + +#: src/supertux/menu/multiplayer_player_menu.cpp:189 +msgid "" +"This SuperTux build does not support rumbling\n" +"joysticks; please check the joysticks manually." +msgstr "Diese Version von SuperTux unterstützt keine Joystick-\nVibration; bitte überprüfen Sie die Joysticks manuell." + +#: src/supertux/menu/editor_delete_level_menu.cpp:59 +msgid "No levels available" +msgstr "Keine Levels verfügbar" -#: src/supertux/levelintro.cpp:136 -#, c-format -msgid "contributed by %s" -msgstr "beigesteuert von %s" +#: src/supertux/menu/editor_delete_level_menu.cpp:79 +msgid "You cannot delete the level that you are editing!" +msgstr "Du kannst nicht das Level löschen, das du gerade bearbeitest." -#: src/supertux/levelintro.cpp:169 +#: src/supertux/menu/editor_delete_level_menu.cpp:82 +#, c++-format +msgid "You are about to delete level \"{}\". Are you sure?" +msgstr "Du bist dabei, das Level \"{}\" zu löschen. Bist du sicher?" + +#: src/supertux/levelintro.cpp:137 +#, c++-format +msgid "contributed by {}" +msgstr "beigesteuert von {}" + +#: src/supertux/levelintro.cpp:184 msgid "Badguys killed" msgstr "Gegner getötet" -#: src/supertux/levelintro.cpp:177 +#: src/supertux/levelintro.cpp:192 msgid "Best time" msgstr "Bestzeit" -#: src/supertux/levelintro.cpp:181 +#: src/supertux/levelintro.cpp:196 msgid "Level target time" msgstr "Levelzielzeit" -#: src/supertux/tile_set.cpp:118 +#: src/supertux/tile_set.cpp:113 msgid "Others" msgstr "Anderes" -#: src/supertux/moving_object.cpp:55 +#: src/supertux/direction.cpp:67 +msgid "up" +msgstr "oben" + +#: src/supertux/direction.cpp:69 +msgid "down" +msgstr "unten" + +#: src/supertux/moving_object.cpp:63 msgid "Region" msgstr "Bereich" -#: src/supertux/main.cpp:563 +#: src/supertux/main.cpp:801 +#, c++-format +msgid "New release: SuperTux v{}!" +msgstr "Neue Version: SuperTux v{}!" + +#: src/supertux/main.cpp:804 +#, c++-format msgid "" -"The UBports version is under heavy development!\n" -"If you encounter issues, PLEASE contact the maintainter\n" -"at https://github.com/supertux/supertux/issues or on the\n" -"Open Store's Telegram at https://open-store.io/telegram" -msgstr "Die UBports-Version ist unter heftiger Entwicklung!\nWenn du Probleme findest, BITTE nimm Kontat mit dem\nMaintainer auf https://github.com/supertux/supertux/issues\nauf oder auf dem Telegramkanal auf\nhttps://open-store.io/telegram" +"A new release of SuperTux (v{}) is available!\n" +"For more information, you can visit the SuperTux website.\n" +"\n" +"Do you want to visit the website now?" +msgstr "Eine neue Version von SuperTux (v{}) ist verfügbar!\nFür weitere Informationen können Sie die SuperTux-\nWebseite besuchen.\n\nMöchten Sie die Webseite jetzt besuchen?" + +#: src/supertux/main.cpp:815 +msgid "Checking for new releases..." +msgstr "Auf neue Versionen überprüfen..." #: src/control/joystick_config.cpp:85 msgid "Joystick Mappings" msgstr "Joystickkonfiguration" -#: src/worldmap/worldmap_parser.cpp:167 +#: src/worldmap/sprite_change.cpp:91 +msgid "Stay action" +msgstr "Aktion fürs Stehenbleiben" + +#: src/worldmap/sprite_change.cpp:92 +msgid "Initial stay action" +msgstr "Erstaktion fürs Stehenbleiben" + +#: src/worldmap/sprite_change.cpp:93 +msgid "Stay group" +msgstr "Bleibegruppe" + +#: src/worldmap/sprite_change.cpp:94 +msgid "Change on touch" +msgstr "Bei Berührung verändern" + +#: src/worldmap/special_tile.hpp:36 +msgid "Special Tile" +msgstr "Spezielle Kacheln" + +#: src/worldmap/level_tile.hpp:36 src/worldmap/level_tile.cpp:161 +msgid "Level" +msgstr "Level" + +#: src/worldmap/teleporter.cpp:50 +msgid "Automatic" +msgstr "Automatisch" + +#: src/worldmap/teleporter.cpp:51 +msgid "Target worldmap" +msgstr "Ziel-Weltkarte" + +#: src/worldmap/sprite_change.hpp:35 +msgid "Sprite Change" +msgstr "Spriteänderung" + +#: src/worldmap/special_tile.cpp:75 +msgid "Show message" +msgstr "Nachricht anzeigen" + +#: src/worldmap/level_tile.cpp:84 msgid "" msgstr "" +#: src/worldmap/level_tile.cpp:162 +msgid "Outro script" +msgstr "Outro-Script" + +#: src/worldmap/level_tile.cpp:163 +msgid "Auto play" +msgstr "Automatisch starten" + +#: src/worldmap/level_tile.cpp:164 +msgid "Title colour" +msgstr "Titelfarbe" + +#: src/worldmap/teleporter.hpp:34 +msgid "Teleporter" +msgstr "Teleporter" + +#: src/editor/tip.cpp:80 +msgid "" +"This object's current functionality is deprecated.\n" +"Updating to get its latest functionality is recommended." +msgstr "Die aktuelle Funktionalität dieses Objekts ist veraltet.\nEs wird empfohlen, es zu aktualisieren, um seine neuesten Funktionen zu erhalten." + #: src/editor/node_marker.cpp:122 msgid "Path Node" msgstr "Pfadknoten" @@ -3165,85 +4461,82 @@ msgstr "Drücke Strg, um Bezier-Griffe zu verschieben" msgid "Easing" msgstr "Easing" -#: src/editor/object_settings.cpp:119 -msgid "up" -msgstr "oben" - -#: src/editor/object_settings.cpp:119 -msgid "down" -msgstr "unten" - -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "West" msgstr "West" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "East" msgstr "Ost" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "North" msgstr "Nord" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "South" msgstr "Süd" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "One shot" msgstr "Einmalig" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "Ping-pong" msgstr "Hin und Her" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "Circular" msgstr "Kreisförmig" -#: src/editor/object_settings.cpp:144 -msgid "Unordered" -msgstr "Unsortiert" +#: src/editor/layers_widget.cpp:331 +#, c++-format +msgid "Sector: {}" +msgstr "Sektor: {}" -#: src/editor/object_option.cpp:85 +#: src/editor/object_option.cpp:92 msgid "true" msgstr "wahr" -#: src/editor/object_option.cpp:85 +#: src/editor/object_option.cpp:92 msgid "false" msgstr "falsch" -#: src/editor/object_option.cpp:271 src/editor/object_option.cpp:320 +#: src/editor/object_option.cpp:308 src/editor/object_option.cpp:356 msgid "invalid" msgstr "ungültig" -#: src/editor/object_option.cpp:580 +#: src/editor/object_option.cpp:665 +msgid "Scale X" +msgstr "X Skalierung" + +#: src/editor/object_option.cpp:666 +msgid "Scale Y" +msgstr "Y Versatz" + +#: src/editor/object_option.cpp:667 +msgid "Offset X" +msgstr "X Versatz" + +#: src/editor/object_option.cpp:668 +msgid "Offset Y" +msgstr "Y Versatz" + +#: src/editor/object_option.cpp:672 src/editor/object_menu.cpp:67 msgid "Remove" msgstr "Entfernen" -#: src/editor/object_option.cpp:597 +#: src/editor/object_option.cpp:689 msgid "Test from here" msgstr "Von hier aus testen" -#: src/editor/object_option.cpp:614 +#: src/editor/object_option.cpp:706 msgid "Open Particle Editor" msgstr "Partikeleditor öffnen" -#: src/editor/worldmap_objects.hpp:56 src/editor/worldmap_objects.cpp:127 -msgid "Level" -msgstr "Level" - -#: src/editor/worldmap_objects.hpp:79 -msgid "Teleporter" -msgstr "Teleporter" - -#: src/editor/worldmap_objects.hpp:119 -msgid "Sprite Change" -msgstr "Spriteänderung" - -#: src/editor/worldmap_objects.hpp:140 -msgid "Special tile" -msgstr "Besondere Kachel" +#: src/editor/particle_editor.cpp:114 +msgid "Change texture... ->" +msgstr "Textur ändern... ->" #: src/editor/particle_editor.cpp:126 msgid "Max amount" @@ -3325,17 +4618,60 @@ msgstr "Immer zerstören" msgid "Offscreen mode" msgstr "Außerhalb-des-Bildschirm-Modus" -#: src/editor/particle_editor.cpp:765 +#: src/editor/particle_editor.cpp:229 +msgid "Clear" +msgstr "Leeren" + +#: src/editor/particle_editor.cpp:245 +msgid "<- General settings" +msgstr "<- Allgemeine Einstellungen" + +#: src/editor/particle_editor.cpp:255 +msgid "Likeliness" +msgstr "Ähnlichkeit" + +#: src/editor/particle_editor.cpp:266 +msgid "Color (RGBA)" +msgstr "Farbe (RGBA)" + +#: src/editor/particle_editor.cpp:311 +msgid "Scale (x, y)" +msgstr "Skalierung (x, y)" + +#: src/editor/particle_editor.cpp:332 +msgid "Hitbox scale (x, y)" +msgstr "Hitbox Skalierung (x, y)" + +#: src/editor/particle_editor.cpp:353 +msgid "Hitbox offset relative to scale" +msgstr "Hitbox-Versatz relativ zur Skalierung" + +#: src/editor/particle_editor.cpp:372 +msgid "Change texture..." +msgstr "Textur ändern..." + +#: src/editor/particle_editor.cpp:766 msgid "" "This particle configuration contains unsaved changes,\n" "do you want to save?" msgstr "Die Partikelkonfiguration enthält ungespeicherte Änderungen,\nmöchtest du speichern?" -#: src/editor/particle_editor.cpp:773 +#: src/editor/particle_editor.cpp:774 msgid "Save as" msgstr "Speichern unter" -#: src/editor/editor.cpp:566 +#: src/editor/editor.cpp:577 +msgid "" +"This level contains deprecated tiles.\n" +"It is strongly recommended to replace all deprecated tiles\n" +"to avoid loss of compatibility in future versions." +msgstr "Dieses Level enthält veraltete Kacheln.\nEs wird dringend empfohlen, alle veralteten Kacheln zu ersetzen, um Kompatibilitätsverluste in zukünftigen Versionen zu vermeiden." + +#: src/editor/editor.cpp:579 +msgid "Tip: Turn on \"Show Deprecated Tiles\" from the level editor menu." +msgstr "Tipp: Aktiviere die Option \"Veraltete Kacheln anzeigen\" im Menü des Leveleditors." + +#: src/editor/editor.cpp:626 msgid "" "Don't forget that your levels and assets\n" "aren't saved between sessions!\n" @@ -3343,11 +4679,15 @@ msgid "" "from the \"Manage Assets\" menu." msgstr "Vergiss nicht, dass deine Levels und Spieldaten\nnicht zwischen den Sitzungen gespeichert werden!\nWenn du deine Levels behalten möchtest,\nlade sich aus dem \"Spieldaten verwalten\"-Menü\nherunter." -#: src/editor/editor.cpp:582 +#: src/editor/editor.cpp:661 msgid "This level contains unsaved changes, do you want to save?" msgstr "Dieser Level enthält nicht gespeicherte Änderungen, möchtest du speichern?" -#: src/editor/editor.cpp:622 +#: src/editor/editor.cpp:662 +msgid "This level may contain unsaved changes, do you want to save?" +msgstr "Dieses Level enthält möglicherweise ungespeicherte Änderungen. Möchtest du das Level speichern?" + +#: src/editor/editor.cpp:797 msgid "" "Some obsolete add-ons are still active\n" "and might cause collisions with default Super Tux structure.\n" @@ -3355,93 +4695,71 @@ msgid "" "Disabling these add-ons will not delete your game progress." msgstr "Einige veraltete Add-ons sind noch aktiv\nund könnten Kollisionen mit der Standardstruktur von SuperTux verursachen.\nDiese Add-ons können weiterhin im Menü aktiviert werden.\nDie Deaktivierung dieser Add-ons wird den Spielfortschritt nicht löschen." -#: src/editor/editor.cpp:625 +#: src/editor/editor.cpp:800 msgid "Disable add-ons" msgstr "Add-ons deaktivieren" -#: src/editor/editor.cpp:630 +#: src/editor/editor.cpp:805 msgid "Ignore (not advised)" msgstr "Ignorieren (nicht empfohlen)" -#: src/editor/editor.cpp:634 +#: src/editor/editor.cpp:809 msgid "Leave editor" msgstr "Editor verlassen" -#: src/editor/editor.cpp:853 +#: src/editor/editor.cpp:1023 msgid "" "Couldn't find a \"main\" sector.\n" "Please change the name of the sector where\n" "you'd like the player to start to \"main\"" msgstr "Konnte den »main«-Sektor nicht finden.\nBitte ändere den Namen des Sektors,\nin dem der Spieler starten soll, auf »main«" -#: src/editor/editor.cpp:857 +#: src/editor/editor.cpp:1027 msgid "" "Couldn't find a \"main\" spawnpoint.\n" " Please change the name of the spawnpoint where\n" "you'd like the player to start to \"main\"" msgstr "Konnte den »main«-Spawnpoint nicht finden.\nBitte ändere den Namen des Spawnpoints,\nin dem der Spieler starten soll, auf »main«" -#: src/editor/worldmap_objects.cpp:128 -msgid "Outro script" -msgstr "Outro-Script" - -#: src/editor/worldmap_objects.cpp:129 -msgid "Auto play" -msgstr "Automatisch starten" - -#: src/editor/worldmap_objects.cpp:131 -msgid "Title colour" -msgstr "Titelfarbe" - -#: src/editor/worldmap_objects.cpp:173 -msgid "Automatic" -msgstr "Automatisch" - -#: src/editor/worldmap_objects.cpp:175 -msgid "Target worldmap" -msgstr "Ziel-Weltkarte" - -#: src/editor/worldmap_objects.cpp:238 -msgid "Stay action" -msgstr "Aktion fürs Stehenbleiben" - -#: src/editor/worldmap_objects.cpp:239 -msgid "Initial stay action" -msgstr "Erstaktion fürs Stehenbleiben" - -#: src/editor/worldmap_objects.cpp:240 -msgid "Stay group" -msgstr "Bleibegruppe" - -#: src/editor/worldmap_objects.cpp:241 -msgid "Change on touch" -msgstr "Bei Berührung verändern" - -#: src/editor/worldmap_objects.cpp:271 -msgid "Show message" -msgstr "Nachricht anzeigen" +#: src/editor/object_menu.cpp:60 +msgid "Patch Notes" +msgstr "Änderungsnotizen" -#: src/editor/worldmap_objects.cpp:273 -msgid "Invisible" -msgstr "Unsichtbar" - -#: src/editor/overlay_widget.cpp:1297 +#: src/editor/object_menu.cpp:84 +msgid "" +"This will update the object to its latest functionality.\n" +"Check the \"Patch Notes\" for more information.\n" +"\n" +"Keep in mind this is very likely to break the proper behaviour of the object.\n" +"Make sure to re-check any behaviour, related to the object." +msgstr "Dadurch wird das Objekt auf die neuesten Funktionen aktualisiert.\nIn den Änderungsnotizen finden Sie weitere Informationen.\n\nDenke daran, dass dies sehr wahrscheinlich das korrekte Verhalten des Objekts beeinträchtigt.\nStelle sicher, dass Sie das Verhalten des Objekts erneut überprüfen." + +#: src/editor/object_menu.cpp:98 +#, c++-format +msgid "Patch notes for v{}:" +msgstr "Patchnotizen für v{}:" + +#: src/editor/overlay_widget.cpp:1062 +msgid "Cannot select deprecated tiles" +msgstr "Veraltete Kacheln können nicht ausgewählt werden" + +#: src/editor/overlay_widget.cpp:1567 msgid "Autotile mode is on" msgstr "Kachel-Hilfsmodus ist aktiviert" -#: src/editor/overlay_widget.cpp:1299 +#: src/editor/overlay_widget.cpp:1571 msgid "Hold Ctrl to enable autotile" msgstr "Strg drücken, um Kachel-Hilfsmodus zu aktivieren" -#: src/editor/overlay_widget.cpp:1303 +#: src/editor/overlay_widget.cpp:1578 msgid "Autotile erasing mode is on" msgstr "Kachel-Hilfsmodus-Radierer aktivieren" -#: src/editor/overlay_widget.cpp:1305 +#: src/editor/overlay_widget.cpp:1582 msgid "Selected tile isn't autotileable" msgstr "Ausgewählte Kachel ist nicht automatisch kachelbar" -#: src/editor/overlay_widget.cpp:1308 +#: src/editor/overlay_widget.cpp:1587 msgid "Hold Ctrl to enable autotile erasing" msgstr "Strg drücken, um Kachel-Hilfsmodus-Radierer zu aktivieren" @@ -3450,8 +4768,8 @@ msgid "Current SuperTux Team" msgstr "Aktuelles SuperTux-Team" #: data//credits.stxt:30 -msgid "Programming, project lead ad interim" -msgstr "Programmierung, Zwischenzeitlicher Projektleiter" +msgid "Maintainer, Programming" +msgstr "Maintainer, Programmierung" #: data//credits.stxt:35 msgid "Graphics, Level Design, Story" @@ -3461,12 +4779,12 @@ msgstr "Grafik, Leveldesign, Geschichte" msgid "Level Design, Story, Optimisation, Coordination" msgstr "Level-Design, Story, Optimierung, Koordinierung" -#: data//credits.stxt:45 data//credits.stxt:105 data//credits.stxt:191 -#: data//credits.stxt:519 +#: data//credits.stxt:45 data//credits.stxt:120 data//credits.stxt:206 +#: data//credits.stxt:538 msgid "Graphics" msgstr "Grafik" -#: data//credits.stxt:50 data//credits.stxt:87 data//credits.stxt:93 +#: data//credits.stxt:50 data//credits.stxt:102 data//credits.stxt:108 msgid "Graphics, Programming, Level Design" msgstr "Grafik, Programmierung, Level-Design" @@ -3475,256 +4793,266 @@ msgid "Features and Programming" msgstr "Features und Programmierung" #: data//credits.stxt:60 +msgid "Minor features and programming" +msgstr "Kleinere Features und Programmierung" + +#: data//credits.stxt:65 msgid "Programming, Level Updates" msgstr "Programmierung, Level-Updates" -#: data//credits.stxt:65 +#: data//credits.stxt:70 msgid "Graphics, Programming" msgstr "Grafik, Programmierung" -#: data//credits.stxt:70 data//credits.stxt:135 data//credits.stxt:140 -#: data//credits.stxt:145 data//credits.stxt:150 data//credits.stxt:165 -#: data//credits.stxt:170 data//credits.stxt:515 data//credits.stxt:527 +#: data//credits.stxt:75 data//credits.stxt:85 data//credits.stxt:150 +#: data//credits.stxt:155 data//credits.stxt:160 data//credits.stxt:165 +#: data//credits.stxt:180 data//credits.stxt:185 data//credits.stxt:534 +#: data//credits.stxt:546 msgid "Programming" msgstr "Programmierung" -#: data//credits.stxt:76 +#: data//credits.stxt:80 data//credits.stxt:266 +msgid "Level Design" +msgstr "Level-Design" + +#: data//credits.stxt:91 msgid "Original Developers" msgstr "Ursprüngliche Entwickler" -#: data//credits.stxt:81 +#: data//credits.stxt:96 msgid "Original Developer" msgstr "Ursprünglicher Entwickler" -#: data//credits.stxt:99 +#: data//credits.stxt:114 msgid "Music, Level Design" msgstr "Musik, Level-Design" -#: data//credits.stxt:111 +#: data//credits.stxt:126 msgid "Programming, Graphics, Level Design" msgstr "Programmierung, Grafik, Level-Design" -#: data//credits.stxt:117 +#: data//credits.stxt:132 msgid "Programming, Level Design" msgstr "Programmierung, Level-Design" -#: data//credits.stxt:123 +#: data//credits.stxt:138 msgid "Graphics, Story" msgstr "Grafik, Geschichte" -#: data//credits.stxt:129 +#: data//credits.stxt:144 msgid "Programming, Documentation" msgstr "Programmierung, Dokumentation" -#: data//credits.stxt:155 +#: data//credits.stxt:170 msgid "Coordination" msgstr "Koordination" -#: data//credits.stxt:160 +#: data//credits.stxt:175 msgid "Programming, \"Flexlay\" Level editor" msgstr "Programmierung, \"Flexlay\"-Level-Editor" -#: data//credits.stxt:175 +#: data//credits.stxt:190 msgid "Windows build fixes" msgstr "Windows-Build-Fehlerbehebungen" -#: data//credits.stxt:180 +#: data//credits.stxt:195 msgid "Packaging, Nightly builds" msgstr "Packaging, Nightly-Builds" -#: data//credits.stxt:185 +#: data//credits.stxt:200 msgid "Translation Guru (and many details anyone else could have done)" msgstr "Übersetzungs-Guru (und viele andere Kleinigkeiten, die andere auch hätten machen können)" -#: data//credits.stxt:251 -msgid "Level Design" -msgstr "Level-Design" - -#: data//credits.stxt:431 +#: data//credits.stxt:450 msgid "Additional contributors" msgstr "Weitere Mitwirkende" -#: data//credits.stxt:436 +#: data//credits.stxt:455 msgid "Bug fixes" msgstr "Fehlerbehebungen" -#: data//credits.stxt:440 +#: data//credits.stxt:459 msgid "Scripting functions, Level fixes" msgstr "Skript-Funktionen, Fehlerbehebungen in Levels" -#: data//credits.stxt:444 +#: data//credits.stxt:463 msgid "Code quality fixes" msgstr "Beiträge zur Code-Qualität" -#: data//credits.stxt:448 data//credits.stxt:452 data//credits.stxt:456 -#: data//credits.stxt:483 +#: data//credits.stxt:467 data//credits.stxt:471 data//credits.stxt:475 +#: data//credits.stxt:502 msgid "Various contributions" msgstr "Verschiedene Beiträge" -#: data//credits.stxt:460 +#: data//credits.stxt:479 msgid "Build issue fix" msgstr "Behebung eines Kompilationsproblems" -#: data//credits.stxt:464 data//credits.stxt:468 +#: data//credits.stxt:483 data//credits.stxt:487 msgid "Code contributions" msgstr "Code-Beiträge" -#: data//credits.stxt:471 +#: data//credits.stxt:490 msgid "Code contribution, AppData file" msgstr "Codebeitrag, AppData-Datei" -#: data//credits.stxt:475 +#: data//credits.stxt:494 msgid "Bug fix" msgstr "Fehlerbehebung" -#: data//credits.stxt:479 +#: data//credits.stxt:498 msgid "Menu reorganization" msgstr "Reorganisation des Menüs" -#: data//credits.stxt:487 +#: data//credits.stxt:506 msgid "Fixing tile bugs" msgstr "Behebung von Kachelfehlern" -#: data//credits.stxt:491 +#: data//credits.stxt:510 msgid "Build error fix" msgstr "Behebung eines Kompilationsfehlers" -#: data//credits.stxt:495 +#: data//credits.stxt:514 msgid "Scripting function fix" msgstr "Skript-Funktion-Fehlerbehebung" -#: data//credits.stxt:499 +#: data//credits.stxt:518 msgid "New features and notable updates" msgstr "Neue Features und Updates" -#: data//credits.stxt:503 +#: data//credits.stxt:522 msgid "Support for \"glbinding\" as optional OpenGL binding" msgstr "Unterstützung von \"glbinding\" als optionalem OpenGL-Binding" -#: data//credits.stxt:507 +#: data//credits.stxt:526 msgid "New menu code" msgstr "Code für neues Menü" -#: data//credits.stxt:511 +#: data//credits.stxt:530 msgid "Big Tux Walking Sprites improvements" msgstr "Verbesserungen der Gang-Animation des großen Tux" -#: data//credits.stxt:523 data//credits.stxt:531 +#: data//credits.stxt:542 data//credits.stxt:550 msgid "Contrib Programming" msgstr "Beiträge zur Programmierung" -#: data//credits.stxt:535 +#: data//credits.stxt:554 msgid "Programming, Previous Maintainer" msgstr "Programmierung, vorheriger Maintainer" -#: data//credits.stxt:539 +#: data//credits.stxt:558 msgid "Various Contributions" msgstr "Diverse Mitwirkende" -#: data//credits.stxt:543 -msgid "Minor features and programming" -msgstr "Kleinere Features und Programmierung" - -#: data//credits.stxt:547 data//credits.stxt:551 data//credits.stxt:555 -#: data//credits.stxt:559 data//credits.stxt:563 data//credits.stxt:567 -#: data//credits.stxt:571 data//credits.stxt:575 data//credits.stxt:579 -#: data//credits.stxt:583 data//credits.stxt:587 data//credits.stxt:591 +#: data//credits.stxt:562 data//credits.stxt:566 data//credits.stxt:570 +#: data//credits.stxt:574 data//credits.stxt:578 data//credits.stxt:582 +#: data//credits.stxt:586 data//credits.stxt:590 data//credits.stxt:594 +#: data//credits.stxt:598 data//credits.stxt:602 data//credits.stxt:606 +#: data//credits.stxt:610 data//credits.stxt:614 data//credits.stxt:618 +#: data//credits.stxt:622 data//credits.stxt:626 data//credits.stxt:630 +#: data//credits.stxt:634 data//credits.stxt:638 data//credits.stxt:642 +#: data//credits.stxt:646 data//credits.stxt:650 data//credits.stxt:654 +#: data//credits.stxt:658 data//credits.stxt:662 msgid "Contributions" msgstr "Beiträge" -#: data//credits.stxt:597 +#: data//credits.stxt:668 msgid "Localization" msgstr "Übersetzung" -#: data//credits.stxt:1144 +#: data//credits.stxt:1231 msgid " Special Thanks to" msgstr " Besonderen Dank an" -#: data//credits.stxt:1149 +#: data//credits.stxt:1236 msgid "Creator of Tux, the Linux penguin" msgstr "Erfinder von Tux, dem Linux-Pinguin" -#: data//credits.stxt:1153 +#: data//credits.stxt:1240 msgid "SDL, OpenAL and OpenGL" msgstr "SDL, OpenAL und OpenGL" -#: data//credits.stxt:1154 +#: data//credits.stxt:1241 msgid "" "For making such a great gaming experience\n" " possible on Linux" msgstr "Für das Ermöglichen einer großartigen\n Spielerfahrung unter Linux" -#: data//credits.stxt:1159 +#: data//credits.stxt:1246 msgid "and you, the player" msgstr "und an dich, den Spieler" -#: data//credits.stxt:1160 +#: data//credits.stxt:1247 msgid "for giving this game a chance and playing it" msgstr "dafür, dass du diesem Spiel eine Chance gibst und es spielst" -#: data//credits.stxt:1171 +#: data//credits.stxt:1258 msgid "Visit our webpage at" msgstr "Besuche unsere Webseite unter" -#: data//credits.stxt:1180 +#: data//credits.stxt:1267 msgid "Or visit us directly at IRC:" msgstr "Oder besuche uns direkt im IRC:" -#: data//credits.stxt:1184 +#: data//credits.stxt:1271 msgid "#supertux at web.libera.chat" msgstr "#supertux auf web.libera.chat" -#: data//credits.stxt:1189 +#: data//credits.stxt:1276 msgid "Or at our Forum:" msgstr "Oder in unserem Forum:" -#: data//credits.stxt:1198 +#: data//credits.stxt:1285 msgid "Comments, ideas and suggestions" msgstr "Kommentare, Ideen und Vorschläge" -#: data//credits.stxt:1202 +#: data//credits.stxt:1289 msgid "go to our mailing list" msgstr "gehen an unsere Mailing-Liste" #. l10n: typo contact -#: data//credits.stxt:1212 +#: data//credits.stxt:1299 msgid "Typographical errors can be" msgstr "Übersetzungsfehler können bei" #. l10n: typo contact -#: data//credits.stxt:1217 +#: data//credits.stxt:1304 msgid "reported to" msgstr "gemeldet werden" #. l10n: typo contact, see -#: data//credits.stxt:1222 +#: data//credits.stxt:1309 msgid "supertux-devel@lists.lethargik.org" msgstr "supertux-devel@lists.lethargik.org" -#: data//credits.stxt:1229 +#: data//credits.stxt:1316 msgid "Want to help…" msgstr "Möchtest du ..." -#: data//credits.stxt:1234 +#: data//credits.stxt:1321 msgid "…with localization?" msgstr "...bei der Übersetzung helfen?" -#: data//credits.stxt:1244 +#: data//credits.stxt:1331 msgid "…with something else?" msgstr "...bei etwas anderem helfen?" -#: data//credits.stxt:1255 +#: data//credits.stxt:1342 msgid "Thank you for" msgstr "Danke, dass" -#: data//credits.stxt:1259 +#: data//credits.stxt:1346 msgid "playing" msgstr "du" -#: data//credits.stxt:1269 +#: data//credits.stxt:1356 msgid "Penny awaits you in warmer temperatures!" msgstr "Penny erwartet dich bei wärmeren Temperaturen!" +#: data//images/engine/editor/objects.stoi:4 +msgid "Enemies" +msgstr "Gegner" + #: data//images/engine/editor/objects.stoi:162 msgid "Bosses" msgstr "Bosse" @@ -3733,15 +5061,10 @@ msgstr "Bosse" msgid "Projectiles" msgstr "Geschosse" -#: data//images/engine/editor/objects.stoi:187 +#: data//images/engine/editor/objects.stoi:184 msgid "Environment" msgstr "Umgebung" -#: data//images/ice_world.strf:10 data//images/tiles.strf:28 -#: data//images/worldmap.strf:41 -msgid "Snow" -msgstr "Schnee" - #: data//images/ice_world.strf:80 msgid "Ice Cave & Crystal" msgstr "Eishöhle & Kristalle" @@ -3750,11 +5073,6 @@ msgstr "Eishöhle & Kristalle" msgid "Embellishments" msgstr "Verzierungen" -#: data//images/ice_world.strf:211 data//images/tiles.strf:386 -#: data//images/worldmap.strf:67 -msgid "Forest" -msgstr "Wald" - #: data//images/ice_world.strf:320 msgid "Underground Forest" msgstr "Walduntergrund" @@ -3779,57 +5097,61 @@ msgstr "Pfade" msgid "Water" msgstr "Wasser" -#: data//images/tiles.strf:176 +#: data//images/tiles.strf:252 msgid "Snow Background" msgstr "Schneehintergrund" -#: data//images/tiles.strf:231 -msgid "Snow Mountain" -msgstr "Schneeberg" - -#: data//images/tiles.strf:305 +#: data//images/tiles.strf:300 msgid "Crystal" msgstr "Kristall" -#: data//images/tiles.strf:532 +#: data//images/tiles.strf:539 msgid "Forest Background" msgstr "Wald (Hintergrund)" -#: data//images/tiles.strf:663 +#: data//images/tiles.strf:690 +msgid "Corrupted Forest" +msgstr "Verdorbener Wald" + +#: data//images/tiles.strf:868 +msgid "Corrupted Background" +msgstr "Verdorbener Hintergrund" + +#: data//images/tiles.strf:991 msgid "Block + Bonus" msgstr "Block + Bonus" -#: data//images/tiles.strf:715 +#: data//images/tiles.strf:1069 msgid "Pole + Signs" msgstr "Stangen + Schilder" -#: data//images/tiles.strf:760 +#: data//images/tiles.strf:1113 msgid "Liquid" msgstr "Flüssig" -#: data//images/tiles.strf:793 +#: data//images/tiles.strf:1131 msgid "Castle" msgstr "Burg" -#: data//images/tiles.strf:930 data//images/worldmap.strf:199 +#: data//images/tiles.strf:1231 data//images/worldmap.strf:199 msgid "Halloween" msgstr "Halloween" -#: data//images/tiles.strf:958 +#: data//images/tiles.strf:1272 msgid "Industrial" msgstr "Industriell" -#: data//images/tiles.strf:973 +#: data//images/tiles.strf:1287 msgid "Unisolid + Lightmap" msgstr "Unisolid + Lightmap" -#: data//images/tiles.strf:1000 +#: data//images/tiles.strf:1314 msgid "Miscellaneous" msgstr "Verschiedenes" -#: data//images/tiles.strf:1043 -msgid "Retro Snow" -msgstr "Retro-Schnee" +#: data//images/tiles.strf:1342 +msgid "Retro Tiles" +msgstr "Retro-Kacheln" #: data//images/worldmap.strf:24 msgid "Water paths" @@ -3842,3 +5164,19 @@ msgstr "Burgpfade" #: data//images/worldmap.strf:135 msgid "Darker Forest" msgstr "Dunklerer Wald" + +#: data//images/converters/data.stcd:3 +msgid "Nightly Tiles" +msgstr "Nächtliche Kacheln" + +#: data//images/converters/data.stcd:5 +msgid "For levels, created in previous Nightly builds." +msgstr "Für Level, die in früheren Nightly-Builds erstellt wurden." + +#: data//images/converters/data.stcd:8 +msgid "Pre-0.6.3 Crystal Tiles" +msgstr "Vor-0.6.3 Kristallkacheln" + +#: data//images/converters/data.stcd:10 +msgid "For levels, created in pre-0.6.3 versions, which use crystal tiles." +msgstr "Für Levels, die in Versionen vor pre-0.6.3 erstellt wurden, die Kristallkacheln verwenden." diff --git a/data/locale/el.po b/data/locale/el.po index 95cb7bd5b57..8ea78eae76a 100644 --- a/data/locale/el.po +++ b/data/locale/el.po @@ -1769,8 +1769,8 @@ msgstr "Πατήστε το escape για παράβλεψη" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Χρήση: %s [OPTIONS] [LEVELFILE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Χρήση: {} [OPTIONS] [LEVELFILE]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2493,13 +2493,13 @@ msgstr "Αλλαγή μεγέθους" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[Προφίλ %s]" +msgid "[Profile {}]" +msgstr "[Προφίλ {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "Προφίλ %s" +msgid "Profile {}" +msgstr "Προφίλ {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2547,8 +2547,8 @@ msgstr "Άγνωστο" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" από \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" από \"{}\"" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2560,13 +2560,13 @@ msgstr "Δεν βρέθηκαν Πρόσθετα" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "Εγκατάσταση %s *ΝΕΟ*" +msgid "Install {} *NEW*" +msgstr "Εγκατάσταση {} *ΝΕΟ*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Εγκατάσταση %s" +msgid "Install {}" +msgstr "Εγκατάσταση {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2586,8 +2586,8 @@ msgstr "Κατέβασμα λίστας αποθετηρίου Πρόσθετω #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "Λήψη %s" +msgid "Downloading {}" +msgstr "Λήψη {}" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3100,8 +3100,8 @@ msgstr "Δεν μπορείτε να διαγράψετε το επίπεδο π #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "συμβολή από %s" +msgid "contributed by {}" +msgstr "συμβολή από {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/eo.po b/data/locale/eo.po index 1f1a8c0a842..215eec381f4 100644 --- a/data/locale/eo.po +++ b/data/locale/eo.po @@ -1772,8 +1772,8 @@ msgstr "Premu eskapi por salti" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Uzado: %s [OPTIONS] [LEVELFILE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Uzado: {} [OPTIONS] [LEVELFILE]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2496,13 +2496,13 @@ msgstr "Regrandigi" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[Profilo %s]" +msgid "[Profile {}]" +msgstr "[Profilo {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "Profilo %s" +msgid "Profile {}" +msgstr "Profilo {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2550,8 +2550,8 @@ msgstr "Nekonata" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" de \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" de \"{}\"" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2563,13 +2563,13 @@ msgstr "Neniuj aldonaĵoj trovitaj" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "Instali %s *NOVA*" +msgid "Install {} *NEW*" +msgstr "Instali {} *NOVA*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Instali %s" +msgid "Install {}" +msgstr "Instali {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2589,8 +2589,8 @@ msgstr "Elŝutante Aldonan Deponejon Indekson" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "Elŝutante %s" +msgid "Downloading {}" +msgstr "Elŝutante {}" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3103,8 +3103,8 @@ msgstr "Vi ne povas forigi la nivelon, kiun vi redaktas!" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "Proponita de %s" +msgid "contributed by {}" +msgstr "Proponita de {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/es.po b/data/locale/es.po index c56afa15695..4388a4601de 100644 --- a/data/locale/es.po +++ b/data/locale/es.po @@ -10,148 +10,193 @@ # Gastón , 2016 # Germana , 2013 # Javier Beaumont , 2004 +# José Fryxell, 2022 # Juan Jaramillo , 2016 # Juan Jaramillo , 2019 # Juan José Trujillo , 2018 # Kory Giles , 2020 +# Martin, 2022 # Rami Slicer , 2020 -# Swyter , 2018,2021 +# Swyter , 2018,2021-2022,2024 # Tam Ezquerra , 2019 # Tam Ezquerra , 2019 +# Unknown, 2024 # William Beltrán , 2016 # William Beltrán , 2015-2016 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-14 05:23+0000\n" -"Last-Translator: Swyter \n" -"Language-Team: Spanish (http://www.transifex.com/arctic-games/supertux/language/es/)\n" +"POT-Creation-Date: 2024-05-30 16:19+0200\n" +"PO-Revision-Date: 2013-08-10 22:56+0000\n" +"Last-Translator: Unknown, 2024\n" +"Language-Team: Spanish (http://app.transifex.com/arctic-games/supertux/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: src/trigger/secretarea_trigger.cpp:53 src/trigger/secretarea_trigger.cpp:61 +#: src/trigger/secretarea_trigger.cpp:47 msgid "You found a secret area!" msgstr "¡Has encontrado un área secreta!" -#: src/trigger/secretarea_trigger.cpp:77 src/supertux/game_object.cpp:90 -#: src/supertux/menu/editor_sector_menu.cpp:34 -#: src/supertux/menu/editor_levelset_menu.cpp:58 +#: src/trigger/secretarea_trigger.cpp:55 src/supertux/game_object.cpp:115 +#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_levelset_menu.cpp:52 #: src/supertux/menu/editor_new_levelset_menu.cpp:34 +#: src/supertux/menu/profile_name_menu.cpp:39 #: src/supertux/menu/editor_level_menu.cpp:33 msgid "Name" msgstr "Nombre" -#: src/trigger/secretarea_trigger.cpp:78 +#: src/trigger/secretarea_trigger.cpp:56 msgid "Fade tilemap" msgstr "Desvanecer mosaico" -#: src/trigger/secretarea_trigger.cpp:79 src/trigger/climbable.cpp:81 -#: src/object/infoblock.cpp:57 src/editor/worldmap_objects.cpp:172 -#: src/editor/worldmap_objects.cpp:270 +#: src/trigger/secretarea_trigger.cpp:57 src/trigger/climbable.cpp:59 +#: src/object/infoblock.cpp:76 src/worldmap/teleporter.cpp:49 +#: src/worldmap/special_tile.cpp:74 msgid "Message" msgstr "Mensaje" -#: src/trigger/secretarea_trigger.cpp:80 src/trigger/scripttrigger.cpp:75 -#: src/trigger/door.cpp:73 src/object/ispy.cpp:67 -#: src/object/bonus_block.cpp:207 src/object/bonus_block.cpp:211 -#: src/object/pushbutton.cpp:51 src/object/powerup.cpp:190 -#: src/editor/worldmap_objects.cpp:272 +#: src/trigger/secretarea_trigger.cpp:58 src/trigger/scripttrigger.cpp:51 +#: src/trigger/door.cpp:79 src/object/ispy.cpp:53 +#: src/object/bonus_block.cpp:264 src/object/bonus_block.cpp:268 +#: src/object/pushbutton.cpp:62 src/object/powerup.cpp:301 +#: src/worldmap/special_tile.cpp:76 msgid "Script" msgstr "Script" -#: src/trigger/scripttrigger.cpp:76 src/object/pushbutton.hpp:31 +#: src/trigger/scripttrigger.cpp:52 src/object/pushbutton.hpp:32 msgid "Button" msgstr "Botón" -#: src/trigger/scripttrigger.cpp:77 +#: src/trigger/scripttrigger.cpp:53 msgid "Oneshot" msgstr "Ejecutar una sola vez" -#: src/trigger/sequence_trigger.hpp:33 +#: src/trigger/sequence_trigger.hpp:31 msgid "Sequence Trigger" msgstr "Disparador de secuencia" -#: src/trigger/door.cpp:74 src/badguy/willowisp.cpp:320 -#: src/supertux/menu/editor_sector_menu.cpp:32 -#: src/editor/layers_widget.cpp:342 -#: data//images/engine/editor/objects.stoi:321 +#: src/trigger/text_area.cpp:141 +msgid "Once" +msgstr "Una vez" + +#: src/trigger/text_area.cpp:142 +msgid "Text change time" +msgstr "Tiempo de cambio del texto" + +#: src/trigger/text_area.cpp:143 +msgid "Fade time" +msgstr "Tiempo de desaparición" + +#: src/trigger/text_area.cpp:144 src/object/textscroller.cpp:353 +msgid "Anchor" +msgstr "Anclado" + +#: src/trigger/text_area.cpp:148 +msgid "Anchor offset X" +msgstr "Desplazarse de anclaje X" + +#: src/trigger/text_area.cpp:149 +msgid "Anchor offset Y" +msgstr "Desplazarse de anclaje Y" + +#: src/trigger/text_area.cpp:150 +msgid "Texts" +msgstr "Textos" + +#: src/trigger/door.cpp:80 src/badguy/willowisp.cpp:311 +#: src/worldmap/teleporter.cpp:47 data//images/engine/editor/objects.stoi:342 msgid "Sector" msgstr "Sector" -#: src/trigger/door.cpp:75 src/editor/worldmap_objects.hpp:101 +#: src/trigger/door.cpp:81 src/worldmap/spawn_point.hpp:58 msgid "Spawn point" msgstr "Punto de aparición" -#: src/trigger/switch.cpp:61 src/object/block.cpp:224 src/object/torch.cpp:102 -#: src/object/moving_sprite.cpp:156 src/object/pneumatic_platform.cpp:146 -msgid "Sprite" -msgstr "Sprite" +#: src/trigger/door.cpp:82 +msgid "Locked?" +msgstr "¿Bloqueado?" + +#: src/trigger/door.cpp:83 +msgid "Lock Color" +msgstr "Bloquear Color" + +#: src/trigger/switch.cpp:62 src/object/ispy.cpp:54 src/object/bumper.cpp:53 +#: src/object/spotlight.cpp:106 src/object/pushbutton.cpp:61 +#: src/object/gradient.cpp:103 src/object/conveyor_belt.cpp:60 +#: src/badguy/badguy.cpp:1063 src/worldmap/spawn_point.cpp:79 +#: src/worldmap/special_tile.cpp:78 +msgid "Direction" +msgstr "Dirección" -#: src/trigger/switch.cpp:62 +#: src/trigger/switch.cpp:65 msgid "Turn on script" msgstr "Activar script" -#: src/trigger/switch.cpp:63 +#: src/trigger/switch.cpp:66 msgid "Turn off script" msgstr "Desactivar script" -#: src/trigger/scripttrigger.hpp:32 +#: src/trigger/scripttrigger.hpp:29 msgid "Script Trigger" msgstr "Activador de script" -#: src/trigger/sequence_trigger.cpp:75 +#: src/trigger/sequence_trigger.cpp:48 msgid "Sequence" msgstr "Secuencia" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "end sequence" msgstr "terminar secuencia" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "stop Tux" msgstr "detener a Tux" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "fireworks" msgstr "fuegos artificiales" -#: src/trigger/sequence_trigger.cpp:80 +#: src/trigger/sequence_trigger.cpp:53 msgid "New worldmap spawnpoint" msgstr "Nuevo punto de entrada en el mapa global" -#: src/trigger/sequence_trigger.cpp:81 +#: src/trigger/sequence_trigger.cpp:54 msgid "Worldmap fade tilemap" msgstr "Desvanecer mosaico del mapa global" -#: src/trigger/sequence_trigger.cpp:82 +#: src/trigger/sequence_trigger.cpp:55 #: src/object/custom_particle_system.cpp:430 #: src/object/custom_particle_system.cpp:465 msgid "Fade" msgstr "Desvanecer" -#: src/trigger/sequence_trigger.cpp:83 src/editor/particle_editor.cpp:161 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:161 msgid "Fade in" msgstr "Aparecer gradualmente" -#: src/trigger/sequence_trigger.cpp:83 src/editor/particle_editor.cpp:167 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:167 #: src/editor/particle_editor.cpp:212 msgid "Fade out" msgstr "Desaparecer gradualmente" -#: src/trigger/climbable.hpp:37 +#: src/trigger/climbable.hpp:46 msgid "Climbable" msgstr "Se puede escalar" -#: src/trigger/door.hpp:34 +#: src/trigger/text_area.hpp:47 +msgid "Text Area" +msgstr "Àrea de texto" + +#: src/trigger/door.hpp:31 msgid "Door" msgstr "Puerta" -#: src/trigger/switch.hpp:33 +#: src/trigger/switch.hpp:30 msgid "Switch" msgstr "Interruptor" @@ -159,118 +204,194 @@ msgstr "Interruptor" msgid "Secret Area" msgstr "Zona secreta" -#: src/object/thunderstorm.hpp:40 +#: src/math/anchor_point.cpp:33 +msgid "Top Left" +msgstr "" + +#: src/math/anchor_point.cpp:34 +msgid "Top" +msgstr "" + +#: src/math/anchor_point.cpp:35 +msgid "Top Right" +msgstr "" + +#: src/math/anchor_point.cpp:36 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:38 +#: src/supertux/menu/joystick_menu.cpp:73 +msgid "Left" +msgstr "Izquierda" + +#: src/math/anchor_point.cpp:37 +msgid "Middle" +msgstr "" + +#: src/math/anchor_point.cpp:38 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:39 +#: src/supertux/menu/joystick_menu.cpp:74 +msgid "Right" +msgstr "Derecha" + +#: src/math/anchor_point.cpp:39 +msgid "Bottom Left" +msgstr "" + +#: src/math/anchor_point.cpp:40 +msgid "Bottom" +msgstr "" + +#: src/math/anchor_point.cpp:41 +msgid "Bottom Right" +msgstr "" + +#: src/object/thunderstorm.hpp:44 msgid "Thunderstorm" msgstr "Tormenta eléctrica" -#: src/object/cloud_particle_system.cpp:79 +#: src/object/cloud_particle_system.cpp:77 #: src/object/rain_particle_system.cpp:100 msgid "Intensity" msgstr "Intensidad" -#: src/object/custom_particle_system.hpp:45 +#: src/object/custom_particle_system.hpp:46 msgid "Custom Particles" msgstr "Partículas propias" -#: src/object/ispy.cpp:66 -msgid "Facing Down" -msgstr "Mirar abajo" - -#: src/object/ispy.cpp:68 src/object/spotlight.cpp:103 -#: src/object/gradient.cpp:137 src/badguy/willowisp.cpp:319 -#: src/badguy/badguy.cpp:848 src/editor/worldmap_objects.cpp:207 -#: src/editor/worldmap_objects.cpp:274 -msgid "Direction" -msgstr "Dirección" - -#: src/object/particle_zone.hpp:39 +#: src/object/particle_zone.hpp:41 msgid "Particle zone" msgstr "Zona de partícula" -#: src/object/path_gameobject.hpp:44 src/object/coin.cpp:301 -#: src/object/camera.cpp:224 src/object/platform.cpp:73 -#: src/object/path_gameobject.cpp:173 src/object/tilemap.cpp:246 -#: src/gui/menu_paths.cpp:52 src/badguy/willowisp.cpp:326 +#: src/object/path_gameobject.hpp:45 src/object/coin.cpp:324 +#: src/object/camera.cpp:168 src/object/platform.cpp:76 +#: src/object/path_gameobject.cpp:175 src/object/tilemap.cpp:284 +#: src/badguy/willowisp.cpp:317 msgid "Path" msgstr "Ruta" -#: src/object/decal.cpp:49 src/object/scripted_object.cpp:67 -#: src/object/particlesystem.cpp:65 src/object/background.cpp:183 -#: src/object/thunderstorm.cpp:68 src/object/tilemap.cpp:239 -#: src/object/gradient.cpp:135 -msgid "Z-pos" -msgstr "Posición eje Z" - -#: src/object/decal.cpp:50 src/object/scripted_object.cpp:70 -#: src/object/tilemap.cpp:228 +#: src/object/decal.cpp:48 src/object/scripted_object.cpp:70 +#: src/object/tilemap.cpp:266 msgid "Solid" msgstr "Sólido" -#: src/object/decal.cpp:51 src/supertux/menu/keyboard_menu.cpp:37 -#: src/supertux/menu/joystick_menu.cpp:74 +#: src/object/decal.cpp:49 src/supertux/menu/keyboard_menu.cpp:41 +#: src/supertux/menu/joystick_menu.cpp:76 msgid "Action" msgstr "Acción" -#: src/object/weak_block.hpp:35 +#: src/object/weak_block.hpp:36 msgid "Weak Tile" msgstr "Tesela frágil" -#: src/object/bumper.cpp:46 -msgid "Facing Left" -msgstr "Mirar a la izquierda" - -#: src/object/gradient.hpp:42 +#: src/object/gradient.hpp:43 msgid "Gradient" msgstr "Degradado" -#: src/object/tilemap.hpp:57 +#: src/object/tilemap.hpp:58 msgid "Tilemap" msgstr "Mosaico" -#: src/object/circleplatform.hpp:32 +#: src/object/sound_object.cpp:69 src/object/ambient_sound.cpp:85 +#: src/object/sound_object.hpp:42 src/supertux/menu/options_menu.cpp:128 +#: data//credits.stxt:367 +msgid "Sound" +msgstr "Sonido" + +#: src/object/sound_object.cpp:70 src/object/ambient_sound.cpp:87 +msgid "Volume" +msgstr "Volumen" + +#: src/object/conveyor_belt.hpp:39 +msgid "Conveyor Belt" +msgstr "" + +#: src/object/unstable_tile.cpp:70 src/object/weak_block.cpp:97 +#: src/badguy/flame.cpp:86 +msgid "Ice" +msgstr "Hielo" + +#: src/object/unstable_tile.cpp:71 src/object/brick.hpp:34 +msgid "Brick" +msgstr "Ladrillo" + +#: src/object/unstable_tile.cpp:72 +msgid "Delayed" +msgstr "" + +#: src/object/circleplatform.hpp:35 msgid "Circular Platform" msgstr "Plataforma circular" -#: src/object/brick.cpp:133 +#: src/object/brick.cpp:59 src/object/coin.cpp:69 +#: src/object/invisible_block.cpp:37 src/object/background.cpp:200 +#: src/object/tilemap.cpp:279 src/object/gradient.cpp:109 +#: src/badguy/viciousivy.cpp:44 src/badguy/snail.cpp:69 +#: src/badguy/smartball.cpp:34 src/badguy/bouncing_snowball.cpp:81 +#: src/badguy/kamikazesnowball.cpp:117 src/badguy/walkingleaf.cpp:35 +#: src/badguy/mrbomb.cpp:47 src/badguy/igel.cpp:188 src/badguy/snowball.cpp:40 +#: src/badguy/mrtree.cpp:50 src/badguy/mriceblock.cpp:62 +msgid "Normal" +msgstr "Normal" + +#: src/object/brick.cpp:60 src/object/bonus_block.cpp:175 +#: src/object/coin.cpp:70 src/object/invisible_block.cpp:38 +msgid "Retro" +msgstr "Retro" + +#: src/object/brick.cpp:166 msgid "Breakable" msgstr "Frágil" -#: src/object/trampoline.cpp:136 src/object/rusty_trampoline.cpp:66 +#: src/object/trampoline.cpp:66 src/object/rusty_trampoline.cpp:66 msgid "Portable" msgstr "Portable" -#: src/object/spotlight.cpp:100 src/object/rain_particle_system.cpp:101 +#: src/object/trampoline.cpp:67 +msgid "Stationary" +msgstr "" + +#: src/object/key.hpp:38 +msgid "Key" +msgstr "Llave" + +#: src/object/spotlight.cpp:102 src/object/particlesystem.cpp:64 +#: src/object/particle_zone.cpp:50 src/badguy/darttrap.cpp:149 +#: src/supertux/menu/addon_preview_menu.cpp:189 +msgid "Enabled" +msgstr "Activado" + +#: src/object/spotlight.cpp:103 src/object/rain_particle_system.cpp:101 msgid "Angle" msgstr "Ángulo" -#: src/object/spotlight.cpp:101 src/object/magicblock.cpp:94 -#: src/object/candle.cpp:77 src/object/torch.cpp:104 -#: src/object/rublight.cpp:54 src/object/lantern.cpp:62 -#: src/object/ambient_light.cpp:131 src/badguy/willowisp.cpp:328 -#: src/badguy/walking_candle.cpp:82 +#: src/object/spotlight.cpp:104 src/object/magicblock.cpp:95 +#: src/object/candle.cpp:75 src/object/torch.cpp:96 src/object/rublight.cpp:55 +#: src/object/lantern.cpp:62 src/object/ambient_light.cpp:122 +#: src/object/key.cpp:192 src/badguy/willowisp.cpp:319 +#: src/badguy/walking_candle.cpp:91 msgid "Color" msgstr "Color" -#: src/object/spotlight.cpp:102 src/object/textscroller.cpp:350 -#: src/object/rain_particle_system.cpp:102 src/object/circleplatform.cpp:55 -#: src/badguy/flame.cpp:59 src/editor/node_marker.cpp:125 +#: src/object/spotlight.cpp:105 src/object/textscroller.cpp:350 +#: src/object/rain_particle_system.cpp:102 src/object/conveyor_belt.cpp:61 +#: src/object/circleplatform.cpp:58 src/badguy/flame.cpp:110 +#: src/editor/node_marker.cpp:125 msgid "Speed" msgstr "Velocidad" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Clockwise" msgstr "Sentido agujas del reloj" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Counter-clockwise" msgstr "Contrario a las agujas del reloj" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Stopped" msgstr "Parado" -#: src/object/spotlight.cpp:107 src/object/candle.cpp:78 -#: src/object/torch.cpp:103 +#: src/object/spotlight.cpp:110 src/object/lit_object.cpp:69 +#: src/object/candle.cpp:76 src/object/torch.cpp:95 msgid "Layer" msgstr "Capa" @@ -282,125 +403,171 @@ msgstr "Física activada" msgid "Visible" msgstr "Visible" -#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:322 +#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:313 msgid "Hit script" msgstr "Script de golpe" -#: src/object/custom_particle_system_file.cpp:50 +#: src/object/custom_particle_system_file.cpp:53 #: src/object/textscroller.cpp:348 src/object/music_object.cpp:109 #: src/supertux/menu/particle_editor_open.cpp:38 msgid "File" msgstr "Archivo" -#: src/object/bonus_block.cpp:208 +#: src/object/bonus_block.cpp:154 +msgid "Only one custom object is allowed inside bonus blocks." +msgstr "" + +#: src/object/bonus_block.cpp:172 +msgid "Blue" +msgstr "Azul" + +#: src/object/bonus_block.cpp:173 +msgid "Orange" +msgstr "Naranja" + +#: src/object/bonus_block.cpp:174 +msgid "Purple" +msgstr "Púrpura" + +#: src/object/bonus_block.cpp:265 src/supertux/menu/cheat_apply_menu.cpp:54 msgid "Count" msgstr "Recuento" -#: src/object/bonus_block.cpp:209 +#: src/object/bonus_block.cpp:266 msgid "Content" msgstr "Contenido" -#: src/object/bonus_block.cpp:210 src/object/coin.hpp:43 +#: src/object/bonus_block.cpp:267 src/object/coin.hpp:44 msgid "Coin" msgstr "Moneda" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (fire flower)" msgstr "Crecimiento (flor de fuego)" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (ice flower)" msgstr "Crecimiento (flor helada)" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (air flower)" msgstr "Crecimiento (flor de aire)" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Growth (earth flower)" msgstr "Crecimiento (flor de tierra)" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 +msgid "Growth (retro)" +msgstr "Crecer (retro)" + +#: src/object/bonus_block.cpp:268 src/object/powerup.cpp:66 msgid "Star" msgstr "Estrella" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 +msgid "Star (retro)" +msgstr "Estrella (retro)" + +#: src/object/bonus_block.cpp:268 msgid "Tux doll" msgstr "Muñeco de Tux" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Custom" msgstr "Personalizar" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Light" msgstr "Luz" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Light (On)" msgstr "Luz (encendida)" -#: src/object/bonus_block.cpp:212 src/object/trampoline.hpp:35 +#: src/object/bonus_block.cpp:269 src/object/trampoline.hpp:37 msgid "Trampoline" msgstr "Trampolín" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 +msgid "Portable trampoline" +msgstr "" + +#: src/object/bonus_block.cpp:269 msgid "Coin rain" msgstr "Lluvia de monedas" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 msgid "Coin explosion" msgstr "Explosión de monedas" -#: src/object/bonus_block.cpp:216 +#: src/object/bonus_block.cpp:269 src/object/rock.hpp:43 +msgid "Rock" +msgstr "Roca" + +#: src/object/bonus_block.cpp:269 +msgid "Potion" +msgstr "Poción" + +#: src/object/bonus_block.cpp:275 msgid "Custom Content" msgstr "Contenido propio" -#: src/object/pneumatic_platform.hpp:62 +#: src/object/bonus_block.cpp:278 +msgid "Coin sprite" +msgstr "Imagen de moneda" + +#: src/object/pneumatic_platform.hpp:65 msgid "Pneumatic Platform" msgstr "Plataforma neumática" -#: src/object/coin.cpp:303 src/object/tilemap.cpp:249 +#: src/object/coin.cpp:326 src/object/tilemap.cpp:287 msgid "Following path" msgstr "Siguiendo ruta" -#: src/object/coin.cpp:306 src/object/camera.cpp:227 -#: src/object/platform.cpp:74 src/object/tilemap.cpp:252 +#: src/object/coin.cpp:329 src/object/camera.cpp:171 +#: src/object/platform.cpp:77 src/object/tilemap.cpp:290 msgid "Path Mode" msgstr "Modo de ruta" -#: src/object/coin.cpp:307 src/object/camera.cpp:228 -#: src/object/platform.cpp:75 src/object/tilemap.cpp:253 -#: src/badguy/willowisp.cpp:331 +#: src/object/coin.cpp:330 src/object/camera.cpp:172 +#: src/object/platform.cpp:78 src/object/tilemap.cpp:291 +#: src/badguy/willowisp.cpp:322 msgid "Adapt Speed" msgstr "Adaptar velocidad" -#: src/object/coin.cpp:308 src/object/platform.cpp:77 -#: src/object/tilemap.cpp:247 src/badguy/willowisp.cpp:327 +#: src/object/coin.cpp:331 src/object/platform.cpp:81 +#: src/object/tilemap.cpp:285 src/badguy/willowisp.cpp:318 msgid "Starting Node" msgstr "Nodo inicial" -#: src/object/coin.cpp:311 src/object/coin.cpp:339 +#: src/object/coin.cpp:332 src/object/camera.cpp:173 +#: src/object/platform.cpp:82 src/object/tilemap.cpp:293 +#: src/badguy/willowisp.cpp:323 +msgid "Handle" +msgstr "Agarrar" + +#: src/object/coin.cpp:335 src/object/coin.cpp:371 msgid "Collect script" msgstr "Script al tocar" -#: src/object/ghost_particle_system.hpp:36 +#: src/object/ghost_particle_system.hpp:37 msgid "Ghost Particles" msgstr "Partículas fantasma" -#: src/object/camera.cpp:219 +#: src/object/camera.cpp:163 msgid "Mode" msgstr "Modo" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "normal" msgstr "normal" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "manual" msgstr "manual" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "autoscroll" msgstr "Desplazamiento automático" @@ -416,32 +583,20 @@ msgstr "Desplazar en X" msgid "Controllable" msgstr "Se puede controlar" -#: src/object/textscroller.cpp:353 -msgid "Anchor" -msgstr "Anclado" - -#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 -#: src/supertux/menu/keyboard_menu.cpp:34 -#: src/supertux/menu/joystick_menu.cpp:71 -msgid "Left" -msgstr "Izquierda" - #: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 msgid "Center" msgstr "Centrado" -#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 -#: src/supertux/menu/keyboard_menu.cpp:35 -#: src/supertux/menu/joystick_menu.cpp:72 -msgid "Right" -msgstr "Derecha" - #: src/object/textscroller.cpp:357 msgid "Text Alignment" msgstr "Alineación del texto" -#: src/object/spawnpoint.hpp:46 src/badguy/willowisp.cpp:321 -#: src/editor/worldmap_objects.cpp:171 +#: src/object/lit_object.hpp:40 +msgid "Lit object" +msgstr "Objeto iluminado" + +#: src/object/spawnpoint.hpp:48 src/badguy/willowisp.cpp:312 +#: src/worldmap/teleporter.cpp:48 msgid "Spawnpoint" msgstr "Punto de aparición" @@ -449,266 +604,339 @@ msgstr "Punto de aparición" msgid "Counter" msgstr "Contador" -#: src/object/candle.hpp:36 +#: src/object/candle.hpp:37 msgid "Candle" msgstr "Vela" -#: src/object/particlesystem.cpp:64 src/object/particle_zone.cpp:79 -#: src/badguy/darttrap.cpp:127 -msgid "Enabled" -msgstr "Activado" +#: src/object/particlesystem.cpp:65 src/object/background.cpp:184 +#: src/object/thunderstorm.cpp:76 src/object/tilemap.cpp:277 +#: src/object/gradient.cpp:101 src/object/moving_sprite.cpp:193 +msgid "Z-pos" +msgstr "Posición eje Z" -#: src/object/invisible_block.hpp:31 +#: src/object/invisible_block.hpp:30 msgid "Invisible Block" msgstr "Bloque invisible " -#: src/object/snow_particle_system.hpp:35 +#: src/object/snow_particle_system.hpp:37 msgid "Snow Particles" msgstr "Partículas de nieve " -#: src/object/powerup.hpp:35 +#: src/object/powerup.hpp:40 msgid "Powerup" msgstr "Potenciador " -#: src/object/fallblock.hpp:39 +#: src/object/infoblock.cpp:78 +msgid "Front Color" +msgstr "Color principal" + +#: src/object/infoblock.cpp:80 +msgid "Back Color" +msgstr "Color de fondo" + +#: src/object/infoblock.cpp:82 +msgid "Roundness" +msgstr "Redondez" + +#: src/object/infoblock.cpp:84 +msgid "Fade Transition" +msgstr "Transición al desaparecer" + +#: src/object/fallblock.hpp:41 msgid "Falling Platform" msgstr "Plataforma que se cae" -#: src/object/level_time.hpp:55 +#: src/object/level_time.hpp:56 msgid "Time Limit" msgstr "Límite de tiempo" -#: src/object/ambient_sound.cpp:119 src/supertux/menu/options_menu.cpp:391 -#: data//credits.stxt:352 -msgid "Sound" -msgstr "Sonido" - -#: src/object/ambient_sound.cpp:120 -msgid "Distance factor" -msgstr "Factor de distancia" - -#: src/object/ambient_sound.cpp:121 -msgid "Distance bias" -msgstr "Margen de distancia" - -#: src/object/ambient_sound.cpp:122 -msgid "Volume" -msgstr "Volumen" +#: src/object/ambient_sound.cpp:86 +msgid "Radius (in tiles)" +msgstr "Radio (en teselas)" #: src/object/torch.hpp:41 msgid "Torch" msgstr "Antorcha" -#: src/object/icecrusher.hpp:53 -msgid "Icecrusher" -msgstr "Triturahielos" - -#: src/object/rublight.hpp:33 +#: src/object/rublight.hpp:34 msgid "Rublight" msgstr "Luces de cercanía" -#: src/object/background.hpp:43 +#: src/object/background.hpp:45 msgid "Background" msgstr "Fondo" -#: src/object/firefly.hpp:36 +#: src/object/text_object.hpp:44 src/gui/menu_string_array.cpp:77 +msgid "Text" +msgstr "Texto" + +#: src/object/firefly.hpp:38 msgid "Checkpoint" msgstr "Punto de control" -#: src/object/ambient_light.hpp:36 +#: src/object/ambient_light.hpp:37 msgid "Ambient Light" msgstr "Luz ambiental" -#: src/object/lantern.hpp:37 +#: src/object/lantern.hpp:38 msgid "Lantern" msgstr "Linterna" -#: src/object/wind.hpp:40 +#: src/object/wind.hpp:43 msgid "Wind" msgstr "Viento" -#: src/object/bicycle_platform.cpp:189 src/object/background.cpp:179 -#: src/object/pneumatic_platform.cpp:147 -#: src/supertux/menu/joystick_menu.cpp:170 src/supertux/moving_object.cpp:58 -#: src/editor/worldmap_objects.cpp:73 +#: src/object/bicycle_platform.cpp:203 src/object/background.cpp:180 +#: src/object/pneumatic_platform.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:65 +#: src/worldmap/worldmap_object.cpp:77 msgid "X" msgstr "X" -#: src/object/bicycle_platform.cpp:190 src/object/background.cpp:180 -#: src/object/pneumatic_platform.cpp:148 -#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:59 -#: src/editor/worldmap_objects.cpp:74 +#: src/object/bicycle_platform.cpp:204 src/object/background.cpp:181 +#: src/object/pneumatic_platform.cpp:163 +#: src/supertux/menu/joystick_menu.cpp:174 src/supertux/moving_object.cpp:66 +#: src/worldmap/worldmap_object.cpp:78 msgid "Y" msgstr "S" -#: src/object/bicycle_platform.cpp:192 +#: src/object/bicycle_platform.cpp:206 msgid "Platforms" msgstr "Plataformas" -#: src/object/bicycle_platform.cpp:193 src/object/circleplatform.cpp:54 -#: src/badguy/flame.cpp:58 src/badguy/rcrystallo.cpp:50 -#: src/badguy/crystallo.cpp:35 +#: src/object/bicycle_platform.cpp:207 src/object/circleplatform.cpp:57 +#: src/badguy/fish_swimming.cpp:76 src/badguy/flame.cpp:109 +#: src/badguy/rcrystallo.cpp:83 src/badguy/crystallo.cpp:50 msgid "Radius" msgstr "Radio" -#: src/object/bicycle_platform.cpp:194 +#: src/object/bicycle_platform.cpp:208 msgid "Momentum change rate" msgstr "Variación de fuerza del impulso" -#: src/object/rain_particle_system.hpp:40 +#: src/object/rain_particle_system.hpp:41 msgid "Rain Particles" msgstr "Partículas de lluvia" -#: src/object/platform.hpp:45 +#: src/object/platform.hpp:46 msgid "Platform" msgstr "Plataforma" -#: src/object/rock.hpp:42 -msgid "Rock" -msgstr "Roca" - -#: src/object/music_object.hpp:41 src/supertux/menu/options_menu.cpp:393 -#: data//credits.stxt:294 +#: src/object/music_object.hpp:42 src/supertux/menu/options_menu.cpp:130 +#: data//credits.stxt:309 msgid "Music" msgstr "Música" -#: src/object/rusty_trampoline.hpp:39 +#: src/object/lit_object.cpp:68 +msgid "Light sprite" +msgstr "Dibujo de luz" + +#: src/object/lit_object.cpp:71 +msgid "Sprite starting action" +msgstr "" + +#: src/object/lit_object.cpp:72 +msgid "Light sprite starting action" +msgstr "" + +#: src/object/lit_object.cpp:74 +msgid "Light sprite offset X" +msgstr "" + +#: src/object/lit_object.cpp:75 +msgid "Light sprite offset Y" +msgstr "" + +#: src/object/rusty_trampoline.hpp:40 msgid "Rusty Trampoline" msgstr "Trampolín oxidado " -#: src/object/particlesystem.hpp:57 +#: src/object/particlesystem.hpp:58 msgid "Particle system" msgstr "Sistema de partículas" -#: src/object/candle.cpp:75 src/object/torch.cpp:101 +#: src/object/candle.cpp:73 src/object/torch.cpp:94 msgid "Burning" msgstr "Encendido" -#: src/object/candle.cpp:76 +#: src/object/candle.cpp:74 msgid "Flicker" msgstr "Parpadeo" -#: src/object/text_array_object.hpp:50 +#: src/object/snow_particle_system.cpp:104 +msgid "Epsilon" +msgstr "Margen extra" + +#: src/object/snow_particle_system.cpp:105 +msgid "Spin Speed" +msgstr "" + +#: src/object/snow_particle_system.cpp:106 +msgid "State Length" +msgstr "" + +#: src/object/snow_particle_system.cpp:107 +msgid "Wind Speed" +msgstr "" + +#: src/object/text_array_object.hpp:47 msgid "Text array" msgstr "Conjunto de texto" -#: src/object/infoblock.hpp:36 +#: src/object/infoblock.hpp:37 msgid "Info Block" msgstr "Bloque de Información " -#: src/object/powerup.cpp:191 +#: src/object/powerup.cpp:61 +msgid "Egg" +msgstr "Huevo" + +#: src/object/powerup.cpp:62 +msgid "Fire Flower" +msgstr "Flor de Fuego" + +#: src/object/powerup.cpp:63 +msgid "Ice Flower" +msgstr "Flor de Hielo" + +#: src/object/powerup.cpp:64 +msgid "Air Flower" +msgstr "Flor de Aire" + +#: src/object/powerup.cpp:65 +msgid "Earth Flower" +msgstr "Flor de Tierra" + +#: src/object/powerup.cpp:67 +msgid "Tux Doll" +msgstr "Muñeco de Tux" + +#: src/object/powerup.cpp:68 +msgid "Flip Potion" +msgstr "" + +#: src/object/powerup.cpp:69 +msgid "Mints" +msgstr "Mentas" + +#: src/object/powerup.cpp:70 +msgid "Coffee" +msgstr "" + +#: src/object/powerup.cpp:71 +msgid "Herring" +msgstr "Arenque" + +#: src/object/powerup.cpp:302 msgid "Disable gravity" msgstr "Desactivar gravedad" -#: src/object/ambient_sound.hpp:62 +#: src/object/powerup.cpp:312 src/object/weak_block.cpp:266 +msgid "" +"Sprites no longer define the behaviour of the object.\n" +"Object types are used instead." +msgstr "" + +#: src/object/ambient_sound.hpp:43 msgid "Ambient Sound" msgstr "Sonido Ambiente" -#: src/object/level_time.cpp:51 src/supertux/statistics.cpp:297 +#: src/object/level_time.cpp:52 src/supertux/statistics.cpp:297 #: src/editor/node_marker.cpp:124 msgid "Time" msgstr "Tiempo" -#: src/object/hurting_platform.hpp:30 +#: src/object/hurting_platform.hpp:31 msgid "Hurting Platform" msgstr "Plataforma que hace daño" -#: src/object/icecrusher.cpp:83 -msgid "Sideways" -msgstr "De lado" - -#: src/object/background.cpp:182 +#: src/object/background.cpp:183 msgid "Fill" msgstr "Rellenar" -#: src/object/background.cpp:184 +#: src/object/background.cpp:185 msgid "Alignment" msgstr "Alineamiento" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 src/supertux/direction.cpp:61 msgid "none" msgstr "ningún(o)" -#: src/object/background.cpp:185 src/editor/object_settings.cpp:119 +#: src/object/background.cpp:186 src/supertux/direction.cpp:63 msgid "left" msgstr "izquierda" -#: src/object/background.cpp:185 src/editor/object_settings.cpp:119 +#: src/object/background.cpp:186 src/supertux/direction.cpp:65 msgid "right" msgstr "derecha" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 msgid "top" msgstr "parte superior" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 msgid "bottom" msgstr "parte inferior" -#: src/object/background.cpp:188 +#: src/object/background.cpp:189 msgid "Scroll offset x" msgstr "Desplazarse en X" -#: src/object/background.cpp:189 +#: src/object/background.cpp:190 msgid "Scroll offset y" msgstr "Desplazarse en Y" -#: src/object/background.cpp:190 +#: src/object/background.cpp:191 msgid "Scroll speed x" msgstr "Velocidad de desplazamiento en X" -#: src/object/background.cpp:191 +#: src/object/background.cpp:192 msgid "Scroll speed y" msgstr " Velocidad de desplazamiento en Y" -#: src/object/background.cpp:192 +#: src/object/background.cpp:193 msgid "Parallax Speed x" msgstr "Velocidad de paralaje en X" -#: src/object/background.cpp:193 +#: src/object/background.cpp:194 msgid "Parallax Speed y" msgstr "Velocidad de paralaje en Y" -#: src/object/background.cpp:194 +#: src/object/background.cpp:195 msgid "Top image" msgstr "Imagen superior" -#: src/object/background.cpp:195 +#: src/object/background.cpp:196 msgid "Image" msgstr "Imagen" -#: src/object/background.cpp:196 +#: src/object/background.cpp:197 msgid "Bottom image" msgstr "Imagen inferior" -#: src/object/background.cpp:197 +#: src/object/background.cpp:198 msgid "Colour" msgstr "Color" -#: src/object/background.cpp:198 src/object/tilemap.cpp:240 -#: src/object/gradient.cpp:142 +#: src/object/background.cpp:199 src/object/tilemap.cpp:278 +#: src/object/gradient.cpp:108 msgid "Draw target" msgstr "Alternar tipo de dibujado" -#: src/object/background.cpp:199 src/object/tilemap.cpp:241 -#: src/object/gradient.cpp:143 -msgid "Normal" -msgstr "Normal" - -#: src/object/background.cpp:199 src/object/tilemap.cpp:241 -#: src/object/gradient.cpp:143 +#: src/object/background.cpp:200 src/object/tilemap.cpp:279 +#: src/object/gradient.cpp:109 msgid "Lightmap" msgstr "Mapa de luz" -#: src/object/shard.hpp:34 +#: src/object/shard.hpp:35 msgid "Shard" msgstr "Fragmento" -#: src/object/rublight.cpp:55 +#: src/object/rublight.cpp:56 msgid "Fading Speed" msgstr "Velocidad de transición" -#: src/object/rublight.cpp:56 +#: src/object/rublight.cpp:57 msgid "Glowing Strength" msgstr "Cantidad de brillo" @@ -744,20 +972,28 @@ msgstr "Afecta al jugador" msgid "Fancy Particles" msgstr "Partículas chulas" -#: src/object/bicycle_platform.hpp:64 +#: src/object/bicycle_platform.hpp:67 msgid "Bicycle Platform" msgstr "Plataforma de Bicicleta" -#: src/object/platform.cpp:76 src/object/thunderstorm.cpp:69 -#: src/object/tilemap.cpp:254 +#: src/object/platform.cpp:80 src/object/thunderstorm.cpp:77 +#: src/object/tilemap.cpp:292 src/object/conveyor_belt.cpp:62 msgid "Running" msgstr "En marcha" -#: src/object/rock.cpp:192 +#: src/object/rock.cpp:71 +msgid "Small" +msgstr "Pequeño" + +#: src/object/rock.cpp:72 +msgid "Large" +msgstr "Grande" + +#: src/object/rock.cpp:234 msgid "On-grab script" msgstr "Secuencia de comandos de Tomar" -#: src/object/rock.cpp:193 +#: src/object/rock.cpp:235 msgid "On-ungrab script" msgstr "Secuencia de comandos de Soltar" @@ -765,15 +1001,15 @@ msgstr "Secuencia de comandos de Soltar" msgid "Interactive particle system" msgstr "Sistema de partículas interactivo" -#: src/object/thunderstorm.cpp:70 +#: src/object/thunderstorm.cpp:78 msgid "Interval" msgstr "intervalo" -#: src/object/thunderstorm.cpp:71 +#: src/object/thunderstorm.cpp:79 msgid "Strike Script" msgstr "Script de electrocutar" -#: src/object/cloud_particle_system.hpp:41 +#: src/object/cloud_particle_system.hpp:42 msgid "Cloud Particles" msgstr "Partículas de Nubes‮" @@ -785,7 +1021,7 @@ msgstr "Textura" msgid "Amount" msgstr "Cantidad" -#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:56 +#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:59 #: src/editor/particle_editor.cpp:141 msgid "Delay" msgstr "Retardo" @@ -804,10 +1040,11 @@ msgid "Birth mode" msgstr "Modo de creación" #: src/object/custom_particle_system.cpp:430 -#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:149 -#: src/supertux/menu/keyboard_menu.cpp:58 -#: src/supertux/menu/joystick_menu.cpp:106 -#: src/supertux/menu/joystick_menu.cpp:213 src/editor/object_settings.cpp:131 +#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:115 +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/joystick_menu.cpp:108 +#: src/supertux/menu/joystick_menu.cpp:215 src/editor/object_settings.cpp:129 #: src/editor/particle_editor.cpp:162 src/editor/particle_editor.cpp:168 msgid "None" msgstr "Ninguno" @@ -1136,597 +1373,916 @@ msgstr "Siempre" msgid "Cover screen" msgstr "Recubrir pantalla" -#: src/object/ispy.hpp:33 +#: src/object/ispy.hpp:35 msgid "Ispy" msgstr "Ojospía" -#: src/object/skull_tile.hpp:32 -msgid "Skull Tile" -msgstr "Tesela calavera" - -#: src/object/particle_zone.cpp:80 +#: src/object/particle_zone.cpp:51 msgid "Particle Name" msgstr "Nombre de partícula" -#: src/object/particle_zone.cpp:81 -msgid "Zone Type" -msgstr "Tipo de zona" - -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:62 msgid "Spawn" msgstr "Crear" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:63 msgid "Life zone" msgstr "Zona vital" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:64 msgid "Life zone (clear)" msgstr "Zona vital (desvanecer)" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:65 msgid "Kill particles" msgstr "Quitar partículas" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:66 msgid "Clear particles" msgstr "Desvanecer partículas" -#: src/object/weak_block.cpp:211 -msgid "Linked" -msgstr "Vinculado" +#: src/object/weak_block.cpp:98 +msgid "Hay" +msgstr "" -#: src/object/decal.hpp:40 +#: src/object/decal.hpp:41 msgid "Decal" msgstr "Calcomanía" -#: src/object/tilemap.cpp:229 +#: src/object/tilemap.cpp:267 msgid "Resize offset x" msgstr "Cambiar tamaño en eje X" -#: src/object/tilemap.cpp:230 +#: src/object/tilemap.cpp:268 msgid "Resize offset y" msgstr "Cambiar tamaño en eje Y" -#: src/object/tilemap.cpp:232 src/supertux/menu/editor_sector_menu.cpp:39 -#: src/editor/object_option.cpp:173 +#: src/object/tilemap.cpp:270 src/supertux/menu/editor_sector_menu.cpp:41 +#: src/editor/object_option.cpp:178 msgid "Width" msgstr "Ancho" -#: src/object/tilemap.cpp:233 src/supertux/menu/editor_sector_menu.cpp:40 -#: src/editor/object_option.cpp:174 +#: src/object/tilemap.cpp:271 src/supertux/menu/editor_sector_menu.cpp:42 +#: src/editor/object_option.cpp:179 msgid "Height" msgstr "Altura" -#: src/object/tilemap.cpp:235 +#: src/object/tilemap.cpp:273 msgid "Alpha" msgstr "Transparencia alfa" -#: src/object/tilemap.cpp:236 +#: src/object/tilemap.cpp:274 msgid "Speed x" msgstr "Velocidad eje X" -#: src/object/tilemap.cpp:237 +#: src/object/tilemap.cpp:275 msgid "Speed y" msgstr "Velocidad eje Y" -#: src/object/tilemap.cpp:238 +#: src/object/tilemap.cpp:276 msgid "Tint" msgstr "Tinte" -#: src/object/tilemap.cpp:257 src/supertux/menu/editor_tilegroup_menu.cpp:26 -#: src/editor/toolbox_widget.cpp:90 +#: src/object/tilemap.cpp:296 src/supertux/menu/editor_tilegroup_menu.cpp:26 +#: src/editor/toolbox_widget.cpp:98 msgid "Tiles" msgstr "Teselas" -#: src/object/gradient.cpp:128 -msgid "Left Colour" -msgstr "Color izquierdo" +#: src/object/gradient.cpp:98 +msgid "Primary Colour" +msgstr "Color principal" -#: src/object/gradient.cpp:129 -msgid "Right Colour" -msgstr "Color derecho" +#: src/object/gradient.cpp:99 +msgid "Secondary Colour" +msgstr "Color secundario" -#: src/object/gradient.cpp:131 -msgid "Top Colour" -msgstr "Color de arriba" - -#: src/object/gradient.cpp:132 -msgid "Bottom Colour" -msgstr "Color de abajo" - -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Vertical" msgstr "Vertical" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Horizontal" msgstr "Horizontal" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Vertical (whole sector)" msgstr "Vertical (sector completo)" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Horizontal (whole sector)" msgstr "Horizontal (sector completo)" -#: src/object/gradient.cpp:148 +#: src/object/gradient.cpp:114 msgid "Blend mode" msgstr "Mezcla de colores" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Blend" msgstr "Mezcla" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Additive" msgstr "Aditiva" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Modulate" msgstr "Modular" -#: src/object/bumper.hpp:35 +#: src/object/bumper.hpp:38 msgid "Bumper" msgstr "Parachoques" -#: src/object/unstable_tile.hpp:37 +#: src/object/conveyor_belt.cpp:63 +msgid "Length" +msgstr "Anchura" + +#: src/object/moving_sprite.cpp:192 src/object/pneumatic_platform.cpp:161 +msgid "Sprite" +msgstr "Sprite" + +#: src/object/unstable_tile.hpp:42 msgid "Unstable Tile" msgstr "Tesela inestable" -#: src/object/brick.hpp:31 -msgid "Brick" -msgstr "Ladrillo" +#: src/object/brick.hpp:70 +msgid "Heavy Brick" +msgstr "Ladrillo pesado" -#: src/object/invisible_wall.hpp:34 +#: src/object/invisible_wall.hpp:37 msgid "Invisible Wall" msgstr "Pared invisible" -#: src/object/spotlight.hpp:51 +#: src/object/spotlight.hpp:52 msgid "Spotlight" msgstr "Foco de luz" -#: src/object/scripted_object.hpp:39 +#: src/object/scripted_object.hpp:40 msgid "Scripted Object" msgstr "Objeto con script" -#: src/object/custom_particle_system_file.hpp:39 +#: src/object/custom_particle_system_file.hpp:40 msgid "Custom Particles from file" msgstr "Partículas propias desde archivo" -#: src/object/coin.hpp:78 +#: src/object/coin.hpp:97 msgid "Heavy Coin" msgstr "Moneda Pesada " -#: src/object/bonus_block.hpp:56 +#: src/object/explosion.hpp:35 +msgid "Explosion" +msgstr "Explosión" + +#: src/object/bonus_block.hpp:62 msgid "Bonus Block" msgstr "Bloque de bonificación" -#: src/object/magicblock.hpp:41 +#: src/object/magicblock.hpp:42 msgid "Magic Tile" msgstr "Tesela mágica" -#: src/object/camera.hpp:67 +#: src/object/camera.hpp:61 msgid "Camera" msgstr "Cámara" -#: src/object/textscroller.hpp:44 +#: src/object/textscroller.hpp:45 msgid "Text Scroller" msgstr "Texto animado" -#: src/gui/menu_badguy_select.cpp:94 -msgid "List of enemies" -msgstr "Lista de enemigos" +#: src/gui/notification.cpp:57 +msgid "Click for more details." +msgstr "Haz clic aquí para más información." + +#: src/gui/notification.cpp:150 +msgid "Do not show again" +msgstr "No volver a mostrar" + +#: src/gui/notification.cpp:157 src/supertux/menu/download_dialog.cpp:124 +msgid "Close" +msgstr "Cerrar" + +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#, c++-format +msgid "Selected item: {}" +msgstr "Elemento seleccionado: {}" -#: src/gui/menu_badguy_select.cpp:96 -msgid "Select enemy" -msgstr "Elige un enemigo" +#: src/gui/menu_string_array.cpp:70 +msgid "Edit string array" +msgstr "" -#: src/gui/menu_badguy_select.cpp:97 +#: src/gui/menu_string_array.cpp:79 src/gui/menu_object_select.cpp:50 +#: src/supertux/menu/profile_menu.cpp:88 msgid "Add" msgstr "Añadir" -#: src/gui/menu_badguy_select.cpp:107 src/gui/menu_color.cpp:37 -#: src/gui/dialog.hpp:81 src/gui/menu_script.cpp:47 -#: src/supertux/menu/editor_sector_menu.cpp:46 -#: src/supertux/menu/editor_levelset_menu.cpp:62 -#: src/supertux/menu/addon_menu.cpp:349 +#: src/gui/menu_string_array.cpp:80 +msgid "Insert" +msgstr "Insertar" + +#: src/gui/menu_string_array.cpp:81 +#: src/supertux/menu/addon_preview_menu.cpp:177 src/editor/object_menu.cpp:61 +msgid "Update" +msgstr "Actualizar" + +#: src/gui/menu_string_array.cpp:82 src/supertux/menu/profile_menu.cpp:108 +#: src/supertux/menu/profile_menu.cpp:110 +msgid "Delete" +msgstr "Borrar" + +#: src/gui/menu_string_array.cpp:84 src/gui/menu_object_select.cpp:61 +#: src/gui/menu_color.cpp:37 src/gui/dialog.hpp:87 src/gui/menu_script.cpp:46 +#: src/supertux/menu/editor_sector_menu.cpp:48 +#: src/supertux/menu/editor_levelset_menu.cpp:58 #: src/supertux/menu/editor_new_levelset_menu.cpp:37 -#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:43 +#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:71 msgid "OK" msgstr "Aceptar" -#: src/gui/menu_badguy_select.cpp:136 -msgid "Do you want to delete this badguy from the list?" -msgstr "¿Quieres borrar a este enemigo de la lista?" +#: src/gui/menu_object_select.cpp:46 +msgid "List of objects" +msgstr "Listado de objetos" -#: src/gui/menu_badguy_select.cpp:137 src/gui/dialog.hpp:90 -#: src/supertux/menu/editor_level_select_menu.cpp:164 -#: src/supertux/menu/editor_menu.cpp:164 src/editor/editor.cpp:583 -msgid "Yes" -msgstr "Sí" +#: src/gui/menu_object_select.cpp:48 +#, c++-format +msgid "Select object ({})" +msgstr "Seleccionar objecto ({})" -#: src/gui/menu_badguy_select.cpp:140 src/gui/dialog.hpp:91 -#: src/supertux/menu/editor_level_select_menu.cpp:168 -#: src/supertux/menu/editor_menu.cpp:167 src/editor/particle_editor.cpp:780 -#: src/editor/editor.cpp:590 -msgid "No" -msgstr "No" +#: src/gui/menu_object_select.cpp:114 +msgid "Are you sure you want to remove this object from the list?" +msgstr "¿Seguro que quieres borrarlo de la lista?" #: src/gui/menu_color.cpp:24 msgid "Mix the colour" msgstr "Mezclar el color" -#: src/gui/menu_filesystem.cpp:112 src/gui/menu_paths.cpp:44 -#: src/supertux/menu/particle_editor_save_as.cpp:42 +#: src/gui/dialog.hpp:96 src/supertux/menu/editor_level_select_menu.cpp:181 +#: src/editor/editor.cpp:663 +msgid "Yes" +msgstr "Sí" + +#: src/gui/dialog.hpp:97 src/supertux/menu/editor_level_select_menu.cpp:185 +#: src/editor/particle_editor.cpp:781 src/editor/editor.cpp:670 +msgid "No" +msgstr "No" + +#: src/gui/menu_list.cpp:38 src/gui/menu_filesystem.cpp:120 +#: src/gui/menu_paths.cpp:48 src/supertux/menu/particle_editor_save_as.cpp:42 #: src/supertux/menu/editor_sectors_menu.cpp:45 -#: src/supertux/menu/editor_sectors_menu.cpp:95 -#: src/supertux/menu/editor_sectors_menu.cpp:100 +#: src/supertux/menu/editor_sectors_menu.cpp:94 +#: src/supertux/menu/editor_sectors_menu.cpp:99 #: src/supertux/menu/editor_objectgroup_menu.cpp:42 #: src/supertux/menu/editor_tilegroup_menu.cpp:36 -#: src/supertux/menu/editor_level_select_menu.cpp:173 +#: src/supertux/menu/editor_level_select_menu.cpp:190 #: src/supertux/menu/editor_save_as.cpp:42 #: src/supertux/menu/particle_editor_open.cpp:43 -#: src/editor/particle_editor.cpp:784 src/editor/editor.cpp:594 +#: src/editor/particle_editor.cpp:785 src/editor/editor.cpp:674 msgid "Cancel" msgstr "Cancelar" +#: src/gui/menu_filesystem.cpp:118 +msgid "Open Directory" +msgstr "Abrir carpeta" + #: src/gui/menu_script.cpp:28 msgid "Edit script" msgstr "Editar el script" -#: src/gui/menu_paths.cpp:30 +#: src/gui/menu_paths.cpp:32 msgid "Clone" msgstr "Clonar" -#: src/gui/menu_paths.cpp:38 +#: src/gui/menu_paths.cpp:41 msgid "" -"An error occured and the game could\n" +"An error occurred and the game could\n" "not clone the path. Please contact\n" "the developers for support." -msgstr "Parece que hemos tenido un problema y el juego no puede clonar la ruta. Habla con los desarrolladores para buscar una solución." +msgstr "" -#: src/gui/menu_paths.cpp:41 +#: src/gui/menu_paths.cpp:44 msgid "Bind" msgstr "Enlazar" -#: src/gui/menu_paths.cpp:63 src/supertux/menu/integrations_menu.cpp:60 -#: src/supertux/menu/contrib_menu.cpp:161 src/supertux/menu/debug_menu.cpp:75 -#: src/supertux/menu/editor_level_select_menu.cpp:88 -#: src/supertux/menu/worldmap_cheat_menu.cpp:55 -#: src/supertux/menu/worldmap_cheat_menu.cpp:153 +#: src/gui/menu_paths.cpp:49 +msgid "" +"Do you wish to clone the path to edit it separately,\n" +"or do you want to bind both paths together\n" +"so that any edit on one edits the other?" +msgstr "" + +#: src/gui/menu_paths.cpp:56 +#, c++-format +msgid "Path {}" +msgstr "Ruta {}" + +#: src/gui/menu_paths.cpp:67 src/supertux/menu/integrations_menu.cpp:60 +#: src/supertux/menu/editor_converters_menu.cpp:79 +#: src/supertux/menu/video_system_menu.cpp:45 +#: src/supertux/menu/contrib_menu.cpp:102 src/supertux/menu/debug_menu.cpp:77 +#: src/supertux/menu/multiplayer_menu.cpp:39 +#: src/supertux/menu/custom_menu_menu.cpp:65 +#: src/supertux/menu/editor_level_select_menu.cpp:98 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:63 +#: src/supertux/menu/worldmap_cheat_menu.cpp:57 +#: src/supertux/menu/worldmap_cheat_menu.cpp:196 #: src/supertux/menu/editor_levelset_select_menu.cpp:114 -#: src/supertux/menu/options_menu.cpp:442 -#: src/supertux/menu/profile_menu.cpp:54 src/supertux/menu/addon_menu.cpp:213 +#: src/supertux/menu/options_menu.cpp:223 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:69 +#: src/supertux/menu/addon_preview_menu.cpp:193 +#: src/supertux/menu/profile_menu.cpp:118 +#: src/supertux/menu/multiplayer_players_menu.cpp:91 +#: src/supertux/menu/addon_menu.cpp:153 #: src/supertux/menu/editor_new_levelset_menu.cpp:40 +#: src/supertux/menu/options_select_menu.cpp:44 #: src/supertux/menu/world_set_menu.cpp:33 +#: src/supertux/menu/addon_browse_menu.cpp:162 #: src/supertux/menu/web_asset_menu.cpp:48 -#: src/supertux/menu/keyboard_menu.cpp:49 -#: src/supertux/menu/language_menu.cpp:56 -#: src/supertux/menu/joystick_menu.cpp:97 +#: src/supertux/menu/profile_name_menu.cpp:45 +#: src/supertux/menu/keyboard_menu.cpp:71 +#: src/supertux/menu/sorted_contrib_menu.cpp:51 +#: src/supertux/menu/language_menu.cpp:63 +#: src/supertux/menu/joystick_menu.cpp:99 #: src/supertux/menu/contrib_levelset_menu.cpp:67 -#: src/supertux/menu/cheat_menu.cpp:44 -#: src/supertux/menu/editor_delete_level_menu.cpp:43 +#: src/supertux/menu/cheat_menu.cpp:58 +#: src/supertux/menu/addon_file_install_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:43 +#: src/supertux/menu/cheat_apply_menu.cpp:63 +#: src/supertux/menu/multiplayer_player_menu.cpp:205 +#: src/supertux/menu/editor_delete_level_menu.cpp:68 msgid "Back" msgstr "Volver" -#: src/badguy/toad.hpp:37 -msgid "Toad" -msgstr "Sapo" +#: src/addon/addon_manager.cpp:562 +msgid "Only one resource pack is allowed to be enabled at a time." +msgstr "" -#: src/badguy/mrtree.hpp:29 -msgid "Walking Tree" -msgstr "Árbol con patas" +#: src/addon/addon_manager.cpp:837 +#, c++-format +msgid "Add-on {} by {} is already installed." +msgstr "El mod «{}» de «{}» ya estaba instalado." -#: src/badguy/plant.hpp:33 -msgid "Plant" -msgstr "Planta" +#: src/addon/addon_manager.cpp:857 +#, c++-format +msgid "Add-on {} by {} successfully installed." +msgstr "El mod «{}» de «{}» se ha instalado." -#: src/badguy/crystallo.hpp:30 -msgid "Crystallo" -msgstr "Cristalio" +#: src/addon/addon.cpp:71 src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Levelset" +msgstr "Conjunto de niveles" -#: src/badguy/totem.hpp:36 -msgid "Totem" -msgstr "Tótem" +#: src/addon/addon.cpp:74 src/supertux/menu/editor_levelset_menu.cpp:54 +#: data//images/engine/editor/objects.stoi:389 +msgid "Worldmap" +msgstr "Mapa global" -#: src/badguy/stalactite.hpp:38 -msgid "Stalactite" -msgstr "Estalactita" +#: src/addon/addon.cpp:77 +msgid "World" +msgstr "Mundo" -#: src/badguy/haywire.hpp:45 -msgid "Haywire" -msgstr "Bombonero" +#: src/addon/addon.cpp:80 +msgid "Add-on" +msgstr "Mods" -#: src/badguy/dispenser.hpp:48 -msgid "Dispenser" -msgstr "Dispensador" +#: src/addon/addon.cpp:83 +msgid "Language Pack" +msgstr "Paquete de idiomas" -#: src/badguy/short_fuse.hpp:29 +#: src/addon/addon.cpp:86 +msgid "Resource Pack" +msgstr "Paquete de recursos" + +#: src/addon/addon.cpp:89 +msgid "Unknown" +msgstr "Desconocido" + +#: src/addon/addon.cpp:100 +#, c++-format +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" por \"{}\"" + +#: src/addon/addon.cpp:114 +msgid "add-on" +msgstr "mod" + +#: src/addon/addon.cpp:114 +msgid "add-ons" +msgstr "mods" + +#: src/badguy/toad.hpp:38 +msgid "Toad" +msgstr "Sapo" + +#: src/badguy/mrtree.hpp:32 +msgid "Mr. Tree" +msgstr "Sr. Árbol" + +#: src/badguy/plant.hpp:34 +msgid "Plant" +msgstr "Planta" + +#: src/badguy/tarantula.hpp:39 src/badguy/tarantula.cpp:353 +msgid "Tarantula" +msgstr "" + +#: src/badguy/granito_giant.cpp:71 +msgid "Awake" +msgstr "Despierto" + +#: src/badguy/granito_giant.cpp:72 +msgid "Sleeping" +msgstr "Durmiendo" + +#: src/badguy/granito_giant.cpp:73 +msgid "Corrupted A" +msgstr "" + +#: src/badguy/granito_giant.cpp:74 +msgid "Corrupted B" +msgstr "" + +#: src/badguy/granito_giant.cpp:75 +msgid "Corrupted C" +msgstr "" + +#: src/badguy/crystallo.hpp:33 +msgid "Crystallo" +msgstr "Cristalio" + +#: src/badguy/viciousivy.cpp:45 src/badguy/snail.cpp:70 +#: src/badguy/kamikazesnowball.cpp:118 src/badguy/walkingleaf.cpp:36 +#: src/badguy/jumpy.cpp:46 src/badguy/igel.cpp:189 src/badguy/mrtree.cpp:51 +msgid "Corrupted" +msgstr "Corrupto" + +#: src/badguy/totem.hpp:37 +msgid "Totem" +msgstr "Tótem" + +#: src/badguy/stalactite.hpp:42 +msgid "Stalactite" +msgstr "Estalactita" + +#: src/badguy/fish_chasing.cpp:198 +msgid "Tracking Distance" +msgstr "" + +#: src/badguy/fish_chasing.cpp:199 +msgid "Losing Distance" +msgstr "" + +#: src/badguy/fish_chasing.cpp:200 +msgid "Chase Speed" +msgstr "" + +#: src/badguy/root_sapling.hpp:41 +msgid "Root Sapling" +msgstr "" + +#: src/badguy/haywire.hpp:46 +msgid "Haywire" +msgstr "Bombonero" + +#: src/badguy/dispenser.hpp:52 +msgid "Dispenser" +msgstr "Dispensador" + +#: src/badguy/short_fuse.hpp:30 msgid "Short Fuse" msgstr "Mechacorto" -#: src/badguy/zeekling.hpp:36 +#: src/badguy/zeekling.hpp:39 msgid "Zeekling" msgstr "Aletín" -#: src/badguy/mriceblock.hpp:46 -msgid "Iceblock" -msgstr "Bloque de hielo " +#: src/badguy/smartball.cpp:35 +msgid "Pumpkin" +msgstr "" + +#: src/badguy/bouncing_snowball.cpp:82 +msgid "Fatbat" +msgstr "" + +#: src/badguy/dive_mine.hpp:50 +msgid "Dive Mine" +msgstr "" + +#: src/badguy/granito_big.hpp:33 +msgid "Big Granito" +msgstr "" + +#: src/badguy/mriceblock.hpp:49 +msgid "Mr. Iceblock" +msgstr "Sr. Cubo de Hielo" + +#: src/badguy/granito.hpp:39 src/badguy/darttrap.cpp:163 +#: src/badguy/corrupted_granito.cpp:175 src/badguy/dispenser.cpp:438 +msgid "Granito" +msgstr "" + +#: src/badguy/fish_swimming.cpp:54 src/badguy/jumpy.cpp:44 +#: data//images/ice_world.strf:10 data//images/tiles.strf:28 +#: data//images/worldmap.strf:41 +msgid "Snow" +msgstr "Nieve" + +#: src/badguy/fish_swimming.cpp:55 data//images/ice_world.strf:211 +#: data//images/tiles.strf:366 data//images/worldmap.strf:67 +msgid "Forest" +msgstr "Bosque" + +#: src/badguy/crusher.hpp:71 +msgid "Crusher" +msgstr "" + +#: src/badguy/flame.cpp:84 +msgid "Fire" +msgstr "Fuego" + +#: src/badguy/flame.cpp:85 +msgid "Ghost" +msgstr "" + +#: src/badguy/corrupted_granito_big.hpp:35 +msgid "Corrupted Big Granito" +msgstr "Corrupto Granito Grande" -#: src/badguy/scrystallo.cpp:52 +#: src/badguy/scrystallo.cpp:57 msgid "Walk Radius" msgstr "Radio de movimiento" -#: src/badguy/scrystallo.cpp:53 +#: src/badguy/scrystallo.cpp:58 msgid "Awakening Radius" msgstr "Radio de alerta" -#: src/badguy/jumpy.hpp:36 +#: src/badguy/scrystallo.cpp:59 +msgid "Roof-attached" +msgstr "" + +#: src/badguy/jumpy.hpp:40 msgid "Jumpy" msgstr "Saltimbanqui" -#: src/badguy/captainsnowball.hpp:31 +#: src/badguy/captainsnowball.hpp:32 msgid "Captain Snowball" msgstr "Bola de nieve capitana" -#: src/badguy/ghosttree.hpp:42 +#: src/badguy/ghosttree.hpp:43 msgid "Ghost Tree" msgstr "Árbol fantasmal" -#: src/badguy/willowisp.cpp:323 +#: src/badguy/willowisp.cpp:314 msgid "Track range" msgstr "Distancia de seguimiento" -#: src/badguy/willowisp.cpp:324 +#: src/badguy/willowisp.cpp:315 msgid "Vanish range" msgstr "Distancia de desaparición" -#: src/badguy/willowisp.cpp:325 +#: src/badguy/willowisp.cpp:316 msgid "Fly speed" msgstr "Velocidad de vuelo" -#: src/badguy/kugelblitz.hpp:39 +#: src/badguy/kugelblitz.hpp:40 msgid "Kugelblitz" msgstr "Kugelblitz" -#: src/badguy/mole_rock.hpp:43 +#: src/badguy/mole_rock.hpp:44 msgid "Mole's rock" msgstr "La Roca de Mole" -#: src/badguy/badguy.cpp:849 +#: src/badguy/badguy.cpp:1064 msgid "Death script" msgstr "Script muerto" -#: src/badguy/sspiky.hpp:36 +#: src/badguy/sspiky.hpp:37 msgid "Sleeping Spiky" msgstr "Pinchito dormidito" -#: src/badguy/yeti_stalactite.hpp:33 +#: src/badguy/yeti_stalactite.hpp:34 msgid "Yeti's Stalactite" msgstr "Estalactita de Yeti" -#: src/badguy/livefire.hpp:37 +#: src/badguy/fish_harmless.hpp:30 +msgid "Harmless Fish" +msgstr "" + +#: src/badguy/livefire.hpp:38 msgid "Walking Flame" msgstr "Llama ambulante" -#: src/badguy/livefire.hpp:68 +#: src/badguy/livefire.hpp:71 msgid "Sleeping Flame" msgstr "Llama durmiente " -#: src/badguy/livefire.hpp:84 +#: src/badguy/livefire.hpp:89 msgid "Dormant Flame" msgstr "Llama durmiente" -#: src/badguy/owl.hpp:39 +#: src/badguy/owl.hpp:45 msgid "Owl" msgstr "Lechuza" -#: src/badguy/igel.hpp:34 +#: src/badguy/igel.hpp:38 msgid "Igel" msgstr "Puercoespín" -#: src/badguy/darttrap.cpp:126 +#: src/badguy/darttrap.cpp:148 msgid "Initial delay" msgstr "Retraso inicial" -#: src/badguy/darttrap.cpp:128 +#: src/badguy/darttrap.cpp:150 msgid "Fire delay" msgstr "Retraso de disparo" -#: src/badguy/darttrap.cpp:129 +#: src/badguy/darttrap.cpp:151 msgid "Ammo" msgstr "Munición" -#: src/badguy/snowball.hpp:29 -msgid "Snowball" -msgstr "Bola de nieve" +#: src/badguy/darttrap.cpp:152 +msgid "Dart sprite" +msgstr "" + +#: src/badguy/darttrap.cpp:164 +msgid "Skull" +msgstr "" + +#: src/badguy/snowball.hpp:30 +msgid "Mr. Snowball" +msgstr "Bola de Nieve" -#: src/badguy/smartblock.hpp:29 -msgid "Smartblock" -msgstr "Bloque inteligente" +#: src/badguy/smartblock.hpp:30 +msgid "Mrs. Iceblock" +msgstr "" -#: src/badguy/yeti.cpp:369 +#: src/badguy/yeti.cpp:370 msgid "Fixed position" msgstr "Posición fija" -#: src/badguy/yeti.cpp:370 +#: src/badguy/yeti.cpp:371 msgid "Lives" msgstr "Vidas" -#: src/badguy/goldbomb.hpp:49 +#: src/badguy/goldbomb.hpp:50 msgid "Gold Bomb" msgstr "Bomba de oro" -#: src/badguy/flyingsnowball.hpp:32 +#: src/badguy/corrupted_granito.hpp:44 +msgid "Corrupted Granito" +msgstr "" + +#: src/badguy/mrbomb.cpp:48 +msgid "Classic" +msgstr "Clasico" + +#: src/badguy/flyingsnowball.hpp:33 msgid "Flying Snowball" msgstr "Bola de nieve voladora" -#: src/badguy/skullyhop.hpp:37 -msgid "Skullyhop" -msgstr "Skullyhop" +#: src/badguy/crusher.cpp:75 +msgid "Ice (normal)" +msgstr "Hielo (normal)" + +#: src/badguy/crusher.cpp:76 +msgid "Ice (big)" +msgstr "Hielo (grande)" + +#: src/badguy/crusher.cpp:77 +msgid "Rock (normal)" +msgstr "Roca (normal)" + +#: src/badguy/crusher.cpp:78 +msgid "Rock (big)" +msgstr "Roca (grande)" + +#: src/badguy/crusher.cpp:79 +msgid "Corrupted (normal)" +msgstr "Corrupto (normal)" + +#: src/badguy/crusher.cpp:80 +msgid "Corrupted (big)" +msgstr "" + +#: src/badguy/crusher.cpp:492 +msgid "Sideways" +msgstr "De lado" -#: src/badguy/kamikazesnowball.hpp:32 -msgid "Snowshot" -msgstr "Snowshot" +#: src/badguy/kamikazesnowball.hpp:34 +msgid "Kamikaze Snowball" +msgstr "Bola de nieve kamikaze" -#: src/badguy/kamikazesnowball.hpp:52 +#: src/badguy/kamikazesnowball.hpp:64 msgid "Leafshot" msgstr "Leafshot" -#: src/badguy/flame.hpp:41 +#: src/badguy/fish_swimming.hpp:40 +msgid "Swimming Fish" +msgstr "" + +#: src/badguy/flame.hpp:47 msgid "Flame" msgstr "Llama" -#: src/badguy/scrystallo.hpp:30 +#: src/badguy/scrystallo.hpp:31 msgid "Sleeping Crystallo" msgstr "Cristalio durmiente" -#: src/badguy/poisonivy.hpp:30 -msgid "Spring Leaf" -msgstr "Hoja primaveral" +#: src/badguy/jumpy.cpp:45 +msgid "Wooden" +msgstr "" + +#: src/badguy/jumpy.cpp:47 +msgid "Metal" +msgstr "" + +#: src/badguy/jumpy.cpp:48 +msgid "Bag" +msgstr "" #: src/badguy/willowisp.hpp:57 msgid "Will o' Wisp" msgstr "Fuego fatuo" -#: src/badguy/badguy.hpp:53 +#: src/badguy/fish_jumping.hpp:41 +msgid "Jumping Fish" +msgstr "" + +#: src/badguy/badguy.hpp:61 msgid "Badguy" msgstr "Enemgo" -#: src/badguy/ghostflame.hpp:30 -msgid "Ghost Flame" -msgstr "Llama fantasmal" - -#: src/badguy/rcrystallo.hpp:30 +#: src/badguy/rcrystallo.hpp:33 msgid "Roof Crystallo" msgstr "Cristalio al revés" -#: src/badguy/spiky.hpp:30 +#: src/badguy/spiky.hpp:31 msgid "Spiky" msgstr "Pinchito" -#: src/badguy/walkingleaf.hpp:30 -msgid "Autumn Leaf" -msgstr "Hoja otoñal" +#: src/badguy/walkingleaf.hpp:33 +msgid "Walking Leaf" +msgstr "" + +#: src/badguy/root.hpp:39 +msgid "Root" +msgstr "" -#: src/badguy/owl.cpp:227 +#: src/badguy/owl.cpp:241 msgid "Carry" msgstr "Cargar" -#: src/badguy/darttrap.hpp:33 +#: src/badguy/darttrap.hpp:35 msgid "Dart Trap" msgstr "Trampa de dardos" -#: src/badguy/skydive.hpp:38 +#: src/badguy/skydive.hpp:43 msgid "Skydive" msgstr "Hacer Paracaidismo" -#: src/badguy/yeti.hpp:37 +#: src/badguy/yeti.hpp:38 msgid "Yeti" msgstr "Yeti" -#: src/badguy/mole.hpp:39 +#: src/badguy/snowball.cpp:41 +msgid "Bumpkin" +msgstr "" + +#: src/badguy/snowball.cpp:42 +msgid "BSOD" +msgstr "" + +#: src/badguy/mole.hpp:38 msgid "Mole" msgstr "Mole" -#: src/badguy/mrbomb.hpp:42 -msgid "Bomb" -msgstr "Bomba" +#: src/badguy/corrupted_granito.cpp:176 +msgid "Skullyhop" +msgstr "Skullyhop" + +#: src/badguy/mrbomb.hpp:40 +msgid "Mr. Bomb" +msgstr "Sr. Bomba" -#: src/badguy/walking_candle.hpp:40 +#: src/badguy/walking_candle.hpp:41 msgid "Walking Candle" msgstr "Vela con patas" -#: src/badguy/angrystone.hpp:34 +#: src/badguy/angrystone.hpp:39 msgid "Angry Stone" msgstr "Piedra furiosa" -#: src/badguy/spidermite.hpp:35 -msgid "Spider" -msgstr "Araña" +#: src/badguy/tarantula.cpp:354 +msgid "Spidermite" +msgstr "" + +#: src/badguy/tarantula.cpp:374 +msgid "Static" +msgstr "" #: src/badguy/ghoul.hpp:30 msgid "Ghoul" msgstr "Espíritu Maligno" -#: src/badguy/snowman.hpp:28 +#: src/badguy/granito_giant.hpp:32 +msgid "Giant Granito" +msgstr "" + +#: src/badguy/snowman.hpp:29 msgid "Snowman" msgstr "Hombre de nieve" -#: src/badguy/stumpy.hpp:35 -msgid "Walking Stump" -msgstr "Tocón con patas" +#: src/badguy/viciousivy.hpp:33 +msgid "Vicious Ivy" +msgstr "" + +#: src/badguy/stalactite.cpp:156 +msgid "ice" +msgstr "hielo" + +#: src/badguy/stalactite.cpp:157 +msgid "rock" +msgstr "" + +#: src/badguy/fish_chasing.hpp:33 +msgid "Chasing Fish" +msgstr "" -#: src/badguy/fish.hpp:40 -msgid "Fish" -msgstr "Pez" +#: src/badguy/stumpy.hpp:38 +msgid "Stumpy" +msgstr "Stumpy" -#: src/badguy/dispenser.cpp:445 +#: src/badguy/dispenser.cpp:412 msgid "Interval (seconds)" msgstr "Intervalo (segundos)" -#: src/badguy/dispenser.cpp:446 +#: src/badguy/dispenser.cpp:413 msgid "Random" msgstr "Al azar" -#: src/badguy/dispenser.cpp:447 data//images/engine/editor/objects.stoi:4 -msgid "Enemies" -msgstr "Enemigos" +#: src/badguy/dispenser.cpp:416 +#: src/supertux/menu/editor_objectgroup_menu.cpp:30 +#: src/editor/toolbox_widget.cpp:101 +msgid "Objects" +msgstr "Objetos" -#: src/badguy/dispenser.cpp:448 +#: src/badguy/dispenser.cpp:419 msgid "Limit dispensed badguys" msgstr "Limitar la cantidad de malotes" -#: src/badguy/dispenser.cpp:450 +#: src/badguy/dispenser.cpp:421 msgid "Obey Gravity" msgstr "Con gravedad" -#: src/badguy/dispenser.cpp:452 +#: src/badguy/dispenser.cpp:423 msgid "Max concurrent badguys" msgstr "Límite máximo de malos" -#: src/badguy/dispenser.cpp:454 src/supertux/menu/editor_levelset_menu.cpp:60 -msgid "Type" -msgstr "Tipo" - -#: src/badguy/dispenser.cpp:455 -msgid "dropper" -msgstr "gotero" - -#: src/badguy/dispenser.cpp:455 -msgid "rocket launcher" -msgstr "lanzacohetes" +#: src/badguy/dispenser.cpp:435 +msgid "Dropper" +msgstr "" -#: src/badguy/dispenser.cpp:455 -msgid "cannon" -msgstr "cañón" +#: src/badguy/dispenser.cpp:436 +msgid "Cannon" +msgstr "" -#: src/badguy/dispenser.cpp:455 -msgid "invisible" -msgstr "invisible" +#: src/badguy/dispenser.cpp:437 src/worldmap/special_tile.cpp:77 +msgid "Invisible" +msgstr "Invisible" -#: src/badguy/snail.hpp:42 +#: src/badguy/snail.hpp:43 msgid "Snail" msgstr "Caracol" -#: src/badguy/smartball.hpp:31 -msgid "Smartball" -msgstr "Intelibola" +#: src/badguy/smartball.hpp:32 +msgid "Mrs. Snowball" +msgstr "" -#: src/badguy/bouncing_snowball.hpp:32 +#: src/badguy/bouncing_snowball.hpp:39 msgid "Bouncing Snowball" msgstr "Bola de nieve rebotadora" -#: src/badguy/iceflame.hpp:33 -msgid "Ice Flame" -msgstr "Hielo ardiente" +#: src/badguy/granito_big.cpp:52 src/badguy/granito.cpp:263 +msgid "Default" +msgstr "" + +#: src/badguy/granito_big.cpp:53 src/badguy/granito.cpp:264 +msgid "Standing" +msgstr "" + +#: src/badguy/granito_big.cpp:54 src/badguy/granito.cpp:265 +msgid "Walking" +msgstr "Caminando" + +#: src/badguy/mriceblock.cpp:63 +msgid "Laptop" +msgstr "" -#: src/badguy/dart.hpp:43 +#: src/badguy/dart.hpp:44 msgid "Dart" msgstr "Dardo" +#: src/badguy/granito.cpp:268 +msgid "Sitting" +msgstr "" + #: src/supertux/statistics.cpp:54 msgid "Max coins collected:" msgstr "Máximo de monedas:" @@ -1747,7 +2303,7 @@ msgstr "Mejor tiempo completado:" msgid "Level target time:" msgstr "Tiempo a batir:" -#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:160 +#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:175 msgid "Best Level Statistics" msgstr "Mejores estadísticas del nivel" @@ -1759,7 +2315,7 @@ msgstr "Tú" msgid "Best" msgstr "Mejor" -#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:166 +#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:181 msgid "Coins" msgstr "Monedas" @@ -1767,202 +2323,199 @@ msgstr "Monedas" msgid "Badguys" msgstr "Malotes" -#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:172 +#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:187 msgid "Secrets" msgstr "Secretos" -#: src/supertux/game_object.hpp:78 +#: src/supertux/game_object.hpp:88 msgid "Unknown object" msgstr "Objeto desconocido" -#: src/supertux/sector.cpp:414 +#: src/supertux/sector.cpp:507 msgid "Press escape to skip" msgstr "Pulsa escape para saltar" -#: src/supertux/command_line_arguments.cpp:94 -#, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Uso: %s [OPTIONS] [LEVELFILE]" +#: src/supertux/command_line_arguments.cpp:92 +#, c++-format +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Uso: {} [OPCIONES] [ARCHIVONIVEL]" -#: src/supertux/command_line_arguments.cpp:95 +#: src/supertux/command_line_arguments.cpp:93 msgid "General Options:" msgstr "Opciones generales:" -#: src/supertux/command_line_arguments.cpp:96 +#: src/supertux/command_line_arguments.cpp:94 msgid " -h, --help Show this help message and quit" msgstr " -h, --help Muestra este mensaje de ayuda y cierra" -#: src/supertux/command_line_arguments.cpp:97 +#: src/supertux/command_line_arguments.cpp:95 msgid " -v, --version Show SuperTux version and quit" msgstr "-v, versión Muestra la versión de SuperTux y cierra" -#: src/supertux/command_line_arguments.cpp:98 +#: src/supertux/command_line_arguments.cpp:96 msgid " --verbose Print verbose messages" msgstr "--minuscioso Imprime mensajes minusciosos" -#: src/supertux/command_line_arguments.cpp:99 +#: src/supertux/command_line_arguments.cpp:97 msgid " --debug Print extra verbose messages" msgstr "--depurar Imprime mensajes minusciosos extra" -#: src/supertux/command_line_arguments.cpp:100 +#: src/supertux/command_line_arguments.cpp:98 msgid "" " --print-datadir Print SuperTux's primary data directory." msgstr "--print-datadir Imprimir directorio primario de datos de Supertux." -#: src/supertux/command_line_arguments.cpp:101 +#: src/supertux/command_line_arguments.cpp:99 msgid "" " --acknowledgements Print the licenses of libraries used by " "SuperTux." msgstr " --acknowledgements Muestra las licencias de las bibliotecas que utiliza SuperTux." -#: src/supertux/command_line_arguments.cpp:103 +#: src/supertux/command_line_arguments.cpp:101 msgid "Video Options:" msgstr "Opciones de vídeo:" -#: src/supertux/command_line_arguments.cpp:104 +#: src/supertux/command_line_arguments.cpp:102 msgid " -f, --fullscreen Run in fullscreen mode" msgstr "-f, --pantalla completa Se ejecuta en pantalla completa" -#: src/supertux/command_line_arguments.cpp:105 +#: src/supertux/command_line_arguments.cpp:103 msgid " -w, --window Run in window mode" msgstr "-w, --ventana Se ejecuta en modo ventana" -#: src/supertux/command_line_arguments.cpp:106 +#: src/supertux/command_line_arguments.cpp:104 msgid " -g, --geometry WIDTHxHEIGHT Run SuperTux in given resolution" msgstr "-g, --geometría ANCHOxALTO Ejecuta SuperTux en una resolución determinada" -#: src/supertux/command_line_arguments.cpp:107 +#: src/supertux/command_line_arguments.cpp:105 msgid " -a, --aspect WIDTH:HEIGHT Run SuperTux with given aspect ratio" msgstr "-a, --aspecto ANCHO:ALTO Ejecuta SuperTux en una relación de aspecto determinada" -#: src/supertux/command_line_arguments.cpp:108 +#: src/supertux/command_line_arguments.cpp:106 msgid " -d, --default Reset video settings to default values" msgstr "-d, --por defecto Reajusta la configuración de video a los valores por defecto" -#: src/supertux/command_line_arguments.cpp:109 +#: src/supertux/command_line_arguments.cpp:107 msgid " --renderer RENDERER Use sdl, opengl, or auto to render" msgstr " --renderer MÉTODO Utiliza sdl, opengl o auto como sistema de dibujado" -#: src/supertux/command_line_arguments.cpp:111 +#: src/supertux/command_line_arguments.cpp:109 msgid "Audio Options:" msgstr "Opciones de audio" -#: src/supertux/command_line_arguments.cpp:112 +#: src/supertux/command_line_arguments.cpp:110 msgid " --disable-sound Disable sound effects" msgstr "--deshabilitar-sonido Deshabilita efectos de sonido" -#: src/supertux/command_line_arguments.cpp:113 +#: src/supertux/command_line_arguments.cpp:111 msgid " --disable-music Disable music" msgstr "--deshabilitar-música Deshabilita la música" -#: src/supertux/command_line_arguments.cpp:115 +#: src/supertux/command_line_arguments.cpp:113 msgid "Game Options:" msgstr "Opciones de jugabilidad:" -#: src/supertux/command_line_arguments.cpp:116 +#: src/supertux/command_line_arguments.cpp:114 msgid " --edit-level Open given level in editor" msgstr "--edit-level Abrir el nivel determinado en el editor" -#: src/supertux/command_line_arguments.cpp:117 +#: src/supertux/command_line_arguments.cpp:115 msgid " --resave Loads given level and saves it" msgstr " --resave Carga el nivel especificado y lo vuelve a guardar" -#: src/supertux/command_line_arguments.cpp:118 +#: src/supertux/command_line_arguments.cpp:116 msgid " --show-fps Display framerate in levels" msgstr "--mostrar-cuadros-por-segundo Muestra cuadros por segundo en los niveles" -#: src/supertux/command_line_arguments.cpp:119 +#: src/supertux/command_line_arguments.cpp:117 msgid " --no-show-fps Do not display framerate in levels" msgstr "--no-mostrar-cuadros-por-segundo No muestra cuadros pos segundo en los niveles" -#: src/supertux/command_line_arguments.cpp:120 +#: src/supertux/command_line_arguments.cpp:118 msgid " --show-pos Display player's current position" msgstr "--mostrar-pos Muestra la posición actual del jugador" -#: src/supertux/command_line_arguments.cpp:121 +#: src/supertux/command_line_arguments.cpp:119 msgid " --no-show-pos Do not display player's position" msgstr "--no-mostrar-pos No muestra la posición del jugador" -#: src/supertux/command_line_arguments.cpp:122 +#: src/supertux/command_line_arguments.cpp:120 msgid " --developer Switch on developer feature" msgstr "--desarrollador Enciende la función de desarrollador" -#: src/supertux/command_line_arguments.cpp:123 +#: src/supertux/command_line_arguments.cpp:121 msgid " -s, --debug-scripts Enable script debugger." msgstr "-s, --debug-scripts Habilita el depurador de scripts." -#: src/supertux/command_line_arguments.cpp:124 +#: src/supertux/command_line_arguments.cpp:122 msgid "" " --spawn-pos X,Y Where in the level to spawn Tux. Only used if" " level is specified." msgstr "--spawn-pos X,Y Donde en el nivel desova a Tux. Solamente se usa si el nivel lo especifica." -#: src/supertux/command_line_arguments.cpp:125 +#: src/supertux/command_line_arguments.cpp:123 msgid " --sector SECTOR Spawn Tux in SECTOR\n" msgstr " --sector SECTOR Spawn Tux in SECTOR\n" -#: src/supertux/command_line_arguments.cpp:126 +#: src/supertux/command_line_arguments.cpp:124 msgid " --spawnpoint SPAWNPOINT Spawn Tux at SPAWNPOINT\n" msgstr " --spawnpoint SPAWNPOINT Spawn Tux at SPAWNPOINT\n" -#: src/supertux/command_line_arguments.cpp:128 -msgid "Demo Recording Options:" -msgstr "Opciones de Grabación Demo" - -#: src/supertux/command_line_arguments.cpp:129 -msgid " --record-demo FILE LEVEL Record a demo to FILE" -msgstr "--grabar-demo NIVEL DE ARCHIVO Graba un demo a ARCHIVO" - -#: src/supertux/command_line_arguments.cpp:130 -msgid " --play-demo FILE LEVEL Play a recorded demo" -msgstr "--jugar-demo NIVEL DE ARCHIVO Juega un demo grabado" - -#: src/supertux/command_line_arguments.cpp:132 +#: src/supertux/command_line_arguments.cpp:126 msgid "Directory Options:" msgstr "Opciones de carpeta:" -#: src/supertux/command_line_arguments.cpp:133 +#: src/supertux/command_line_arguments.cpp:127 msgid "" " --datadir DIR Set the directory for the games datafiles" msgstr "--datadir DIR Elige el directorio para el archivo de datos del juego" -#: src/supertux/command_line_arguments.cpp:134 +#: src/supertux/command_line_arguments.cpp:128 msgid "" " --userdir DIR Set the directory for user data (savegames, " "etc.)" msgstr "--userdir DIR Elige el directorio para datos del usuario (partidas guardadas, etc.)" -#: src/supertux/command_line_arguments.cpp:136 +#: src/supertux/command_line_arguments.cpp:130 msgid "Add-On Options:" -msgstr "Opciones de complementos:" +msgstr "Opciones de mods:" -#: src/supertux/command_line_arguments.cpp:137 +#: src/supertux/command_line_arguments.cpp:131 msgid " --repository-url URL Set the URL to the Add-On repository" -msgstr " --repository-url URL Elige la URL al repositorio de complementos" +msgstr " --repository-url URL Pon la direción URL que apunte al repositorio de mods" -#: src/supertux/command_line_arguments.cpp:139 +#: src/supertux/command_line_arguments.cpp:133 msgid "Environment variables:" msgstr "Variables de entorno:" -#: src/supertux/command_line_arguments.cpp:140 +#: src/supertux/command_line_arguments.cpp:134 msgid "" " SUPERTUX2_USER_DIR Directory for user data (savegames, etc.)" msgstr "SUPERTUX2_USER_DIR Directorio para datos del usuario (partidas guardadas, etc.)" -#: src/supertux/command_line_arguments.cpp:141 +#: src/supertux/command_line_arguments.cpp:135 msgid " SUPERTUX2_DATA_DIR Directory for the games datafiles" msgstr "SUPERTUX2_DATA_DIR Directorio para archivo de datos del juego" -#: src/supertux/title_screen.cpp:44 +#: src/supertux/title_screen.cpp:272 msgid "Copyright" msgstr "Derechos de autor" -#: src/supertux/title_screen.cpp:45 +#: src/supertux/title_screen.cpp:273 msgid "" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to\n" "redistribute it under certain conditions; see the license file for details.\n" msgstr "Este juego viene sin ABSOLUTAMENTE NINGUNA GARANTÍA. Es software libre, y te invitamos a redistribuirlo bajo ciertas condiciones; lee el archivo de licencia para más detalles.\n" +#: src/supertux/game_object.cpp:114 +msgid "Version" +msgstr "Versión" + +#: src/supertux/game_object.cpp:129 +#: src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Type" +msgstr "Tipo" + #: src/supertux/menu/integrations_menu.cpp:49 msgid "Integrations" msgstr "Integraciones" @@ -1971,60 +2524,146 @@ msgstr "Integraciones" msgid "Do not share level names when editing" msgstr "No compartir el nombre del nivel al editar" +#: src/supertux/menu/integrations_menu.cpp:52 +msgid "" +"Enable this if you want to work on secret levels and don't want the names to" +" be spoiled" +msgstr "" + #: src/supertux/menu/integrations_menu.cpp:54 msgid "Enable Discord integration" msgstr "Activar integración con Discord" +#: src/supertux/menu/integrations_menu.cpp:55 +msgid "" +"Sends information to your Discord application about what you're doing in the" +" game." +msgstr "" + #: src/supertux/menu/integrations_menu.cpp:57 msgid "Discord (disabled; not compiled)" msgstr "Discord (desactivado en esta versión)" -#: src/supertux/menu/contrib_menu.cpp:80 +#: src/supertux/menu/editor_converters_menu.cpp:61 +#: src/supertux/menu/editor_menu.cpp:85 +msgid "Convert Tiles" +msgstr "Convertir teselas" + +#: src/supertux/menu/editor_converters_menu.cpp:64 +msgid "Select Tile Conversion File" +msgstr "Elige una archivo de conversión de teselas" + +#: src/supertux/menu/editor_converters_menu.cpp:72 +#, c++-format +msgid "By: {}" +msgstr "Por: {}" + +#: src/supertux/menu/editor_converters_menu.cpp:75 +msgid "Convert Tiles By File" +msgstr "" + +#: src/supertux/menu/editor_converters_menu.cpp:76 +msgid "Convert all tiles in the current level by a file, specified above." +msgstr "" + +#: src/supertux/menu/editor_converters_menu.cpp:89 +msgid "No tile conversion file selected." +msgstr "" + +#: src/supertux/menu/editor_converters_menu.cpp:93 +msgid "" +"This will convert all tiles in the level. Proceed?\n" +"\n" +"Note: This should not be ran more than once on a level.\n" +"Creating a separate copy of the level is highly recommended." +msgstr "" + +#: src/supertux/menu/video_system_menu.cpp:36 +msgid "Select Video System" +msgstr "" + +#: src/supertux/menu/video_system_menu.cpp:37 +#, c++-format +msgid "Used video system: {}" +msgstr "" + +#: src/supertux/menu/video_system_menu.cpp:54 +msgid "Restart game for the changes to take effect" +msgstr "" + +#: src/supertux/menu/contrib_menu.cpp:68 #: src/supertux/menu/world_set_menu.cpp:31 msgid "Contrib Levels" msgstr "Niveles aportados" -#: src/supertux/menu/debug_menu.cpp:32 +#: src/supertux/menu/contrib_menu.cpp:98 +#: src/supertux/menu/contrib_menu.cpp:112 +msgid "Official Contrib Levels" +msgstr "Niveles oficiales de contribución" + +#: src/supertux/menu/contrib_menu.cpp:99 +#: src/supertux/menu/contrib_menu.cpp:118 +msgid "Community Contrib Levels" +msgstr "Niveles de contribución por la Comunidad" + +#: src/supertux/menu/contrib_menu.cpp:100 +#: src/supertux/menu/contrib_menu.cpp:124 +msgid "User Contrib Levels" +msgstr "Niveles de contribución por Usuarios" + +#: src/supertux/menu/contrib_menu.cpp:113 +msgid "How is this possible? There are no Official Contrib Levels!" +msgstr "" + +#: src/supertux/menu/contrib_menu.cpp:119 +msgid "No Community Contrib Levels yet. Download them from the Add-ons Menu." +msgstr "Todavía no tienes niveles creados por la comunidad; descárgalos desde el menú de mods." + +#: src/supertux/menu/contrib_menu.cpp:125 +msgid "No User Contrib Levels yet. Create some with the Level Editor." +msgstr "" + +#: src/supertux/menu/debug_menu.cpp:34 msgid "Debug" msgstr "Depurar" -#: src/supertux/menu/debug_menu.cpp:56 +#: src/supertux/menu/debug_menu.cpp:58 msgid "Game Speed" msgstr "Velocidad del juego" -#: src/supertux/menu/debug_menu.cpp:57 +#: src/supertux/menu/debug_menu.cpp:59 msgid "Adjust Game Speed" msgstr "Ajustar la velocidad del juego durante la partida" -#: src/supertux/menu/debug_menu.cpp:63 +#: src/supertux/menu/debug_menu.cpp:65 msgid "Show Collision Rects" msgstr "Mostrar colisión entre objetos" -#: src/supertux/menu/debug_menu.cpp:64 +#: src/supertux/menu/debug_menu.cpp:66 msgid "Show Worldmap Path" msgstr "Mostrar las rutas en el mapamundi" -#: src/supertux/menu/debug_menu.cpp:65 +#: src/supertux/menu/debug_menu.cpp:67 msgid "Show Controller" msgstr "Ver el controlador" -#: src/supertux/menu/debug_menu.cpp:66 +#: src/supertux/menu/debug_menu.cpp:68 msgid "Show Framerate" msgstr "Mostrar FPS" -#: src/supertux/menu/debug_menu.cpp:67 +#: src/supertux/menu/debug_menu.cpp:69 msgid "Draw Redundant Frames" msgstr "Dibujar fotogramas redundantes" -#: src/supertux/menu/debug_menu.cpp:68 +#: src/supertux/menu/debug_menu.cpp:70 msgid "Show Player Position" msgstr "Mostrar posición de jugador" -#: src/supertux/menu/debug_menu.cpp:69 +#: src/supertux/menu/debug_menu.cpp:71 msgid "Use Bitmap Fonts" msgstr "Utilizar fuentes del mapa de bits" -#: src/supertux/menu/debug_menu.cpp:72 +#: src/supertux/menu/debug_menu.cpp:74 msgid "Dump Texture Cache" msgstr "Vuelca caché de textura " @@ -2038,10 +2677,37 @@ msgid "File name" msgstr "Nombre de archivo" #: src/supertux/menu/particle_editor_save_as.cpp:38 -#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:766 +#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:767 msgid "Save" msgstr "Guardar" +#: src/supertux/menu/multiplayer_menu.cpp:27 +#: src/supertux/menu/multiplayer_players_menu.cpp:34 +msgid "Multiplayer" +msgstr "Multijugador" + +#: src/supertux/menu/multiplayer_menu.cpp:30 +msgid "Auto-manage Players" +msgstr "Añadir jugadores sobre la marcha" + +#: src/supertux/menu/multiplayer_menu.cpp:31 +msgid "" +"Automatically add and remove players when controllers are plugged or " +"unplugged" +msgstr "Pone y quita jugadores según se van conectando o desconectando mandos y joysticks" + +#: src/supertux/menu/multiplayer_menu.cpp:33 +msgid "Allow Multibind" +msgstr "Control múltiple" + +#: src/supertux/menu/multiplayer_menu.cpp:34 +msgid "Allow binding multiple joysticks to a single player" +msgstr "Permite que varios mandos controlen al mismo personaje" + +#: src/supertux/menu/multiplayer_menu.cpp:36 +msgid "Manage Players" +msgstr "Configurar jugadores" + #: src/supertux/menu/editor_sectors_menu.cpp:31 msgid "Choose Sector" msgstr "Elige un sector" @@ -2058,50 +2724,98 @@ msgstr "Crear sector" msgid "Delete Sector" msgstr "Borrar sector" -#: src/supertux/menu/editor_sectors_menu.cpp:93 +#: src/supertux/menu/editor_sectors_menu.cpp:92 msgid "Each level must have at least one sector." msgstr "Cada nivel debe tener por lo menos un sector" -#: src/supertux/menu/editor_sectors_menu.cpp:98 +#: src/supertux/menu/editor_sectors_menu.cpp:97 msgid "Do you really want to delete this sector?" msgstr "¿Realmente quieres borrar este sector?" -#: src/supertux/menu/editor_sectors_menu.cpp:101 +#: src/supertux/menu/editor_sectors_menu.cpp:100 msgid "Delete sector" msgstr "Borrar sector" -#: src/supertux/menu/editor_objectgroup_menu.cpp:30 -#: src/editor/toolbox_widget.cpp:93 -msgid "Objects" -msgstr "Objetos" +#: src/supertux/menu/custom_menu_menu.cpp:49 +#: src/supertux/menu/options_menu.cpp:191 +msgid "Menu Customization" +msgstr "Personalización de menús" + +#: src/supertux/menu/custom_menu_menu.cpp:51 +msgid "Menu Back Color" +msgstr "Color de fondo de menú" + +#: src/supertux/menu/custom_menu_menu.cpp:52 +msgid "Menu Front Color" +msgstr "Color principal del menú" + +#: src/supertux/menu/custom_menu_menu.cpp:53 +msgid "Menu Help Back Color" +msgstr "Color de fondo del menú de ayuda" + +#: src/supertux/menu/custom_menu_menu.cpp:54 +msgid "Menu Help Front Color" +msgstr "Color principal del menú de ayuda" + +#: src/supertux/menu/custom_menu_menu.cpp:55 +msgid "Label Text Color" +msgstr "Color de etiquetas de texto" + +#: src/supertux/menu/custom_menu_menu.cpp:56 +msgid "Active Text Color" +msgstr "Color de texto activo" + +#: src/supertux/menu/custom_menu_menu.cpp:57 +msgid "Divider Line Color" +msgstr "Color de línea divisoria" + +#: src/supertux/menu/custom_menu_menu.cpp:58 +msgid "Menu Roundness" +msgstr "Redondez de los menús" + +#: src/supertux/menu/custom_menu_menu.cpp:60 +msgid "Editor Interface Color" +msgstr "Color de la interfaz del editor" -#: src/supertux/menu/editor_level_select_menu.cpp:62 +#: src/supertux/menu/custom_menu_menu.cpp:61 +msgid "Editor Hover Color" +msgstr "Color al pasar por encima en el editor" + +#: src/supertux/menu/custom_menu_menu.cpp:62 +msgid "Editor Grab Color" +msgstr "Color al agarrar en el editor" + +#: src/supertux/menu/custom_menu_menu.cpp:64 +msgid "Reset to defaults" +msgstr "Volver a los ajustes de serie" + +#: src/supertux/menu/editor_level_select_menu.cpp:72 msgid "Empty World" msgstr "Mundo vacío" -#: src/supertux/menu/editor_level_select_menu.cpp:77 +#: src/supertux/menu/editor_level_select_menu.cpp:87 msgid "Create Level" msgstr "Crear nivel" -#: src/supertux/menu/editor_level_select_menu.cpp:81 +#: src/supertux/menu/editor_level_select_menu.cpp:91 msgid "Edit Worldmap" msgstr "Editar el mapa global" -#: src/supertux/menu/editor_level_select_menu.cpp:83 +#: src/supertux/menu/editor_level_select_menu.cpp:93 msgid "Create Worldmap" msgstr "Crear Mapa de Mundo" -#: src/supertux/menu/editor_level_select_menu.cpp:85 -#: src/supertux/menu/editor_delete_level_menu.cpp:33 +#: src/supertux/menu/editor_level_select_menu.cpp:95 +#: src/supertux/menu/editor_delete_level_menu.cpp:55 msgid "Delete level" msgstr "Borrar nivel" -#: src/supertux/menu/editor_level_select_menu.cpp:87 -#: src/supertux/menu/editor_levelset_menu.cpp:56 +#: src/supertux/menu/editor_level_select_menu.cpp:97 +#: src/supertux/menu/editor_levelset_menu.cpp:50 msgid "World Settings" msgstr "Ajustes del mapa global" -#: src/supertux/menu/editor_level_select_menu.cpp:127 +#: src/supertux/menu/editor_level_select_menu.cpp:141 msgid "" "Share this worldmap under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -2109,7 +2823,7 @@ msgid "" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." msgstr "Comparte este mapa del mundo bajo la licencia CC-BY-SA 4.0 International (recomendado).\nPermite modificaciones y la redistribución por terceros.\nSi no aceptas esta licencia, cámbialo en propiedades del mapa del mundo.\nADVERTENCIA: Los creadores de SuperTux no se hacen responsables de tu elección." -#: src/supertux/menu/editor_level_select_menu.cpp:134 +#: src/supertux/menu/editor_level_select_menu.cpp:148 msgid "" "Share this level under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -2117,495 +2831,816 @@ msgid "" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." msgstr "Comparte este nivel bajo licencia CC-BY-SA 4.0 International (recomendado).\nPermite modificaciones y la redistribución por terceros.\nSi no aceptas esta licencia, cámbialo en propiedades del nivel.\nADVERTENCIA: Los creadores de SuperTux no se hacen responsables de tu elección." -#: src/supertux/menu/editor_level_select_menu.cpp:162 +#: src/supertux/menu/editor_level_select_menu.cpp:179 msgid "" "An auto-save recovery file was found. Would you like to restore the recovery\n" "file and resume where you were before the editor crashed?" msgstr "Se ha encontrado una copia de seguridad automática, ¿quieres restaurarla y seguir donde lo dejaste antes de que el editor cascara?" -#: src/supertux/menu/editor_level_select_menu.cpp:169 +#: src/supertux/menu/editor_level_select_menu.cpp:186 msgid "This will delete the auto-save file. Are you sure?" msgstr "Al hacer esto borrarás la copia de seguridad. ¿estás seguro?" -#: src/supertux/menu/worldmap_cheat_menu.cpp:34 -#: src/supertux/menu/cheat_menu.cpp:30 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:35 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:52 +#: src/supertux/menu/cheat_apply_menu.cpp:33 +#: src/supertux/menu/cheat_apply_menu.cpp:51 +msgid "Apply cheat to player" +msgstr "Trucos para el jugador" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:60 +#: src/supertux/menu/multiplayer_players_menu.cpp:39 +#: src/supertux/menu/keyboard_menu.cpp:63 +#: src/supertux/menu/cheat_apply_menu.cpp:39 +#: src/supertux/menu/cheat_apply_menu.cpp:59 +#: src/supertux/menu/multiplayer_player_menu.cpp:37 +#, c++-format +msgid "Player {}" +msgstr "Jugador {}" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:57 +#: src/supertux/menu/cheat_apply_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:56 +msgid "All Players" +msgstr "Todos los jugadores" + +#: src/supertux/menu/worldmap_cheat_menu.cpp:36 +#: src/supertux/menu/cheat_menu.cpp:31 msgid "Cheats" msgstr "Trucos" -#: src/supertux/menu/worldmap_cheat_menu.cpp:36 -#: src/supertux/menu/cheat_menu.cpp:32 +#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:33 msgid "Bonus: Grow" msgstr "Bonificador: Crecer" -#: src/supertux/menu/worldmap_cheat_menu.cpp:37 +#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:34 msgid "Bonus: Fire" msgstr "Bonificador: Fuego" -#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/cheat_menu.cpp:35 msgid "Bonus: Ice" msgstr "Bonificador: Hielo" -#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/cheat_menu.cpp:36 msgid "Bonus: Air" msgstr "Bonificador: Aire" -#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:42 +#: src/supertux/menu/cheat_menu.cpp:37 msgid "Bonus: Earth" msgstr "Bonificador: Tierra" -#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/worldmap_cheat_menu.cpp:43 msgid "Bonus: None" msgstr "Bonus: Ninguno" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:51 msgid "Leave Ghost Mode" msgstr "Salir del modo fantasma" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:50 msgid "Activate Ghost Mode" msgstr "Activar el modo fantasma" -#: src/supertux/menu/worldmap_cheat_menu.cpp:46 -#: src/supertux/menu/cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:48 +#: src/supertux/menu/cheat_menu.cpp:41 msgid "Finish Level" msgstr "Terminar nivel" -#: src/supertux/menu/worldmap_cheat_menu.cpp:47 +#: src/supertux/menu/worldmap_cheat_menu.cpp:49 msgid "Reset Level" msgstr "Reiniciar el nivel" -#: src/supertux/menu/worldmap_cheat_menu.cpp:49 +#: src/supertux/menu/worldmap_cheat_menu.cpp:51 msgid "Finish Worldmap" msgstr "Terminar el mapa del mundo" -#: src/supertux/menu/worldmap_cheat_menu.cpp:50 +#: src/supertux/menu/worldmap_cheat_menu.cpp:52 msgid "Reset Worldmap" msgstr "Reiniciar el mapa del mundo" -#: src/supertux/menu/worldmap_cheat_menu.cpp:52 +#: src/supertux/menu/worldmap_cheat_menu.cpp:54 msgid "Go to level" msgstr "Ir a nivel" -#: src/supertux/menu/worldmap_cheat_menu.cpp:53 +#: src/supertux/menu/worldmap_cheat_menu.cpp:55 msgid "Go to main spawnpoint" msgstr "Ir al punto de aparición principal" -#: src/supertux/menu/worldmap_cheat_menu.cpp:145 +#: src/supertux/menu/worldmap_cheat_menu.cpp:188 msgid "Select level" msgstr "Elegir nivel" #: src/supertux/menu/editor_save_as.cpp:33 -#: src/supertux/menu/editor_menu.cpp:49 +#: src/supertux/menu/editor_menu.cpp:63 msgid "Save Level as" msgstr "Guardar nivel como" #: src/supertux/menu/editor_save_as.cpp:33 -#: src/supertux/menu/editor_menu.cpp:50 +#: src/supertux/menu/editor_menu.cpp:64 msgid "Save Copy" msgstr "Copiar" -#: src/supertux/menu/editor_levelset_select_menu.cpp:72 +#: src/supertux/menu/editor_levelset_select_menu.cpp:71 msgid "Choose World" msgstr "Elegir un mundo" -#: src/supertux/menu/editor_levelset_select_menu.cpp:100 -#, c-format -msgid "%d level" -msgid_plural "%d levels" -msgstr[0] "%d niveles" -msgstr[1] "%d niveles" +#: src/supertux/menu/editor_levelset_select_menu.cpp:99 +#, c++-format +msgid "{} level" +msgid_plural "{} levels" +msgstr[0] "{} nivel" +msgstr[1] "{} niveles" +msgstr[2] "{} niveles" -#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_levelset_select_menu.cpp:112 msgid "Create World" msgstr "Crear un mundo" -#: src/supertux/menu/options_menu.cpp:98 src/supertux/menu/main_menu.cpp:64 -#: src/supertux/menu/game_menu.cpp:61 src/supertux/menu/worldmap_menu.cpp:31 -msgid "Options" -msgstr "Opciones" - -#: src/supertux/menu/options_menu.cpp:104 -#: src/supertux/menu/options_menu.cpp:142 -#: src/supertux/menu/options_menu.cpp:455 -#: src/supertux/menu/options_menu.cpp:476 src/editor/object_settings.cpp:119 -msgid "auto" -msgstr "autom." - -#: src/supertux/menu/options_menu.cpp:221 -msgid "Desktop" -msgstr "Escritorio" - -#: src/supertux/menu/options_menu.cpp:251 -msgid "on" -msgstr "sí" - -#: src/supertux/menu/options_menu.cpp:252 -msgid "off" -msgstr "no" +#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:41 +msgid "Delete World" +msgstr "Borrar mundo" -#: src/supertux/menu/options_menu.cpp:253 -msgid "adaptive" -msgstr "adaptarse" +#: src/supertux/menu/options_menu.cpp:72 +#: src/supertux/menu/options_select_menu.cpp:35 +msgid "Locale" +msgstr "Idioma" -#: src/supertux/menu/options_menu.cpp:347 +#: src/supertux/menu/options_menu.cpp:76 msgid "Select Language" msgstr "Elegir idioma" -#: src/supertux/menu/options_menu.cpp:348 +#: src/supertux/menu/options_menu.cpp:77 msgid "Select a different language to display text in" msgstr "Selecciona otro idioma distinto para los textos del juego" -#: src/supertux/menu/options_menu.cpp:350 +#: src/supertux/menu/options_menu.cpp:79 msgid "Language Packs" msgstr "Paquetes de idioma" -#: src/supertux/menu/options_menu.cpp:351 +#: src/supertux/menu/options_menu.cpp:80 msgid "Language packs contain up-to-date translations" msgstr "Los paquetes de idioma contienen traducciones actualizadas" -#: src/supertux/menu/options_menu.cpp:353 -#: src/supertux/menu/profile_menu.cpp:34 -msgid "Select Profile" -msgstr "Seleccionar perfil" - -#: src/supertux/menu/options_menu.cpp:354 -msgid "Select a profile to play with" -msgstr "Selecciona un perfil para jugar" +#: src/supertux/menu/options_menu.cpp:88 +#: src/supertux/menu/options_select_menu.cpp:37 +msgid "Video" +msgstr "Vídeo" -#: src/supertux/menu/options_menu.cpp:358 +#: src/supertux/menu/options_menu.cpp:91 msgid "Window Resizable" msgstr "Ventana de tamaño variable" -#: src/supertux/menu/options_menu.cpp:359 +#: src/supertux/menu/options_menu.cpp:92 msgid "Allow window resizing, might require a restart to take effect" msgstr "Permite cambiar el tamaño de la ventana arrastrando los bordes, puede ser necesario reiniciar para que se apliquen los cambios" -#: src/supertux/menu/options_menu.cpp:361 -msgid "Window Resolution" -msgstr "Resolución de ventana" - -#: src/supertux/menu/options_menu.cpp:362 -msgid "Resize the window to the given size" -msgstr "Ajustar la ventana al tamaño configurado" - -#: src/supertux/menu/options_menu.cpp:364 +#: src/supertux/menu/options_menu.cpp:96 msgid "Fullscreen" msgstr "Pantalla completa" -#: src/supertux/menu/options_menu.cpp:365 +#: src/supertux/menu/options_menu.cpp:97 msgid "Fill the entire screen" msgstr "Llenar toda la pantalla" -#: src/supertux/menu/options_menu.cpp:367 -msgid "Fullscreen Resolution" -msgstr "Pantalla completa" - -#: src/supertux/menu/options_menu.cpp:368 -msgid "" -"Determine the resolution used in fullscreen mode (you must toggle fullscreen" -" to complete the change)" -msgstr "Elige automáticamente la resolución que mejor se adapte a tu pantalla (reactiva la pantalla completa para que se apliquen los cambios)" - -#: src/supertux/menu/options_menu.cpp:373 +#: src/supertux/menu/options_menu.cpp:104 msgid "Fit to browser" msgstr "Ajustarse al navegador" -#: src/supertux/menu/options_menu.cpp:374 +#: src/supertux/menu/options_menu.cpp:105 msgid "Fit the resolution to the size of your browser" msgstr "Ajusta automáticamente la resolución para que coincida con el tamaño del marco de tu navegador" -#: src/supertux/menu/options_menu.cpp:378 -msgid "Magnification" -msgstr "Ampliación" - -#: src/supertux/menu/options_menu.cpp:379 -msgid "Change the magnification of the game area" -msgstr "Hace más o menos grande el área del juego" - -#: src/supertux/menu/options_menu.cpp:381 -msgid "VSync" -msgstr "Sincronización vertical" - -#: src/supertux/menu/options_menu.cpp:382 -msgid "Set the VSync mode" -msgstr "Establecer el modo «v-sync», para reducir efecto de pantalla partida" +#: src/supertux/menu/options_menu.cpp:116 +msgid "Change Video System" +msgstr "Cambiar el sistema de vídeo" -#: src/supertux/menu/options_menu.cpp:385 -msgid "Aspect Ratio" -msgstr "Relación de aspecto" +#: src/supertux/menu/options_menu.cpp:117 +msgid "Change video system used to render graphics" +msgstr "Cambia el método que se usa para dibujar los gráficos" -#: src/supertux/menu/options_menu.cpp:386 -msgid "Adjust the aspect ratio" -msgstr "Ajusta la proporción de la imagen en pantalla" +#: src/supertux/menu/options_menu.cpp:124 +#: src/supertux/menu/options_select_menu.cpp:38 +msgid "Audio" +msgstr "Sonido" -#: src/supertux/menu/options_menu.cpp:392 +#: src/supertux/menu/options_menu.cpp:129 msgid "Disable all sound effects" msgstr "Desactivar los efectos de sonido" -#: src/supertux/menu/options_menu.cpp:394 +#: src/supertux/menu/options_menu.cpp:131 msgid "Disable all music" msgstr "Desactivar toda la música" -#: src/supertux/menu/options_menu.cpp:396 -msgid "Sound Volume" -msgstr "Volumen de sonido" - -#: src/supertux/menu/options_menu.cpp:397 -msgid "Adjust sound volume" -msgstr "Ajusta el volumen de los sonidos ambientales" - -#: src/supertux/menu/options_menu.cpp:399 -msgid "Music Volume" -msgstr "Volumen de música" - -#: src/supertux/menu/options_menu.cpp:400 -msgid "Adjust music volume" -msgstr "Configura el volumen de la música" - -#: src/supertux/menu/options_menu.cpp:404 +#: src/supertux/menu/options_menu.cpp:138 msgid "Sound (disabled)" msgstr "Sonido (desactivado)" -#: src/supertux/menu/options_menu.cpp:405 +#: src/supertux/menu/options_menu.cpp:139 msgid "Music (disabled)" msgstr "Música (desactivada)" -#: src/supertux/menu/options_menu.cpp:408 -#: src/supertux/menu/keyboard_menu.cpp:30 +#: src/supertux/menu/options_menu.cpp:147 +#: src/supertux/menu/options_select_menu.cpp:39 +msgid "Controls" +msgstr "Controles" + +#: src/supertux/menu/options_menu.cpp:151 +msgid "Enable Rumbling Controllers" +msgstr "Activar vibración" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "Enable vibrating the game controllers." +msgstr "Hace que los mandos vibren durante el juego" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "This feature is currently only used in the multiplayer options menu." +msgstr "Esto solo funciona en el menú multijugador, al menos de momento." + +#: src/supertux/menu/options_menu.cpp:154 +#: src/supertux/menu/keyboard_menu.cpp:34 msgid "Setup Keyboard" msgstr "Configurar teclado" -#: src/supertux/menu/options_menu.cpp:409 +#: src/supertux/menu/options_menu.cpp:155 msgid "Configure key-action mappings" msgstr "Configurar mapeo de teclas de acción" -#: src/supertux/menu/options_menu.cpp:412 -#: src/supertux/menu/joystick_menu.cpp:52 +#: src/supertux/menu/options_menu.cpp:158 +#: src/supertux/menu/joystick_menu.cpp:54 msgid "Setup Joystick" msgstr "Configurar joystick" -#: src/supertux/menu/options_menu.cpp:413 +#: src/supertux/menu/options_menu.cpp:159 msgid "Configure joystick control-action mappings" msgstr "Configura el mapeo de control de efecto del joystick" -#: src/supertux/menu/options_menu.cpp:417 -msgid "On-screen controls" -msgstr "Botones en pantalla" +#: src/supertux/menu/options_menu.cpp:167 +#: src/supertux/menu/options_select_menu.cpp:40 +msgid "Extras" +msgstr "Más cosas" + +#: src/supertux/menu/options_menu.cpp:170 +#: src/supertux/menu/profile_menu.cpp:56 +msgid "Select Profile" +msgstr "Seleccionar perfil" + +#: src/supertux/menu/options_menu.cpp:171 +msgid "Select a profile to play with" +msgstr "Selecciona un perfil para jugar" + +#: src/supertux/menu/options_menu.cpp:174 +msgid "Multiplayer settings" +msgstr "Ajustes multijugador" -#: src/supertux/menu/options_menu.cpp:418 -msgid "Toggle on-screen controls for mobile devices" -msgstr "Activa o no los controles táctiles para dispositivos móviles" +#: src/supertux/menu/options_menu.cpp:175 +msgid "Configure settings specific to multiplayer" +msgstr "Configura opciones específicas para el modo multijugador" -#: src/supertux/menu/options_menu.cpp:420 +#: src/supertux/menu/options_menu.cpp:178 msgid "Enable transitions" msgstr "Activar transiciones" -#: src/supertux/menu/options_menu.cpp:421 +#: src/supertux/menu/options_menu.cpp:179 msgid "Enable screen transitions and smooth menu animation" msgstr "Permite las transiciones graduales al cambiar de pantalla y el movimiento en los menús" -#: src/supertux/menu/options_menu.cpp:425 -msgid "Developer Mode" -msgstr "Modo desarrollador" +#: src/supertux/menu/options_menu.cpp:181 +msgid "Custom title screen levels" +msgstr "" -#: src/supertux/menu/options_menu.cpp:430 +#: src/supertux/menu/options_menu.cpp:182 +msgid "Allow overriding the title screen level, when loading certain worlds" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:185 msgid "Christmas Mode" msgstr "Modo navideño" -#: src/supertux/menu/options_menu.cpp:433 +#: src/supertux/menu/options_menu.cpp:187 +msgid "Integrations and presence" +msgstr "Integraciones y compartir estado de juego" + +#: src/supertux/menu/options_menu.cpp:188 +msgid "" +"Manage whether SuperTux should display the levels you play on your social " +"media profiles (Discord)" +msgstr "Elige si SuperTux muestra en qué nivel estás jugando para que todos lo vean (Discord)" + +#: src/supertux/menu/options_menu.cpp:192 +msgid "Customize the appearance of the menus" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:199 +#: src/supertux/menu/options_select_menu.cpp:41 +msgid "Advanced" +msgstr "Avanzado" + +#: src/supertux/menu/options_menu.cpp:204 +msgid "Developer Mode" +msgstr "Modo desarrollador" + +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirmation Dialog" msgstr "Cuadro de confirmación" -#: src/supertux/menu/options_menu.cpp:433 +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirm aborting level" msgstr "Preguntar antes de salir del nivel" -#: src/supertux/menu/options_menu.cpp:434 +#: src/supertux/menu/options_menu.cpp:208 msgid "Pause on focus loss" msgstr "Pausar en segundo plano" -#: src/supertux/menu/options_menu.cpp:435 +#: src/supertux/menu/options_menu.cpp:209 msgid "Automatically pause the game when the window loses focus" msgstr "Pausar el juego al cambiar a otra aplicación" -#: src/supertux/menu/options_menu.cpp:436 +#: src/supertux/menu/options_menu.cpp:211 msgid "Use custom mouse cursor" msgstr "Utilizar el cursor personalizado" -#: src/supertux/menu/options_menu.cpp:436 +#: src/supertux/menu/options_menu.cpp:211 msgid "Whether the game renders its own cursor or uses the system's cursor" msgstr "Elige si el juego dibuja su propio cursor o utiliza el del sistema" -#: src/supertux/menu/options_menu.cpp:438 -msgid "Integrations and presence" -msgstr "Integraciones y compartir estado de juego" +#: src/supertux/menu/options_menu.cpp:214 +msgid "Check for new releases" +msgstr "Buscar nuevas actualizaciones" -#: src/supertux/menu/options_menu.cpp:439 +#: src/supertux/menu/options_menu.cpp:215 msgid "" -"Manage whether SuperTux should display the levels you play on your social " -"media profiles (Discord)" -msgstr "Elige si SuperTux muestra en qué nivel estás jugando para que todos lo vean (Discord)" +"Allows the game to perform checks for new SuperTux releases on startup and " +"notify if any found." +msgstr "Permite que el juego compruebe si hay versiones nuevas al arrancar, así como mostrarte un mensaje de notificación" + +#: src/supertux/menu/options_menu.cpp:245 +#: src/supertux/menu/options_menu.cpp:288 src/supertux/direction.cpp:76 +msgid "auto" +msgstr "autom." + +#: src/supertux/menu/options_menu.cpp:281 +msgid "Magnification" +msgstr "Ampliación" + +#: src/supertux/menu/options_menu.cpp:282 +msgid "Change the magnification of the game area" +msgstr "Hace más o menos grande el área del juego" + +#: src/supertux/menu/options_menu.cpp:318 +msgid "Aspect Ratio" +msgstr "Relación de aspecto" + +#: src/supertux/menu/options_menu.cpp:319 +msgid "Adjust the aspect ratio" +msgstr "Ajusta la proporción de la imagen en pantalla" + +#: src/supertux/menu/options_menu.cpp:346 +msgid "Window Resolution" +msgstr "Resolución de ventana" + +#: src/supertux/menu/options_menu.cpp:347 +msgid "Resize the window to the given size" +msgstr "Ajustar la ventana al tamaño configurado" -#: src/supertux/menu/options_menu.cpp:559 +#: src/supertux/menu/options_menu.cpp:377 +msgid "Desktop" +msgstr "Escritorio" + +#: src/supertux/menu/options_menu.cpp:404 +msgid "Fullscreen Resolution" +msgstr "Pantalla completa" + +#: src/supertux/menu/options_menu.cpp:405 +msgid "" +"Determine the resolution used in fullscreen mode (you must toggle fullscreen" +" to complete the change)" +msgstr "Elige automáticamente la resolución que mejor se adapte a tu pantalla (reactiva la pantalla completa para que se apliquen los cambios)" + +#: src/supertux/menu/options_menu.cpp:411 +msgid "on" +msgstr "sí" + +#: src/supertux/menu/options_menu.cpp:412 +msgid "off" +msgstr "no" + +#: src/supertux/menu/options_menu.cpp:413 +msgid "adaptive" +msgstr "adaptarse" + +#: src/supertux/menu/options_menu.cpp:431 +msgid "VSync" +msgstr "Sincronización vertical" + +#: src/supertux/menu/options_menu.cpp:432 +msgid "Set the VSync mode" +msgstr "Establecer el modo «v-sync», para reducir efecto de pantalla partida" + +#: src/supertux/menu/options_menu.cpp:467 +msgid "Sound Volume" +msgstr "Volumen de sonido" + +#: src/supertux/menu/options_menu.cpp:468 +msgid "Adjust sound volume" +msgstr "Ajusta el volumen de los sonidos ambientales" + +#: src/supertux/menu/options_menu.cpp:503 +msgid "Music Volume" +msgstr "Volumen de música" + +#: src/supertux/menu/options_menu.cpp:504 +msgid "Adjust music volume" +msgstr "Configura el volumen de la música" + +#: src/supertux/menu/options_menu.cpp:517 +msgid "On-screen controls scale" +msgstr "Escala de la interfaz durante la partida" + +#: src/supertux/menu/options_menu.cpp:638 msgid "" "The game couldn't detect your browser resolution.\n" "This most likely happens because it is not embedded\n" "in the SuperTux custom HTML template.\n" msgstr "El juego no ha podido detectar la resolución de tu navegador. Esto suele pasar cuando el juego no está dentro de la plantilla HTML propia.\n" -#: src/supertux/menu/main_menu.cpp:56 src/supertux/menu/world_set_menu.cpp:28 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:80 +msgid "You cannot delete the world that you are editing" +msgstr "" + +#: src/supertux/menu/editor_delete_levelset_menu.cpp:83 +#, c++-format +msgid "You are about to delete world \"{}\". Are you sure?" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:82 +#, c++-format +msgid "{} \"{}\"" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:87 +msgid "Some information about this add-on is not available." +msgstr "A este mod le falta información." + +#: src/supertux/menu/addon_preview_menu.cpp:88 +msgid "Perform a \"Check Online\" to try retrieving it." +msgstr "Realice una \"Verificar en línea\" para intentar recuperarlo." + +#: src/supertux/menu/addon_preview_menu.cpp:92 +msgid "No author specified." +msgstr "Autor no disponible" + +#: src/supertux/menu/addon_preview_menu.cpp:92 +#, c++-format +msgid "Author: {}" +msgstr "Autor: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:93 +#, c++-format +msgid "Type: {}" +msgstr "Tipo: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:94 +msgid "No license specified." +msgstr "Licencia de uso desconocida." + +#: src/supertux/menu/addon_preview_menu.cpp:94 +#, c++-format +msgid "License: {}" +msgstr "Licencia: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:99 +msgid "Dependencies:" +msgstr "Dependencias:" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Installed" +msgstr "Instalado" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Not installed" +msgstr "Sin instalar" + +#: src/supertux/menu/addon_preview_menu.cpp:113 +msgid "Not available!" +msgstr "No disponible" + +#: src/supertux/menu/addon_preview_menu.cpp:120 +msgid "Description:" +msgstr "Descripción:" + +#: src/supertux/menu/addon_preview_menu.cpp:123 +msgid "No description available." +msgstr "Parece que no tiene descripción." + +#: src/supertux/menu/addon_preview_menu.cpp:147 +msgid "Failed to load all available screenshot previews." +msgstr "No se pudieron cargar las capturas de pantalla." + +#: src/supertux/menu/addon_preview_menu.cpp:152 +msgid "Show screenshots" +msgstr "Ver capturas de pantalla" + +#: src/supertux/menu/addon_preview_menu.cpp:165 +msgid "Screenshot previews are disabled for automatic installs." +msgstr "Las imágenes de vista previa están desactivadas en las descargas automáticas." + +#: src/supertux/menu/addon_preview_menu.cpp:169 +msgid "No screenshot previews available." +msgstr "No parece que haya ninguna captura disponible." + +#: src/supertux/menu/addon_preview_menu.cpp:177 +msgid "Install" +msgstr "Instalar" + +#: src/supertux/menu/addon_preview_menu.cpp:190 +msgid "Uninstall" +msgstr "Desinstalar" + +#: src/supertux/menu/addon_preview_menu.cpp:214 +#, c++-format +msgid "Are you sure you want to uninstall \"{}\"?" +msgstr "¿Seguro que quieres desinstalar «{}»?" + +#: src/supertux/menu/addon_preview_menu.cpp:215 +msgid "" +"\n" +"Your progress won't be lost." +msgstr "\nNo perderás ningún progreso." + +#: src/supertux/menu/addon_preview_menu.cpp:227 +#, c++-format +msgid "" +"NOTE: The add-on \"{}\" is a dependency of {} other installed {}.\n" +"Are you sure you wish to uninstall?" +msgstr "NOTA: De este mod «{}» dependen {} otros {} instalados.\n¿Seguro que quieres borrarlo?" + +#: src/supertux/menu/addon_preview_menu.cpp:246 +#, c++-format +msgid "" +"Cannot toggle add-on \"{}\":\n" +"{}" +msgstr "No se puede cambiar el estado del mod «{}»:\n{}" + +#: src/supertux/menu/addon_preview_menu.cpp:279 +msgid "Fetching screenshot previews..." +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Updating" +msgstr "Actualizando" + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Downloading" +msgstr "Descargando" + +#: src/supertux/menu/addon_preview_menu.cpp:328 +msgid "Add-on uninstalled successfully." +msgstr "El mod se ha quitado." + +#: src/supertux/menu/addon_preview_menu.cpp:333 +#, c++-format +msgid "" +"Error uninstalling add-on:\n" +"{}" +msgstr "Hubo un error al quitar el mod:\n{}" + +#: src/supertux/menu/addon_preview_menu.cpp:361 +msgid "" +"Please restart SuperTux\n" +"for these changes to take effect." +msgstr "Reinicia SuperTux para que estos cambios surtan efecto." + +#: src/supertux/menu/main_menu.cpp:51 src/supertux/menu/world_set_menu.cpp:28 msgid "Start Game" msgstr "Comenzar el juego" -#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/addon_menu.cpp:122 +#: src/supertux/menu/main_menu.cpp:55 msgid "Add-ons" -msgstr "Complementos" +msgstr "Mods" -#: src/supertux/menu/main_menu.cpp:62 src/supertux/menu/web_asset_menu.cpp:38 +#: src/supertux/menu/main_menu.cpp:57 src/supertux/menu/web_asset_menu.cpp:38 msgid "Manage Assets" msgstr "Gestionar datos" -#: src/supertux/menu/main_menu.cpp:65 src/supertux/menu/editor_menu.cpp:43 +#: src/supertux/menu/main_menu.cpp:59 +#: src/supertux/menu/options_select_menu.cpp:29 +#: src/supertux/menu/game_menu.cpp:58 src/supertux/menu/worldmap_menu.cpp:31 +#: src/supertux/menu/editor_menu.cpp:70 +msgid "Options" +msgstr "Opciones" + +#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/editor_menu.cpp:58 msgid "Level Editor" msgstr "Editor de Niveles" -#: src/supertux/menu/main_menu.cpp:66 +#: src/supertux/menu/main_menu.cpp:61 msgid "Credits" msgstr "Créditos" -#: src/supertux/menu/main_menu.cpp:67 +#: src/supertux/menu/main_menu.cpp:64 msgid "Donate" msgstr "Donar" -#: src/supertux/menu/main_menu.cpp:69 +#: src/supertux/menu/main_menu.cpp:67 msgid "Quit" msgstr "Salir" -#: src/supertux/menu/editor_sector_menu.cpp:35 +#: src/supertux/menu/main_menu.cpp:106 +msgid "" +"This will take you to the SuperTux donation page. Are you sure you want to " +"continue?" +msgstr "Esto te llevará a la página de donación de SuperTux. ¿Seguro que quieres seguir?" + +#: src/supertux/menu/editor_sector_menu.cpp:34 +#, c++-format +msgid "Sector {}" +msgstr "Sector {}" + +#: src/supertux/menu/editor_sector_menu.cpp:37 msgid "Initialization script" msgstr "Script de iniciación" -#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_sector_menu.cpp:38 msgid "Gravity" msgstr "Gravedad" -#: src/supertux/menu/editor_sector_menu.cpp:41 +#: src/supertux/menu/editor_sector_menu.cpp:43 msgid "Resize offset X" msgstr "Cambiar compensación en X" -#: src/supertux/menu/editor_sector_menu.cpp:42 +#: src/supertux/menu/editor_sector_menu.cpp:44 msgid "Resize offset Y" msgstr "Cambiar compensación en Y" -#: src/supertux/menu/editor_sector_menu.cpp:43 +#: src/supertux/menu/editor_sector_menu.cpp:45 msgid "Resize" msgstr "Redimensionar" -#: src/supertux/menu/profile_menu.cpp:41 -#, c-format -msgid "[Profile %s]" -msgstr "[Perfil %s]" - -#: src/supertux/menu/profile_menu.cpp:45 -#, c-format -msgid "Profile %s" -msgstr "Perfil %s" - -#: src/supertux/menu/profile_menu.cpp:50 -msgid "Reset profile" -msgstr "Restablecer el perfil" - -#: src/supertux/menu/profile_menu.cpp:51 -msgid "Reset all profiles" -msgstr "Restablecer todos los perfiles" - -#: src/supertux/menu/profile_menu.cpp:67 -msgid "Deleting your profile will reset your game progress. Are you sure?" -msgstr "Al borrar tu perfil borrarás todo tu progreso en la partida. ¿Seguro que quieres seguir?" +#: src/supertux/menu/profile_menu.cpp:60 +msgid "No profiles found." +msgstr "No se ha encontrado ningún perfil." + +#: src/supertux/menu/profile_menu.cpp:68 +#: src/supertux/menu/profile_menu.cpp:149 +#: src/supertux/menu/profile_menu.cpp:168 +#, c++-format +msgid "Profile {}" +msgstr "Perfil {}" + +#: src/supertux/menu/profile_menu.cpp:69 +#, c++-format +msgid "{} (Profile {})" +msgstr "{} (Perfil {})" + +#: src/supertux/menu/profile_menu.cpp:84 +msgid "No profile selected." +msgstr "No has elegido ningún perfil." + +#: src/supertux/menu/profile_menu.cpp:91 src/supertux/menu/profile_menu.cpp:93 +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Rename" +msgstr "Renombrar" + +#: src/supertux/menu/profile_menu.cpp:98 +#: src/supertux/menu/profile_menu.cpp:100 +msgid "Reset" +msgstr "Restablecer" + +#: src/supertux/menu/profile_menu.cpp:103 +#: src/supertux/menu/profile_menu.cpp:105 +msgid "Reset all" +msgstr "Restablecer todo" + +#: src/supertux/menu/profile_menu.cpp:113 +#: src/supertux/menu/profile_menu.cpp:115 +msgid "Delete all" +msgstr "Borrar todo" + +#: src/supertux/menu/profile_menu.cpp:148 +#, c++-format +msgid "" +"This will reset all game progress on the profile \"{}\".\n" +"Are you sure?" +msgstr "" -#: src/supertux/menu/profile_menu.cpp:73 +#: src/supertux/menu/profile_menu.cpp:157 msgid "This will reset your game progress on all profiles. Are you sure?" msgstr "Borrarás todo el progreso en todas las partidas y sus perfiles. ¿Seguro que quieres seguir?" -#: src/supertux/menu/editor_levelset_menu.cpp:59 +#: src/supertux/menu/profile_menu.cpp:167 +#, c++-format +msgid "" +"This will delete the profile \"{}\",\n" +"including all game progress on it. Are you sure?" +msgstr "" + +#: src/supertux/menu/profile_menu.cpp:178 +msgid "" +"This will delete all profiles, including all game progress on them.\n" +"Are you sure?" +msgstr "" + +#: src/supertux/menu/editor_levelset_menu.cpp:53 #: src/supertux/menu/editor_new_levelset_menu.cpp:35 msgid "Description" msgstr "Descripción" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:48 -#: data//images/engine/editor/objects.stoi:371 -msgid "Worldmap" -msgstr "Mapa global" +#: src/supertux/menu/editor_levelset_menu.cpp:55 +msgid "Title Screen Level" +msgstr "" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:45 -msgid "Levelset" -msgstr "Conjunto de niveles" +#: src/supertux/menu/editor_levelset_menu.cpp:56 +msgid "A level to be used for the title screen, after exiting the world." +msgstr "" -#: src/supertux/menu/addon_menu.cpp:51 -msgid "World" -msgstr "Mundo" +#: src/supertux/menu/multiplayer_players_menu.cpp:46 +msgid "Add Player" +msgstr "Añadir jugador" -#: src/supertux/menu/addon_menu.cpp:54 -msgid "Add-on" -msgstr "Complementos" +#: src/supertux/menu/multiplayer_players_menu.cpp:59 +msgid "Remove Last Player" +msgstr "Quitar último jugador" -#: src/supertux/menu/addon_menu.cpp:60 -msgid "Unknown" -msgstr "Desconocido" +#: src/supertux/menu/multiplayer_players_menu.cpp:62 +msgid "" +"Warning: The player you are trying to\n" +"remove is currently in-game.\n" +"\n" +"Do you wish to remove them anyways?" +msgstr "Cuidado: El jugador que estás a punto\nde borrar está en mitad de la partida.\n¿Seguro que quieres hacerlo?" + +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Language Packs" +msgstr "Paquetes de idioma instalados" + +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Add-ons" +msgstr "Mods instalados" -#: src/supertux/menu/addon_menu.cpp:71 -#, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" por \"%s\"" +#: src/supertux/menu/addon_menu.cpp:76 src/supertux/menu/addon_menu.cpp:117 +msgid "No language packs installed" +msgstr "No has instalado ningún paquete de idioma" -#: src/supertux/menu/addon_menu.cpp:129 +#: src/supertux/menu/addon_menu.cpp:76 msgid "No Add-ons installed" -msgstr "No se ha instalado ningún complemento" +msgstr "No se ha instalado ningún mod" -#: src/supertux/menu/addon_menu.cpp:133 -msgid "No Add-ons found" -msgstr "No hay ningún complemento" +#: src/supertux/menu/addon_menu.cpp:124 +#, c++-format +msgid "{} {}*UPDATE*" +msgstr "{} {}*ACTUALIZACIÓN*" -#: src/supertux/menu/addon_menu.cpp:179 -#, c-format -msgid "Install %s *NEW*" -msgstr "Instalar %s *NUEVO*" +#: src/supertux/menu/addon_menu.cpp:130 +#, c++-format +msgid "{}{}" +msgstr "{}{}" -#: src/supertux/menu/addon_menu.cpp:190 -#, c-format -msgid "Install %s" -msgstr "Instalar %s" +#: src/supertux/menu/addon_menu.cpp:140 +msgid "No updates available." +msgstr "Ya tienes la versión más reciente." -#: src/supertux/menu/addon_menu.cpp:199 -msgid "No new Add-ons found" -msgstr "No hay ningún complemento nuevo" +#: src/supertux/menu/addon_menu.cpp:144 +#, c++-format +msgid "{} {} available" +msgstr "{} {} ya está disponible" -#: src/supertux/menu/addon_menu.cpp:205 -msgid "Check Online (disabled)" -msgstr "Buscar actualizaciones en Internet (no disponible)" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "update" +msgstr "actualización" -#: src/supertux/menu/addon_menu.cpp:209 -msgid "Check Online" -msgstr "Buscar actualizaciones en Internet" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "updates" +msgstr "actualizaciones" -#: src/supertux/menu/addon_menu.cpp:286 -msgid "Downloading Add-On Repository Index" -msgstr "Descargando el índice con todos los complementos" +#: src/supertux/menu/addon_menu.cpp:146 +msgid "Check for updates" +msgstr "Buscar actualizaciones" -#: src/supertux/menu/addon_menu.cpp:301 -#, c-format -msgid "Downloading %s" -msgstr "Descargando %s" +#: src/supertux/menu/addon_menu.cpp:150 +msgid "Browse language packs" +msgstr "Ver paquetes de idioma" -#: src/supertux/menu/addon_menu.cpp:348 -msgid "" -"Please restart SuperTux\n" -"for these changes to take effect." -msgstr "Reinicia SuperTux para que estos cambios surtan efecto." +#: src/supertux/menu/addon_menu.cpp:150 +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Add-ons" +msgstr "Ver mods" + +#: src/supertux/menu/addon_menu.cpp:151 +msgid "Install from file" +msgstr "Instalar desde archivo" + +#: src/supertux/menu/addon_menu.cpp:208 +msgid "Checking for updates..." +msgstr "Buscando actualizaciones..." #: src/supertux/menu/editor_new_levelset_menu.cpp:31 msgid "New World" @@ -2619,6 +3654,53 @@ msgstr "Por favor ingrese un nombre para este subconjunto de nivel." msgid "Story Mode" msgstr "Modo historia" +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Language Packs" +msgstr "Ver paquetes de idioma" + +#: src/supertux/menu/addon_browse_menu.cpp:112 +#, c++-format +msgid "Page {}/{}" +msgstr "Página {}/{}" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new language packs available" +msgstr "No hay más paquetes de idioma" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new Add-ons available" +msgstr "No hay más mods" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No language packs available" +msgstr "No hay ningún paquete de idioma disponible" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No Add-ons available" +msgstr "No hay ningún mod disponible" + +#: src/supertux/menu/addon_browse_menu.cpp:135 +#: src/supertux/menu/addon_browse_menu.cpp:139 +msgid "Previous page" +msgstr "Página anterior" + +#: src/supertux/menu/addon_browse_menu.cpp:143 +#: src/supertux/menu/addon_browse_menu.cpp:147 +msgid "Next page" +msgstr "Siguiente página" + +#: src/supertux/menu/addon_browse_menu.cpp:154 +msgid "Check Online (disabled)" +msgstr "Buscar actualizaciones en Internet (no disponible)" + +#: src/supertux/menu/addon_browse_menu.cpp:158 +msgid "Check Online" +msgstr "Buscar actualizaciones en Internet" + +#: src/supertux/menu/addon_browse_menu.cpp:195 +msgid "Downloading Add-On Repository Index" +msgstr "Descargando el índice con todos los mods" + #: src/supertux/menu/web_asset_menu.cpp:42 msgid "New files location" msgstr "Ubicación de los archivos nuevos" @@ -2639,207 +3721,235 @@ msgstr "Abrir archivo de partícula" msgid "Open" msgstr "Abrir" -#: src/supertux/menu/game_menu.cpp:31 -msgid "Are you sure?" -msgstr "¿Estás seguro?" - -#: src/supertux/menu/game_menu.cpp:54 src/supertux/menu/worldmap_menu.cpp:30 +#: src/supertux/menu/game_menu.cpp:51 src/supertux/menu/worldmap_menu.cpp:30 msgid "Continue" msgstr "Continuar" -#: src/supertux/menu/game_menu.cpp:55 +#: src/supertux/menu/game_menu.cpp:52 msgid "Restart Level" msgstr "Reiniciar el nivel" -#: src/supertux/menu/game_menu.cpp:58 +#: src/supertux/menu/game_menu.cpp:55 msgid "Restart from Checkpoint" msgstr "Reininciar de control" -#: src/supertux/menu/game_menu.cpp:63 +#: src/supertux/menu/game_menu.cpp:60 msgid "Abort Level" msgstr "Salir del nivel" -#: src/supertux/menu/keyboard_menu.cpp:32 -#: src/supertux/menu/joystick_menu.cpp:69 +#: src/supertux/menu/game_menu.cpp:76 src/supertux/menu/game_menu.cpp:87 +#: src/supertux/menu/game_menu.cpp:99 +msgid "Are you sure?" +msgstr "¿Estás seguro?" + +#: src/supertux/menu/profile_name_menu.cpp:36 +#, c++-format +msgid "Rename \"{}\"" +msgstr "Renombrar «{}»" + +#: src/supertux/menu/profile_name_menu.cpp:36 +msgid "Add profile" +msgstr "Añadir perfil" + +#: src/supertux/menu/profile_name_menu.cpp:40 +msgid "Profile names must have a maximum of 20 characters." +msgstr "Hay un tope de 20 letras." + +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Create" +msgstr "Crear" + +#: src/supertux/menu/profile_name_menu.cpp:56 +msgid "" +"Profile names must have a maximum of 20 characters.\n" +"Please choose a different name." +msgstr "Hay un tope de 20 letras, elige algo más corto." + +#: src/supertux/menu/profile_name_menu.cpp:77 +msgid "An error occurred while creating the profile." +msgstr "Hubo un error al crear el perfil." + +#: src/supertux/menu/keyboard_menu.cpp:36 +#: src/supertux/menu/joystick_menu.cpp:71 msgid "Up" msgstr "Arriba" -#: src/supertux/menu/keyboard_menu.cpp:33 -#: src/supertux/menu/joystick_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:37 +#: src/supertux/menu/joystick_menu.cpp:72 msgid "Down" msgstr "Abajo" -#: src/supertux/menu/keyboard_menu.cpp:36 -#: src/supertux/menu/joystick_menu.cpp:73 +#: src/supertux/menu/keyboard_menu.cpp:40 +#: src/supertux/menu/joystick_menu.cpp:75 msgid "Jump" msgstr "Saltar" -#: src/supertux/menu/keyboard_menu.cpp:38 -#: src/supertux/menu/joystick_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:43 +#: src/supertux/menu/joystick_menu.cpp:78 msgid "Peek Left" msgstr "Mirar a la izquierda" -#: src/supertux/menu/keyboard_menu.cpp:39 -#: src/supertux/menu/joystick_menu.cpp:77 +#: src/supertux/menu/keyboard_menu.cpp:44 +#: src/supertux/menu/joystick_menu.cpp:79 msgid "Peek Right" msgstr "Mirar a la derecha" -#: src/supertux/menu/keyboard_menu.cpp:40 -#: src/supertux/menu/joystick_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:45 +#: src/supertux/menu/joystick_menu.cpp:80 msgid "Peek Up" msgstr "Mirar arriba" -#: src/supertux/menu/keyboard_menu.cpp:41 -#: src/supertux/menu/joystick_menu.cpp:79 +#: src/supertux/menu/keyboard_menu.cpp:46 +#: src/supertux/menu/joystick_menu.cpp:81 msgid "Peek Down" msgstr "Mirar abajo" -#: src/supertux/menu/keyboard_menu.cpp:43 -#: src/supertux/menu/joystick_menu.cpp:81 +#: src/supertux/menu/keyboard_menu.cpp:51 +#: src/supertux/menu/joystick_menu.cpp:83 msgid "Console" msgstr "Consola" -#: src/supertux/menu/keyboard_menu.cpp:44 -#: src/supertux/menu/joystick_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:52 +#: src/supertux/menu/joystick_menu.cpp:84 msgid "Cheat Menu" msgstr "Menú de trucos" -#: src/supertux/menu/keyboard_menu.cpp:45 -#: src/supertux/menu/joystick_menu.cpp:83 +#: src/supertux/menu/keyboard_menu.cpp:53 +#: src/supertux/menu/joystick_menu.cpp:85 msgid "Debug Menu" msgstr "Depurar Menu" -#: src/supertux/menu/keyboard_menu.cpp:47 -#: src/supertux/menu/joystick_menu.cpp:85 +#: src/supertux/menu/keyboard_menu.cpp:56 +#: src/supertux/menu/joystick_menu.cpp:87 msgid "Jump with Up" msgstr "Saltar con flecha arriba" -#: src/supertux/menu/keyboard_menu.cpp:60 +#: src/supertux/menu/keyboard_menu.cpp:82 msgid "Up cursor" msgstr "Arriba" -#: src/supertux/menu/keyboard_menu.cpp:62 +#: src/supertux/menu/keyboard_menu.cpp:84 msgid "Down cursor" msgstr "Abajo" -#: src/supertux/menu/keyboard_menu.cpp:64 +#: src/supertux/menu/keyboard_menu.cpp:86 msgid "Left cursor" msgstr "Izquierda" -#: src/supertux/menu/keyboard_menu.cpp:66 +#: src/supertux/menu/keyboard_menu.cpp:88 msgid "Right cursor" msgstr "Derecha" -#: src/supertux/menu/keyboard_menu.cpp:68 +#: src/supertux/menu/keyboard_menu.cpp:90 msgid "Return" msgstr "Enter" -#: src/supertux/menu/keyboard_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:92 msgid "Space" msgstr "Espacio" -#: src/supertux/menu/keyboard_menu.cpp:72 +#: src/supertux/menu/keyboard_menu.cpp:94 msgid "Right Shift" msgstr "Mayús derecho" -#: src/supertux/menu/keyboard_menu.cpp:74 +#: src/supertux/menu/keyboard_menu.cpp:96 msgid "Left Shift" msgstr "Mayús izquierdo" -#: src/supertux/menu/keyboard_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:98 msgid "Right Control" msgstr "Ctrl derecho" -#: src/supertux/menu/keyboard_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:100 msgid "Left Control" msgstr "Ctrl izquierdo" -#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/keyboard_menu.cpp:102 msgid "Right Alt" msgstr "Alt derecho" -#: src/supertux/menu/keyboard_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:104 msgid "Left Alt" msgstr "Alt izquierdo" -#: src/supertux/menu/keyboard_menu.cpp:84 +#: src/supertux/menu/keyboard_menu.cpp:106 msgid "Right Command" msgstr "Control derecho" -#: src/supertux/menu/keyboard_menu.cpp:86 +#: src/supertux/menu/keyboard_menu.cpp:108 msgid "Left Command" msgstr "Control izquierdo" -#: src/supertux/menu/keyboard_menu.cpp:100 +#: src/supertux/menu/keyboard_menu.cpp:122 msgid "Press Key" msgstr "Pulsa la tecla" -#: src/supertux/menu/language_menu.cpp:40 +#: src/supertux/menu/language_menu.cpp:43 msgid "Language" msgstr "Idioma" -#: src/supertux/menu/language_menu.cpp:42 +#: src/supertux/menu/language_menu.cpp:45 msgid "" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:55 +#: src/supertux/menu/joystick_menu.cpp:57 msgid "Manual Configuration" msgstr "Configuración manual" -#: src/supertux/menu/joystick_menu.cpp:57 +#: src/supertux/menu/joystick_menu.cpp:59 msgid "" "Use manual configuration instead of SDL2's automatic GameController support" msgstr "Usar la configuración manual para mandos en vez de las plantillas de botones de SDL2" -#: src/supertux/menu/joystick_menu.cpp:75 +#: src/supertux/menu/joystick_menu.cpp:77 msgid "Pause/Menu" msgstr "Pausa/Menú" -#: src/supertux/menu/joystick_menu.cpp:91 +#: src/supertux/menu/joystick_menu.cpp:93 msgid "No Joysticks found" msgstr "No se ha encontrado ningún joystick" -#: src/supertux/menu/joystick_menu.cpp:92 +#: src/supertux/menu/joystick_menu.cpp:94 msgid "Scan for Joysticks" msgstr "Buscar joysticks" -#: src/supertux/menu/joystick_menu.cpp:125 +#: src/supertux/menu/joystick_menu.cpp:127 msgid "Press Button" msgstr "Presiona un botón" -#: src/supertux/menu/joystick_menu.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:164 msgid "Axis " msgstr "Eje" -#: src/supertux/menu/joystick_menu.cpp:165 +#: src/supertux/menu/joystick_menu.cpp:167 msgid "-" msgstr "-" -#: src/supertux/menu/joystick_menu.cpp:167 +#: src/supertux/menu/joystick_menu.cpp:169 msgid "+" msgstr "+" -#: src/supertux/menu/joystick_menu.cpp:174 +#: src/supertux/menu/joystick_menu.cpp:176 msgid "X2" msgstr "X2" -#: src/supertux/menu/joystick_menu.cpp:176 +#: src/supertux/menu/joystick_menu.cpp:178 msgid "Y2" msgstr "Y2" -#: src/supertux/menu/joystick_menu.cpp:189 +#: src/supertux/menu/joystick_menu.cpp:191 msgid "Hat Up" msgstr "Inclinar hacia arriba" -#: src/supertux/menu/joystick_menu.cpp:193 +#: src/supertux/menu/joystick_menu.cpp:195 msgid "Hat Down" msgstr "Inclinar hacia abajo" -#: src/supertux/menu/joystick_menu.cpp:197 +#: src/supertux/menu/joystick_menu.cpp:199 msgid "Hat Left" msgstr "Inclinar a la izquierda" -#: src/supertux/menu/joystick_menu.cpp:201 +#: src/supertux/menu/joystick_menu.cpp:203 msgid "Hat Right" msgstr "Inclinar a la derecha" @@ -2851,52 +3961,47 @@ msgstr "Pausa" msgid "Leave World" msgstr "Salir del mundo" -#: src/supertux/menu/download_dialog.cpp:27 +#: src/supertux/menu/download_dialog.cpp:42 msgid "Abort Download" msgstr "Cancelar descarga" -#: src/supertux/menu/download_dialog.cpp:42 -msgid "Error:\n" -msgstr "Error:\n" - -#: src/supertux/menu/download_dialog.cpp:96 -msgid "Close" -msgstr "Cerrar" - -#: src/supertux/menu/cheat_menu.cpp:33 -msgid "Bonus: Fire x 64" -msgstr "Extra: Fuego x 64" - -#: src/supertux/menu/cheat_menu.cpp:34 -msgid "Bonus: Ice x 64" -msgstr "Extra: Hielo x 64" - -#: src/supertux/menu/cheat_menu.cpp:35 -msgid "Bonus: Air x 64" -msgstr "Extra: Aire x 64" - -#: src/supertux/menu/cheat_menu.cpp:36 -msgid "Bonus: Earth x 64" -msgstr "Extra: Tierra x 64" +#: src/supertux/menu/download_dialog.cpp:59 +#, c++-format +msgid "" +"Error:\n" +"{}" +msgstr "Error:\n{}" -#: src/supertux/menu/cheat_menu.cpp:37 +#: src/supertux/menu/cheat_menu.cpp:38 msgid "Bonus: Star" msgstr "Bonificador: Estrella" -#: src/supertux/menu/cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:39 msgid "Shrink Tux" msgstr "Encoger a Tux" -#: src/supertux/menu/cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:40 msgid "Kill Tux" msgstr "Matar a Tux" +#: src/supertux/menu/cheat_menu.cpp:55 +msgid "Prevent Death" +msgstr "Evitar morir" + +#: src/supertux/menu/addon_file_install_menu.cpp:32 +msgid "Install Add-on from file" +msgstr "Instalar mod desde archivo" + +#: src/supertux/menu/addon_file_install_menu.cpp:34 +msgid "Drag and drop add-on ZIP archive" +msgstr "Suelta aquí un archivo .zip con un mod dentro" + #: src/supertux/menu/particle_editor_menu.cpp:32 msgid "Particle Editor" msgstr "Editor de partículas" #: src/supertux/menu/particle_editor_menu.cpp:36 -#: src/supertux/menu/editor_menu.cpp:45 +#: src/supertux/menu/editor_menu.cpp:60 msgid "Return to Editor" msgstr "Volver al editor" @@ -2921,7 +4026,7 @@ msgid "Open Particle Directory" msgstr "Abrir carpeta de partículas" #: src/supertux/menu/particle_editor_menu.cpp:45 -#: src/supertux/menu/editor_menu.cpp:88 +#: src/supertux/menu/editor_menu.cpp:118 msgid "Keyboard Shortcuts" msgstr "Atajos del teclado " @@ -2929,7 +4034,7 @@ msgstr "Atajos del teclado " msgid "Exit Particle Editor" msgstr "Salir del editor de partículas" -#: src/supertux/menu/particle_editor_menu.cpp:120 +#: src/supertux/menu/particle_editor_menu.cpp:121 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -2941,18 +4046,18 @@ msgid "" "Ctrl+Y = Redo" msgstr "Atajos del teclado:\n---------------------\nEsc = Abrir menú\nCtrl+S = Guardar\nCtrl+Shift+S = Guardar como\nCtrl+O = Abrir\nCtrl+Z = Deshacer\nCtrl+Y = Rehacer" -#: src/supertux/menu/particle_editor_menu.cpp:121 -#: src/supertux/menu/editor_menu.cpp:176 +#: src/supertux/menu/particle_editor_menu.cpp:122 +#: src/supertux/menu/editor_menu.cpp:206 msgid "Got it!" msgstr "¡Entendido!" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:86 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Worldmap Settings" msgstr "Propiedades del mapa del mundo" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:86 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Level Settings" msgstr "Configuraciónes de Nivel" @@ -2960,7 +4065,7 @@ msgstr "Configuraciónes de Nivel" msgid "Author" msgstr "Autor" -#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1166 +#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1253 msgid "Contact" msgstr "Contacto" @@ -2992,99 +4097,129 @@ msgstr "Por favor ingrese un nombre de autor para este nivel." msgid "Please enter a license for this level." msgstr "Por favor ingrese una licencia para este nivel." -#: src/supertux/menu/editor_menu.cpp:38 +#: src/supertux/menu/editor_menu.cpp:53 msgid "tiny tile (4px)" msgstr "mini tesela (4px)" -#: src/supertux/menu/editor_menu.cpp:39 +#: src/supertux/menu/editor_menu.cpp:54 msgid "small tile (8px)" msgstr "tesela pequeña (8px)" -#: src/supertux/menu/editor_menu.cpp:40 +#: src/supertux/menu/editor_menu.cpp:55 msgid "medium tile (16px)" msgstr "tesela intermedia (16px)" -#: src/supertux/menu/editor_menu.cpp:41 +#: src/supertux/menu/editor_menu.cpp:56 msgid "big tile (32px)" msgstr "tesela grande (32px) " -#: src/supertux/menu/editor_menu.cpp:46 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Worldmap" msgstr "Guardar Mapa del Mundo" -#: src/supertux/menu/editor_menu.cpp:46 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Level" msgstr "Guardar nivel" -#: src/supertux/menu/editor_menu.cpp:55 +#: src/supertux/menu/editor_menu.cpp:65 msgid "Test Level" msgstr "Probar nivel" -#: src/supertux/menu/editor_menu.cpp:59 +#: src/supertux/menu/editor_menu.cpp:67 msgid "Test Worldmap" msgstr "Probar mapa global" -#: src/supertux/menu/editor_menu.cpp:62 +#: src/supertux/menu/editor_menu.cpp:72 msgid "Share Level" msgstr "Compartir el nivel" -#: src/supertux/menu/editor_menu.cpp:64 +#: src/supertux/menu/editor_menu.cpp:74 msgid "Package Add-On" -msgstr "Empaquetar como expansión" +msgstr "Empaquetar como mod" -#: src/supertux/menu/editor_menu.cpp:66 +#: src/supertux/menu/editor_menu.cpp:76 msgid "Open Level Directory" msgstr "Abrir la carpeta del nivel" -#: src/supertux/menu/editor_menu.cpp:70 +#: src/supertux/menu/editor_menu.cpp:79 msgid "Edit Another Level" msgstr "Editar otro nivel" -#: src/supertux/menu/editor_menu.cpp:73 +#: src/supertux/menu/editor_menu.cpp:81 msgid "Edit Another World" msgstr "Editar otro mapa global" -#: src/supertux/menu/editor_menu.cpp:77 +#: src/supertux/menu/editor_menu.cpp:86 +msgid "Convert all tiles in the level using converters." +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:90 msgid "Grid Size" msgstr "Tamaño de la cuadrícula" -#: src/supertux/menu/editor_menu.cpp:78 +#: src/supertux/menu/editor_menu.cpp:91 msgid "Show Grid" msgstr "Mostrar cuadrícula" -#: src/supertux/menu/editor_menu.cpp:79 +#: src/supertux/menu/editor_menu.cpp:92 msgid "Grid Snapping" msgstr "Ajustar a cuadrícula " -#: src/supertux/menu/editor_menu.cpp:80 +#: src/supertux/menu/editor_menu.cpp:93 msgid "Render Background" msgstr "Dibujar el fondo" -#: src/supertux/menu/editor_menu.cpp:81 +#: src/supertux/menu/editor_menu.cpp:94 msgid "Render Light" msgstr "Activar iluminación" -#: src/supertux/menu/editor_menu.cpp:82 +#: src/supertux/menu/editor_menu.cpp:95 msgid "Autotile Mode" msgstr "Modo de autoteselado" -#: src/supertux/menu/editor_menu.cpp:83 +#: src/supertux/menu/editor_menu.cpp:96 msgid "Enable Autotile Help" msgstr "Activar ayuda de autoteselado" -#: src/supertux/menu/editor_menu.cpp:84 +#: src/supertux/menu/editor_menu.cpp:97 +msgid "Enable Object Undo Tracking" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:100 +msgid "Undo Stack Size" +msgstr "Cantidad de veces que se puede deshacer/rehacer" + +#: src/supertux/menu/editor_menu.cpp:102 msgid "Autosave Frequency" msgstr "Frecuencia de autoguardado" -#: src/supertux/menu/editor_menu.cpp:91 +#: src/supertux/menu/editor_menu.cpp:108 +msgid "Check for Deprecated Tiles" +msgstr "Buscar teselas descatalogadas" + +#: src/supertux/menu/editor_menu.cpp:109 +msgid "Check if any deprecated tiles are currently present in the level." +msgstr "Mirar si se utiliza alguna tesela antigua en este nivel." + +#: src/supertux/menu/editor_menu.cpp:110 +msgid "Show Deprecated Tiles" +msgstr "Mostrar teselas antiguas" + +#: src/supertux/menu/editor_menu.cpp:111 +msgid "" +"Indicate all deprecated tiles on the active tilemap, without the need of " +"hovering over." +msgstr "Enseña todas las teselas descatalogadas en este mapa de teselas, sin que tengas que pasar el cursor por encima." + +#: src/supertux/menu/editor_menu.cpp:121 msgid "Exit Level Editor" msgstr "Salir del Editor de Niveles" -#: src/supertux/menu/editor_menu.cpp:140 +#: src/supertux/menu/editor_menu.cpp:170 msgid "Do you want to package this world as an add-on?" -msgstr "¿Quieres distribuir este mundo como una expansión extra?" +msgstr "¿Quieres distribuir este mundo como un mod?" -#: src/supertux/menu/editor_menu.cpp:163 +#: src/supertux/menu/editor_menu.cpp:196 msgid "" "We encourage you to share your levels in the SuperTux forum.\n" "To find your level, click the\n" @@ -3092,7 +4227,7 @@ msgid "" "Do you want to go to the forum now?" msgstr "Nosotras te animamos a compartir sus niveles en el foro de SuperTux. A encontrar tu nivel, hacer clic el \"Abrir directorio de niveles\" opción del menú. Quieres ir al foro ahora?" -#: src/supertux/menu/editor_menu.cpp:175 +#: src/supertux/menu/editor_menu.cpp:205 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -3103,54 +4238,217 @@ msgid "" "Ctrl+Y = Redo\n" "F6 = Render Light\n" "F7 = Grid Snapping\n" -"F8 = Show Grid" -msgstr "Atajos del teclado:\n-----------------\nEsc = Abrir menú\nCtrl+S = Guardar\nCtrl+T = Probar\nCtrl+Z = Deshacer\nCtrl+Y = Rehacer\nF6 = Activar iluminación\nF7 = Ajustar a la cuadrícula\nF8 = Ver cuadrícula " +"F8 = Show Grid\n" +"Ctrl++ or Ctrl+Scroll Up = Zoom In\n" +"Ctrl+- or Ctrl+Scroll Down = Zoom Out\n" +"Ctrl+D = Reset Zoom\n" +"\n" +"Scripting Shortcuts:\n" +" ------------- \n" +"Home = Go to beginning of line\n" +"End = Go to end of line\n" +"Left arrow = Go back in text\n" +"Right arrow = Go forward in text\n" +"Backspace = Delete in front of text cursor\n" +"Delete = Delete behind text cursor\n" +"Ctrl+X = Cut whole line\n" +"Ctrl+C = Copy whole line\n" +"Ctrl+V = Paste\n" +"Ctrl+D = Duplicate line\n" +"Ctrl+Z = Undo\n" +"Ctrl+Y = Redo" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:232 +msgid "Deprecated tiles are still present in the level." +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:239 +msgid "Do you want to show all deprecated tiles on active tilemaps?" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:246 +msgid "There are no more deprecated tiles in the level!" +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:40 +msgid "Play with the keyboard" +msgstr "Jugar con el teclado" + +#: src/supertux/menu/multiplayer_player_menu.cpp:58 +msgid "Remove Player" +msgstr "Borrar al jugador" + +#: src/supertux/menu/multiplayer_player_menu.cpp:82 +msgid "Respawn Player" +msgstr "Reiniciar el jugador" + +#: src/supertux/menu/multiplayer_player_menu.cpp:108 +msgid "Spawn Player" +msgstr "Crear jugador" + +#: src/supertux/menu/multiplayer_player_menu.cpp:136 +msgid "Controllers" +msgstr "Mandos" + +#: src/supertux/menu/multiplayer_player_menu.cpp:152 +msgid "" +"This controller does not support rumbling;\n" +"please check the controllers manually." +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:157 +msgid "" +"This SuperTux build does not support rumbling\n" +"controllers; please check the controllers manually." +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:184 +msgid "" +"This joystick does not support rumbling;\n" +"please check the joysticks manually." +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:189 +msgid "" +"This SuperTux build does not support rumbling\n" +"joysticks; please check the joysticks manually." +msgstr "Esta versión de SuperTux no puede hacer vibrar\nlos mandos; tendrás que comprobarlos tú." + +#: src/supertux/menu/editor_delete_level_menu.cpp:59 +msgid "No levels available" +msgstr "No hay ningún nivel disponible" -#: src/supertux/menu/editor_delete_level_menu.cpp:53 -msgid "You cannot delete level that you are editing!" -msgstr "No se puede borrar el nivel en el que estás trabajando." +#: src/supertux/menu/editor_delete_level_menu.cpp:79 +msgid "You cannot delete the level that you are editing!" +msgstr "No puedes borrar un nivel que se esté editando" -#: src/supertux/levelintro.cpp:136 -#, c-format -msgid "contributed by %s" -msgstr "aportado por %s" +#: src/supertux/menu/editor_delete_level_menu.cpp:82 +#, c++-format +msgid "You are about to delete level \"{}\". Are you sure?" +msgstr "Estas a punto de borrar el nivel «{}». ¿Seguro que quieres hacerlo?" -#: src/supertux/levelintro.cpp:169 +#: src/supertux/levelintro.cpp:137 +#, c++-format +msgid "contributed by {}" +msgstr "creado por {}" + +#: src/supertux/levelintro.cpp:184 msgid "Badguys killed" msgstr "Malotes destruidos" -#: src/supertux/levelintro.cpp:177 +#: src/supertux/levelintro.cpp:192 msgid "Best time" msgstr "Mejor tiempo" -#: src/supertux/levelintro.cpp:181 +#: src/supertux/levelintro.cpp:196 msgid "Level target time" msgstr "Tiempo a batir" -#: src/supertux/tile_set.cpp:118 +#: src/supertux/tile_set.cpp:113 msgid "Others" msgstr "Otros" -#: src/supertux/moving_object.cpp:55 +#: src/supertux/direction.cpp:67 +msgid "up" +msgstr "arriba" + +#: src/supertux/direction.cpp:69 +msgid "down" +msgstr "abajo" + +#: src/supertux/moving_object.cpp:63 msgid "Region" msgstr "Región" -#: src/supertux/main.cpp:563 +#: src/supertux/main.cpp:801 +#, c++-format +msgid "New release: SuperTux v{}!" +msgstr "Nueva versión: SuperTux v{}!" + +#: src/supertux/main.cpp:804 +#, c++-format msgid "" -"The UBports version is under heavy development!\n" -"If you encounter issues, PLEASE contact the maintainter\n" -"at https://github.com/supertux/supertux/issues or on the\n" -"Open Store's Telegram at https://open-store.io/telegram" -msgstr "La versión de UBports todavía se está haciendo. Si encuentras algún problema comunícaselo al autor visitando https://github.com/supertux/supertux/issues o en el Telegram de Open Store: https://open-store.io/telegram" +"A new release of SuperTux (v{}) is available!\n" +"For more information, you can visit the SuperTux website.\n" +"\n" +"Do you want to visit the website now?" +msgstr "Hay una versión nueva de SuperTux (v{}) disponible.\nPuedes visitar nuestra web para descargarla y ver más cosas.\n\n¿Quieres ir a la web ahora?" + +#: src/supertux/main.cpp:815 +msgid "Checking for new releases..." +msgstr "Buscando una versión más reciente..." #: src/control/joystick_config.cpp:85 msgid "Joystick Mappings" msgstr "Mapear joystick" -#: src/worldmap/worldmap_parser.cpp:167 +#: src/worldmap/sprite_change.cpp:91 +msgid "Stay action" +msgstr "Posición estática" + +#: src/worldmap/sprite_change.cpp:92 +msgid "Initial stay action" +msgstr "Posición estática inicial" + +#: src/worldmap/sprite_change.cpp:93 +msgid "Stay group" +msgstr "Estancia en grupo" + +#: src/worldmap/sprite_change.cpp:94 +msgid "Change on touch" +msgstr "Cambiar al tocar con" + +#: src/worldmap/special_tile.hpp:36 +msgid "Special Tile" +msgstr "Tesela especial" + +#: src/worldmap/level_tile.hpp:36 src/worldmap/level_tile.cpp:161 +msgid "Level" +msgstr "Nivel" + +#: src/worldmap/teleporter.cpp:50 +msgid "Automatic" +msgstr "Automático" + +#: src/worldmap/teleporter.cpp:51 +msgid "Target worldmap" +msgstr "Mapa de mundo objetivo" + +#: src/worldmap/sprite_change.hpp:35 +msgid "Sprite Change" +msgstr "Cambio de Sprite" + +#: src/worldmap/special_tile.cpp:75 +msgid "Show message" +msgstr "Mostrar mensaje" + +#: src/worldmap/level_tile.cpp:84 msgid "" msgstr "" +#: src/worldmap/level_tile.cpp:162 +msgid "Outro script" +msgstr "Script de cierre" + +#: src/worldmap/level_tile.cpp:163 +msgid "Auto play" +msgstr "Reproducción automática" + +#: src/worldmap/level_tile.cpp:164 +msgid "Title colour" +msgstr "Color del título" + +#: src/worldmap/teleporter.hpp:34 +msgid "Teleporter" +msgstr "Teletransportador" + +#: src/editor/tip.cpp:80 +msgid "" +"This object's current functionality is deprecated.\n" +"Updating to get its latest functionality is recommended." +msgstr "" + #: src/editor/node_marker.cpp:122 msgid "Path Node" msgstr "Nodo de ruta" @@ -3163,85 +4461,82 @@ msgstr "Pulsa Ctrl para mover los puntos de control Bézier" msgid "Easing" msgstr "Transición animada" -#: src/editor/object_settings.cpp:119 -msgid "up" -msgstr "arriba" - -#: src/editor/object_settings.cpp:119 -msgid "down" -msgstr "abajo" - -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "West" msgstr "Oeste" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "East" msgstr "Este" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "North" msgstr "Norte" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "South" msgstr "Sur" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "One shot" msgstr "Un disparo" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "Ping-pong" msgstr "Ping pong" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "Circular" msgstr "Circular" -#: src/editor/object_settings.cpp:144 -msgid "Unordered" -msgstr "Desordenados" +#: src/editor/layers_widget.cpp:331 +#, c++-format +msgid "Sector: {}" +msgstr "Sector: {}" -#: src/editor/object_option.cpp:85 +#: src/editor/object_option.cpp:92 msgid "true" msgstr "verdadero" -#: src/editor/object_option.cpp:85 +#: src/editor/object_option.cpp:92 msgid "false" msgstr "falso" -#: src/editor/object_option.cpp:271 src/editor/object_option.cpp:320 +#: src/editor/object_option.cpp:308 src/editor/object_option.cpp:356 msgid "invalid" -msgstr "incorrecto" +msgstr "inválido" + +#: src/editor/object_option.cpp:665 +msgid "Scale X" +msgstr "Escala en X" + +#: src/editor/object_option.cpp:666 +msgid "Scale Y" +msgstr "Escala en Y" -#: src/editor/object_option.cpp:580 +#: src/editor/object_option.cpp:667 +msgid "Offset X" +msgstr "Desplazar X" + +#: src/editor/object_option.cpp:668 +msgid "Offset Y" +msgstr "Desplazar Y" + +#: src/editor/object_option.cpp:672 src/editor/object_menu.cpp:67 msgid "Remove" msgstr "Quitar" -#: src/editor/object_option.cpp:597 +#: src/editor/object_option.cpp:689 msgid "Test from here" msgstr "Probar desde aquí" -#: src/editor/object_option.cpp:614 +#: src/editor/object_option.cpp:706 msgid "Open Particle Editor" msgstr "Abrir el editor de partículas" -#: src/editor/worldmap_objects.hpp:56 src/editor/worldmap_objects.cpp:127 -msgid "Level" -msgstr "Nivel" - -#: src/editor/worldmap_objects.hpp:79 -msgid "Teleporter" -msgstr "Teletransportador" - -#: src/editor/worldmap_objects.hpp:119 -msgid "Sprite Change" -msgstr "Cambio de Sprite" - -#: src/editor/worldmap_objects.hpp:140 -msgid "Special tile" -msgstr "Tile especial" +#: src/editor/particle_editor.cpp:114 +msgid "Change texture... ->" +msgstr "Cambiar textura... ->" #: src/editor/particle_editor.cpp:126 msgid "Max amount" @@ -3323,123 +4618,148 @@ msgstr "Destruir siempre" msgid "Offscreen mode" msgstr "Modo fuera de pantalla" -#: src/editor/particle_editor.cpp:765 +#: src/editor/particle_editor.cpp:229 +msgid "Clear" +msgstr "Borrar" + +#: src/editor/particle_editor.cpp:245 +msgid "<- General settings" +msgstr "<- Ajustes generales" + +#: src/editor/particle_editor.cpp:255 +msgid "Likeliness" +msgstr "Parecido" + +#: src/editor/particle_editor.cpp:266 +msgid "Color (RGBA)" +msgstr "Color (RGBA)" + +#: src/editor/particle_editor.cpp:311 +msgid "Scale (x, y)" +msgstr "Escala (x, y)" + +#: src/editor/particle_editor.cpp:332 +msgid "Hitbox scale (x, y)" +msgstr "Escala de la colisión (x, y)" + +#: src/editor/particle_editor.cpp:353 +msgid "Hitbox offset relative to scale" +msgstr "Desplazamiento de la colisión respecto a la escala" + +#: src/editor/particle_editor.cpp:372 +msgid "Change texture..." +msgstr "Cambiar textura..." + +#: src/editor/particle_editor.cpp:766 msgid "" "This particle configuration contains unsaved changes,\n" "do you want to save?" -msgstr "Estos ajustes de partícula están sin guardar. ¿Quieres hacerlo ahora?" +msgstr "Estos ajustes de partícula están sin guardar,\n ¿Quieres hacerlo ahora?" -#: src/editor/particle_editor.cpp:773 +#: src/editor/particle_editor.cpp:774 msgid "Save as" msgstr "Guardar como" -#: src/editor/editor.cpp:566 +#: src/editor/editor.cpp:577 +msgid "" +"This level contains deprecated tiles.\n" +"It is strongly recommended to replace all deprecated tiles\n" +"to avoid loss of compatibility in future versions." +msgstr "Este nivel contiene teselas descatalogadas.\nTe recomendamos cambiarlas por otras más nuevas si no quieres que dejen de funcionar en versiones futuras." + +#: src/editor/editor.cpp:579 +msgid "Tip: Turn on \"Show Deprecated Tiles\" from the level editor menu." +msgstr "Consejo: Activa «Mostrar teselas antiguas» en el menú del editor de niveles." + +#: src/editor/editor.cpp:626 msgid "" "Don't forget that your levels and assets\n" "aren't saved between sessions!\n" "If you want to keep your levels, download them\n" "from the \"Manage Assets\" menu." -msgstr "No te olvides de que ni tus niveles ni datos persisten entre sesiones de juego. Si quieres guardar los niveles utiliza la función de descargar desde el menú de «gestionar datos»." +msgstr "No te olvides de que ni tus niveles ni datos\npersisten entre sesiones de juego.\nSi quieres guardar los niveles utiliza la función de descargar\n desde el menú de «gestionar datos»." -#: src/editor/editor.cpp:582 +#: src/editor/editor.cpp:661 msgid "This level contains unsaved changes, do you want to save?" msgstr "No se han guardado los cambios del nivel, ¿quieres hacerlo ahora?" -#: src/editor/editor.cpp:622 +#: src/editor/editor.cpp:662 +msgid "This level may contain unsaved changes, do you want to save?" +msgstr "Este nivel puede contener datos sin guardar, ¿quieres guardar ahora?" + +#: src/editor/editor.cpp:797 msgid "" "Some obsolete add-ons are still active\n" "and might cause collisions with default Super Tux structure.\n" "You can still enable these add-ons in the menu.\n" "Disabling these add-ons will not delete your game progress." -msgstr "Algunos complementos obsoletos aún están activos y pueden dar problemas con las estructura de archivos normal de SuperTux.\nSi quieres reactivarlos en un futuro, todavía podrás hacerlo desde el menú.\nAl desactivar estos complementos no perderás tu progreso en la partida." +msgstr "Algunos mods obsoletos aún están activos y pueden dar problemas con las estructura de archivos normal de SuperTux.\nSi quieres reactivarlos en un futuro puedes hacerlo desde el menú de mods. Al desactivarlos no perderás tu progreso en la partida." -#: src/editor/editor.cpp:625 +#: src/editor/editor.cpp:800 msgid "Disable add-ons" -msgstr "Desactivar complementos" +msgstr "Desactivar mods" -#: src/editor/editor.cpp:630 +#: src/editor/editor.cpp:805 msgid "Ignore (not advised)" msgstr "Ignorar (no recomendable)" -#: src/editor/editor.cpp:634 +#: src/editor/editor.cpp:809 msgid "Leave editor" msgstr "Salir del editor" -#: src/editor/editor.cpp:853 +#: src/editor/editor.cpp:1023 msgid "" "Couldn't find a \"main\" sector.\n" "Please change the name of the sector where\n" "you'd like the player to start to \"main\"" msgstr "No se halló un área \"principal\"\nPor favor, cambie el nombre del área donde\ndesea que el jugador comience como \"principal\"" -#: src/editor/editor.cpp:857 +#: src/editor/editor.cpp:1027 msgid "" "Couldn't find a \"main\" spawnpoint.\n" " Please change the name of the spawnpoint where\n" "you'd like the player to start to \"main\"" msgstr "No se halló un punto de generación \"principal\"..\nPor favor, cambie el nombre del punto de generación \ndonde desea que el jugador comience como \"principal\"" -#: src/editor/worldmap_objects.cpp:128 -msgid "Outro script" -msgstr "Script de cierre" - -#: src/editor/worldmap_objects.cpp:129 -msgid "Auto play" -msgstr "Reproducción automática" - -#: src/editor/worldmap_objects.cpp:131 -msgid "Title colour" -msgstr "Color del título" - -#: src/editor/worldmap_objects.cpp:173 -msgid "Automatic" -msgstr "Automático" - -#: src/editor/worldmap_objects.cpp:175 -msgid "Target worldmap" -msgstr "Mapa de mundo objetivo" - -#: src/editor/worldmap_objects.cpp:238 -msgid "Stay action" -msgstr "Posición estática" - -#: src/editor/worldmap_objects.cpp:239 -msgid "Initial stay action" -msgstr "Posición estática inicial" - -#: src/editor/worldmap_objects.cpp:240 -msgid "Stay group" -msgstr "Estancia en grupo" - -#: src/editor/worldmap_objects.cpp:241 -msgid "Change on touch" -msgstr "Cambiar al tocar con" - -#: src/editor/worldmap_objects.cpp:271 -msgid "Show message" -msgstr "Mostrar mensaje" +#: src/editor/object_menu.cpp:60 +msgid "Patch Notes" +msgstr "Listado de cambios" -#: src/editor/worldmap_objects.cpp:273 -msgid "Invisible" -msgstr "Invisible" - -#: src/editor/overlay_widget.cpp:1297 +#: src/editor/object_menu.cpp:84 +msgid "" +"This will update the object to its latest functionality.\n" +"Check the \"Patch Notes\" for more information.\n" +"\n" +"Keep in mind this is very likely to break the proper behaviour of the object.\n" +"Make sure to re-check any behaviour, related to the object." +msgstr "Con esto actualizarás el objeto con las últimas funcionalidades.\nMira el listado de cambios para más información.\n\nTen en cuenta que puede fastidiar el comportamiento del objeto.\nAsegúrate de hacer pruebas y de que funcione bien." + +#: src/editor/object_menu.cpp:98 +#, c++-format +msgid "Patch notes for v{}:" +msgstr "Listado de cambios para v{}:" + +#: src/editor/overlay_widget.cpp:1062 +msgid "Cannot select deprecated tiles" +msgstr "No se pueden seleccionar las teselas antiguas" + +#: src/editor/overlay_widget.cpp:1567 msgid "Autotile mode is on" msgstr "La función de autoteselado está activa" -#: src/editor/overlay_widget.cpp:1299 +#: src/editor/overlay_widget.cpp:1571 msgid "Hold Ctrl to enable autotile" msgstr "Mantén pulsado Ctrl para activar el autoteselado" -#: src/editor/overlay_widget.cpp:1303 +#: src/editor/overlay_widget.cpp:1578 msgid "Autotile erasing mode is on" msgstr "La función del autoborrado de teselas está activa" -#: src/editor/overlay_widget.cpp:1305 +#: src/editor/overlay_widget.cpp:1582 msgid "Selected tile isn't autotileable" msgstr "La tesela actual no se puede autoteselar" -#: src/editor/overlay_widget.cpp:1308 +#: src/editor/overlay_widget.cpp:1587 msgid "Hold Ctrl to enable autotile erasing" msgstr "Mantén pulsado Ctrl para autoborrar teselas" @@ -3448,8 +4768,8 @@ msgid "Current SuperTux Team" msgstr "Equipo actual de SuperTux" #: data//credits.stxt:30 -msgid "Programming, project lead ad interim" -msgstr "Programación y líder provisional del proyecto" +msgid "Maintainer, Programming" +msgstr "Coordinador y programación" #: data//credits.stxt:35 msgid "Graphics, Level Design, Story" @@ -3459,12 +4779,12 @@ msgstr "Gráficos, diseño de niveles e historia" msgid "Level Design, Story, Optimisation, Coordination" msgstr "Diseño de niveles, historia, optimización y coordinación" -#: data//credits.stxt:45 data//credits.stxt:105 data//credits.stxt:191 -#: data//credits.stxt:519 +#: data//credits.stxt:45 data//credits.stxt:120 data//credits.stxt:206 +#: data//credits.stxt:538 msgid "Graphics" msgstr "Gráficos" -#: data//credits.stxt:50 data//credits.stxt:87 data//credits.stxt:93 +#: data//credits.stxt:50 data//credits.stxt:102 data//credits.stxt:108 msgid "Graphics, Programming, Level Design" msgstr "Gráficos, programación, diseño de niveles" @@ -3473,255 +4793,265 @@ msgid "Features and Programming" msgstr "Retoques y programación" #: data//credits.stxt:60 +msgid "Minor features and programming" +msgstr "Pequeños retoques y programación" + +#: data//credits.stxt:65 msgid "Programming, Level Updates" msgstr "Programación y mejora de niveles" -#: data//credits.stxt:65 +#: data//credits.stxt:70 msgid "Graphics, Programming" msgstr "Gráficos y programación" -#: data//credits.stxt:70 data//credits.stxt:135 data//credits.stxt:140 -#: data//credits.stxt:145 data//credits.stxt:150 data//credits.stxt:165 -#: data//credits.stxt:170 data//credits.stxt:515 data//credits.stxt:527 +#: data//credits.stxt:75 data//credits.stxt:85 data//credits.stxt:150 +#: data//credits.stxt:155 data//credits.stxt:160 data//credits.stxt:165 +#: data//credits.stxt:180 data//credits.stxt:185 data//credits.stxt:534 +#: data//credits.stxt:546 msgid "Programming" msgstr "Programación" -#: data//credits.stxt:76 +#: data//credits.stxt:80 data//credits.stxt:266 +msgid "Level Design" +msgstr "Diseño de niveles" + +#: data//credits.stxt:91 msgid "Original Developers" msgstr "Desarrolladores Original" -#: data//credits.stxt:81 +#: data//credits.stxt:96 msgid "Original Developer" msgstr "Desarrollador original" -#: data//credits.stxt:99 +#: data//credits.stxt:114 msgid "Music, Level Design" msgstr "Música, diseño de niveles" -#: data//credits.stxt:111 +#: data//credits.stxt:126 msgid "Programming, Graphics, Level Design" msgstr "Programación, gráficos, diseño de niveles" -#: data//credits.stxt:117 +#: data//credits.stxt:132 msgid "Programming, Level Design" msgstr "Programación y diseño de niveles" -#: data//credits.stxt:123 +#: data//credits.stxt:138 msgid "Graphics, Story" msgstr "Gráficos e historia" -#: data//credits.stxt:129 +#: data//credits.stxt:144 msgid "Programming, Documentation" msgstr "Programación y documentación" -#: data//credits.stxt:155 +#: data//credits.stxt:170 msgid "Coordination" msgstr "Coordinación" -#: data//credits.stxt:160 +#: data//credits.stxt:175 msgid "Programming, \"Flexlay\" Level editor" msgstr "Programación y editor de niveles «Flexlay»" -#: data//credits.stxt:175 +#: data//credits.stxt:190 msgid "Windows build fixes" msgstr "Ajustes en la versión de Windows" -#: data//credits.stxt:180 +#: data//credits.stxt:195 msgid "Packaging, Nightly builds" msgstr "Publicación y versiones diarias" -#: data//credits.stxt:185 +#: data//credits.stxt:200 msgid "Translation Guru (and many details anyone else could have done)" msgstr "Gurú de traducción (y detallista nato del día a día)" -#: data//credits.stxt:251 -msgid "Level Design" -msgstr "Diseño de niveles" - -#: data//credits.stxt:431 +#: data//credits.stxt:450 msgid "Additional contributors" msgstr "Colaboradores adicionales" -#: data//credits.stxt:436 +#: data//credits.stxt:455 msgid "Bug fixes" msgstr "Arreglos varios" -#: data//credits.stxt:440 +#: data//credits.stxt:459 msgid "Scripting functions, Level fixes" msgstr "Funciones de scripts y arreglos en niveles" -#: data//credits.stxt:444 +#: data//credits.stxt:463 msgid "Code quality fixes" msgstr "Limpieza del código fuente" -#: data//credits.stxt:448 data//credits.stxt:452 data//credits.stxt:456 -#: data//credits.stxt:483 +#: data//credits.stxt:467 data//credits.stxt:471 data//credits.stxt:475 +#: data//credits.stxt:502 msgid "Various contributions" msgstr "Contribuciones varias" -#: data//credits.stxt:460 +#: data//credits.stxt:479 msgid "Build issue fix" msgstr "Arreglos de problemas de compilación" -#: data//credits.stxt:464 data//credits.stxt:468 +#: data//credits.stxt:483 data//credits.stxt:487 msgid "Code contributions" msgstr "Contribuciones de código" -#: data//credits.stxt:471 +#: data//credits.stxt:490 msgid "Code contribution, AppData file" msgstr "Contribuciones de código y archivo «AppData»" -#: data//credits.stxt:475 +#: data//credits.stxt:494 msgid "Bug fix" msgstr "Arreglos varios" -#: data//credits.stxt:479 +#: data//credits.stxt:498 msgid "Menu reorganization" msgstr "Reorganización del menú" -#: data//credits.stxt:487 +#: data//credits.stxt:506 msgid "Fixing tile bugs" msgstr "Arreglos de problemas con teselas" -#: data//credits.stxt:491 +#: data//credits.stxt:510 msgid "Build error fix" msgstr "Arreglos de compilación" -#: data//credits.stxt:495 +#: data//credits.stxt:514 msgid "Scripting function fix" msgstr "Arreglos de funciones de scripts" -#: data//credits.stxt:499 +#: data//credits.stxt:518 msgid "New features and notable updates" msgstr "Cosas nuevas y actualizaciones importantes" -#: data//credits.stxt:503 +#: data//credits.stxt:522 msgid "Support for \"glbinding\" as optional OpenGL binding" msgstr "Soporte para «glbinding» como vínculo opcional a OpenGL" -#: data//credits.stxt:507 +#: data//credits.stxt:526 msgid "New menu code" msgstr "Código nuevo del menú" -#: data//credits.stxt:511 +#: data//credits.stxt:530 msgid "Big Tux Walking Sprites improvements" msgstr "Grandes mejoras en las sprites del andar de Tux " -#: data//credits.stxt:523 data//credits.stxt:531 +#: data//credits.stxt:542 data//credits.stxt:550 msgid "Contrib Programming" msgstr "Programación adicional" -#: data//credits.stxt:535 +#: data//credits.stxt:554 msgid "Programming, Previous Maintainer" msgstr "Programación y antiguo jefe de proyecto" -#: data//credits.stxt:539 +#: data//credits.stxt:558 msgid "Various Contributions" msgstr "Aportaciones varias" -#: data//credits.stxt:543 -msgid "Minor features and programming" -msgstr "Pequeños retoques y programación" - -#: data//credits.stxt:547 data//credits.stxt:551 data//credits.stxt:555 -#: data//credits.stxt:559 data//credits.stxt:563 data//credits.stxt:567 -#: data//credits.stxt:571 data//credits.stxt:575 data//credits.stxt:579 -#: data//credits.stxt:583 data//credits.stxt:587 data//credits.stxt:591 +#: data//credits.stxt:562 data//credits.stxt:566 data//credits.stxt:570 +#: data//credits.stxt:574 data//credits.stxt:578 data//credits.stxt:582 +#: data//credits.stxt:586 data//credits.stxt:590 data//credits.stxt:594 +#: data//credits.stxt:598 data//credits.stxt:602 data//credits.stxt:606 +#: data//credits.stxt:610 data//credits.stxt:614 data//credits.stxt:618 +#: data//credits.stxt:622 data//credits.stxt:626 data//credits.stxt:630 +#: data//credits.stxt:634 data//credits.stxt:638 data//credits.stxt:642 +#: data//credits.stxt:646 data//credits.stxt:650 data//credits.stxt:654 +#: data//credits.stxt:658 data//credits.stxt:662 msgid "Contributions" msgstr "Aportaciones" -#: data//credits.stxt:597 +#: data//credits.stxt:668 msgid "Localization" msgstr "Traductores" -#: data//credits.stxt:1144 +#: data//credits.stxt:1231 msgid " Special Thanks to" msgstr "Gracias especials a" -#: data//credits.stxt:1149 +#: data//credits.stxt:1236 msgid "Creator of Tux, the Linux penguin" msgstr "Creador de Tux, el pingüino de Linux" -#: data//credits.stxt:1153 +#: data//credits.stxt:1240 msgid "SDL, OpenAL and OpenGL" msgstr "SDL, OpenAL y OpenGL" -#: data//credits.stxt:1154 +#: data//credits.stxt:1241 msgid "" "For making such a great gaming experience\n" " possible on Linux" msgstr "Por hacer posible una gran experiencia\n de juego en Linux" -#: data//credits.stxt:1159 +#: data//credits.stxt:1246 msgid "and you, the player" msgstr "y a ti, el jugador o jugadora" -#: data//credits.stxt:1160 +#: data//credits.stxt:1247 msgid "for giving this game a chance and playing it" msgstr "por disfrutar de nuestro trabajo y darle una oportunidad" -#: data//credits.stxt:1171 +#: data//credits.stxt:1258 msgid "Visit our webpage at" msgstr "Visita nuestra página web en" -#: data//credits.stxt:1180 +#: data//credits.stxt:1267 msgid "Or visit us directly at IRC:" msgstr "O únete a nuestro canal IRC:" -#: data//credits.stxt:1184 +#: data//credits.stxt:1271 msgid "#supertux at web.libera.chat" msgstr "#supertux en web.libera.chat" -#: data//credits.stxt:1189 +#: data//credits.stxt:1276 msgid "Or at our Forum:" msgstr "O en nuestro foro:" -#: data//credits.stxt:1198 +#: data//credits.stxt:1285 msgid "Comments, ideas and suggestions" msgstr "Para enviar comentarios, ideas y sugerencias" -#: data//credits.stxt:1202 +#: data//credits.stxt:1289 msgid "go to our mailing list" msgstr "puedes unirte a nuestra lista de correo" #. l10n: typo contact -#: data//credits.stxt:1212 +#: data//credits.stxt:1299 msgid "Typographical errors can be" msgstr "Puedes informar de errores" #. l10n: typo contact -#: data//credits.stxt:1217 +#: data//credits.stxt:1304 msgid "reported to" msgstr "tipográficos escribiendo a" #. l10n: typo contact, see -#: data//credits.stxt:1222 +#: data//credits.stxt:1309 msgid "supertux-devel@lists.lethargik.org" msgstr "supertux-devel@lists.lethargik.org" -#: data//credits.stxt:1229 +#: data//credits.stxt:1316 msgid "Want to help…" msgstr "¿Quieres ayudarnos..." -#: data//credits.stxt:1234 +#: data//credits.stxt:1321 msgid "…with localization?" msgstr "...traduciendo?" -#: data//credits.stxt:1244 +#: data//credits.stxt:1331 msgid "…with something else?" msgstr "...o algo más?" -#: data//credits.stxt:1255 +#: data//credits.stxt:1342 msgid "Thank you for" msgstr "Muchas gracias" -#: data//credits.stxt:1259 +#: data//credits.stxt:1346 msgid "playing" msgstr "por jugar" -#: data//credits.stxt:1269 +#: data//credits.stxt:1356 msgid "Penny awaits you in warmer temperatures!" -msgstr "Penny te espera en temperaturas más cálidas!" +msgstr "¡Penny te espera en temperaturas más cálidas!" + +#: data//images/engine/editor/objects.stoi:4 +msgid "Enemies" +msgstr "Enemigos" #: data//images/engine/editor/objects.stoi:162 msgid "Bosses" @@ -3731,15 +5061,10 @@ msgstr "Jefes" msgid "Projectiles" msgstr "Proyectiles" -#: data//images/engine/editor/objects.stoi:187 +#: data//images/engine/editor/objects.stoi:184 msgid "Environment" msgstr "Entorno" -#: data//images/ice_world.strf:10 data//images/tiles.strf:28 -#: data//images/worldmap.strf:41 -msgid "Snow" -msgstr "Nieve" - #: data//images/ice_world.strf:80 msgid "Ice Cave & Crystal" msgstr "Cueva de hielo y cristal" @@ -3748,11 +5073,6 @@ msgstr "Cueva de hielo y cristal" msgid "Embellishments" msgstr "Embellecedores" -#: data//images/ice_world.strf:211 data//images/tiles.strf:386 -#: data//images/worldmap.strf:67 -msgid "Forest" -msgstr "Bosque" - #: data//images/ice_world.strf:320 msgid "Underground Forest" msgstr "Bosque subterráneo" @@ -3777,57 +5097,61 @@ msgstr "Caminos y vías" msgid "Water" msgstr "Agua" -#: data//images/tiles.strf:176 +#: data//images/tiles.strf:252 msgid "Snow Background" msgstr "Fondo nevado" -#: data//images/tiles.strf:231 -msgid "Snow Mountain" -msgstr "Montaña nevada" - -#: data//images/tiles.strf:305 +#: data//images/tiles.strf:300 msgid "Crystal" msgstr "Cristal" -#: data//images/tiles.strf:532 +#: data//images/tiles.strf:539 msgid "Forest Background" msgstr "Fondo del bosque" -#: data//images/tiles.strf:663 +#: data//images/tiles.strf:690 +msgid "Corrupted Forest" +msgstr "Bosque podrido" + +#: data//images/tiles.strf:868 +msgid "Corrupted Background" +msgstr "Fondo podrido" + +#: data//images/tiles.strf:991 msgid "Block + Bonus" msgstr "Bloques y bonificaciones" -#: data//images/tiles.strf:715 +#: data//images/tiles.strf:1069 msgid "Pole + Signs" msgstr "Postes y carteles" -#: data//images/tiles.strf:760 +#: data//images/tiles.strf:1113 msgid "Liquid" msgstr "Líquidos" -#: data//images/tiles.strf:793 +#: data//images/tiles.strf:1131 msgid "Castle" msgstr "Castillo" -#: data//images/tiles.strf:930 data//images/worldmap.strf:199 +#: data//images/tiles.strf:1231 data//images/worldmap.strf:199 msgid "Halloween" msgstr "Halloween" -#: data//images/tiles.strf:958 +#: data//images/tiles.strf:1272 msgid "Industrial" msgstr "Industrial" -#: data//images/tiles.strf:973 +#: data//images/tiles.strf:1287 msgid "Unisolid + Lightmap" msgstr "Unisólidos y mapas de luz" -#: data//images/tiles.strf:1000 +#: data//images/tiles.strf:1314 msgid "Miscellaneous" msgstr "Otras cosas" -#: data//images/tiles.strf:1043 -msgid "Retro Snow" -msgstr "Nieve retro" +#: data//images/tiles.strf:1342 +msgid "Retro Tiles" +msgstr "Teselas retro" #: data//images/worldmap.strf:24 msgid "Water paths" @@ -3840,3 +5164,19 @@ msgstr "Rutas de castillo" #: data//images/worldmap.strf:135 msgid "Darker Forest" msgstr "Bosque más oscuro" + +#: data//images/converters/data.stcd:3 +msgid "Nightly Tiles" +msgstr "" + +#: data//images/converters/data.stcd:5 +msgid "For levels, created in previous Nightly builds." +msgstr "" + +#: data//images/converters/data.stcd:8 +msgid "Pre-0.6.3 Crystal Tiles" +msgstr "" + +#: data//images/converters/data.stcd:10 +msgid "For levels, created in pre-0.6.3 versions, which use crystal tiles." +msgstr "" diff --git a/data/locale/es_AR.po b/data/locale/es_AR.po index d07c467e877..09e87d366a0 100644 --- a/data/locale/es_AR.po +++ b/data/locale/es_AR.po @@ -1766,8 +1766,8 @@ msgstr "" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Uso:%s[OPCIONES] [ARCHIVODENIVEL]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Uso:{}[OPCIONES] [ARCHIVODENIVEL]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2490,13 +2490,13 @@ msgstr "Redimensionar" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[Perfil %s]" +msgid "[Profile {}]" +msgstr "[Perfil {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "Perfil %s" +msgid "Profile {}" +msgstr "Perfil {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2544,8 +2544,8 @@ msgstr "Desconocido" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s \"por\"%s \"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{} \"por\"{} \"" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2557,13 +2557,13 @@ msgstr "No se encontraron complementos" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "Instalar %s *Nuevo*" +msgid "Install {} *NEW*" +msgstr "Instalar {} *Nuevo*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Instalar %s" +msgid "Install {}" +msgstr "Instalar {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2583,8 +2583,8 @@ msgstr "Descarga del índice del repositorio de complementos" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "Descargando %s" +msgid "Downloading {}" +msgstr "Descargando {}" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3097,8 +3097,8 @@ msgstr "" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "Contribuido por%s" +msgid "contributed by {}" +msgstr "Contribuido por{}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/et.po b/data/locale/et.po index b5d0910383b..7ebe9f904f3 100644 --- a/data/locale/et.po +++ b/data/locale/et.po @@ -1770,8 +1770,8 @@ msgstr "Mine edasi klahviga \"Escape\"" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Kasutamine: %s [OPTIONS] [LEVELFILE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Kasutamine: {} [OPTIONS] [LEVELFILE]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2494,13 +2494,13 @@ msgstr "Suuruse muutmine" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[Profiil %s]" +msgid "[Profile {}]" +msgstr "[Profiil {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "Profiil %s" +msgid "Profile {}" +msgstr "Profiil {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2548,8 +2548,8 @@ msgstr "Tundmatu" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\", loodud \"%s\" poolt" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\", loodud \"{}\" poolt" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2561,13 +2561,13 @@ msgstr "Lisandmooduleid ei leitud" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "Paigalda %s *UUS*" +msgid "Install {} *NEW*" +msgstr "Paigalda {} *UUS*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Paigalda %s" +msgid "Install {}" +msgstr "Paigalda {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2587,8 +2587,8 @@ msgstr "Lisandmooduli hoidla indeksi allalaadimine" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "Allalaadimine %s" +msgid "Downloading {}" +msgstr "Allalaadimine {}" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3101,8 +3101,8 @@ msgstr "Redigeeritavat taset ei saa kustutada!" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "loodud %s poolt" +msgid "contributed by {}" +msgstr "loodud {} poolt" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/eu.po b/data/locale/eu.po index 79dc9759c42..1d48aef3699 100644 --- a/data/locale/eu.po +++ b/data/locale/eu.po @@ -1768,8 +1768,8 @@ msgstr "Saltatzeko, sakatu Ihes" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Erabilera: %s [OPTIONS] [LEVELFILE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Erabilera: {} [OPTIONS] [LEVELFILE]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2492,13 +2492,13 @@ msgstr "Tamaina aldatu" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[%s profila]" +msgid "[Profile {}]" +msgstr "[{} profila]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "%s profila" +msgid "Profile {}" +msgstr "{} profila" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2546,8 +2546,8 @@ msgstr "Ezezaguna" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" by \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" by \"{}\"" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2559,13 +2559,13 @@ msgstr "Ez da gehigarririk aurkitu" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "Instalatu %s *BERRIA*" +msgid "Install {} *NEW*" +msgstr "Instalatu {} *BERRIA*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Instalatu %s" +msgid "Install {}" +msgstr "Instalatu {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2585,8 +2585,8 @@ msgstr "Gehigarrien biltegiaren indizea deskargatzen" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "%s deskargatzen" +msgid "Downloading {}" +msgstr "{} deskargatzen" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3099,8 +3099,8 @@ msgstr "Ezin duzu ezabatu editatzen ari zaren maila!Ezin duzu ezabatu editatzen #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "%s lagunduta" +msgid "contributed by {}" +msgstr "{} lagunduta" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/fi.po b/data/locale/fi.po index 454b2cb10b9..4ed89d8cb01 100644 --- a/data/locale/fi.po +++ b/data/locale/fi.po @@ -1771,8 +1771,8 @@ msgstr "Paina ESC ohittaaksesi" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Käyttö: %s [ASETUKSET] [KENTTÄTIEDOSTO]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Käyttö: {} [ASETUKSET] [KENTTÄTIEDOSTO]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2495,13 +2495,13 @@ msgstr "Määrittele koko uudelleen" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[Profiili %s]" +msgid "[Profile {}]" +msgstr "[Profiili {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "Profiili %s" +msgid "Profile {}" +msgstr "Profiili {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2549,8 +2549,8 @@ msgstr "Tuntematon" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\", tehnyt \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\", tehnyt \"{}\"" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2562,13 +2562,13 @@ msgstr "Ei löytynyt uusia lisäosia" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "Asenna %s *UUSI*" +msgid "Install {} *NEW*" +msgstr "Asenna {} *UUSI*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Asenna %s" +msgid "Install {}" +msgstr "Asenna {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2588,8 +2588,8 @@ msgstr "Ladataan lisäosien Säilytysindeksiä" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "Ladataan %s" +msgid "Downloading {}" +msgstr "Ladataan {}" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3102,8 +3102,8 @@ msgstr "" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "Tehnyt %s" +msgid "contributed by {}" +msgstr "Tehnyt {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/fr.po b/data/locale/fr.po index 6b6c73b2d20..979b1b2a9ef 100644 --- a/data/locale/fr.po +++ b/data/locale/fr.po @@ -1786,8 +1786,8 @@ msgstr "Appuyer sur Échapper/Escape pour passer" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Utilisation : %s [OPTIONS] [FICHIER_NIVEAU]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Utilisation : {} [OPTIONS] [FICHIER_NIVEAU]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2510,13 +2510,13 @@ msgstr "Redimensionner" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[Profil %s]" +msgid "[Profile {}]" +msgstr "[Profil {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "Profil %s" +msgid "Profile {}" +msgstr "Profil {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2564,8 +2564,8 @@ msgstr "Inconnu " #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" par \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" par \"{}\"" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2577,13 +2577,13 @@ msgstr "Pas d'Extensions trouvées" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "Installer %s *NOUVEAU*" +msgid "Install {} *NEW*" +msgstr "Installer {} *NOUVEAU*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Installer le %s " +msgid "Install {}" +msgstr "Installer le {} " #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2603,8 +2603,8 @@ msgstr "Téléchargement du Répertoire des Extensions" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "Téléchargement %s " +msgid "Downloading {}" +msgstr "Téléchargement {} " #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3117,8 +3117,8 @@ msgstr "Vous ne pouvez pas effacer le niveau que vous êtes en train de modifier #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "contribué par %s" +msgid "contributed by {}" +msgstr "contribué par {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/fr_CA.po b/data/locale/fr_CA.po index 273c914cc01..124a5eeb4ea 100644 --- a/data/locale/fr_CA.po +++ b/data/locale/fr_CA.po @@ -1767,8 +1767,8 @@ msgstr "Appuyez sur Échap pour sauter" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Utilisation: %s [OPTIONS] [LEVELFILE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Utilisation: {} [OPTIONS] [LEVELFILE]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2492,13 +2492,13 @@ msgstr "Redimensionner" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[Profil %s]" +msgid "[Profile {}]" +msgstr "[Profil {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "Profil %s" +msgid "Profile {}" +msgstr "Profil {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2546,8 +2546,8 @@ msgstr "Inconnue" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" par \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" par \"{}\"" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2559,13 +2559,13 @@ msgstr "Aucun module complémentaire trouvé" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "Installer %s *NOUVEAU*" +msgid "Install {} *NEW*" +msgstr "Installer {} *NOUVEAU*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Installer %s" +msgid "Install {}" +msgstr "Installer {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2585,8 +2585,8 @@ msgstr "Téléchargement de l'index du référentiel de modules complémentaires #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "Téléchargement %s " +msgid "Downloading {}" +msgstr "Téléchargement {} " #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3099,8 +3099,8 @@ msgstr "Vous ne pouvez pas supprimer le niveau que vous modifiez!" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "Dévloppé par %s" +msgid "contributed by {}" +msgstr "Dévloppé par {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/gd.po b/data/locale/gd.po index 2d781b72d87..523d27f206b 100644 --- a/data/locale/gd.po +++ b/data/locale/gd.po @@ -1767,8 +1767,8 @@ msgstr "" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Cleachdadh: %s [ROGHAINNEAN] [FAIDHLE_LEIBHEIL]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Cleachdadh: {} [ROGHAINNEAN] [FAIDHLE_LEIBHEIL]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2493,13 +2493,13 @@ msgstr "Ath-mheudaich" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[Pròifil %s]" +msgid "[Profile {}]" +msgstr "[Pròifil {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "Pròifil %s" +msgid "Profile {}" +msgstr "Pròifil {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2547,8 +2547,8 @@ msgstr "Chan eil fhios" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" le \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" le \"{}\"" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2560,13 +2560,13 @@ msgstr "Cha deach tuilleadan a lorg" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "Stàlaich %s *ÙR*" +msgid "Install {} *NEW*" +msgstr "Stàlaich {} *ÙR*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Stàlaich %s" +msgid "Install {}" +msgstr "Stàlaich {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2586,8 +2586,8 @@ msgstr "A' luchdadh a-nuas inneacs ionad-tasgaidh nan tuilleadan" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "A' luchdadh a-nuas %s" +msgid "Downloading {}" +msgstr "A' luchdadh a-nuas {}" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3100,8 +3100,8 @@ msgstr "" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "tabhartas le %s" +msgid "contributed by {}" +msgstr "tabhartas le {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/gl.po b/data/locale/gl.po index b5713390516..72ec2e59114 100644 --- a/data/locale/gl.po +++ b/data/locale/gl.po @@ -3,163 +3,185 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# xanvieiro , 2019-2020 +# Xan Vieiro , 2019-2021 +# Martin, 2022 +# nin hum , 2024 # Pablo Rodriguez , 2018 +# Xan Vieiro , 2021-2022,2024 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2020-04-13 17:25+0200\n" -"PO-Revision-Date: 2020-04-23 06:34+0000\n" -"Last-Translator: xanvieiro \n" -"Language-Team: Galician (http://www.transifex.com/arctic-games/supertux/language/gl/)\n" +"POT-Creation-Date: 2024-05-30 16:19+0200\n" +"PO-Revision-Date: 2013-08-10 22:56+0000\n" +"Last-Translator: nin hum , 2024\n" +"Language-Team: Galician (http://app.transifex.com/arctic-games/supertux/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/trigger/secretarea_trigger.cpp:53 src/trigger/secretarea_trigger.cpp:61 +#: src/trigger/secretarea_trigger.cpp:47 msgid "You found a secret area!" msgstr "Atopaches unha área secreta!" -#: src/trigger/secretarea_trigger.cpp:77 src/trigger/scripttrigger.cpp:75 -#: src/supertux/game_object.cpp:88 src/supertux/menu/editor_sector_menu.cpp:34 -#: src/supertux/menu/editor_levelset_menu.cpp:58 +#: src/trigger/secretarea_trigger.cpp:55 src/supertux/game_object.cpp:115 +#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_levelset_menu.cpp:52 #: src/supertux/menu/editor_new_levelset_menu.cpp:34 +#: src/supertux/menu/profile_name_menu.cpp:39 #: src/supertux/menu/editor_level_menu.cpp:33 msgid "Name" msgstr "Nome" -#: src/trigger/secretarea_trigger.cpp:78 +#: src/trigger/secretarea_trigger.cpp:56 msgid "Fade tilemap" msgstr "Esvaer mapa" -#: src/trigger/secretarea_trigger.cpp:79 src/trigger/climbable.cpp:81 -#: src/object/infoblock.cpp:57 src/editor/worldmap_objects.cpp:174 -#: src/editor/worldmap_objects.cpp:272 +#: src/trigger/secretarea_trigger.cpp:57 src/trigger/climbable.cpp:59 +#: src/object/infoblock.cpp:76 src/worldmap/teleporter.cpp:49 +#: src/worldmap/special_tile.cpp:74 msgid "Message" msgstr "Mensaxe" -#: src/trigger/secretarea_trigger.cpp:80 src/trigger/scripttrigger.cpp:80 -#: src/trigger/door.cpp:73 src/object/ispy.cpp:67 -#: src/object/bonus_block.cpp:203 src/object/bonus_block.cpp:207 -#: src/object/pushbutton.cpp:49 src/object/powerup.cpp:190 -#: src/editor/worldmap_objects.cpp:274 +#: src/trigger/secretarea_trigger.cpp:58 src/trigger/scripttrigger.cpp:51 +#: src/trigger/door.cpp:79 src/object/ispy.cpp:53 +#: src/object/bonus_block.cpp:264 src/object/bonus_block.cpp:268 +#: src/object/pushbutton.cpp:62 src/object/powerup.cpp:301 +#: src/worldmap/special_tile.cpp:76 msgid "Script" msgstr "Guión" -#: src/trigger/scripttrigger.cpp:73 -msgid "Script Trigger" -msgstr "Activador do Script" - -#: src/trigger/scripttrigger.cpp:76 src/object/tilemap.cpp:220 -#: src/supertux/menu/editor_sector_menu.cpp:39 -#: src/editor/object_option.cpp:148 -msgid "Width" -msgstr "Ancho" - -#: src/trigger/scripttrigger.cpp:77 src/object/tilemap.cpp:221 -#: src/supertux/menu/editor_sector_menu.cpp:40 -#: src/editor/object_option.cpp:149 -msgid "Height" -msgstr "Alto" - -#: src/trigger/scripttrigger.cpp:78 src/object/bicycle_platform.cpp:187 -#: src/object/background.cpp:160 src/object/pneumatic_platform.cpp:145 -#: src/supertux/menu/joystick_menu.cpp:170 src/supertux/moving_object.cpp:47 -#: src/editor/worldmap_objects.cpp:73 -msgid "X" -msgstr "X" - -#: src/trigger/scripttrigger.cpp:79 src/object/bicycle_platform.cpp:188 -#: src/object/background.cpp:161 src/object/pneumatic_platform.cpp:146 -#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:48 -#: src/editor/worldmap_objects.cpp:74 -msgid "Y" -msgstr "Y" - -#: src/trigger/scripttrigger.cpp:81 src/object/pushbutton.hpp:31 +#: src/trigger/scripttrigger.cpp:52 src/object/pushbutton.hpp:32 msgid "Button" msgstr "Botón" -#: src/trigger/scripttrigger.cpp:82 +#: src/trigger/scripttrigger.cpp:53 msgid "Oneshot" msgstr "UnTiro" -#: src/trigger/sequence_trigger.hpp:33 +#: src/trigger/sequence_trigger.hpp:31 msgid "Sequence Trigger" msgstr "Activador da Secuencia" -#: src/trigger/door.cpp:74 src/badguy/willowisp.cpp:280 -#: src/supertux/menu/editor_sector_menu.cpp:32 -#: src/editor/layers_widget.cpp:274 -#: data//images/engine/editor/objects.stoi:300 +#: src/trigger/text_area.cpp:141 +msgid "Once" +msgstr "Unha vez" + +#: src/trigger/text_area.cpp:142 +msgid "Text change time" +msgstr "Tempo de cambio de texto" + +#: src/trigger/text_area.cpp:143 +msgid "Fade time" +msgstr "Tempo de desvanecemento" + +#: src/trigger/text_area.cpp:144 src/object/textscroller.cpp:353 +msgid "Anchor" +msgstr "Ancorado" + +#: src/trigger/text_area.cpp:148 +msgid "Anchor offset X" +msgstr "desvío do ancoraxe en X" + +#: src/trigger/text_area.cpp:149 +msgid "Anchor offset Y" +msgstr "desvío do ancoraxe en Y" + +#: src/trigger/text_area.cpp:150 +msgid "Texts" +msgstr "Textos" + +#: src/trigger/door.cpp:80 src/badguy/willowisp.cpp:311 +#: src/worldmap/teleporter.cpp:47 data//images/engine/editor/objects.stoi:342 msgid "Sector" msgstr "Sector" -#: src/trigger/door.cpp:75 src/editor/worldmap_objects.hpp:101 +#: src/trigger/door.cpp:81 src/worldmap/spawn_point.hpp:58 msgid "Spawn point" msgstr "Punto de inicio" -#: src/trigger/switch.cpp:61 src/object/block.cpp:212 src/object/torch.cpp:91 -#: src/object/moving_sprite.cpp:156 src/object/pneumatic_platform.cpp:144 -msgid "Sprite" -msgstr "Fada" +#: src/trigger/door.cpp:82 +msgid "Locked?" +msgstr "Bloqueado?" + +#: src/trigger/door.cpp:83 +msgid "Lock Color" +msgstr "Cor de bloqueo" + +#: src/trigger/switch.cpp:62 src/object/ispy.cpp:54 src/object/bumper.cpp:53 +#: src/object/spotlight.cpp:106 src/object/pushbutton.cpp:61 +#: src/object/gradient.cpp:103 src/object/conveyor_belt.cpp:60 +#: src/badguy/badguy.cpp:1063 src/worldmap/spawn_point.cpp:79 +#: src/worldmap/special_tile.cpp:78 +msgid "Direction" +msgstr "Dirección" -#: src/trigger/switch.cpp:62 +#: src/trigger/switch.cpp:65 msgid "Turn on script" msgstr "Activar guión" -#: src/trigger/switch.cpp:63 +#: src/trigger/switch.cpp:66 msgid "Turn off script" msgstr "Desactivar guión" -#: src/trigger/sequence_trigger.cpp:75 +#: src/trigger/scripttrigger.hpp:29 +msgid "Script Trigger" +msgstr "Activador do Script" + +#: src/trigger/sequence_trigger.cpp:48 msgid "Sequence" msgstr "Secuencia" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "end sequence" msgstr "rematar secuencia" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "stop Tux" msgstr "para Tux" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "fireworks" msgstr "fogos de artificio" -#: src/trigger/sequence_trigger.cpp:80 +#: src/trigger/sequence_trigger.cpp:53 msgid "New worldmap spawnpoint" msgstr "Novo punto de inicio do mapa principal" -#: src/trigger/sequence_trigger.cpp:81 +#: src/trigger/sequence_trigger.cpp:54 msgid "Worldmap fade tilemap" msgstr "Esvaer mosaico do mapa principal" -#: src/trigger/sequence_trigger.cpp:82 +#: src/trigger/sequence_trigger.cpp:55 +#: src/object/custom_particle_system.cpp:430 +#: src/object/custom_particle_system.cpp:465 msgid "Fade" msgstr "Esvaer" -#: src/trigger/sequence_trigger.cpp:83 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:161 msgid "Fade in" msgstr "Aparecer" -#: src/trigger/sequence_trigger.cpp:83 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:167 +#: src/editor/particle_editor.cpp:212 msgid "Fade out" msgstr "Desaparecer" -#: src/trigger/climbable.hpp:37 +#: src/trigger/climbable.hpp:46 msgid "Climbable" msgstr "Agatuñable" -#: src/trigger/door.hpp:34 +#: src/trigger/text_area.hpp:47 +msgid "Text Area" +msgstr "Área do Texto" + +#: src/trigger/door.hpp:31 msgid "Door" msgstr "Porta" -#: src/trigger/switch.hpp:33 +#: src/trigger/switch.hpp:30 msgid "Switch" msgstr "Interruptor" @@ -167,85 +189,194 @@ msgstr "Interruptor" msgid "Secret Area" msgstr "Área Secreta" -#: src/object/thunderstorm.hpp:40 +#: src/math/anchor_point.cpp:33 +msgid "Top Left" +msgstr "Arriba á Esquerda" + +#: src/math/anchor_point.cpp:34 +msgid "Top" +msgstr "Arriba" + +#: src/math/anchor_point.cpp:35 +msgid "Top Right" +msgstr "Arriba á Dereita" + +#: src/math/anchor_point.cpp:36 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:38 +#: src/supertux/menu/joystick_menu.cpp:73 +msgid "Left" +msgstr "Esquerda" + +#: src/math/anchor_point.cpp:37 +msgid "Middle" +msgstr "Medio" + +#: src/math/anchor_point.cpp:38 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:39 +#: src/supertux/menu/joystick_menu.cpp:74 +msgid "Right" +msgstr "Dereita" + +#: src/math/anchor_point.cpp:39 +msgid "Bottom Left" +msgstr "Abaixo á Esquerda" + +#: src/math/anchor_point.cpp:40 +msgid "Bottom" +msgstr "Abaixo" + +#: src/math/anchor_point.cpp:41 +msgid "Bottom Right" +msgstr "Abaixo á Dereita" + +#: src/object/thunderstorm.hpp:44 msgid "Thunderstorm" msgstr "Tronada" -#: src/object/ispy.cpp:66 -msgid "Facing Down" -msgstr "Boca Abaixo" +#: src/object/cloud_particle_system.cpp:77 +#: src/object/rain_particle_system.cpp:100 +msgid "Intensity" +msgstr "Intensidade" -#: src/object/ispy.cpp:68 src/object/gradient.cpp:124 -#: src/badguy/willowisp.cpp:279 src/badguy/badguy.cpp:840 -#: src/editor/worldmap_objects.cpp:209 src/editor/worldmap_objects.cpp:276 -msgid "Direction" -msgstr "Dirección" +#: src/object/custom_particle_system.hpp:46 +msgid "Custom Particles" +msgstr "Partículas Personalizadas" -#: src/object/path_gameobject.hpp:44 src/object/coin.cpp:262 -#: src/object/camera.cpp:212 src/object/platform.cpp:65 -#: src/object/path_gameobject.cpp:168 src/object/tilemap.cpp:234 -#: src/badguy/willowisp.cpp:286 +#: src/object/particle_zone.hpp:41 +msgid "Particle zone" +msgstr "Zona de partículas" + +#: src/object/path_gameobject.hpp:45 src/object/coin.cpp:324 +#: src/object/camera.cpp:168 src/object/platform.cpp:76 +#: src/object/path_gameobject.cpp:175 src/object/tilemap.cpp:284 +#: src/badguy/willowisp.cpp:317 msgid "Path" msgstr "Camiño" -#: src/object/decal.cpp:41 src/object/scripted_object.cpp:67 -#: src/object/particlesystem.cpp:62 src/object/background.cpp:164 -#: src/object/thunderstorm.cpp:68 src/object/tilemap.cpp:227 -#: src/object/gradient.cpp:122 -msgid "Z-pos" -msgstr "Posición-Z" - -#: src/object/decal.cpp:42 src/object/scripted_object.cpp:70 -#: src/object/tilemap.cpp:216 +#: src/object/decal.cpp:48 src/object/scripted_object.cpp:70 +#: src/object/tilemap.cpp:266 msgid "Solid" msgstr "Sólido" -#: src/object/decal.cpp:43 src/supertux/menu/keyboard_menu.cpp:37 -#: src/supertux/menu/joystick_menu.cpp:74 +#: src/object/decal.cpp:49 src/supertux/menu/keyboard_menu.cpp:41 +#: src/supertux/menu/joystick_menu.cpp:76 msgid "Action" msgstr "Acción" -#: src/object/weak_block.hpp:35 +#: src/object/weak_block.hpp:36 msgid "Weak Tile" msgstr "Tesela Fráxil" -#: src/object/gradient.hpp:42 +#: src/object/gradient.hpp:43 msgid "Gradient" msgstr "Gradiente" -#: src/object/tilemap.hpp:53 +#: src/object/tilemap.hpp:58 msgid "Tilemap" msgstr "Mosaico" -#: src/object/brick.cpp:133 +#: src/object/sound_object.cpp:69 src/object/ambient_sound.cpp:85 +#: src/object/sound_object.hpp:42 src/supertux/menu/options_menu.cpp:128 +#: data//credits.stxt:367 +msgid "Sound" +msgstr "Son" + +#: src/object/sound_object.cpp:70 src/object/ambient_sound.cpp:87 +msgid "Volume" +msgstr "Volume" + +#: src/object/conveyor_belt.hpp:39 +msgid "Conveyor Belt" +msgstr "Correa transportadora" + +#: src/object/unstable_tile.cpp:70 src/object/weak_block.cpp:97 +#: src/badguy/flame.cpp:86 +msgid "Ice" +msgstr "Xeo" + +#: src/object/unstable_tile.cpp:71 src/object/brick.hpp:34 +msgid "Brick" +msgstr "Ladrillo" + +#: src/object/unstable_tile.cpp:72 +msgid "Delayed" +msgstr "Atrasado" + +#: src/object/circleplatform.hpp:35 +msgid "Circular Platform" +msgstr "Plataforma Circular" + +#: src/object/brick.cpp:59 src/object/coin.cpp:69 +#: src/object/invisible_block.cpp:37 src/object/background.cpp:200 +#: src/object/tilemap.cpp:279 src/object/gradient.cpp:109 +#: src/badguy/viciousivy.cpp:44 src/badguy/snail.cpp:69 +#: src/badguy/smartball.cpp:34 src/badguy/bouncing_snowball.cpp:81 +#: src/badguy/kamikazesnowball.cpp:117 src/badguy/walkingleaf.cpp:35 +#: src/badguy/mrbomb.cpp:47 src/badguy/igel.cpp:188 src/badguy/snowball.cpp:40 +#: src/badguy/mrtree.cpp:50 src/badguy/mriceblock.cpp:62 +msgid "Normal" +msgstr "Normal" + +#: src/object/brick.cpp:60 src/object/bonus_block.cpp:175 +#: src/object/coin.cpp:70 src/object/invisible_block.cpp:38 +msgid "Retro" +msgstr "Retro" + +#: src/object/brick.cpp:166 msgid "Breakable" msgstr "Rompible " -#: src/object/trampoline.cpp:136 src/object/rusty_trampoline.cpp:66 +#: src/object/trampoline.cpp:66 src/object/rusty_trampoline.cpp:66 msgid "Portable" msgstr "Portátil" -#: src/object/spotlight.cpp:62 +#: src/object/trampoline.cpp:67 +msgid "Stationary" +msgstr "Estacionario" + +#: src/object/key.hpp:38 +msgid "Key" +msgstr "Chave" + +#: src/object/spotlight.cpp:102 src/object/particlesystem.cpp:64 +#: src/object/particle_zone.cpp:50 src/badguy/darttrap.cpp:149 +#: src/supertux/menu/addon_preview_menu.cpp:189 +msgid "Enabled" +msgstr "Activado" + +#: src/object/spotlight.cpp:103 src/object/rain_particle_system.cpp:101 msgid "Angle" msgstr "Ángulo" -#: src/object/spotlight.cpp:63 src/object/magicblock.cpp:94 -#: src/object/candle.cpp:77 src/object/lantern.cpp:62 -#: src/object/ambient_light.cpp:131 src/badguy/walking_candle.cpp:82 +#: src/object/spotlight.cpp:104 src/object/magicblock.cpp:95 +#: src/object/candle.cpp:75 src/object/torch.cpp:96 src/object/rublight.cpp:55 +#: src/object/lantern.cpp:62 src/object/ambient_light.cpp:122 +#: src/object/key.cpp:192 src/badguy/willowisp.cpp:319 +#: src/badguy/walking_candle.cpp:91 msgid "Color" msgstr "Cor" -#: src/object/spotlight.cpp:64 src/object/textscroller.cpp:279 -#: src/badguy/flame.cpp:59 +#: src/object/spotlight.cpp:105 src/object/textscroller.cpp:350 +#: src/object/rain_particle_system.cpp:102 src/object/conveyor_belt.cpp:61 +#: src/object/circleplatform.cpp:58 src/badguy/flame.cpp:110 +#: src/editor/node_marker.cpp:125 msgid "Speed" msgstr "Velocidade" -#: src/object/spotlight.cpp:65 +#: src/object/spotlight.cpp:107 +msgid "Clockwise" +msgstr "No sentido das agullas do reloxo" + +#: src/object/spotlight.cpp:107 msgid "Counter-clockwise" msgstr "Levóxiro" -#: src/object/spotlight.cpp:66 src/object/candle.cpp:78 -#: src/object/torch.cpp:92 +#: src/object/spotlight.cpp:107 +msgid "Stopped" +msgstr "Parado" + +#: src/object/spotlight.cpp:110 src/object/lit_object.cpp:69 +#: src/object/candle.cpp:76 src/object/torch.cpp:95 msgid "Layer" msgstr "Capa" @@ -257,113 +388,200 @@ msgstr "Física activada" msgid "Visible" msgstr "Visible" -#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:282 +#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:313 msgid "Hit script" msgstr "Script de golpe" -#: src/object/bonus_block.cpp:204 +#: src/object/custom_particle_system_file.cpp:53 +#: src/object/textscroller.cpp:348 src/object/music_object.cpp:109 +#: src/supertux/menu/particle_editor_open.cpp:38 +msgid "File" +msgstr "Ficheiro" + +#: src/object/bonus_block.cpp:154 +msgid "Only one custom object is allowed inside bonus blocks." +msgstr "Só se permite un obxecto personalizado dentro dos bloques extra." + +#: src/object/bonus_block.cpp:172 +msgid "Blue" +msgstr "Azul" + +#: src/object/bonus_block.cpp:173 +msgid "Orange" +msgstr "Laranxa" + +#: src/object/bonus_block.cpp:174 +msgid "Purple" +msgstr "Púrpura" + +#: src/object/bonus_block.cpp:265 src/supertux/menu/cheat_apply_menu.cpp:54 msgid "Count" msgstr "Conta" -#: src/object/bonus_block.cpp:205 +#: src/object/bonus_block.cpp:266 msgid "Content" msgstr "Contido" -#: src/object/bonus_block.cpp:206 src/object/coin.hpp:43 +#: src/object/bonus_block.cpp:267 src/object/coin.hpp:44 msgid "Coin" msgstr "Moeda" -#: src/object/bonus_block.cpp:206 +#: src/object/bonus_block.cpp:267 msgid "Growth (fire flower)" msgstr "Crecemento (flor de lume)" -#: src/object/bonus_block.cpp:206 +#: src/object/bonus_block.cpp:267 msgid "Growth (ice flower)" msgstr "Crecemento (flor de xeo)" -#: src/object/bonus_block.cpp:206 +#: src/object/bonus_block.cpp:267 msgid "Growth (air flower)" msgstr "Crecemento (flor de aire)" -#: src/object/bonus_block.cpp:207 +#: src/object/bonus_block.cpp:268 msgid "Growth (earth flower)" msgstr "Crecemento (flor de terra)" -#: src/object/bonus_block.cpp:207 +#: src/object/bonus_block.cpp:268 +msgid "Growth (retro)" +msgstr "Crecemento (retro)" + +#: src/object/bonus_block.cpp:268 src/object/powerup.cpp:66 msgid "Star" msgstr "Estrela" -#: src/object/bonus_block.cpp:207 +#: src/object/bonus_block.cpp:268 +msgid "Star (retro)" +msgstr "Estrela (retro)" + +#: src/object/bonus_block.cpp:268 msgid "Tux doll" msgstr "Boneca Tux" -#: src/object/bonus_block.cpp:207 +#: src/object/bonus_block.cpp:268 msgid "Custom" msgstr "Modificado" -#: src/object/bonus_block.cpp:207 +#: src/object/bonus_block.cpp:268 msgid "Light" msgstr "Luz" -#: src/object/bonus_block.cpp:208 src/object/trampoline.hpp:35 +#: src/object/bonus_block.cpp:268 +msgid "Light (On)" +msgstr "Luz (Acesa)" + +#: src/object/bonus_block.cpp:269 src/object/trampoline.hpp:37 msgid "Trampoline" msgstr "Trampolín" -#: src/object/bonus_block.cpp:208 +#: src/object/bonus_block.cpp:269 +msgid "Portable trampoline" +msgstr "Trampolín portátil" + +#: src/object/bonus_block.cpp:269 msgid "Coin rain" msgstr "Chuvia de moedas" -#: src/object/bonus_block.cpp:208 +#: src/object/bonus_block.cpp:269 msgid "Coin explosion" msgstr "Explosión de moedas" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 src/object/rock.hpp:43 +msgid "Rock" +msgstr "Pedra" + +#: src/object/bonus_block.cpp:269 +msgid "Potion" +msgstr "Bebedizo" + +#: src/object/bonus_block.cpp:275 msgid "Custom Content" msgstr "Contido Personalizado" -#: src/object/pneumatic_platform.hpp:62 +#: src/object/bonus_block.cpp:278 +msgid "Coin sprite" +msgstr "Gráfico animado da moeda" + +#: src/object/pneumatic_platform.hpp:65 msgid "Pneumatic Platform" msgstr "Plataforma Pneumática" -#: src/object/coin.cpp:264 src/object/tilemap.cpp:236 +#: src/object/coin.cpp:326 src/object/tilemap.cpp:287 msgid "Following path" msgstr "Seguir camiño" -#: src/object/coin.cpp:267 src/object/camera.cpp:215 -#: src/object/platform.cpp:66 src/object/tilemap.cpp:240 +#: src/object/coin.cpp:329 src/object/camera.cpp:171 +#: src/object/platform.cpp:77 src/object/tilemap.cpp:290 msgid "Path Mode" msgstr "Modo Camiño" -#: src/object/coin.cpp:270 src/object/coin.cpp:298 +#: src/object/coin.cpp:330 src/object/camera.cpp:172 +#: src/object/platform.cpp:78 src/object/tilemap.cpp:291 +#: src/badguy/willowisp.cpp:322 +msgid "Adapt Speed" +msgstr "Adaptar Velocidade" + +#: src/object/coin.cpp:331 src/object/platform.cpp:81 +#: src/object/tilemap.cpp:285 src/badguy/willowisp.cpp:318 +msgid "Starting Node" +msgstr "Nodo Inicial" + +#: src/object/coin.cpp:332 src/object/camera.cpp:173 +#: src/object/platform.cpp:82 src/object/tilemap.cpp:293 +#: src/badguy/willowisp.cpp:323 +msgid "Handle" +msgstr "Manexar" + +#: src/object/coin.cpp:335 src/object/coin.cpp:371 msgid "Collect script" msgstr "Script de recollida" -#: src/object/ghost_particle_system.hpp:36 +#: src/object/ghost_particle_system.hpp:37 msgid "Ghost Particles" msgstr "Partículas Pantasma" -#: src/object/camera.cpp:207 +#: src/object/camera.cpp:163 msgid "Mode" msgstr "Modo" -#: src/object/camera.cpp:208 +#: src/object/camera.cpp:164 msgid "normal" msgstr "normal" -#: src/object/camera.cpp:208 +#: src/object/camera.cpp:164 msgid "manual" msgstr "manual" -#: src/object/camera.cpp:208 +#: src/object/camera.cpp:164 msgid "autoscroll" msgstr "Desprazar automaticamente" -#: src/object/textscroller.cpp:280 src/object/music_object.cpp:109 -msgid "File" -msgstr "Ficheiro" +#: src/object/textscroller.cpp:349 +msgid "Finish Script" +msgstr "Script de Finalización" + +#: src/object/textscroller.cpp:351 +msgid "X-offset" +msgstr "Compensación en X" -#: src/object/spawnpoint.hpp:46 src/badguy/willowisp.cpp:281 -#: src/editor/worldmap_objects.cpp:173 +#: src/object/textscroller.cpp:352 +msgid "Controllable" +msgstr "Controlable" + +#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 +msgid "Center" +msgstr "Centrado" + +#: src/object/textscroller.cpp:357 +msgid "Text Alignment" +msgstr "Aliñamento do Texto" + +#: src/object/lit_object.hpp:40 +msgid "Lit object" +msgstr "Obxecto iluminado" + +#: src/object/spawnpoint.hpp:48 src/badguy/willowisp.cpp:312 +#: src/worldmap/teleporter.cpp:48 msgid "Spawnpoint" msgstr "Punto de aparición" @@ -371,255 +589,396 @@ msgstr "Punto de aparición" msgid "Counter" msgstr "Contador" -#: src/object/candle.hpp:36 +#: src/object/candle.hpp:37 msgid "Candle" msgstr "Vela" -#: src/object/particlesystem.cpp:61 src/badguy/darttrap.cpp:127 -msgid "Enabled" -msgstr "Activado" +#: src/object/particlesystem.cpp:65 src/object/background.cpp:184 +#: src/object/thunderstorm.cpp:76 src/object/tilemap.cpp:277 +#: src/object/gradient.cpp:101 src/object/moving_sprite.cpp:193 +msgid "Z-pos" +msgstr "Posición-Z" -#: src/object/invisible_block.hpp:31 +#: src/object/invisible_block.hpp:30 msgid "Invisible Block" msgstr "Bloque Invisible" -#: src/object/snow_particle_system.hpp:35 +#: src/object/snow_particle_system.hpp:37 msgid "Snow Particles" msgstr "Partículas de Neve" -#: src/object/powerup.hpp:35 +#: src/object/powerup.hpp:40 msgid "Powerup" msgstr "Poderes Especiais" -#: src/object/level_time.hpp:55 -msgid "Time Limit" -msgstr "Límite de Tempo" +#: src/object/infoblock.cpp:78 +msgid "Front Color" +msgstr "Cor Dianteira" -#: src/object/ambient_sound.cpp:119 src/supertux/menu/options_menu.cpp:365 -#: data//credits.stxt:335 -msgid "Sound" -msgstr "Son" +#: src/object/infoblock.cpp:80 +msgid "Back Color" +msgstr "Cor do Fondo" -#: src/object/ambient_sound.cpp:120 -msgid "Distance factor" -msgstr "Factor de distancia" +#: src/object/infoblock.cpp:82 +msgid "Roundness" +msgstr "Redondez" -#: src/object/ambient_sound.cpp:121 -msgid "Distance bias" -msgstr "Marxe de distancia" +#: src/object/infoblock.cpp:84 +msgid "Fade Transition" +msgstr "Transición de fundido" -#: src/object/ambient_sound.cpp:122 -msgid "Volume" -msgstr "Volume" +#: src/object/fallblock.hpp:41 +msgid "Falling Platform" +msgstr "Plataforma que cae" + +#: src/object/level_time.hpp:56 +msgid "Time Limit" +msgstr "Límite de Tempo" + +#: src/object/ambient_sound.cpp:86 +msgid "Radius (in tiles)" +msgstr "Radio (en mosaicos)" #: src/object/torch.hpp:41 msgid "Torch" msgstr "Facho" -#: src/object/icecrusher.hpp:48 -msgid "Icecrusher" -msgstr "Rompexeos" +#: src/object/rublight.hpp:34 +msgid "Rublight" +msgstr "Luces de proximidade" -#: src/object/background.hpp:42 +#: src/object/background.hpp:45 msgid "Background" msgstr "Fondo" -#: src/object/firefly.hpp:36 +#: src/object/text_object.hpp:44 src/gui/menu_string_array.cpp:77 +msgid "Text" +msgstr "Texto" + +#: src/object/firefly.hpp:38 msgid "Checkpoint" msgstr "Punto de rescate" -#: src/object/ambient_light.hpp:36 +#: src/object/ambient_light.hpp:37 msgid "Ambient Light" msgstr "Luz Ambiental" -#: src/object/lantern.hpp:37 +#: src/object/lantern.hpp:38 msgid "Lantern" msgstr "Lanterna" -#: src/object/wind.hpp:40 +#: src/object/wind.hpp:43 msgid "Wind" msgstr "Vento" -#: src/object/bicycle_platform.cpp:190 +#: src/object/bicycle_platform.cpp:203 src/object/background.cpp:180 +#: src/object/pneumatic_platform.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:65 +#: src/worldmap/worldmap_object.cpp:77 +msgid "X" +msgstr "X" + +#: src/object/bicycle_platform.cpp:204 src/object/background.cpp:181 +#: src/object/pneumatic_platform.cpp:163 +#: src/supertux/menu/joystick_menu.cpp:174 src/supertux/moving_object.cpp:66 +#: src/worldmap/worldmap_object.cpp:78 +msgid "Y" +msgstr "Y" + +#: src/object/bicycle_platform.cpp:206 msgid "Platforms" msgstr "Plataformas" -#: src/object/bicycle_platform.cpp:191 src/badguy/flame.cpp:58 -#: src/badguy/crystallo.cpp:36 +#: src/object/bicycle_platform.cpp:207 src/object/circleplatform.cpp:57 +#: src/badguy/fish_swimming.cpp:76 src/badguy/flame.cpp:109 +#: src/badguy/rcrystallo.cpp:83 src/badguy/crystallo.cpp:50 msgid "Radius" msgstr "Raio" -#: src/object/bicycle_platform.cpp:192 +#: src/object/bicycle_platform.cpp:208 msgid "Momentum change rate" msgstr "Taxa de cambio do momento" -#: src/object/rain_particle_system.hpp:34 +#: src/object/rain_particle_system.hpp:41 msgid "Rain Particles" msgstr "Partículas de Choiva" -#: src/object/platform.hpp:45 +#: src/object/platform.hpp:46 msgid "Platform" msgstr "Plataforma" -#: src/object/rock.hpp:42 -msgid "Rock" -msgstr "Pedra" - -#: src/object/music_object.hpp:41 src/supertux/menu/options_menu.cpp:367 -#: data//credits.stxt:277 +#: src/object/music_object.hpp:42 src/supertux/menu/options_menu.cpp:130 +#: data//credits.stxt:309 msgid "Music" msgstr "Música" -#: src/object/rusty_trampoline.hpp:39 +#: src/object/lit_object.cpp:68 +msgid "Light sprite" +msgstr "Gráfico animado de luz" + +#: src/object/lit_object.cpp:71 +msgid "Sprite starting action" +msgstr "Acción inicial do gráfico animado" + +#: src/object/lit_object.cpp:72 +msgid "Light sprite starting action" +msgstr "Acción inicial do gráfico animado de luz" + +#: src/object/lit_object.cpp:74 +msgid "Light sprite offset X" +msgstr "Desprazamento do eixo X do gráfico animado de luz" + +#: src/object/lit_object.cpp:75 +msgid "Light sprite offset Y" +msgstr "Desprazamento do eixo Y do gráfico animado de luz" + +#: src/object/rusty_trampoline.hpp:40 msgid "Rusty Trampoline" msgstr "Trampolín Enferruxado" -#: src/object/particlesystem.hpp:57 +#: src/object/particlesystem.hpp:58 msgid "Particle system" msgstr "Sistema de Partículas" -#: src/object/candle.cpp:75 src/object/torch.cpp:90 +#: src/object/candle.cpp:73 src/object/torch.cpp:94 msgid "Burning" msgstr "Aceso" -#: src/object/candle.cpp:76 +#: src/object/candle.cpp:74 msgid "Flicker" msgstr "Intermitente" -#: src/object/text_array_object.hpp:50 +#: src/object/snow_particle_system.cpp:104 +msgid "Epsilon" +msgstr "Epsilon" + +#: src/object/snow_particle_system.cpp:105 +msgid "Spin Speed" +msgstr "Velocidade de Rotación" + +#: src/object/snow_particle_system.cpp:106 +msgid "State Length" +msgstr "Duración do Estado" + +#: src/object/snow_particle_system.cpp:107 +msgid "Wind Speed" +msgstr "Velocidade do Vento" + +#: src/object/text_array_object.hpp:47 msgid "Text array" msgstr "Cadea de texto" -#: src/object/infoblock.hpp:36 +#: src/object/infoblock.hpp:37 msgid "Info Block" msgstr "Bloque de Información" -#: src/object/powerup.cpp:191 +#: src/object/powerup.cpp:61 +msgid "Egg" +msgstr "Ovo" + +#: src/object/powerup.cpp:62 +msgid "Fire Flower" +msgstr "Flor de Lume" + +#: src/object/powerup.cpp:63 +msgid "Ice Flower" +msgstr "Flor de Xeo" + +#: src/object/powerup.cpp:64 +msgid "Air Flower" +msgstr "Flor de Aire" + +#: src/object/powerup.cpp:65 +msgid "Earth Flower" +msgstr "Flor de Terra" + +#: src/object/powerup.cpp:67 +msgid "Tux Doll" +msgstr "Boneco de Tux" + +#: src/object/powerup.cpp:68 +msgid "Flip Potion" +msgstr "Poción de viraxe" + +#: src/object/powerup.cpp:69 +msgid "Mints" +msgstr "Mentolados" + +#: src/object/powerup.cpp:70 +msgid "Coffee" +msgstr "Café" + +#: src/object/powerup.cpp:71 +msgid "Herring" +msgstr "Arenque" + +#: src/object/powerup.cpp:302 msgid "Disable gravity" msgstr "Desactivar gravidade" -#: src/object/ambient_sound.hpp:62 +#: src/object/powerup.cpp:312 src/object/weak_block.cpp:266 +msgid "" +"Sprites no longer define the behaviour of the object.\n" +"Object types are used instead." +msgstr "Os sprites xa non definen o comportamento do obxecto.\nEmpreganse tipos de obxecto en troques." + +#: src/object/ambient_sound.hpp:43 msgid "Ambient Sound" msgstr "Son Ambiental" -#: src/object/level_time.cpp:51 src/supertux/statistics.cpp:288 -#: src/editor/node_marker.cpp:80 +#: src/object/level_time.cpp:52 src/supertux/statistics.cpp:297 +#: src/editor/node_marker.cpp:124 msgid "Time" msgstr "Tempo" -#: src/object/hurting_platform.hpp:30 +#: src/object/hurting_platform.hpp:31 msgid "Hurting Platform" msgstr "Serra" -#: src/object/background.cpp:163 +#: src/object/background.cpp:183 msgid "Fill" msgstr "Encher" -#: src/object/background.cpp:165 +#: src/object/background.cpp:185 msgid "Alignment" msgstr "Aliñamento" -#: src/object/background.cpp:166 +#: src/object/background.cpp:186 src/supertux/direction.cpp:61 msgid "none" msgstr "ningún" -#: src/object/background.cpp:166 src/editor/object_settings.cpp:112 +#: src/object/background.cpp:186 src/supertux/direction.cpp:63 msgid "left" msgstr "esquerda" -#: src/object/background.cpp:166 src/editor/object_settings.cpp:112 +#: src/object/background.cpp:186 src/supertux/direction.cpp:65 msgid "right" msgstr "dereita" -#: src/object/background.cpp:166 +#: src/object/background.cpp:186 msgid "top" msgstr "arriba" -#: src/object/background.cpp:166 +#: src/object/background.cpp:186 msgid "bottom" msgstr "fondo" -#: src/object/background.cpp:169 +#: src/object/background.cpp:189 msgid "Scroll offset x" msgstr "Desprazar compensación x" -#: src/object/background.cpp:170 +#: src/object/background.cpp:190 msgid "Scroll offset y" msgstr "Desprazar compensación y" -#: src/object/background.cpp:171 +#: src/object/background.cpp:191 msgid "Scroll speed x" msgstr "Desprazar velocidade x" -#: src/object/background.cpp:172 +#: src/object/background.cpp:192 msgid "Scroll speed y" msgstr "Desprazar velocidade y" -#: src/object/background.cpp:173 +#: src/object/background.cpp:193 msgid "Parallax Speed x" msgstr "Velocidade da Paralaxe x" -#: src/object/background.cpp:174 +#: src/object/background.cpp:194 msgid "Parallax Speed y" msgstr "Velocidade da Paralaxe y" -#: src/object/background.cpp:175 +#: src/object/background.cpp:195 msgid "Top image" msgstr "Imaxe superior" -#: src/object/background.cpp:176 +#: src/object/background.cpp:196 msgid "Image" msgstr "Imaxe" -#: src/object/background.cpp:177 +#: src/object/background.cpp:197 msgid "Bottom image" msgstr "Imaxe do fondo" -#: src/object/background.cpp:178 src/object/tilemap.cpp:228 -#: src/object/gradient.cpp:129 +#: src/object/background.cpp:198 +msgid "Colour" +msgstr "Color" + +#: src/object/background.cpp:199 src/object/tilemap.cpp:278 +#: src/object/gradient.cpp:108 msgid "Draw target" msgstr "Debuxar obxectivo" -#: src/object/background.cpp:179 src/object/tilemap.cpp:229 -#: src/object/gradient.cpp:130 -msgid "Normal" -msgstr "Normal" - -#: src/object/background.cpp:179 src/object/tilemap.cpp:229 -#: src/object/gradient.cpp:130 +#: src/object/background.cpp:200 src/object/tilemap.cpp:279 +#: src/object/gradient.cpp:109 msgid "Lightmap" msgstr "Mapa de Luz" -#: src/object/wind.cpp:63 +#: src/object/shard.hpp:35 +msgid "Shard" +msgstr "Fragmento" + +#: src/object/rublight.cpp:56 +msgid "Fading Speed" +msgstr "Velocidade de Esvaemento" + +#: src/object/rublight.cpp:57 +msgid "Glowing Strength" +msgstr "Forza do Brillo" + +#: src/object/wind.cpp:78 src/object/custom_particle_system.cpp:499 msgid "Speed X" msgstr "Velocidade X" -#: src/object/wind.cpp:64 +#: src/object/wind.cpp:79 src/object/custom_particle_system.cpp:500 msgid "Speed Y" msgstr "Velocidade Y" -#: src/object/wind.cpp:65 +#: src/object/wind.cpp:80 msgid "Acceleration" msgstr "Aceleración" -#: src/object/wind.cpp:66 +#: src/object/wind.cpp:81 msgid "Blowing" msgstr "Soplar" -#: src/object/bicycle_platform.hpp:64 +#: src/object/wind.cpp:82 +msgid "Affects Badguys" +msgstr "Afecta ós Tipos Malos" + +#: src/object/wind.cpp:83 +msgid "Affects Objects" +msgstr "Afecta ós Obxectos" + +#: src/object/wind.cpp:84 +msgid "Affects Player" +msgstr "Afecta ó Xogador" + +#: src/object/wind.cpp:85 +msgid "Fancy Particles" +msgstr "Partículas Extravagantes" + +#: src/object/bicycle_platform.hpp:67 msgid "Bicycle Platform" msgstr "Plataforma Móbil" -#: src/object/platform.cpp:67 src/object/thunderstorm.cpp:69 -#: src/object/tilemap.cpp:241 +#: src/object/platform.cpp:80 src/object/thunderstorm.cpp:77 +#: src/object/tilemap.cpp:292 src/object/conveyor_belt.cpp:62 msgid "Running" msgstr "Correr" -#: src/object/rock.cpp:182 +#: src/object/rock.cpp:71 +msgid "Small" +msgstr "Pequeno" + +#: src/object/rock.cpp:72 +msgid "Large" +msgstr "Grande" + +#: src/object/rock.cpp:234 msgid "On-grab script" msgstr "Script de agarrar" -#: src/object/rock.cpp:183 +#: src/object/rock.cpp:235 msgid "On-ungrab script" msgstr "Script de soltar" @@ -627,803 +986,1713 @@ msgstr "Script de soltar" msgid "Interactive particle system" msgstr "Sistema interactivo de partículas" -#: src/object/thunderstorm.cpp:70 +#: src/object/thunderstorm.cpp:78 msgid "Interval" msgstr "Intervalo" -#: src/object/thunderstorm.cpp:71 +#: src/object/thunderstorm.cpp:79 msgid "Strike Script" msgstr "Script de Golpear" -#: src/object/cloud_particle_system.hpp:36 +#: src/object/cloud_particle_system.hpp:42 msgid "Cloud Particles" msgstr "Partículas de Nube" -#: src/object/ispy.hpp:33 +#: src/object/custom_particle_system.cpp:423 +msgid "Texture" +msgstr "Textura" + +#: src/object/custom_particle_system.cpp:425 +msgid "Amount" +msgstr "Cantidade" + +#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:59 +#: src/editor/particle_editor.cpp:141 +msgid "Delay" +msgstr "Retardo" + +#: src/object/custom_particle_system.cpp:427 +msgid "Lifetime" +msgstr "Duración" + +#: src/object/custom_particle_system.cpp:428 +msgid "Lifetime variation" +msgstr "Variación da duración" + +#: src/object/custom_particle_system.cpp:429 +#: src/editor/particle_editor.cpp:164 +msgid "Birth mode" +msgstr "Modo de creación" + +#: src/object/custom_particle_system.cpp:430 +#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:115 +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/joystick_menu.cpp:108 +#: src/supertux/menu/joystick_menu.cpp:215 src/editor/object_settings.cpp:129 +#: src/editor/particle_editor.cpp:162 src/editor/particle_editor.cpp:168 +msgid "None" +msgstr "Ningún" + +#: src/object/custom_particle_system.cpp:430 +#: src/object/custom_particle_system.cpp:465 +#: src/editor/particle_editor.cpp:166 +msgid "Shrink" +msgstr "Encoller" + +#: src/object/custom_particle_system.cpp:434 +#: src/editor/particle_editor.cpp:172 +msgid "Birth easing" +msgstr "Animación ao crearse" + +#: src/object/custom_particle_system.cpp:436 +#: src/object/custom_particle_system.cpp:471 src/editor/node_marker.cpp:129 +msgid "No easing" +msgstr "Sen transición" + +#: src/object/custom_particle_system.cpp:437 +#: src/object/custom_particle_system.cpp:472 src/editor/node_marker.cpp:130 +msgid "Quad in" +msgstr "Principio cuádruplo" + +#: src/object/custom_particle_system.cpp:437 +#: src/object/custom_particle_system.cpp:472 src/editor/node_marker.cpp:130 +msgid "Quad out" +msgstr "Final cuádruplo" + +#: src/object/custom_particle_system.cpp:437 +#: src/object/custom_particle_system.cpp:472 src/editor/node_marker.cpp:130 +msgid "Quad in/out" +msgstr "Principio/Fin cuádruplo" + +#: src/object/custom_particle_system.cpp:438 +#: src/object/custom_particle_system.cpp:473 src/editor/node_marker.cpp:131 +msgid "Cubic in" +msgstr "Principio cúbico" + +#: src/object/custom_particle_system.cpp:438 +#: src/object/custom_particle_system.cpp:473 src/editor/node_marker.cpp:131 +msgid "Cubic out" +msgstr "Final cúbico" + +#: src/object/custom_particle_system.cpp:438 +#: src/object/custom_particle_system.cpp:473 src/editor/node_marker.cpp:131 +msgid "Cubic in/out" +msgstr "Principio/Fin cúbico" + +#: src/object/custom_particle_system.cpp:439 +#: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 +msgid "Quart in" +msgstr "Principio dun cuarto" + +#: src/object/custom_particle_system.cpp:439 +#: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 +msgid "Quart out" +msgstr "Final dun cuarto" + +#: src/object/custom_particle_system.cpp:439 +#: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 +msgid "Quart in/out" +msgstr "Principio/Fin dun cuarto" + +#: src/object/custom_particle_system.cpp:440 +#: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 +msgid "Quint in" +msgstr "Principio quíntuplo" + +#: src/object/custom_particle_system.cpp:440 +#: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 +msgid "Quint out" +msgstr "Final quíntuplo" + +#: src/object/custom_particle_system.cpp:440 +#: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 +msgid "Quint in/out" +msgstr "Principio/Fin quíntuplo" + +#: src/object/custom_particle_system.cpp:441 +#: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 +msgid "Sine in" +msgstr "Principio sinusoidal" + +#: src/object/custom_particle_system.cpp:441 +#: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 +msgid "Sine out" +msgstr "Final sinusoidal" + +#: src/object/custom_particle_system.cpp:441 +#: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 +msgid "Sine in/out" +msgstr "Principio/Fin sinusoidal" + +#: src/object/custom_particle_system.cpp:442 +#: src/object/custom_particle_system.cpp:477 src/editor/node_marker.cpp:135 +msgid "Circular in" +msgstr "Principio circular" + +#: src/object/custom_particle_system.cpp:442 +#: src/object/custom_particle_system.cpp:477 src/editor/node_marker.cpp:135 +msgid "Circular out" +msgstr "Final Circular" + +#: src/object/custom_particle_system.cpp:442 +#: src/object/custom_particle_system.cpp:477 src/editor/node_marker.cpp:135 +msgid "Circular in/out" +msgstr "Principio/Fin circular" + +#: src/object/custom_particle_system.cpp:443 +#: src/object/custom_particle_system.cpp:478 src/editor/node_marker.cpp:136 +msgid "Exponential in" +msgstr "Principio exponencial" + +#: src/object/custom_particle_system.cpp:443 +#: src/object/custom_particle_system.cpp:478 src/editor/node_marker.cpp:136 +msgid "Exponential out" +msgstr "Final exponencial" + +#: src/object/custom_particle_system.cpp:443 +#: src/object/custom_particle_system.cpp:478 src/editor/node_marker.cpp:136 +msgid "Exponential in/out" +msgstr "Principio/Fin exponencial" + +#: src/object/custom_particle_system.cpp:444 +#: src/object/custom_particle_system.cpp:479 src/editor/node_marker.cpp:137 +msgid "Elastic in" +msgstr "Principio elástico" + +#: src/object/custom_particle_system.cpp:444 +#: src/object/custom_particle_system.cpp:479 src/editor/node_marker.cpp:137 +msgid "Elastic out" +msgstr "Final elástico" + +#: src/object/custom_particle_system.cpp:444 +#: src/object/custom_particle_system.cpp:479 src/editor/node_marker.cpp:137 +msgid "Elastic in/out" +msgstr "Principio/Fin elástico" + +#: src/object/custom_particle_system.cpp:445 +#: src/object/custom_particle_system.cpp:480 src/editor/node_marker.cpp:138 +msgid "Back in" +msgstr "Principio de retorno" + +#: src/object/custom_particle_system.cpp:445 +#: src/object/custom_particle_system.cpp:480 src/editor/node_marker.cpp:138 +msgid "Back out" +msgstr "Final de retorno" + +#: src/object/custom_particle_system.cpp:445 +#: src/object/custom_particle_system.cpp:480 src/editor/node_marker.cpp:138 +msgid "Back in/out" +msgstr "Principio/Fin de retorno" + +#: src/object/custom_particle_system.cpp:446 +#: src/object/custom_particle_system.cpp:481 src/editor/node_marker.cpp:139 +msgid "Bounce in" +msgstr "Principio do rebote" + +#: src/object/custom_particle_system.cpp:446 +#: src/object/custom_particle_system.cpp:481 src/editor/node_marker.cpp:139 +msgid "Bounce out" +msgstr "Final do rebote" + +#: src/object/custom_particle_system.cpp:446 +#: src/object/custom_particle_system.cpp:481 src/editor/node_marker.cpp:139 +msgid "Bounce in/out" +msgstr "Principio/Fin do rebote" + +#: src/object/custom_particle_system.cpp:462 +msgid "Birth time" +msgstr "Tempo de creación" + +#: src/object/custom_particle_system.cpp:463 +msgid "Birth time variation" +msgstr "Variación do tempo da creación" + +#: src/object/custom_particle_system.cpp:464 +#: src/editor/particle_editor.cpp:170 +msgid "Death mode" +msgstr "Modo da morte" + +#: src/object/custom_particle_system.cpp:469 +#: src/editor/particle_editor.cpp:173 +msgid "Death easing" +msgstr "Animación ao eliminarse" + +#: src/object/custom_particle_system.cpp:497 +msgid "Death time" +msgstr "Tempo da morte" + +#: src/object/custom_particle_system.cpp:498 +msgid "Death time variation" +msgstr "Variación do tempo da morte" + +#: src/object/custom_particle_system.cpp:501 +msgid "Speed X (variation)" +msgstr "Velocidade en X (variación)" + +#: src/object/custom_particle_system.cpp:502 +msgid "Speed Y (variation)" +msgstr "Velocidade en Y (variación)" + +#: src/object/custom_particle_system.cpp:503 +msgid "Acceleration X" +msgstr "Aceleración X" + +#: src/object/custom_particle_system.cpp:504 +msgid "Acceleration Y" +msgstr "Aceleración Y" + +#: src/object/custom_particle_system.cpp:505 +msgid "Friction X" +msgstr "Fricción en X" + +#: src/object/custom_particle_system.cpp:506 +msgid "Friction Y" +msgstr "Fricción en Y" + +#: src/object/custom_particle_system.cpp:507 +#: src/editor/particle_editor.cpp:189 +msgid "Feather factor" +msgstr "Factor pluma" + +#: src/object/custom_particle_system.cpp:508 +msgid "Rotation" +msgstr "Rotación" + +#: src/object/custom_particle_system.cpp:509 +msgid "Rotation (variation)" +msgstr "Rotación (variación)" + +#: src/object/custom_particle_system.cpp:510 +#: src/editor/particle_editor.cpp:195 +msgid "Rotation speed" +msgstr "Velocidade da rotación" + +#: src/object/custom_particle_system.cpp:511 +msgid "Rotation speed (variation)" +msgstr "Velocidade da rotación (variación)" + +#: src/object/custom_particle_system.cpp:512 +#: src/editor/particle_editor.cpp:200 +msgid "Rotation acceleration" +msgstr "Aceleración da rotación" + +#: src/object/custom_particle_system.cpp:513 +msgid "Rotation friction" +msgstr "Fricción da rotación" + +#: src/object/custom_particle_system.cpp:514 +#: src/editor/particle_editor.cpp:208 +msgid "Rotation mode" +msgstr "Modo da rotación" + +#: src/object/custom_particle_system.cpp:515 +#: src/editor/particle_editor.cpp:206 +msgid "Fixed" +msgstr "Fixado" + +#: src/object/custom_particle_system.cpp:515 +#: src/editor/particle_editor.cpp:205 +msgid "Facing" +msgstr "Mirando para" + +#: src/object/custom_particle_system.cpp:515 +#: src/editor/particle_editor.cpp:204 +msgid "Wiggling" +msgstr "Menear" + +#: src/object/custom_particle_system.cpp:519 +#: src/editor/particle_editor.cpp:219 +msgid "Collision mode" +msgstr "Modo da colisión" + +#: src/object/custom_particle_system.cpp:520 +msgid "None (pass through)" +msgstr "Ningún (deixar estar)" + +#: src/object/custom_particle_system.cpp:520 +msgid "Stick" +msgstr "Plantarse" + +#: src/object/custom_particle_system.cpp:520 +msgid "Stick Forever" +msgstr "Plantarse para Sempre" + +#: src/object/custom_particle_system.cpp:520 +#: src/editor/particle_editor.cpp:214 +msgid "Bounce (heavy)" +msgstr "Rebote (grande)" + +#: src/object/custom_particle_system.cpp:520 +#: src/editor/particle_editor.cpp:213 +msgid "Bounce (light)" +msgstr "Rebote (pequeno)" + +#: src/object/custom_particle_system.cpp:520 +msgid "Kill particle" +msgstr "Matar partícula" + +#: src/object/custom_particle_system.cpp:520 +msgid "Fade out particle" +msgstr "Esvaer partícula" + +#: src/object/custom_particle_system.cpp:524 +msgid "Delete if off-screen" +msgstr "Eliminar ó saír da pantalla" + +#: src/object/custom_particle_system.cpp:525 +#: src/editor/particle_editor.cpp:224 +msgid "Never" +msgstr "Nunca" + +#: src/object/custom_particle_system.cpp:525 +#: src/editor/particle_editor.cpp:223 +msgid "Only on exit" +msgstr "Só ó saír" + +#: src/object/custom_particle_system.cpp:525 +msgid "Always" +msgstr "Sempre" + +#: src/object/custom_particle_system.cpp:529 +msgid "Cover screen" +msgstr "Cubrir pantalla" + +#: src/object/ispy.hpp:35 msgid "Ispy" msgstr "Semáforo" -#: src/object/skull_tile.hpp:31 -msgid "Skull Tile" -msgstr "Tesela de Caveira" +#: src/object/particle_zone.cpp:51 +msgid "Particle Name" +msgstr "Nome da Partícula" + +#: src/object/particle_zone.cpp:62 +msgid "Spawn" +msgstr "Aparecer" + +#: src/object/particle_zone.cpp:63 +msgid "Life zone" +msgstr "Zona de vida" -#: src/object/weak_block.cpp:211 -msgid "Linked" -msgstr "Ligado" +#: src/object/particle_zone.cpp:64 +msgid "Life zone (clear)" +msgstr "Zona de vida (limpar)" -#: src/object/decal.hpp:34 +#: src/object/particle_zone.cpp:65 +msgid "Kill particles" +msgstr "Matar partículas" + +#: src/object/particle_zone.cpp:66 +msgid "Clear particles" +msgstr "Limpar partículas" + +#: src/object/weak_block.cpp:98 +msgid "Hay" +msgstr "Feo" + +#: src/object/decal.hpp:41 msgid "Decal" msgstr "Taboleiro" -#: src/object/tilemap.cpp:217 +#: src/object/tilemap.cpp:267 msgid "Resize offset x" msgstr "Cambiar tamaño da compensación x" -#: src/object/tilemap.cpp:218 +#: src/object/tilemap.cpp:268 msgid "Resize offset y" msgstr "Cambiar tamaño da compensación y" -#: src/object/tilemap.cpp:223 +#: src/object/tilemap.cpp:270 src/supertux/menu/editor_sector_menu.cpp:41 +#: src/editor/object_option.cpp:178 +msgid "Width" +msgstr "Ancho" + +#: src/object/tilemap.cpp:271 src/supertux/menu/editor_sector_menu.cpp:42 +#: src/editor/object_option.cpp:179 +msgid "Height" +msgstr "Alto" + +#: src/object/tilemap.cpp:273 msgid "Alpha" msgstr "Alfa" -#: src/object/tilemap.cpp:224 +#: src/object/tilemap.cpp:274 msgid "Speed x" msgstr "Velocidade x" -#: src/object/tilemap.cpp:225 +#: src/object/tilemap.cpp:275 msgid "Speed y" msgstr "Velocidade y" -#: src/object/tilemap.cpp:226 +#: src/object/tilemap.cpp:276 msgid "Tint" msgstr "Tonalidade" -#: src/object/tilemap.cpp:244 src/supertux/menu/editor_tilegroup_menu.cpp:26 -#: src/editor/toolbox_widget.cpp:90 +#: src/object/tilemap.cpp:296 src/supertux/menu/editor_tilegroup_menu.cpp:26 +#: src/editor/toolbox_widget.cpp:98 msgid "Tiles" msgstr "Tesela" -#: src/object/gradient.cpp:115 -msgid "Left Colour" -msgstr "Cor Esquerda" - -#: src/object/gradient.cpp:116 -msgid "Right Colour" -msgstr "Cor Dereita" - -#: src/object/gradient.cpp:118 -msgid "Top Colour" -msgstr "Cor de Arriba" +#: src/object/gradient.cpp:98 +msgid "Primary Colour" +msgstr "Cor Primaria" -#: src/object/gradient.cpp:119 -msgid "Bottom Colour" -msgstr "Cor do Fondo" +#: src/object/gradient.cpp:99 +msgid "Secondary Colour" +msgstr "Cor Secundaria" -#: src/object/gradient.cpp:125 +#: src/object/gradient.cpp:104 msgid "Vertical" msgstr "Vertical" -#: src/object/gradient.cpp:125 +#: src/object/gradient.cpp:104 msgid "Horizontal" msgstr "Horizontal" -#: src/object/gradient.cpp:125 +#: src/object/gradient.cpp:104 msgid "Vertical (whole sector)" msgstr "Vertical (sector completo)" -#: src/object/gradient.cpp:125 +#: src/object/gradient.cpp:104 msgid "Horizontal (whole sector)" msgstr "Horizontal (sector completo)" -#: src/object/gradient.cpp:135 +#: src/object/gradient.cpp:114 msgid "Blend mode" msgstr "Modo de fusión" -#: src/object/gradient.cpp:136 +#: src/object/gradient.cpp:115 msgid "Blend" msgstr "Fusión" -#: src/object/gradient.cpp:136 +#: src/object/gradient.cpp:115 msgid "Additive" msgstr "Aditivo" -#: src/object/gradient.cpp:136 +#: src/object/gradient.cpp:115 msgid "Modulate" msgstr "Modulado" -#: src/object/gradient.cpp:136 src/supertux/menu/keyboard_menu.cpp:60 -#: src/supertux/menu/joystick_menu.cpp:106 -#: src/supertux/menu/joystick_menu.cpp:213 src/editor/object_settings.cpp:124 -msgid "None" -msgstr "Ningún" +#: src/object/bumper.hpp:38 +msgid "Bumper" +msgstr "Parachoques" + +#: src/object/conveyor_belt.cpp:63 +msgid "Length" +msgstr "Lonxitude" + +#: src/object/moving_sprite.cpp:192 src/object/pneumatic_platform.cpp:161 +msgid "Sprite" +msgstr "Gráfico animado \"sprite\"" -#: src/object/unstable_tile.hpp:34 +#: src/object/unstable_tile.hpp:42 msgid "Unstable Tile" msgstr "Tesela Inestable" -#: src/object/brick.hpp:31 -msgid "Brick" -msgstr "Ladrillo" +#: src/object/brick.hpp:70 +msgid "Heavy Brick" +msgstr "Ladrillo Pesado" -#: src/object/invisible_wall.hpp:34 +#: src/object/invisible_wall.hpp:37 msgid "Invisible Wall" msgstr "Muro Invisible" -#: src/object/spotlight.hpp:38 +#: src/object/spotlight.hpp:52 msgid "Spotlight" msgstr "Punto de Luz" -#: src/object/scripted_object.hpp:39 +#: src/object/scripted_object.hpp:40 msgid "Scripted Object" msgstr "Obxecto de Script" -#: src/object/coin.hpp:75 +#: src/object/custom_particle_system_file.hpp:40 +msgid "Custom Particles from file" +msgstr "Partículas Personalizados dende ficheiro" + +#: src/object/coin.hpp:97 msgid "Heavy Coin" msgstr "Moeda Pesada" -#: src/object/bonus_block.hpp:55 +#: src/object/explosion.hpp:35 +msgid "Explosion" +msgstr "Explosión" + +#: src/object/bonus_block.hpp:62 msgid "Bonus Block" msgstr "Bloque de Bono" -#: src/object/magicblock.hpp:41 +#: src/object/magicblock.hpp:42 msgid "Magic Tile" msgstr "Tesela Máxica" -#: src/object/camera.hpp:67 +#: src/object/camera.hpp:61 msgid "Camera" msgstr "Cámara" -#: src/object/textscroller.hpp:44 -msgid "TextScroller" -msgstr "Desprazamento do Texto" +#: src/object/textscroller.hpp:45 +msgid "Text Scroller" +msgstr "Texto Móbil" + +#: src/gui/notification.cpp:57 +msgid "Click for more details." +msgstr "Fai clic para máis detalles." + +#: src/gui/notification.cpp:150 +msgid "Do not show again" +msgstr "Non volver a amosar" + +#: src/gui/notification.cpp:157 src/supertux/menu/download_dialog.cpp:124 +msgid "Close" +msgstr "Pechar" -#: src/gui/menu_badguy_select.cpp:93 -msgid "List of enemies" -msgstr "Lista de inimigos" +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#, c++-format +msgid "Selected item: {}" +msgstr "Elemento escollido: {}" -#: src/gui/menu_badguy_select.cpp:95 -msgid "Enemy" -msgstr "Inimigo" +#: src/gui/menu_string_array.cpp:70 +msgid "Edit string array" +msgstr "Editar matriz de cadeas" -#: src/gui/menu_badguy_select.cpp:96 +#: src/gui/menu_string_array.cpp:79 src/gui/menu_object_select.cpp:50 +#: src/supertux/menu/profile_menu.cpp:88 msgid "Add" msgstr "Engadir" -#: src/gui/menu_badguy_select.cpp:106 src/gui/menu_color.cpp:34 -#: src/gui/dialog.hpp:80 src/gui/menu_script.cpp:47 -#: src/supertux/menu/editor_sector_menu.cpp:46 -#: src/supertux/menu/editor_levelset_menu.cpp:62 -#: src/supertux/menu/addon_menu.cpp:349 +#: src/gui/menu_string_array.cpp:80 +msgid "Insert" +msgstr "Inserir" + +#: src/gui/menu_string_array.cpp:81 +#: src/supertux/menu/addon_preview_menu.cpp:177 src/editor/object_menu.cpp:61 +msgid "Update" +msgstr "Actualizar" + +#: src/gui/menu_string_array.cpp:82 src/supertux/menu/profile_menu.cpp:108 +#: src/supertux/menu/profile_menu.cpp:110 +msgid "Delete" +msgstr "Eliminar" + +#: src/gui/menu_string_array.cpp:84 src/gui/menu_object_select.cpp:61 +#: src/gui/menu_color.cpp:37 src/gui/dialog.hpp:87 src/gui/menu_script.cpp:46 +#: src/supertux/menu/editor_sector_menu.cpp:48 +#: src/supertux/menu/editor_levelset_menu.cpp:58 #: src/supertux/menu/editor_new_levelset_menu.cpp:37 -#: src/supertux/menu/editor_level_menu.cpp:44 src/editor/object_menu.cpp:43 +#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:71 msgid "OK" msgstr "OK" -#: src/gui/menu_badguy_select.cpp:135 -msgid "Do you want to delete this badguy from the list?" -msgstr "Queres eliminar a este tipo malo da lista?" +#: src/gui/menu_object_select.cpp:46 +msgid "List of objects" +msgstr "Lista de Obxectos" -#: src/gui/menu_badguy_select.cpp:136 src/gui/dialog.hpp:89 -#: src/supertux/menu/editor_menu.cpp:123 src/editor/editor.cpp:478 -msgid "Yes" -msgstr "Si" +#: src/gui/menu_object_select.cpp:48 +#, c++-format +msgid "Select object ({})" +msgstr "Escoller obxecto ({})" -#: src/gui/menu_badguy_select.cpp:139 src/gui/dialog.hpp:90 -#: src/supertux/menu/editor_menu.cpp:126 src/editor/editor.cpp:485 -msgid "No" -msgstr "Non" +#: src/gui/menu_object_select.cpp:114 +msgid "Are you sure you want to remove this object from the list?" +msgstr "Estás certo de que queres eliminar este obxecto da lista?" #: src/gui/menu_color.cpp:24 msgid "Mix the colour" msgstr "Mesturar a cor" -#: src/gui/menu_filesystem.cpp:111 +#: src/gui/dialog.hpp:96 src/supertux/menu/editor_level_select_menu.cpp:181 +#: src/editor/editor.cpp:663 +msgid "Yes" +msgstr "Si" + +#: src/gui/dialog.hpp:97 src/supertux/menu/editor_level_select_menu.cpp:185 +#: src/editor/particle_editor.cpp:781 src/editor/editor.cpp:670 +msgid "No" +msgstr "Non" + +#: src/gui/menu_list.cpp:38 src/gui/menu_filesystem.cpp:120 +#: src/gui/menu_paths.cpp:48 src/supertux/menu/particle_editor_save_as.cpp:42 #: src/supertux/menu/editor_sectors_menu.cpp:45 -#: src/supertux/menu/editor_sectors_menu.cpp:95 -#: src/supertux/menu/editor_sectors_menu.cpp:100 +#: src/supertux/menu/editor_sectors_menu.cpp:94 +#: src/supertux/menu/editor_sectors_menu.cpp:99 #: src/supertux/menu/editor_objectgroup_menu.cpp:42 -#: src/supertux/menu/editor_tilegroup_menu.cpp:36 src/editor/editor.cpp:489 +#: src/supertux/menu/editor_tilegroup_menu.cpp:36 +#: src/supertux/menu/editor_level_select_menu.cpp:190 +#: src/supertux/menu/editor_save_as.cpp:42 +#: src/supertux/menu/particle_editor_open.cpp:43 +#: src/editor/particle_editor.cpp:785 src/editor/editor.cpp:674 msgid "Cancel" msgstr "Cancelar" +#: src/gui/menu_filesystem.cpp:118 +msgid "Open Directory" +msgstr "Abrir Cartafol" + #: src/gui/menu_script.cpp:28 msgid "Edit script" msgstr "Editar script" -#: src/badguy/toad.hpp:37 -msgid "Toad" -msgstr "Sapo" +#: src/gui/menu_paths.cpp:32 +msgid "Clone" +msgstr "Clonar" -#: src/badguy/mrtree.hpp:29 -msgid "Walking Tree" -msgstr "Árbore Andante" +#: src/gui/menu_paths.cpp:41 +msgid "" +"An error occurred and the game could\n" +"not clone the path. Please contact\n" +"the developers for support." +msgstr "Produciuse un erro e o xogo non puido clonar a ruta. Por favor, contacta cos desenroladores para obter soporte." -#: src/badguy/plant.hpp:33 -msgid "Plant" -msgstr "Planta" +#: src/gui/menu_paths.cpp:44 +msgid "Bind" +msgstr "Enlazar" -#: src/badguy/crystallo.hpp:30 -msgid "Crystallo" -msgstr "Cristaliño" +#: src/gui/menu_paths.cpp:49 +msgid "" +"Do you wish to clone the path to edit it separately,\n" +"or do you want to bind both paths together\n" +"so that any edit on one edits the other?" +msgstr "Queres clonar a ruta para editala por separado,\nou prefires ligar ambas as rutas\nde maneira que calquera edición nunha se reflicta na outra?" + +#: src/gui/menu_paths.cpp:56 +#, c++-format +msgid "Path {}" +msgstr "Ruta {}" + +#: src/gui/menu_paths.cpp:67 src/supertux/menu/integrations_menu.cpp:60 +#: src/supertux/menu/editor_converters_menu.cpp:79 +#: src/supertux/menu/video_system_menu.cpp:45 +#: src/supertux/menu/contrib_menu.cpp:102 src/supertux/menu/debug_menu.cpp:77 +#: src/supertux/menu/multiplayer_menu.cpp:39 +#: src/supertux/menu/custom_menu_menu.cpp:65 +#: src/supertux/menu/editor_level_select_menu.cpp:98 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:63 +#: src/supertux/menu/worldmap_cheat_menu.cpp:57 +#: src/supertux/menu/worldmap_cheat_menu.cpp:196 +#: src/supertux/menu/editor_levelset_select_menu.cpp:114 +#: src/supertux/menu/options_menu.cpp:223 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:69 +#: src/supertux/menu/addon_preview_menu.cpp:193 +#: src/supertux/menu/profile_menu.cpp:118 +#: src/supertux/menu/multiplayer_players_menu.cpp:91 +#: src/supertux/menu/addon_menu.cpp:153 +#: src/supertux/menu/editor_new_levelset_menu.cpp:40 +#: src/supertux/menu/options_select_menu.cpp:44 +#: src/supertux/menu/world_set_menu.cpp:33 +#: src/supertux/menu/addon_browse_menu.cpp:162 +#: src/supertux/menu/web_asset_menu.cpp:48 +#: src/supertux/menu/profile_name_menu.cpp:45 +#: src/supertux/menu/keyboard_menu.cpp:71 +#: src/supertux/menu/sorted_contrib_menu.cpp:51 +#: src/supertux/menu/language_menu.cpp:63 +#: src/supertux/menu/joystick_menu.cpp:99 +#: src/supertux/menu/contrib_levelset_menu.cpp:67 +#: src/supertux/menu/cheat_menu.cpp:58 +#: src/supertux/menu/addon_file_install_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:43 +#: src/supertux/menu/cheat_apply_menu.cpp:63 +#: src/supertux/menu/multiplayer_player_menu.cpp:205 +#: src/supertux/menu/editor_delete_level_menu.cpp:68 +msgid "Back" +msgstr "Atrás" -#: src/badguy/totem.hpp:36 -msgid "Totem" -msgstr "Totem" +#: src/addon/addon_manager.cpp:562 +msgid "Only one resource pack is allowed to be enabled at a time." +msgstr "Só se permite activar un paquete de recursos á vez." -#: src/badguy/stalactite.hpp:38 -msgid "Stalactite" -msgstr "Estalactita" +#: src/addon/addon_manager.cpp:837 +#, c++-format +msgid "Add-on {} by {} is already installed." +msgstr "O complemento {} de {} xa está instalado." -#: src/badguy/haywire.hpp:42 -msgid "Haywire" -msgstr "Bule bule" +#: src/addon/addon_manager.cpp:857 +#, c++-format +msgid "Add-on {} by {} successfully installed." +msgstr "O complemento {} de {} instalouse correctamente." -#: src/badguy/dispenser.hpp:48 -msgid "Dispenser" -msgstr "Dispensador" +#: src/addon/addon.cpp:71 src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Levelset" +msgstr "Conxunto de niveis" -#: src/badguy/short_fuse.hpp:29 -msgid "Short Fuse" -msgstr "Mecha Curta" +#: src/addon/addon.cpp:74 src/supertux/menu/editor_levelset_menu.cpp:54 +#: data//images/engine/editor/objects.stoi:389 +msgid "Worldmap" +msgstr "Mapa Principal" -#: src/badguy/zeekling.hpp:36 -msgid "Zeekling" -msgstr "Dragón" +#: src/addon/addon.cpp:77 +msgid "World" +msgstr "Mundo" + +#: src/addon/addon.cpp:80 +msgid "Add-on" +msgstr "Complemento" + +#: src/addon/addon.cpp:83 +msgid "Language Pack" +msgstr "Paquete de Idiomas" + +#: src/addon/addon.cpp:86 +msgid "Resource Pack" +msgstr "Paquete de Recursos" + +#: src/addon/addon.cpp:89 +msgid "Unknown" +msgstr "Descoñecido" + +#: src/addon/addon.cpp:100 +#, c++-format +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" por \"{}\"" + +#: src/addon/addon.cpp:114 +msgid "add-on" +msgstr "complemento" + +#: src/addon/addon.cpp:114 +msgid "add-ons" +msgstr "complementos" + +#: src/badguy/toad.hpp:38 +msgid "Toad" +msgstr "Sapo" + +#: src/badguy/mrtree.hpp:32 +msgid "Mr. Tree" +msgstr "Sr. árbore" + +#: src/badguy/plant.hpp:34 +msgid "Plant" +msgstr "Planta" + +#: src/badguy/tarantula.hpp:39 src/badguy/tarantula.cpp:353 +msgid "Tarantula" +msgstr "tarántula" + +#: src/badguy/granito_giant.cpp:71 +msgid "Awake" +msgstr "Esperto" + +#: src/badguy/granito_giant.cpp:72 +msgid "Sleeping" +msgstr "Durmindo" + +#: src/badguy/granito_giant.cpp:73 +msgid "Corrupted A" +msgstr "Corrompido A" + +#: src/badguy/granito_giant.cpp:74 +msgid "Corrupted B" +msgstr "Corrompido B" + +#: src/badguy/granito_giant.cpp:75 +msgid "Corrupted C" +msgstr "Corrompido C" + +#: src/badguy/crystallo.hpp:33 +msgid "Crystallo" +msgstr "Cristaliño" + +#: src/badguy/viciousivy.cpp:45 src/badguy/snail.cpp:70 +#: src/badguy/kamikazesnowball.cpp:118 src/badguy/walkingleaf.cpp:36 +#: src/badguy/jumpy.cpp:46 src/badguy/igel.cpp:189 src/badguy/mrtree.cpp:51 +msgid "Corrupted" +msgstr "Corrompido" + +#: src/badguy/totem.hpp:37 +msgid "Totem" +msgstr "Totem" + +#: src/badguy/stalactite.hpp:42 +msgid "Stalactite" +msgstr "Estalactita" + +#: src/badguy/fish_chasing.cpp:198 +msgid "Tracking Distance" +msgstr "Distancia de Seguimento" + +#: src/badguy/fish_chasing.cpp:199 +msgid "Losing Distance" +msgstr "Distancia de Perda" + +#: src/badguy/fish_chasing.cpp:200 +msgid "Chase Speed" +msgstr "Velocidade de Persecución" + +#: src/badguy/root_sapling.hpp:41 +msgid "Root Sapling" +msgstr "Gromo de Ráiz" + +#: src/badguy/haywire.hpp:46 +msgid "Haywire" +msgstr "Bule bule" + +#: src/badguy/dispenser.hpp:52 +msgid "Dispenser" +msgstr "Dispensador" + +#: src/badguy/short_fuse.hpp:30 +msgid "Short Fuse" +msgstr "Mecha Curta" + +#: src/badguy/zeekling.hpp:39 +msgid "Zeekling" +msgstr "Dragón" + +#: src/badguy/smartball.cpp:35 +msgid "Pumpkin" +msgstr "Cabaza" + +#: src/badguy/bouncing_snowball.cpp:82 +msgid "Fatbat" +msgstr "Morcego Gordo" + +#: src/badguy/dive_mine.hpp:50 +msgid "Dive Mine" +msgstr "Mina de mergullo" + +#: src/badguy/granito_big.hpp:33 +msgid "Big Granito" +msgstr "Granito Grande" + +#: src/badguy/mriceblock.hpp:49 +msgid "Mr. Iceblock" +msgstr "Mr. Bloque de Xeo" + +#: src/badguy/granito.hpp:39 src/badguy/darttrap.cpp:163 +#: src/badguy/corrupted_granito.cpp:175 src/badguy/dispenser.cpp:438 +msgid "Granito" +msgstr "Granito" + +#: src/badguy/fish_swimming.cpp:54 src/badguy/jumpy.cpp:44 +#: data//images/ice_world.strf:10 data//images/tiles.strf:28 +#: data//images/worldmap.strf:41 +msgid "Snow" +msgstr "Neve" + +#: src/badguy/fish_swimming.cpp:55 data//images/ice_world.strf:211 +#: data//images/tiles.strf:366 data//images/worldmap.strf:67 +msgid "Forest" +msgstr "Bosque" -#: src/badguy/mriceblock.hpp:46 -msgid "Iceblock" -msgstr "Cubiño de xeo" +#: src/badguy/crusher.hpp:71 +msgid "Crusher" +msgstr "Trituradora" -#: src/badguy/jumpy.hpp:36 +#: src/badguy/flame.cpp:84 +msgid "Fire" +msgstr "Lume" + +#: src/badguy/flame.cpp:85 +msgid "Ghost" +msgstr "Pantasma" + +#: src/badguy/corrupted_granito_big.hpp:35 +msgid "Corrupted Big Granito" +msgstr "Granito Grande Corrompido" + +#: src/badguy/scrystallo.cpp:57 +msgid "Walk Radius" +msgstr "Raio do Paseo" + +#: src/badguy/scrystallo.cpp:58 +msgid "Awakening Radius" +msgstr "Raio ó Espertar" + +#: src/badguy/scrystallo.cpp:59 +msgid "Roof-attached" +msgstr "Fixado ao tellado" + +#: src/badguy/jumpy.hpp:40 msgid "Jumpy" msgstr "Chouteira" -#: src/badguy/captainsnowball.hpp:31 +#: src/badguy/captainsnowball.hpp:32 msgid "Captain Snowball" msgstr "Capitán Bóla de Neve" -#: src/badguy/ghosttree.hpp:42 +#: src/badguy/ghosttree.hpp:43 msgid "Ghost Tree" msgstr "Árbore Pantasma" -#: src/badguy/willowisp.cpp:283 +#: src/badguy/willowisp.cpp:314 msgid "Track range" msgstr "Intervalo de seguimento" -#: src/badguy/willowisp.cpp:284 +#: src/badguy/willowisp.cpp:315 msgid "Vanish range" msgstr "Intervalo de desaparición" -#: src/badguy/willowisp.cpp:285 +#: src/badguy/willowisp.cpp:316 msgid "Fly speed" msgstr "Velocidade de voo" -#: src/badguy/kugelblitz.hpp:39 +#: src/badguy/kugelblitz.hpp:40 msgid "Kugelblitz" msgstr "Chispún" -#: src/badguy/mole_rock.hpp:42 +#: src/badguy/mole_rock.hpp:44 msgid "Mole's rock" msgstr "Pedras da toupeira" -#: src/badguy/badguy.cpp:841 +#: src/badguy/badguy.cpp:1064 msgid "Death script" msgstr "Script de morte" -#: src/badguy/sspiky.hpp:36 +#: src/badguy/sspiky.hpp:37 msgid "Sleeping Spiky" msgstr "Chouteira Durminte" -#: src/badguy/yeti_stalactite.hpp:33 +#: src/badguy/yeti_stalactite.hpp:34 msgid "Yeti's Stalactite" msgstr "Estalactita do Yeti" -#: src/badguy/livefire.hpp:37 +#: src/badguy/fish_harmless.hpp:30 +msgid "Harmless Fish" +msgstr "Peixe inofensivo" + +#: src/badguy/livefire.hpp:38 msgid "Walking Flame" msgstr "Lapa Camiñante" -#: src/badguy/livefire.hpp:67 +#: src/badguy/livefire.hpp:71 msgid "Sleeping Flame" msgstr "Lapa Durminte" -#: src/badguy/livefire.hpp:83 +#: src/badguy/livefire.hpp:89 msgid "Dormant Flame" msgstr "Lapa Latente" -#: src/badguy/owl.hpp:39 +#: src/badguy/owl.hpp:45 msgid "Owl" msgstr "Moucho" -#: src/badguy/igel.hpp:34 +#: src/badguy/igel.hpp:38 msgid "Igel" msgstr "Ourizo" -#: src/badguy/darttrap.cpp:126 +#: src/badguy/darttrap.cpp:148 msgid "Initial delay" msgstr "Tardanza inicial" -#: src/badguy/darttrap.cpp:128 +#: src/badguy/darttrap.cpp:150 msgid "Fire delay" msgstr "Tardanza do lume" -#: src/badguy/darttrap.cpp:129 +#: src/badguy/darttrap.cpp:151 msgid "Ammo" msgstr "Munición" -#: src/badguy/snowball.hpp:29 -msgid "Snowball" -msgstr "Bóla de neve" +#: src/badguy/darttrap.cpp:152 +msgid "Dart sprite" +msgstr "Gráfico animado escuro" + +#: src/badguy/darttrap.cpp:164 +msgid "Skull" +msgstr "Cranio" -#: src/badguy/smartblock.hpp:29 -msgid "Smartblock" -msgstr "Bloque intelixente" +#: src/badguy/snowball.hpp:30 +msgid "Mr. Snowball" +msgstr "Sr. Bola de Neve" -#: src/badguy/yeti.cpp:369 +#: src/badguy/smartblock.hpp:30 +msgid "Mrs. Iceblock" +msgstr "Sra. Bloque de Xeo" + +#: src/badguy/yeti.cpp:370 msgid "Fixed position" msgstr "Posición fixa" -#: src/badguy/yeti.cpp:370 +#: src/badguy/yeti.cpp:371 msgid "Lives" msgstr "Vidas" -#: src/badguy/goldbomb.hpp:49 +#: src/badguy/goldbomb.hpp:50 msgid "Gold Bomb" msgstr "Bomba Dourada" -#: src/badguy/flyingsnowball.hpp:32 +#: src/badguy/corrupted_granito.hpp:44 +msgid "Corrupted Granito" +msgstr "Granito Corrompido" + +#: src/badguy/mrbomb.cpp:48 +msgid "Classic" +msgstr "Clásico" + +#: src/badguy/flyingsnowball.hpp:33 msgid "Flying Snowball" msgstr "A Mosca" -#: src/badguy/skullyhop.hpp:37 -msgid "Skullyhop" -msgstr "Caveira Choutadora" +#: src/badguy/crusher.cpp:75 +msgid "Ice (normal)" +msgstr "Xeo (normal)" + +#: src/badguy/crusher.cpp:76 +msgid "Ice (big)" +msgstr "Xeo (grande)" -#: src/badguy/kamikazesnowball.hpp:32 -msgid "Snowshot" -msgstr "Bala de neve" +#: src/badguy/crusher.cpp:77 +msgid "Rock (normal)" +msgstr "Rocha (normal)" -#: src/badguy/kamikazesnowball.hpp:52 +#: src/badguy/crusher.cpp:78 +msgid "Rock (big)" +msgstr "Rocha (grande)" + +#: src/badguy/crusher.cpp:79 +msgid "Corrupted (normal)" +msgstr "Corrompido (normal)" + +#: src/badguy/crusher.cpp:80 +msgid "Corrupted (big)" +msgstr "Corrompido (grande)" + +#: src/badguy/crusher.cpp:492 +msgid "Sideways" +msgstr "Beirarrúas" + +#: src/badguy/kamikazesnowball.hpp:34 +msgid "Kamikaze Snowball" +msgstr "Bola de neve kamikaze" + +#: src/badguy/kamikazesnowball.hpp:64 msgid "Leafshot" msgstr "Bala de folla" -#: src/badguy/flame.hpp:41 +#: src/badguy/fish_swimming.hpp:40 +msgid "Swimming Fish" +msgstr "Peixe Nadador" + +#: src/badguy/flame.hpp:47 msgid "Flame" msgstr "Lapa" -#: src/badguy/poisonivy.hpp:30 -msgid "Spring Leaf" -msgstr "Folla de Primavera" +#: src/badguy/scrystallo.hpp:31 +msgid "Sleeping Crystallo" +msgstr "Cristaliño Durminte" + +#: src/badguy/jumpy.cpp:45 +msgid "Wooden" +msgstr "Madeira" + +#: src/badguy/jumpy.cpp:47 +msgid "Metal" +msgstr "Metal" -#: src/badguy/willowisp.hpp:55 +#: src/badguy/jumpy.cpp:48 +msgid "Bag" +msgstr "Saco" + +#: src/badguy/willowisp.hpp:57 msgid "Will o' Wisp" msgstr "Asubía-Bólas" -#: src/badguy/badguy.hpp:53 +#: src/badguy/fish_jumping.hpp:41 +msgid "Jumping Fish" +msgstr "Peixe Brincador" + +#: src/badguy/badguy.hpp:61 msgid "Badguy" msgstr "Tipo malo" -#: src/badguy/ghostflame.hpp:30 -msgid "Ghost Flame" -msgstr "Lapa Pantasma" +#: src/badguy/rcrystallo.hpp:33 +msgid "Roof Crystallo" +msgstr "Cristaliño no Tellado" -#: src/badguy/spiky.hpp:30 +#: src/badguy/spiky.hpp:31 msgid "Spiky" msgstr "Pinchudo" -#: src/badguy/walkingleaf.hpp:30 -msgid "Autumn Leaf" -msgstr "Folla do Outono" +#: src/badguy/walkingleaf.hpp:33 +msgid "Walking Leaf" +msgstr "Folla Andante" -#: src/badguy/owl.cpp:227 +#: src/badguy/root.hpp:39 +msgid "Root" +msgstr "Ráiz" + +#: src/badguy/owl.cpp:241 msgid "Carry" msgstr "Levar" -#: src/badguy/darttrap.hpp:33 +#: src/badguy/darttrap.hpp:35 msgid "Dart Trap" msgstr "Trampa de Dardos" -#: src/badguy/skydive.hpp:38 +#: src/badguy/skydive.hpp:43 msgid "Skydive" msgstr "Chouta-Ceos" -#: src/badguy/yeti.hpp:37 +#: src/badguy/yeti.hpp:38 msgid "Yeti" msgstr "Yeti" -#: src/badguy/mole.hpp:39 +#: src/badguy/snowball.cpp:41 +msgid "Bumpkin" +msgstr "Pailán" + +#: src/badguy/snowball.cpp:42 +msgid "BSOD" +msgstr "BSOD" + +#: src/badguy/mole.hpp:38 msgid "Mole" msgstr "Toupa" -#: src/badguy/mrbomb.hpp:42 -msgid "Bomb" -msgstr "Bomba" +#: src/badguy/corrupted_granito.cpp:176 +msgid "Skullyhop" +msgstr "Caveira Choutadora" + +#: src/badguy/mrbomb.hpp:40 +msgid "Mr. Bomb" +msgstr "Sr. Bomba" -#: src/badguy/walking_candle.hpp:40 +#: src/badguy/walking_candle.hpp:41 msgid "Walking Candle" msgstr "Vela Camiñante" -#: src/badguy/angrystone.hpp:34 +#: src/badguy/angrystone.hpp:39 msgid "Angry Stone" msgstr "Pedra Furiosa" -#: src/badguy/spidermite.hpp:35 -msgid "Spider" -msgstr "Araña" +#: src/badguy/tarantula.cpp:354 +msgid "Spidermite" +msgstr "Ácaro araña" -#: src/badguy/ghoul.hpp:28 +#: src/badguy/tarantula.cpp:374 +msgid "Static" +msgstr "Estático" + +#: src/badguy/ghoul.hpp:30 msgid "Ghoul" msgstr "Demo" -#: src/badguy/snowman.hpp:28 +#: src/badguy/granito_giant.hpp:32 +msgid "Giant Granito" +msgstr "Granito Xigante" + +#: src/badguy/snowman.hpp:29 msgid "Snowman" msgstr "Boneco de Neve" -#: src/badguy/stumpy.hpp:35 -msgid "Walking Stump" -msgstr "Cañota Camiñante" +#: src/badguy/viciousivy.hpp:33 +msgid "Vicious Ivy" +msgstr "Hedra Viciosa" + +#: src/badguy/stalactite.cpp:156 +msgid "ice" +msgstr "xeo" + +#: src/badguy/stalactite.cpp:157 +msgid "rock" +msgstr "rocha" -#: src/badguy/fish.hpp:40 -msgid "Fish" -msgstr "Peixe" +#: src/badguy/fish_chasing.hpp:33 +msgid "Chasing Fish" +msgstr "Perseguindo Peixes" -#: src/badguy/dispenser.cpp:439 +#: src/badguy/stumpy.hpp:38 +msgid "Stumpy" +msgstr "Tronco" + +#: src/badguy/dispenser.cpp:412 msgid "Interval (seconds)" msgstr "Intervalo (segundos)" -#: src/badguy/dispenser.cpp:440 +#: src/badguy/dispenser.cpp:413 msgid "Random" msgstr "Aleatorio" -#: src/badguy/dispenser.cpp:441 data//images/engine/editor/objects.stoi:4 -msgid "Enemies" -msgstr "Inimigos" +#: src/badguy/dispenser.cpp:416 +#: src/supertux/menu/editor_objectgroup_menu.cpp:30 +#: src/editor/toolbox_widget.cpp:101 +msgid "Objects" +msgstr "Obxectos" -#: src/badguy/dispenser.cpp:442 +#: src/badguy/dispenser.cpp:419 msgid "Limit dispensed badguys" msgstr "Limitar a cantidade de tipos malos" -#: src/badguy/dispenser.cpp:444 +#: src/badguy/dispenser.cpp:421 +msgid "Obey Gravity" +msgstr "Seguir a Gravidade" + +#: src/badguy/dispenser.cpp:423 msgid "Max concurrent badguys" msgstr "Cantidade máxima de tipos malos á vez" -#: src/badguy/dispenser.cpp:446 src/supertux/menu/editor_levelset_menu.cpp:60 -msgid "Type" -msgstr "Tipo" - -#: src/badguy/dispenser.cpp:447 -msgid "dropper" -msgstr "pingueira" +#: src/badguy/dispenser.cpp:435 +msgid "Dropper" +msgstr "Contagotas" -#: src/badguy/dispenser.cpp:447 -msgid "rocket launcher" -msgstr "lanzadeira de mísil" - -#: src/badguy/dispenser.cpp:447 -msgid "cannon" +#: src/badguy/dispenser.cpp:436 +msgid "Cannon" msgstr "canón" -#: src/badguy/dispenser.cpp:447 -msgid "invisible" -msgstr "invisible" +#: src/badguy/dispenser.cpp:437 src/worldmap/special_tile.cpp:77 +msgid "Invisible" +msgstr "Invisible" -#: src/badguy/snail.hpp:42 +#: src/badguy/snail.hpp:43 msgid "Snail" msgstr "Caracol" -#: src/badguy/smartball.hpp:31 -msgid "Smartball" -msgstr "Bóla Intelixente" +#: src/badguy/smartball.hpp:32 +msgid "Mrs. Snowball" +msgstr "Sra. Bola de neve" -#: src/badguy/bouncing_snowball.hpp:31 +#: src/badguy/bouncing_snowball.hpp:39 msgid "Bouncing Snowball" msgstr "Bóla de Neve Saltadora" -#: src/badguy/iceflame.hpp:33 -msgid "Ice Flame" -msgstr "Lapa de Xeo" +#: src/badguy/granito_big.cpp:52 src/badguy/granito.cpp:263 +msgid "Default" +msgstr "Predeterminado" + +#: src/badguy/granito_big.cpp:53 src/badguy/granito.cpp:264 +msgid "Standing" +msgstr "De pé" + +#: src/badguy/granito_big.cpp:54 src/badguy/granito.cpp:265 +msgid "Walking" +msgstr "Camiñando" + +#: src/badguy/mriceblock.cpp:63 +msgid "Laptop" +msgstr "Portátil" -#: src/badguy/dart.hpp:43 +#: src/badguy/dart.hpp:44 msgid "Dart" msgstr "Dardo" -#: src/supertux/statistics.cpp:47 +#: src/badguy/granito.cpp:268 +msgid "Sitting" +msgstr "Sentado" + +#: src/supertux/statistics.cpp:54 msgid "Max coins collected:" msgstr "Máximas moedas recollidas:" -#: src/supertux/statistics.cpp:48 +#: src/supertux/statistics.cpp:55 msgid "Max fragging:" msgstr "Máximos inimigos vencidos:" -#: src/supertux/statistics.cpp:49 +#: src/supertux/statistics.cpp:56 msgid "Max secrets found:" msgstr "Máximos segredos atopados:" -#: src/supertux/statistics.cpp:50 +#: src/supertux/statistics.cpp:57 msgid "Best time completed:" msgstr "Completado no mellor tempo:" -#: src/supertux/statistics.cpp:51 +#: src/supertux/statistics.cpp:58 msgid "Level target time:" msgstr "Tempo para acadar o obxectivo do nivel:" -#: src/supertux/statistics.cpp:139 src/supertux/levelintro.cpp:160 +#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:175 msgid "Best Level Statistics" msgstr "Mellores Estadísticas do Nivel" -#: src/supertux/statistics.cpp:228 +#: src/supertux/statistics.cpp:238 msgid "You" msgstr "Ti" -#: src/supertux/statistics.cpp:230 +#: src/supertux/statistics.cpp:240 msgid "Best" msgstr "Mellor" -#: src/supertux/statistics.cpp:232 src/supertux/levelintro.cpp:166 +#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:181 msgid "Coins" msgstr "Moedas" -#: src/supertux/statistics.cpp:255 +#: src/supertux/statistics.cpp:265 msgid "Badguys" msgstr "Tipos malos" -#: src/supertux/statistics.cpp:271 src/supertux/levelintro.cpp:172 +#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:187 msgid "Secrets" msgstr "Segredos" -#: src/supertux/game_object.hpp:77 +#: src/supertux/game_object.hpp:88 msgid "Unknown object" msgstr "Obxecto descoñecido" -#: src/supertux/command_line_arguments.cpp:74 -#, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Utilización: %s [OPTIONS] [LEVELFILE]" +#: src/supertux/sector.cpp:507 +msgid "Press escape to skip" +msgstr "Pulsar a tecla escape para saltar" + +#: src/supertux/command_line_arguments.cpp:92 +#, c++-format +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Uso: {} [OPCIÓNS] [ARQUIVO NÍVEL]" -#: src/supertux/command_line_arguments.cpp:75 +#: src/supertux/command_line_arguments.cpp:93 msgid "General Options:" msgstr "Opcións Xerais:" -#: src/supertux/command_line_arguments.cpp:76 +#: src/supertux/command_line_arguments.cpp:94 msgid " -h, --help Show this help message and quit" msgstr " -h, --help Amosa esta mensaxe de axuda e sae" -#: src/supertux/command_line_arguments.cpp:77 +#: src/supertux/command_line_arguments.cpp:95 msgid " -v, --version Show SuperTux version and quit" msgstr " -v, --version Amosa a versión de SuperTux e sae" -#: src/supertux/command_line_arguments.cpp:78 +#: src/supertux/command_line_arguments.cpp:96 msgid " --verbose Print verbose messages" msgstr " --verbose Publica mensaxes pormenorizadas" -#: src/supertux/command_line_arguments.cpp:79 +#: src/supertux/command_line_arguments.cpp:97 msgid " --debug Print extra verbose messages" msgstr " --verbose Publica mensaxes pormenorizadas extra" -#: src/supertux/command_line_arguments.cpp:80 +#: src/supertux/command_line_arguments.cpp:98 msgid "" " --print-datadir Print SuperTux's primary data directory." msgstr " --print-datadir Publica o directorio de datos primario de SuperTux." -#: src/supertux/command_line_arguments.cpp:82 +#: src/supertux/command_line_arguments.cpp:99 +msgid "" +" --acknowledgements Print the licenses of libraries used by " +"SuperTux." +msgstr " --agradecementos Amosa as licenzas das librerías utilizadas por SuperTux." + +#: src/supertux/command_line_arguments.cpp:101 msgid "Video Options:" msgstr "Opcións de Vídeo:" -#: src/supertux/command_line_arguments.cpp:83 +#: src/supertux/command_line_arguments.cpp:102 msgid " -f, --fullscreen Run in fullscreen mode" msgstr " -f, --fullscreen Funciona en modo pantalla completa" -#: src/supertux/command_line_arguments.cpp:84 +#: src/supertux/command_line_arguments.cpp:103 msgid " -w, --window Run in window mode" msgstr " -w, --window Funciona en modo xanela" -#: src/supertux/command_line_arguments.cpp:85 +#: src/supertux/command_line_arguments.cpp:104 msgid " -g, --geometry WIDTHxHEIGHT Run SuperTux in given resolution" msgstr " -g, --geometry ANCHOxALTO Executa SuperTux na resolución indicada" -#: src/supertux/command_line_arguments.cpp:86 +#: src/supertux/command_line_arguments.cpp:105 msgid " -a, --aspect WIDTH:HEIGHT Run SuperTux with given aspect ratio" msgstr " -a, --aspect ANCHO:ALTO Executa SuperTux coa resolución de aspecto indicada" -#: src/supertux/command_line_arguments.cpp:87 +#: src/supertux/command_line_arguments.cpp:106 msgid " -d, --default Reset video settings to default values" msgstr " -d, --default Restablece a configuración de vídeo ós valores predeterminados" -#: src/supertux/command_line_arguments.cpp:88 +#: src/supertux/command_line_arguments.cpp:107 msgid " --renderer RENDERER Use sdl, opengl, or auto to render" msgstr " --renderer REPRESENTAR Utiliza sdl, opengl, ou auto para representar" -#: src/supertux/command_line_arguments.cpp:90 +#: src/supertux/command_line_arguments.cpp:109 msgid "Audio Options:" msgstr "Opcións de Audio:" -#: src/supertux/command_line_arguments.cpp:91 +#: src/supertux/command_line_arguments.cpp:110 msgid " --disable-sound Disable sound effects" msgstr " --disable-sound Desactiva os efectos de son" -#: src/supertux/command_line_arguments.cpp:92 +#: src/supertux/command_line_arguments.cpp:111 msgid " --disable-music Disable music" msgstr " --disable-music Desactiva a músicaDisable music" -#: src/supertux/command_line_arguments.cpp:94 +#: src/supertux/command_line_arguments.cpp:113 msgid "Game Options:" msgstr "Opcións do Xogo:" -#: src/supertux/command_line_arguments.cpp:95 +#: src/supertux/command_line_arguments.cpp:114 msgid " --edit-level Open given level in editor" msgstr " --edit-level Abrir o nivel indicado no editor" -#: src/supertux/command_line_arguments.cpp:96 +#: src/supertux/command_line_arguments.cpp:115 msgid " --resave Loads given level and saves it" msgstr " --resave Carga o nivel indicado e gárdao" -#: src/supertux/command_line_arguments.cpp:97 +#: src/supertux/command_line_arguments.cpp:116 msgid " --show-fps Display framerate in levels" msgstr " --show-fps Amosa os fotogramas por segundo nos niveis" -#: src/supertux/command_line_arguments.cpp:98 +#: src/supertux/command_line_arguments.cpp:117 msgid " --no-show-fps Do not display framerate in levels" msgstr " --no-show-fps Non amosa os fotogramas por segundo nos niveis" -#: src/supertux/command_line_arguments.cpp:99 +#: src/supertux/command_line_arguments.cpp:118 msgid " --show-pos Display player's current position" msgstr " --show-pos Amosar a posición actual do xogador" -#: src/supertux/command_line_arguments.cpp:100 +#: src/supertux/command_line_arguments.cpp:119 msgid " --no-show-pos Do not display player's position" msgstr " --no-show-pos Non amosar a posición do xogador" -#: src/supertux/command_line_arguments.cpp:101 +#: src/supertux/command_line_arguments.cpp:120 msgid " --developer Switch on developer feature" msgstr " --developer Acende a función programador" -#: src/supertux/command_line_arguments.cpp:102 +#: src/supertux/command_line_arguments.cpp:121 msgid " -s, --debug-scripts Enable script debugger." msgstr " -s, --debug-scripts Activa o depurador de scripts." -#: src/supertux/command_line_arguments.cpp:103 +#: src/supertux/command_line_arguments.cpp:122 msgid "" " --spawn-pos X,Y Where in the level to spawn Tux. Only used if" " level is specified." msgstr " --spawn-pos X,Y Onde soltar a Tux no nivel. Só se utiliza de especificarse o nivel." -#: src/supertux/command_line_arguments.cpp:104 +#: src/supertux/command_line_arguments.cpp:123 msgid " --sector SECTOR Spawn Tux in SECTOR\n" msgstr " --sector SECTOR Soltar a Tux no SECTOR\n" -#: src/supertux/command_line_arguments.cpp:105 +#: src/supertux/command_line_arguments.cpp:124 msgid " --spawnpoint SPAWNPOINT Spawn Tux at SPAWNPOINT\n" msgstr " --spawnpoint PUNTO DE INICIO Soltar a Tux no PUNTO DE INICIO\n" -#: src/supertux/command_line_arguments.cpp:107 -msgid "Demo Recording Options:" -msgstr "Opcións de Gravación da Demostración:" - -#: src/supertux/command_line_arguments.cpp:108 -msgid " --record-demo FILE LEVEL Record a demo to FILE" -msgstr " --record-demo NIVEL DO FICHEIRO Gravar unha demostración a FICHEIRO" - -#: src/supertux/command_line_arguments.cpp:109 -msgid " --play-demo FILE LEVEL Play a recorded demo" -msgstr " --play-demo FICHEIRO NIVEL Reproducir unha demostración gravada" - -#: src/supertux/command_line_arguments.cpp:111 +#: src/supertux/command_line_arguments.cpp:126 msgid "Directory Options:" msgstr "Opcións do Directorio:" -#: src/supertux/command_line_arguments.cpp:112 +#: src/supertux/command_line_arguments.cpp:127 msgid "" " --datadir DIR Set the directory for the games datafiles" msgstr " --datadir DIRECTORIO Establecer o directorio para os ficheiros de datos dos xogos" -#: src/supertux/command_line_arguments.cpp:113 +#: src/supertux/command_line_arguments.cpp:128 msgid "" " --userdir DIR Set the directory for user data (savegames, " "etc.)" msgstr " --userdir DIRECTORIO Establecer o directorio para os datos de usuario (xogos gardados, etc.)" -#: src/supertux/command_line_arguments.cpp:115 +#: src/supertux/command_line_arguments.cpp:130 msgid "Add-On Options:" msgstr "Opcións dos Complementos:" -#: src/supertux/command_line_arguments.cpp:116 +#: src/supertux/command_line_arguments.cpp:131 msgid " --repository-url URL Set the URL to the Add-On repository" msgstr " --repository-url URL Establecer o URL para o repositorio de Complementos" -#: src/supertux/command_line_arguments.cpp:118 +#: src/supertux/command_line_arguments.cpp:133 msgid "Environment variables:" msgstr "Variables de entorno:" -#: src/supertux/command_line_arguments.cpp:119 +#: src/supertux/command_line_arguments.cpp:134 msgid "" " SUPERTUX2_USER_DIR Directory for user data (savegames, etc.)" msgstr " SUPERTUX2_USER_DIR Directorio para os datos do usuario (xogos gardados, etc.)" -#: src/supertux/command_line_arguments.cpp:120 +#: src/supertux/command_line_arguments.cpp:135 msgid " SUPERTUX2_DATA_DIR Directory for the games datafiles" msgstr " SUPERTUX2_DATA_DIR Directorio para os ficheiros de datos dos xogos" -#: src/supertux/title_screen.cpp:43 +#: src/supertux/title_screen.cpp:272 msgid "Copyright" msgstr "Copyright" -#: src/supertux/title_screen.cpp:44 +#: src/supertux/title_screen.cpp:273 msgid "" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to\n" "redistribute it under certain conditions; see the license file for details.\n" msgstr "Este xogo vén SEN ABSOLUTAMENTE NINGUNHA GARANTÍA. É software libre e es libre de\nredistribuílo baixo certas condicións; mira o ficheiro de licenza para os detalles.\n" -#: src/supertux/menu/contrib_menu.cpp:79 +#: src/supertux/game_object.cpp:114 +msgid "Version" +msgstr "Versión" + +#: src/supertux/game_object.cpp:129 +#: src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Type" +msgstr "Tipo" + +#: src/supertux/menu/integrations_menu.cpp:49 +msgid "Integrations" +msgstr "Integracións" + +#: src/supertux/menu/integrations_menu.cpp:51 +msgid "Do not share level names when editing" +msgstr "Non compartir os nomes dos niveis ó editar" + +#: src/supertux/menu/integrations_menu.cpp:52 +msgid "" +"Enable this if you want to work on secret levels and don't want the names to" +" be spoiled" +msgstr "Activa isto se queres traballar en niveis secretos e non queres que se desvelen os nomes." + +#: src/supertux/menu/integrations_menu.cpp:54 +msgid "Enable Discord integration" +msgstr "Activar a integración con Discord" + +#: src/supertux/menu/integrations_menu.cpp:55 +msgid "" +"Sends information to your Discord application about what you're doing in the" +" game." +msgstr "Envía información á túa aplicación de Discord sobre o que estás a facer no xogo." + +#: src/supertux/menu/integrations_menu.cpp:57 +msgid "Discord (disabled; not compiled)" +msgstr "Discord (desactivado; non compilado)" + +#: src/supertux/menu/editor_converters_menu.cpp:61 +#: src/supertux/menu/editor_menu.cpp:85 +msgid "Convert Tiles" +msgstr "Converter Bloques" + +#: src/supertux/menu/editor_converters_menu.cpp:64 +msgid "Select Tile Conversion File" +msgstr "Seleccione Ficheiro de conversión de Bloques" + +#: src/supertux/menu/editor_converters_menu.cpp:72 +#, c++-format +msgid "By: {}" +msgstr "Por: {}" + +#: src/supertux/menu/editor_converters_menu.cpp:75 +msgid "Convert Tiles By File" +msgstr "Converter Bloques por ficheiro" + +#: src/supertux/menu/editor_converters_menu.cpp:76 +msgid "Convert all tiles in the current level by a file, specified above." +msgstr "Converte todos os bloques do nivel actual mediante un ficheiro, especificado anteriormente." + +#: src/supertux/menu/editor_converters_menu.cpp:89 +msgid "No tile conversion file selected." +msgstr "Non se seleccionou ningún ficheiro de conversión de bloque." + +#: src/supertux/menu/editor_converters_menu.cpp:93 +msgid "" +"This will convert all tiles in the level. Proceed?\n" +"\n" +"Note: This should not be ran more than once on a level.\n" +"Creating a separate copy of the level is highly recommended." +msgstr "Isto converterá tódolos bloques do nivel. Queres continuar?\n\nNota: Non se debe executar máis dunha vez nun nivel.\nRecoméndase crear unha copia separada do nivel." + +#: src/supertux/menu/video_system_menu.cpp:36 +msgid "Select Video System" +msgstr "Escolle Sistema de vídeo" + +#: src/supertux/menu/video_system_menu.cpp:37 +#, c++-format +msgid "Used video system: {}" +msgstr "Sistema de vídeo usado: {}" + +#: src/supertux/menu/video_system_menu.cpp:54 +msgid "Restart game for the changes to take effect" +msgstr "Reinicia o xogo para que os cambios teñan efecto" + +#: src/supertux/menu/contrib_menu.cpp:68 #: src/supertux/menu/world_set_menu.cpp:31 msgid "Contrib Levels" msgstr "Niveis dos Colaboradores" +#: src/supertux/menu/contrib_menu.cpp:98 +#: src/supertux/menu/contrib_menu.cpp:112 +msgid "Official Contrib Levels" +msgstr "Niveis oficiais dos colaboradores" + +#: src/supertux/menu/contrib_menu.cpp:99 +#: src/supertux/menu/contrib_menu.cpp:118 +msgid "Community Contrib Levels" +msgstr "Niveis de colaboración comunitaria" + +#: src/supertux/menu/contrib_menu.cpp:100 +#: src/supertux/menu/contrib_menu.cpp:124 +msgid "User Contrib Levels" +msgstr "Niveis de colaboración do usuario" + +#: src/supertux/menu/contrib_menu.cpp:113 +msgid "How is this possible? There are no Official Contrib Levels!" +msgstr "Como é posible? Non hai niveis Oficiais de Contribución!" + #: src/supertux/menu/contrib_menu.cpp:119 -#: src/supertux/menu/contrib_menu.cpp:150 -msgid "*NEW*" -msgstr "*NOVO*" +msgid "No Community Contrib Levels yet. Download them from the Add-ons Menu." +msgstr "Aínda non hai niveis da Comunidade. Descárgaos dende o menú de Complementos." -#: src/supertux/menu/contrib_menu.cpp:172 src/supertux/menu/debug_menu.cpp:75 -#: src/supertux/menu/editor_level_select_menu.cpp:84 -#: src/supertux/menu/worldmap_cheat_menu.cpp:55 -#: src/supertux/menu/worldmap_cheat_menu.cpp:153 -#: src/supertux/menu/editor_levelset_select_menu.cpp:96 -#: src/supertux/menu/options_menu.cpp:405 -#: src/supertux/menu/profile_menu.cpp:47 src/supertux/menu/addon_menu.cpp:213 -#: src/supertux/menu/editor_new_levelset_menu.cpp:40 -#: src/supertux/menu/world_set_menu.cpp:33 -#: src/supertux/menu/keyboard_menu.cpp:51 -#: src/supertux/menu/language_menu.cpp:56 -#: src/supertux/menu/joystick_menu.cpp:97 -#: src/supertux/menu/contrib_levelset_menu.cpp:67 -#: src/supertux/menu/cheat_menu.cpp:44 -msgid "Back" -msgstr "Atrás" +#: src/supertux/menu/contrib_menu.cpp:125 +msgid "No User Contrib Levels yet. Create some with the Level Editor." +msgstr "Aínda non hai niveis de Usuarios. Crea algúns co Editor de Niveis." -#: src/supertux/menu/debug_menu.cpp:32 +#: src/supertux/menu/debug_menu.cpp:34 msgid "Debug" msgstr "Depurar" -#: src/supertux/menu/debug_menu.cpp:56 +#: src/supertux/menu/debug_menu.cpp:58 msgid "Game Speed" msgstr "Velocidade do Xogo" -#: src/supertux/menu/debug_menu.cpp:57 +#: src/supertux/menu/debug_menu.cpp:59 msgid "Adjust Game Speed" msgstr "Axustar a Velocidade do Xogo" -#: src/supertux/menu/debug_menu.cpp:63 +#: src/supertux/menu/debug_menu.cpp:65 msgid "Show Collision Rects" msgstr "Amosar Rectángulos de Colisión" -#: src/supertux/menu/debug_menu.cpp:64 +#: src/supertux/menu/debug_menu.cpp:66 msgid "Show Worldmap Path" msgstr "Amosar Camiño do Mapa Principal" -#: src/supertux/menu/debug_menu.cpp:65 +#: src/supertux/menu/debug_menu.cpp:67 msgid "Show Controller" msgstr "Amosar Controlador" -#: src/supertux/menu/debug_menu.cpp:66 +#: src/supertux/menu/debug_menu.cpp:68 msgid "Show Framerate" msgstr "Amosar Fotogramas por segundo" -#: src/supertux/menu/debug_menu.cpp:67 +#: src/supertux/menu/debug_menu.cpp:69 msgid "Draw Redundant Frames" msgstr "Representar Cadros Redundantes" -#: src/supertux/menu/debug_menu.cpp:68 +#: src/supertux/menu/debug_menu.cpp:70 msgid "Show Player Position" msgstr "Amosar a Posición do Xogador" -#: src/supertux/menu/debug_menu.cpp:69 +#: src/supertux/menu/debug_menu.cpp:71 msgid "Use Bitmap Fonts" msgstr "Utilizar Fontes Bitmap" -#: src/supertux/menu/debug_menu.cpp:72 +#: src/supertux/menu/debug_menu.cpp:74 msgid "Dump Texture Cache" msgstr "Baleirar a Caché da Textura" +#: src/supertux/menu/particle_editor_save_as.cpp:33 +msgid "Save particle as" +msgstr "Gardar partícula coma" + +#: src/supertux/menu/particle_editor_save_as.cpp:37 +#: src/supertux/menu/editor_save_as.cpp:37 +msgid "File name" +msgstr "Nome do ficheiro" + +#: src/supertux/menu/particle_editor_save_as.cpp:38 +#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:767 +msgid "Save" +msgstr "Gardar" + +#: src/supertux/menu/multiplayer_menu.cpp:27 +#: src/supertux/menu/multiplayer_players_menu.cpp:34 +msgid "Multiplayer" +msgstr "Multixogador" + +#: src/supertux/menu/multiplayer_menu.cpp:30 +msgid "Auto-manage Players" +msgstr "Xestionar Automaticamente os Xogadores" + +#: src/supertux/menu/multiplayer_menu.cpp:31 +msgid "" +"Automatically add and remove players when controllers are plugged or " +"unplugged" +msgstr "Engade e elimina xogadores automaticamente cando se conecten ou desconecten os mandos." + +#: src/supertux/menu/multiplayer_menu.cpp:33 +msgid "Allow Multibind" +msgstr "Permitir Multivinculación" + +#: src/supertux/menu/multiplayer_menu.cpp:34 +msgid "Allow binding multiple joysticks to a single player" +msgstr "Permite vincular varios joysticks a un único xogador." + +#: src/supertux/menu/multiplayer_menu.cpp:36 +msgid "Manage Players" +msgstr "Xestionar Xogadores" + #: src/supertux/menu/editor_sectors_menu.cpp:31 msgid "Choose Sector" msgstr "Escoller Sector" @@ -1440,45 +2709,98 @@ msgstr "Crear Sector" msgid "Delete Sector" msgstr "Eliminar Sector" -#: src/supertux/menu/editor_sectors_menu.cpp:93 +#: src/supertux/menu/editor_sectors_menu.cpp:92 msgid "Each level must have at least one sector." msgstr "Cada nivel debe ter polo menos un sector." -#: src/supertux/menu/editor_sectors_menu.cpp:98 +#: src/supertux/menu/editor_sectors_menu.cpp:97 msgid "Do you really want to delete this sector?" msgstr "Realmente queres eliminar este sector?" -#: src/supertux/menu/editor_sectors_menu.cpp:101 +#: src/supertux/menu/editor_sectors_menu.cpp:100 msgid "Delete sector" msgstr "Eliminar sector" -#: src/supertux/menu/editor_objectgroup_menu.cpp:30 -#: src/editor/toolbox_widget.cpp:93 -msgid "Objects" -msgstr "Obxectos" +#: src/supertux/menu/custom_menu_menu.cpp:49 +#: src/supertux/menu/options_menu.cpp:191 +msgid "Menu Customization" +msgstr "Personalización do menú" + +#: src/supertux/menu/custom_menu_menu.cpp:51 +msgid "Menu Back Color" +msgstr "Cor de fondo do menú" + +#: src/supertux/menu/custom_menu_menu.cpp:52 +msgid "Menu Front Color" +msgstr "Cor frontal do Menú" + +#: src/supertux/menu/custom_menu_menu.cpp:53 +msgid "Menu Help Back Color" +msgstr "Cor de Fondo do Menú de Axuda " -#: src/supertux/menu/editor_level_select_menu.cpp:58 +#: src/supertux/menu/custom_menu_menu.cpp:54 +msgid "Menu Help Front Color" +msgstr "Cor frontal do Menú de Axuda" + +#: src/supertux/menu/custom_menu_menu.cpp:55 +msgid "Label Text Color" +msgstr "Cor do texto da etiqueta" + +#: src/supertux/menu/custom_menu_menu.cpp:56 +msgid "Active Text Color" +msgstr "Cor activa do texto" + +#: src/supertux/menu/custom_menu_menu.cpp:57 +msgid "Divider Line Color" +msgstr "Cor da liña divisoria" + +#: src/supertux/menu/custom_menu_menu.cpp:58 +msgid "Menu Roundness" +msgstr "Redondez do menú" + +#: src/supertux/menu/custom_menu_menu.cpp:60 +msgid "Editor Interface Color" +msgstr "Cor da interface do editor" + +#: src/supertux/menu/custom_menu_menu.cpp:61 +msgid "Editor Hover Color" +msgstr "Editor de cor do cursor" + +#: src/supertux/menu/custom_menu_menu.cpp:62 +msgid "Editor Grab Color" +msgstr "Cor de Capturar no editor" + +#: src/supertux/menu/custom_menu_menu.cpp:64 +msgid "Reset to defaults" +msgstr "Restablecer os valores predeterminados" + +#: src/supertux/menu/editor_level_select_menu.cpp:72 msgid "Empty World" msgstr "Mundo Baleiro" -#: src/supertux/menu/editor_level_select_menu.cpp:73 +#: src/supertux/menu/editor_level_select_menu.cpp:87 msgid "Create Level" msgstr "Crear Nivel" -#: src/supertux/menu/editor_level_select_menu.cpp:77 +#: src/supertux/menu/editor_level_select_menu.cpp:91 msgid "Edit Worldmap" msgstr "Editar Mapa Principal" -#: src/supertux/menu/editor_level_select_menu.cpp:79 +#: src/supertux/menu/editor_level_select_menu.cpp:93 msgid "Create Worldmap" msgstr "Crear Mapa Principal" -#: src/supertux/menu/editor_level_select_menu.cpp:83 -#: src/supertux/menu/editor_levelset_menu.cpp:56 +#: src/supertux/menu/editor_level_select_menu.cpp:95 +#: src/supertux/menu/editor_delete_level_menu.cpp:55 +msgid "Delete level" +msgstr "Eliminar nivel" + +#: src/supertux/menu/editor_level_select_menu.cpp:97 +#: src/supertux/menu/editor_levelset_menu.cpp:50 msgid "World Settings" msgstr "Configuración do Mundo" -#: src/supertux/menu/editor_level_select_menu.cpp:123 +#: src/supertux/menu/editor_level_select_menu.cpp:141 msgid "" "Share this worldmap under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -1486,7 +2808,7 @@ msgid "" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." msgstr "Compartir este mapa principal baixo a licenza CC-BY-SA 4.0 Internacional (aconsellado).\nPermite modificacións e a súa redistribución por terceiras partes.\nSe non estás de acordo con esta licenza, cámbiaa nas propiedades do mapa principal.\nADVERTENCIA: Os autores de SuperTux non adquires ningunha responsabilidade pola túa escolla de licenza." -#: src/supertux/menu/editor_level_select_menu.cpp:130 +#: src/supertux/menu/editor_level_select_menu.cpp:148 msgid "" "Share this level under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -1494,402 +2816,815 @@ msgid "" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." msgstr "Compartir este nivel baixo a licenza CC-BY-SA 4.0 Internacional (aconsellado).\nPermite modificacións e a súa redistribución por terceiras partes.\nSe non estás de acordo con esta licenza, cámbiaa nas propiedades do nivel.\nADVERTENCIA: Os autores de SuperTux non adquires ningunha responsabilidade pola túa escolla de licenza." -#: src/supertux/menu/worldmap_cheat_menu.cpp:34 -#: src/supertux/menu/cheat_menu.cpp:30 +#: src/supertux/menu/editor_level_select_menu.cpp:179 +msgid "" +"An auto-save recovery file was found. Would you like to restore the recovery\n" +"file and resume where you were before the editor crashed?" +msgstr "Atopouse un ficheiro de recuperación creado automaticamente. Queres restablecer o ficheiro\nde recuperación e continuar onde estabas antes de que o editor se estragase?" + +#: src/supertux/menu/editor_level_select_menu.cpp:186 +msgid "This will delete the auto-save file. Are you sure?" +msgstr "Isto eliminará o ficheiro gardado automaticamente. Continuar?" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:35 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:52 +#: src/supertux/menu/cheat_apply_menu.cpp:33 +#: src/supertux/menu/cheat_apply_menu.cpp:51 +msgid "Apply cheat to player" +msgstr "Aplicar trucos ao xogador" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:60 +#: src/supertux/menu/multiplayer_players_menu.cpp:39 +#: src/supertux/menu/keyboard_menu.cpp:63 +#: src/supertux/menu/cheat_apply_menu.cpp:39 +#: src/supertux/menu/cheat_apply_menu.cpp:59 +#: src/supertux/menu/multiplayer_player_menu.cpp:37 +#, c++-format +msgid "Player {}" +msgstr "Xogador {}" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:57 +#: src/supertux/menu/cheat_apply_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:56 +msgid "All Players" +msgstr "Tódolos xogadores" + +#: src/supertux/menu/worldmap_cheat_menu.cpp:36 +#: src/supertux/menu/cheat_menu.cpp:31 msgid "Cheats" msgstr "Trampas" -#: src/supertux/menu/worldmap_cheat_menu.cpp:36 -#: src/supertux/menu/cheat_menu.cpp:32 +#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:33 msgid "Bonus: Grow" msgstr "Bono: Medrar" -#: src/supertux/menu/worldmap_cheat_menu.cpp:37 -#: src/supertux/menu/cheat_menu.cpp:33 +#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:34 msgid "Bonus: Fire" msgstr "Bono: Lume" -#: src/supertux/menu/worldmap_cheat_menu.cpp:38 -#: src/supertux/menu/cheat_menu.cpp:34 +#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/cheat_menu.cpp:35 msgid "Bonus: Ice" msgstr "Bono: Xeo" -#: src/supertux/menu/worldmap_cheat_menu.cpp:39 -#: src/supertux/menu/cheat_menu.cpp:35 +#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/cheat_menu.cpp:36 msgid "Bonus: Air" msgstr "Bono: Aire" -#: src/supertux/menu/worldmap_cheat_menu.cpp:40 -#: src/supertux/menu/cheat_menu.cpp:36 +#: src/supertux/menu/worldmap_cheat_menu.cpp:42 +#: src/supertux/menu/cheat_menu.cpp:37 msgid "Bonus: Earth" msgstr "Bono: Terra" -#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/worldmap_cheat_menu.cpp:43 msgid "Bonus: None" msgstr "Bono: Ningún" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:51 msgid "Leave Ghost Mode" msgstr "Deixar o Modo Pantasma" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:50 msgid "Activate Ghost Mode" msgstr "Activar o Modo Pantasma" -#: src/supertux/menu/worldmap_cheat_menu.cpp:46 -#: src/supertux/menu/cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:48 +#: src/supertux/menu/cheat_menu.cpp:41 msgid "Finish Level" msgstr "Rematar Nivel" -#: src/supertux/menu/worldmap_cheat_menu.cpp:47 +#: src/supertux/menu/worldmap_cheat_menu.cpp:49 msgid "Reset Level" msgstr "Restablecer Nivel" -#: src/supertux/menu/worldmap_cheat_menu.cpp:49 +#: src/supertux/menu/worldmap_cheat_menu.cpp:51 msgid "Finish Worldmap" msgstr "Rematar Mapa Principal" -#: src/supertux/menu/worldmap_cheat_menu.cpp:50 +#: src/supertux/menu/worldmap_cheat_menu.cpp:52 msgid "Reset Worldmap" msgstr "Restablecer Mapa Principal" -#: src/supertux/menu/worldmap_cheat_menu.cpp:52 +#: src/supertux/menu/worldmap_cheat_menu.cpp:54 msgid "Go to level" msgstr "Ir ó nivel" -#: src/supertux/menu/worldmap_cheat_menu.cpp:53 +#: src/supertux/menu/worldmap_cheat_menu.cpp:55 msgid "Go to main spawnpoint" msgstr "Ir ó punto de inicio principal" -#: src/supertux/menu/worldmap_cheat_menu.cpp:145 +#: src/supertux/menu/worldmap_cheat_menu.cpp:188 msgid "Select level" msgstr "Seleccionar nivel" -#: src/supertux/menu/editor_levelset_select_menu.cpp:54 +#: src/supertux/menu/editor_save_as.cpp:33 +#: src/supertux/menu/editor_menu.cpp:63 +msgid "Save Level as" +msgstr "Gardar Nivel como" + +#: src/supertux/menu/editor_save_as.cpp:33 +#: src/supertux/menu/editor_menu.cpp:64 +msgid "Save Copy" +msgstr "Gardar Copia" + +#: src/supertux/menu/editor_levelset_select_menu.cpp:71 msgid "Choose World" msgstr "Escoller Mundo" -#: src/supertux/menu/editor_levelset_select_menu.cpp:82 -#, c-format -msgid "%d level" -msgid_plural "%d levels" -msgstr[0] "%d nivel" -msgstr[1] "%d niveis" +#: src/supertux/menu/editor_levelset_select_menu.cpp:99 +#, c++-format +msgid "{} level" +msgid_plural "{} levels" +msgstr[0] "{} nivel" +msgstr[1] "{} niveis" -#: src/supertux/menu/editor_levelset_select_menu.cpp:95 +#: src/supertux/menu/editor_levelset_select_menu.cpp:112 msgid "Create World" msgstr "Crear Mundo" -#: src/supertux/menu/options_menu.cpp:85 src/supertux/menu/main_menu.cpp:53 -#: src/supertux/menu/game_menu.cpp:61 src/supertux/menu/worldmap_menu.cpp:31 -msgid "Options" -msgstr "Opcións" +#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:41 +msgid "Delete World" +msgstr "Eliminar Mundo" -#: src/supertux/menu/options_menu.cpp:91 -#: src/supertux/menu/options_menu.cpp:127 -#: src/supertux/menu/options_menu.cpp:418 -#: src/supertux/menu/options_menu.cpp:439 src/editor/object_settings.cpp:112 -msgid "auto" -msgstr "auto" +#: src/supertux/menu/options_menu.cpp:72 +#: src/supertux/menu/options_select_menu.cpp:35 +msgid "Locale" +msgstr "Locale" -#: src/supertux/menu/options_menu.cpp:206 -msgid "Desktop" -msgstr "Escritorio" - -#: src/supertux/menu/options_menu.cpp:332 +#: src/supertux/menu/options_menu.cpp:76 msgid "Select Language" msgstr "Seleccionar Idioma" -#: src/supertux/menu/options_menu.cpp:333 +#: src/supertux/menu/options_menu.cpp:77 msgid "Select a different language to display text in" msgstr "Selecciona un idioma diferente no que amosar o texto" -#: src/supertux/menu/options_menu.cpp:335 +#: src/supertux/menu/options_menu.cpp:79 msgid "Language Packs" msgstr "Paquetes de Idioma" -#: src/supertux/menu/options_menu.cpp:336 +#: src/supertux/menu/options_menu.cpp:80 msgid "Language packs contain up-to-date translations" msgstr "Os paquetes de idioma conteñen traducións actualizadas" -#: src/supertux/menu/options_menu.cpp:338 -#: src/supertux/menu/profile_menu.cpp:30 -msgid "Select Profile" -msgstr "Seleccionar Perfil" - -#: src/supertux/menu/options_menu.cpp:339 -msgid "Select a profile to play with" -msgstr "Selecciona un perfil co que xogar" +#: src/supertux/menu/options_menu.cpp:88 +#: src/supertux/menu/options_select_menu.cpp:37 +msgid "Video" +msgstr "Vídeo" -#: src/supertux/menu/options_menu.cpp:342 +#: src/supertux/menu/options_menu.cpp:91 msgid "Window Resizable" msgstr "Xanela de tamaño axustable" -#: src/supertux/menu/options_menu.cpp:343 +#: src/supertux/menu/options_menu.cpp:92 msgid "Allow window resizing, might require a restart to take effect" msgstr "Permitir o cambio de tamaño da xanela, pode precisar un reinicio para que tome efecto" -#: src/supertux/menu/options_menu.cpp:345 -msgid "Window Resolution" -msgstr "Resolución da Xanela" - -#: src/supertux/menu/options_menu.cpp:346 -msgid "Resize the window to the given size" -msgstr "Cambiar o tamaño da xanela ó tamaño indicado" - -#: src/supertux/menu/options_menu.cpp:348 +#: src/supertux/menu/options_menu.cpp:96 msgid "Fullscreen" msgstr "Pantalla completa" -#: src/supertux/menu/options_menu.cpp:349 +#: src/supertux/menu/options_menu.cpp:97 msgid "Fill the entire screen" msgstr "Enche a pantalla completa" -#: src/supertux/menu/options_menu.cpp:351 -msgid "Fullscreen Resolution" -msgstr "Resolución de Pantalla Completa" +#: src/supertux/menu/options_menu.cpp:104 +msgid "Fit to browser" +msgstr "Axustar ó navegador" -#: src/supertux/menu/options_menu.cpp:352 -msgid "" -"Determine the resolution used in fullscreen mode (you must toggle fullscreen" -" to complete the change)" -msgstr "Determina a resolución utilizada no modo pantalla completa (debes activar a pantalla completa para completar o cambio)" +#: src/supertux/menu/options_menu.cpp:105 +msgid "Fit the resolution to the size of your browser" +msgstr "Axustar a resolución ó tamaño do navegador" -#: src/supertux/menu/options_menu.cpp:354 -msgid "Magnification" -msgstr "Aumento" +#: src/supertux/menu/options_menu.cpp:116 +msgid "Change Video System" +msgstr "Cambiar o Sistema de Vídeo" -#: src/supertux/menu/options_menu.cpp:355 -msgid "Change the magnification of the game area" -msgstr "Cambiar o aumento da área do xogo" - -#: src/supertux/menu/options_menu.cpp:357 -msgid "VSync" -msgstr "VSync" +#: src/supertux/menu/options_menu.cpp:117 +msgid "Change video system used to render graphics" +msgstr "Cambiar o sistema de vídeo empregado para renderizar gráficos." -#: src/supertux/menu/options_menu.cpp:358 -msgid "Set the VSync mode" -msgstr "Establecer o modo VSync " +#: src/supertux/menu/options_menu.cpp:124 +#: src/supertux/menu/options_select_menu.cpp:38 +msgid "Audio" +msgstr "Audio" -#: src/supertux/menu/options_menu.cpp:360 -msgid "Aspect Ratio" -msgstr "Relación de Aspecto" - -#: src/supertux/menu/options_menu.cpp:361 -msgid "Adjust the aspect ratio" -msgstr "Axustar a relación de aspecto" - -#: src/supertux/menu/options_menu.cpp:366 +#: src/supertux/menu/options_menu.cpp:129 msgid "Disable all sound effects" msgstr "Desactivar tódolos efectos de sonido" -#: src/supertux/menu/options_menu.cpp:368 +#: src/supertux/menu/options_menu.cpp:131 msgid "Disable all music" msgstr "Desactivar toda a música" -#: src/supertux/menu/options_menu.cpp:370 -msgid "Sound Volume" -msgstr "Volume do Son" - -#: src/supertux/menu/options_menu.cpp:371 -msgid "Adjust sound volume" -msgstr "Axustar o volume do son" - -#: src/supertux/menu/options_menu.cpp:373 -msgid "Music Volume" -msgstr "Volume da Música" - -#: src/supertux/menu/options_menu.cpp:374 -msgid "Adjust music volume" -msgstr "Axustar o volume da música" - -#: src/supertux/menu/options_menu.cpp:378 +#: src/supertux/menu/options_menu.cpp:138 msgid "Sound (disabled)" msgstr "Son (desactivado)" -#: src/supertux/menu/options_menu.cpp:379 +#: src/supertux/menu/options_menu.cpp:139 msgid "Music (disabled)" msgstr "Música (desactivada)" -#: src/supertux/menu/options_menu.cpp:382 -#: src/supertux/menu/keyboard_menu.cpp:30 +#: src/supertux/menu/options_menu.cpp:147 +#: src/supertux/menu/options_select_menu.cpp:39 +msgid "Controls" +msgstr "Controis" + +#: src/supertux/menu/options_menu.cpp:151 +msgid "Enable Rumbling Controllers" +msgstr "Activar mandos con vibración" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "Enable vibrating the game controllers." +msgstr "Activa a vibración dos mandos do xogo." + +#: src/supertux/menu/options_menu.cpp:152 +msgid "This feature is currently only used in the multiplayer options menu." +msgstr "Esta característica só se utiliza actualmente no menú de opcións multixogador." + +#: src/supertux/menu/options_menu.cpp:154 +#: src/supertux/menu/keyboard_menu.cpp:34 msgid "Setup Keyboard" msgstr "Configurar Teclado" -#: src/supertux/menu/options_menu.cpp:383 +#: src/supertux/menu/options_menu.cpp:155 msgid "Configure key-action mappings" msgstr "Configurar a asignación de teclas de acción" -#: src/supertux/menu/options_menu.cpp:385 -#: src/supertux/menu/joystick_menu.cpp:52 +#: src/supertux/menu/options_menu.cpp:158 +#: src/supertux/menu/joystick_menu.cpp:54 msgid "Setup Joystick" msgstr "Configurar Joystick" -#: src/supertux/menu/options_menu.cpp:386 +#: src/supertux/menu/options_menu.cpp:159 msgid "Configure joystick control-action mappings" msgstr "Configurar a asignación do control de acción do joystick" -#: src/supertux/menu/options_menu.cpp:388 +#: src/supertux/menu/options_menu.cpp:167 +#: src/supertux/menu/options_select_menu.cpp:40 +msgid "Extras" +msgstr "Extras" + +#: src/supertux/menu/options_menu.cpp:170 +#: src/supertux/menu/profile_menu.cpp:56 +msgid "Select Profile" +msgstr "Seleccionar Perfil" + +#: src/supertux/menu/options_menu.cpp:171 +msgid "Select a profile to play with" +msgstr "Selecciona un perfil co que xogar" + +#: src/supertux/menu/options_menu.cpp:174 +msgid "Multiplayer settings" +msgstr "Configuración multixogador" + +#: src/supertux/menu/options_menu.cpp:175 +msgid "Configure settings specific to multiplayer" +msgstr "Configura axustes específicos para o multixogador" + +#: src/supertux/menu/options_menu.cpp:178 msgid "Enable transitions" msgstr "Activar transicións" -#: src/supertux/menu/options_menu.cpp:389 +#: src/supertux/menu/options_menu.cpp:179 msgid "Enable screen transitions and smooth menu animation" msgstr "Permitir transicións de pantalla e animación suave do menú" -#: src/supertux/menu/options_menu.cpp:393 -msgid "Developer Mode" -msgstr "Modo Programador" +#: src/supertux/menu/options_menu.cpp:181 +msgid "Custom title screen levels" +msgstr "Niveis de pantalla de título personalizados" -#: src/supertux/menu/options_menu.cpp:398 +#: src/supertux/menu/options_menu.cpp:182 +msgid "Allow overriding the title screen level, when loading certain worlds" +msgstr "Permitir substituír o nivel da pantalla de título ao cargar certos mundos." + +#: src/supertux/menu/options_menu.cpp:185 msgid "Christmas Mode" msgstr "Modo Nadal" -#: src/supertux/menu/options_menu.cpp:401 +#: src/supertux/menu/options_menu.cpp:187 +msgid "Integrations and presence" +msgstr "Integracións e presencia" + +#: src/supertux/menu/options_menu.cpp:188 +msgid "" +"Manage whether SuperTux should display the levels you play on your social " +"media profiles (Discord)" +msgstr "Xestiona se SuperTux debe amosar os niveis ós que xogas nos perfís das redes sociais (Discord)" + +#: src/supertux/menu/options_menu.cpp:192 +msgid "Customize the appearance of the menus" +msgstr "Personaliza a aparencia dos menús" + +#: src/supertux/menu/options_menu.cpp:199 +#: src/supertux/menu/options_select_menu.cpp:41 +msgid "Advanced" +msgstr "Avanzado" + +#: src/supertux/menu/options_menu.cpp:204 +msgid "Developer Mode" +msgstr "Modo Programador" + +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirmation Dialog" msgstr "Diálogo de Confirmación" -#: src/supertux/menu/options_menu.cpp:401 +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirm aborting level" msgstr "Confirma se queres cancelar o nivel" -#: src/supertux/menu/options_menu.cpp:402 +#: src/supertux/menu/options_menu.cpp:208 msgid "Pause on focus loss" msgstr "Pausa ó perder o foco" +#: src/supertux/menu/options_menu.cpp:209 +msgid "Automatically pause the game when the window loses focus" +msgstr "Poñer en pausa o xogo automaticamente cando cambie a xanela " + +#: src/supertux/menu/options_menu.cpp:211 +msgid "Use custom mouse cursor" +msgstr "Utilizar un cursor do rato personalizado" + +#: src/supertux/menu/options_menu.cpp:211 +msgid "Whether the game renders its own cursor or uses the system's cursor" +msgstr "Se o xogo representa o seu propio cursor ou utiliza o cursor do sistema" + +#: src/supertux/menu/options_menu.cpp:214 +msgid "Check for new releases" +msgstr "Consulta novas versións" + +#: src/supertux/menu/options_menu.cpp:215 +msgid "" +"Allows the game to perform checks for new SuperTux releases on startup and " +"notify if any found." +msgstr "Permite ao xogo realizar comprobacións de novas versións de SuperTux ao iniciarse e notificar se se atopan algunhas." + +#: src/supertux/menu/options_menu.cpp:245 +#: src/supertux/menu/options_menu.cpp:288 src/supertux/direction.cpp:76 +msgid "auto" +msgstr "auto" + +#: src/supertux/menu/options_menu.cpp:281 +msgid "Magnification" +msgstr "Aumento" + +#: src/supertux/menu/options_menu.cpp:282 +msgid "Change the magnification of the game area" +msgstr "Cambiar o aumento da área do xogo" + +#: src/supertux/menu/options_menu.cpp:318 +msgid "Aspect Ratio" +msgstr "Relación de Aspecto" + +#: src/supertux/menu/options_menu.cpp:319 +msgid "Adjust the aspect ratio" +msgstr "Axustar a relación de aspecto" + +#: src/supertux/menu/options_menu.cpp:346 +msgid "Window Resolution" +msgstr "Resolución da Xanela" + +#: src/supertux/menu/options_menu.cpp:347 +msgid "Resize the window to the given size" +msgstr "Cambiar o tamaño da xanela ó tamaño indicado" + +#: src/supertux/menu/options_menu.cpp:377 +msgid "Desktop" +msgstr "Escritorio" + +#: src/supertux/menu/options_menu.cpp:404 +msgid "Fullscreen Resolution" +msgstr "Resolución de Pantalla Completa" + +#: src/supertux/menu/options_menu.cpp:405 +msgid "" +"Determine the resolution used in fullscreen mode (you must toggle fullscreen" +" to complete the change)" +msgstr "Determina a resolución utilizada no modo pantalla completa (debes activar a pantalla completa para completar o cambio)" + +#: src/supertux/menu/options_menu.cpp:411 +msgid "on" +msgstr "aceso" + +#: src/supertux/menu/options_menu.cpp:412 +msgid "off" +msgstr "apagado" + +#: src/supertux/menu/options_menu.cpp:413 +msgid "adaptive" +msgstr "adaptativo" + +#: src/supertux/menu/options_menu.cpp:431 +msgid "VSync" +msgstr "VSync" + +#: src/supertux/menu/options_menu.cpp:432 +msgid "Set the VSync mode" +msgstr "Establecer o modo VSync " + +#: src/supertux/menu/options_menu.cpp:467 +msgid "Sound Volume" +msgstr "Volume do Son" + +#: src/supertux/menu/options_menu.cpp:468 +msgid "Adjust sound volume" +msgstr "Axustar o volume do son" + +#: src/supertux/menu/options_menu.cpp:503 +msgid "Music Volume" +msgstr "Volume da Música" + +#: src/supertux/menu/options_menu.cpp:504 +msgid "Adjust music volume" +msgstr "Axustar o volume da música" + +#: src/supertux/menu/options_menu.cpp:517 +msgid "On-screen controls scale" +msgstr "Escala de controis en pantalla" + +#: src/supertux/menu/options_menu.cpp:638 +msgid "" +"The game couldn't detect your browser resolution.\n" +"This most likely happens because it is not embedded\n" +"in the SuperTux custom HTML template.\n" +msgstr "O xogo non puido detectar a resolución do teu navegador.\nIsto acontece frecuentemente porque non está integrado\nno modelo HTML personalizado de SuperTux.\n" + +#: src/supertux/menu/editor_delete_levelset_menu.cpp:80 +msgid "You cannot delete the world that you are editing" +msgstr "Non podes eliminar o mundo que estás editando" + +#: src/supertux/menu/editor_delete_levelset_menu.cpp:83 +#, c++-format +msgid "You are about to delete world \"{}\". Are you sure?" +msgstr "Estás a piques de eliminar o mundo \"{}\". Estás certo?" + +#: src/supertux/menu/addon_preview_menu.cpp:82 +#, c++-format +msgid "{} \"{}\"" +msgstr "{} \"{}\"" + +#: src/supertux/menu/addon_preview_menu.cpp:87 +msgid "Some information about this add-on is not available." +msgstr "Algunha información sobre este complemento non está dispoñible." + +#: src/supertux/menu/addon_preview_menu.cpp:88 +msgid "Perform a \"Check Online\" to try retrieving it." +msgstr "Realiza un \"Comprobar en liña\" para tentar recuperalo." + +#: src/supertux/menu/addon_preview_menu.cpp:92 +msgid "No author specified." +msgstr "Non se especifica ningún autor." + +#: src/supertux/menu/addon_preview_menu.cpp:92 +#, c++-format +msgid "Author: {}" +msgstr "Autor: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:93 +#, c++-format +msgid "Type: {}" +msgstr "Tipo: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:94 +msgid "No license specified." +msgstr "Non se especifica ningunha licenza." + +#: src/supertux/menu/addon_preview_menu.cpp:94 +#, c++-format +msgid "License: {}" +msgstr "Licenza: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:99 +msgid "Dependencies:" +msgstr "Dependencias:" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Installed" +msgstr "Instalado" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Not installed" +msgstr "Non instalado" + +#: src/supertux/menu/addon_preview_menu.cpp:113 +msgid "Not available!" +msgstr "Non dispoñible!" + +#: src/supertux/menu/addon_preview_menu.cpp:120 +msgid "Description:" +msgstr "Descrición:" + +#: src/supertux/menu/addon_preview_menu.cpp:123 +msgid "No description available." +msgstr "Non hai descrición dispoñible." + +#: src/supertux/menu/addon_preview_menu.cpp:147 +msgid "Failed to load all available screenshot previews." +msgstr "Produciuse un erro ao cargar todas as vistas previas das capturas de pantalla dispoñibles." + +#: src/supertux/menu/addon_preview_menu.cpp:152 +msgid "Show screenshots" +msgstr "Mostrar capturas de pantalla" + +#: src/supertux/menu/addon_preview_menu.cpp:165 +msgid "Screenshot previews are disabled for automatic installs." +msgstr "As vistas previas das capturas de pantalla están desactivadas para as instalacións automáticas." + +#: src/supertux/menu/addon_preview_menu.cpp:169 +msgid "No screenshot previews available." +msgstr "Non hai vistas previas de capturas de pantalla dispoñibles." + +#: src/supertux/menu/addon_preview_menu.cpp:177 +msgid "Install" +msgstr "Instalar" + +#: src/supertux/menu/addon_preview_menu.cpp:190 +msgid "Uninstall" +msgstr "Desinstalar" + +#: src/supertux/menu/addon_preview_menu.cpp:214 +#, c++-format +msgid "Are you sure you want to uninstall \"{}\"?" +msgstr "Estás seguro de que queres desinstalar \"{}\"?" + +#: src/supertux/menu/addon_preview_menu.cpp:215 +msgid "" +"\n" +"Your progress won't be lost." +msgstr "\nO teu progreso non se perderá." + +#: src/supertux/menu/addon_preview_menu.cpp:227 +#, c++-format +msgid "" +"NOTE: The add-on \"{}\" is a dependency of {} other installed {}.\n" +"Are you sure you wish to uninstall?" +msgstr "NOTA: O complemento \"{}\" é unha dependencia de {} outros complementos instalados{}.\nEstás certo de que desexas desinstalar?" + +#: src/supertux/menu/addon_preview_menu.cpp:246 +#, c++-format +msgid "" +"Cannot toggle add-on \"{}\":\n" +"{}" +msgstr "Non se pode alternar o complemento \"{}\":\n{}" + +#: src/supertux/menu/addon_preview_menu.cpp:279 +msgid "Fetching screenshot previews..." +msgstr "Obtendo vistas previas das capturas de pantalla..." + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Updating" +msgstr "Actualizando" + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Downloading" +msgstr "Descargando" + +#: src/supertux/menu/addon_preview_menu.cpp:328 +msgid "Add-on uninstalled successfully." +msgstr "O complemento desinstalouse correctamente." + +#: src/supertux/menu/addon_preview_menu.cpp:333 +#, c++-format +msgid "" +"Error uninstalling add-on:\n" +"{}" +msgstr "Produciuse un erro ao desinstalar o complemento:\n{}" + +#: src/supertux/menu/addon_preview_menu.cpp:361 +msgid "" +"Please restart SuperTux\n" +"for these changes to take effect." +msgstr "Reinicie SuperTux\npara que estes cambios teñan efecto." + #: src/supertux/menu/main_menu.cpp:51 src/supertux/menu/world_set_menu.cpp:28 msgid "Start Game" msgstr "Comezar Xogo" -#: src/supertux/menu/main_menu.cpp:52 src/supertux/menu/addon_menu.cpp:122 +#: src/supertux/menu/main_menu.cpp:55 msgid "Add-ons" msgstr "Complementos" -#: src/supertux/menu/main_menu.cpp:54 src/supertux/menu/editor_menu.cpp:39 +#: src/supertux/menu/main_menu.cpp:57 src/supertux/menu/web_asset_menu.cpp:38 +msgid "Manage Assets" +msgstr "Xestionar Datos" + +#: src/supertux/menu/main_menu.cpp:59 +#: src/supertux/menu/options_select_menu.cpp:29 +#: src/supertux/menu/game_menu.cpp:58 src/supertux/menu/worldmap_menu.cpp:31 +#: src/supertux/menu/editor_menu.cpp:70 +msgid "Options" +msgstr "Opcións" + +#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/editor_menu.cpp:58 msgid "Level Editor" msgstr "Editor de Niveis" -#: src/supertux/menu/main_menu.cpp:55 +#: src/supertux/menu/main_menu.cpp:61 msgid "Credits" msgstr "Créditos" -#: src/supertux/menu/main_menu.cpp:56 +#: src/supertux/menu/main_menu.cpp:64 msgid "Donate" msgstr "Doar" -#: src/supertux/menu/main_menu.cpp:57 +#: src/supertux/menu/main_menu.cpp:67 msgid "Quit" msgstr "Saír" -#: src/supertux/menu/editor_sector_menu.cpp:35 +#: src/supertux/menu/main_menu.cpp:106 +msgid "" +"This will take you to the SuperTux donation page. Are you sure you want to " +"continue?" +msgstr "Isto levaráche á páxina de doazóns de SuperTux. Estás seguro de que queres continuar?" + +#: src/supertux/menu/editor_sector_menu.cpp:34 +#, c++-format +msgid "Sector {}" +msgstr "Sector {}" + +#: src/supertux/menu/editor_sector_menu.cpp:37 msgid "Initialization script" msgstr "Script de iniciación" -#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_sector_menu.cpp:38 msgid "Gravity" msgstr "Gravidade" -#: src/supertux/menu/editor_sector_menu.cpp:41 +#: src/supertux/menu/editor_sector_menu.cpp:43 msgid "Resize offset X" msgstr "Cambiar tamaño da compensación X" -#: src/supertux/menu/editor_sector_menu.cpp:42 +#: src/supertux/menu/editor_sector_menu.cpp:44 msgid "Resize offset Y" msgstr "Cambiar tamaño da compensación Y" -#: src/supertux/menu/editor_sector_menu.cpp:43 +#: src/supertux/menu/editor_sector_menu.cpp:45 msgid "Resize" msgstr "Cambiar o tamaño" -#: src/supertux/menu/profile_menu.cpp:37 -#, c-format -msgid "[Profile %s]" -msgstr "[Perfil %s]" +#: src/supertux/menu/profile_menu.cpp:60 +msgid "No profiles found." +msgstr "Non se atoparon perfís." + +#: src/supertux/menu/profile_menu.cpp:68 +#: src/supertux/menu/profile_menu.cpp:149 +#: src/supertux/menu/profile_menu.cpp:168 +#, c++-format +msgid "Profile {}" +msgstr "Perfil {}" + +#: src/supertux/menu/profile_menu.cpp:69 +#, c++-format +msgid "{} (Profile {})" +msgstr "{} (Perfil {})" + +#: src/supertux/menu/profile_menu.cpp:84 +msgid "No profile selected." +msgstr "Non se seleccionou ningún perfil." + +#: src/supertux/menu/profile_menu.cpp:91 src/supertux/menu/profile_menu.cpp:93 +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Rename" +msgstr "Renomear" + +#: src/supertux/menu/profile_menu.cpp:98 +#: src/supertux/menu/profile_menu.cpp:100 +msgid "Reset" +msgstr "Restablecer" + +#: src/supertux/menu/profile_menu.cpp:103 +#: src/supertux/menu/profile_menu.cpp:105 +msgid "Reset all" +msgstr "Restablecer todo" + +#: src/supertux/menu/profile_menu.cpp:113 +#: src/supertux/menu/profile_menu.cpp:115 +msgid "Delete all" +msgstr "Eliminar todo" + +#: src/supertux/menu/profile_menu.cpp:148 +#, c++-format +msgid "" +"This will reset all game progress on the profile \"{}\".\n" +"Are you sure?" +msgstr "Isto reseteará todo o progreso do xogo no perfil \"{}\".\nEstás seguro/a?" + +#: src/supertux/menu/profile_menu.cpp:157 +msgid "This will reset your game progress on all profiles. Are you sure?" +msgstr "Isto restablecerá o progreso no xogo en tódolos perfís. Estás seguro?" + +#: src/supertux/menu/profile_menu.cpp:167 +#, c++-format +msgid "" +"This will delete the profile \"{}\",\n" +"including all game progress on it. Are you sure?" +msgstr "Isto eliminará o perfil \"{}\", incluíndo todo o progreso do xogo nel. Estás seguro/a?" -#: src/supertux/menu/profile_menu.cpp:41 -#, c-format -msgid "Profile %s" -msgstr "Perfil %s" +#: src/supertux/menu/profile_menu.cpp:178 +msgid "" +"This will delete all profiles, including all game progress on them.\n" +"Are you sure?" +msgstr "Isto eliminará todos os perfís, incluíndo todo o progreso do xogo neles.\nEstás seguro/a?" -#: src/supertux/menu/editor_levelset_menu.cpp:59 +#: src/supertux/menu/editor_levelset_menu.cpp:53 #: src/supertux/menu/editor_new_levelset_menu.cpp:35 msgid "Description" msgstr "Descrición" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:48 -#: data//images/engine/editor/objects.stoi:332 -msgid "Worldmap" -msgstr "Mapa Principal" +#: src/supertux/menu/editor_levelset_menu.cpp:55 +msgid "Title Screen Level" +msgstr "Nivel de pantalla de título" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:45 -msgid "Levelset" -msgstr "Conxunto de niveis" +#: src/supertux/menu/editor_levelset_menu.cpp:56 +msgid "A level to be used for the title screen, after exiting the world." +msgstr "Un nivel para ser usado para a pantalla de título, despois de saír do mundo." -#: src/supertux/menu/addon_menu.cpp:51 -msgid "World" -msgstr "Mundo" +#: src/supertux/menu/multiplayer_players_menu.cpp:46 +msgid "Add Player" +msgstr "Engadir xogador" -#: src/supertux/menu/addon_menu.cpp:54 -msgid "Add-on" -msgstr "Complemento" +#: src/supertux/menu/multiplayer_players_menu.cpp:59 +msgid "Remove Last Player" +msgstr "Eliminar o último xogador" -#: src/supertux/menu/addon_menu.cpp:60 -msgid "Unknown" -msgstr "Descoñecido" +#: src/supertux/menu/multiplayer_players_menu.cpp:62 +msgid "" +"Warning: The player you are trying to\n" +"remove is currently in-game.\n" +"\n" +"Do you wish to remove them anyways?" +msgstr "Aviso: O xogador que estás a intentar \neliminar está actualmente no xogo.\n\nQueres eliminá-lo de todos xeitos?" + +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Language Packs" +msgstr "Paquetes de idioma instalados" + +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Add-ons" +msgstr "Complementos instalados" -#: src/supertux/menu/addon_menu.cpp:71 -#, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" por \"%s\"" +#: src/supertux/menu/addon_menu.cpp:76 src/supertux/menu/addon_menu.cpp:117 +msgid "No language packs installed" +msgstr "Non hai paquetes de idioma instalados" -#: src/supertux/menu/addon_menu.cpp:129 +#: src/supertux/menu/addon_menu.cpp:76 msgid "No Add-ons installed" msgstr "Non hai Complementos instalados" -#: src/supertux/menu/addon_menu.cpp:133 -msgid "No Add-ons found" -msgstr "Non se atoparon Complementos" +#: src/supertux/menu/addon_menu.cpp:124 +#, c++-format +msgid "{} {}*UPDATE*" +msgstr "{} {}*ACTUALIZACIÓN*" -#: src/supertux/menu/addon_menu.cpp:179 -#, c-format -msgid "Install %s *NEW*" -msgstr "Instalar %s *NOVO*" +#: src/supertux/menu/addon_menu.cpp:130 +#, c++-format +msgid "{}{}" +msgstr "{}{}" -#: src/supertux/menu/addon_menu.cpp:190 -#, c-format -msgid "Install %s" -msgstr "Instalar %s" +#: src/supertux/menu/addon_menu.cpp:140 +msgid "No updates available." +msgstr "Non hai actualizacións dispoñibles." -#: src/supertux/menu/addon_menu.cpp:199 -msgid "No new Add-ons found" -msgstr "Non se atoparon Complementos novos" +#: src/supertux/menu/addon_menu.cpp:144 +#, c++-format +msgid "{} {} available" +msgstr "{} {} dispoñibles" -#: src/supertux/menu/addon_menu.cpp:205 -msgid "Check Online (disabled)" -msgstr "Verificar En Liña (desactivado)" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "update" +msgstr "actualizar" -#: src/supertux/menu/addon_menu.cpp:209 -msgid "Check Online" -msgstr "Verificar En Liña" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "updates" +msgstr "actualizacións" -#: src/supertux/menu/addon_menu.cpp:286 -msgid "Downloading Add-On Repository Index" -msgstr "Descargar o Índice do Repositorio de Complementos" +#: src/supertux/menu/addon_menu.cpp:146 +msgid "Check for updates" +msgstr "Comproba se hai actualizacións" -#: src/supertux/menu/addon_menu.cpp:301 -#, c-format -msgid "Downloading %s" -msgstr "Descargando %s" +#: src/supertux/menu/addon_menu.cpp:150 +msgid "Browse language packs" +msgstr "Explorar paquetes de idiomas" -#: src/supertux/menu/addon_menu.cpp:348 -msgid "" -"Please restart SuperTux\n" -"for these changes to take effect." -msgstr "Reinicie SuperTux\npara que estes cambios teñan efecto." +#: src/supertux/menu/addon_menu.cpp:150 +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Add-ons" +msgstr "Explorar complementos" + +#: src/supertux/menu/addon_menu.cpp:151 +msgid "Install from file" +msgstr "Instalar dende o ficheiro" + +#: src/supertux/menu/addon_menu.cpp:208 +msgid "Checking for updates..." +msgstr "Buscando actualizacións..." #: src/supertux/menu/editor_new_levelset_menu.cpp:31 msgid "New World" @@ -1903,217 +3638,302 @@ msgstr "Introduza un nome para este subconxunto de niveis" msgid "Story Mode" msgstr "Modo Historia" -#: src/supertux/menu/game_menu.cpp:31 -msgid "Are you sure?" -msgstr "Estás seguro?" +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Language Packs" +msgstr "Explorar paquetes de idiomas" + +#: src/supertux/menu/addon_browse_menu.cpp:112 +#, c++-format +msgid "Page {}/{}" +msgstr "Páxina {}/{}" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new language packs available" +msgstr "Non hai novos paquetes de idiomas dispoñibles" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new Add-ons available" +msgstr "Non hai novos complementos dispoñibles" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No language packs available" +msgstr "Non hai paquetes de idiomas dispoñibles" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No Add-ons available" +msgstr "Non hai complementos dispoñibles" + +#: src/supertux/menu/addon_browse_menu.cpp:135 +#: src/supertux/menu/addon_browse_menu.cpp:139 +msgid "Previous page" +msgstr "Páxina previa" + +#: src/supertux/menu/addon_browse_menu.cpp:143 +#: src/supertux/menu/addon_browse_menu.cpp:147 +msgid "Next page" +msgstr "Seguinte páxina" + +#: src/supertux/menu/addon_browse_menu.cpp:154 +msgid "Check Online (disabled)" +msgstr "Verificar En Liña (desactivado)" + +#: src/supertux/menu/addon_browse_menu.cpp:158 +msgid "Check Online" +msgstr "Verificar En Liña" + +#: src/supertux/menu/addon_browse_menu.cpp:195 +msgid "Downloading Add-On Repository Index" +msgstr "Descargar o Índice do Repositorio de Complementos" + +#: src/supertux/menu/web_asset_menu.cpp:42 +msgid "New files location" +msgstr "Localización dos novos ficheiros" + +#: src/supertux/menu/web_asset_menu.cpp:43 +msgid "Add Files" +msgstr "Engadir Ficheiros" -#: src/supertux/menu/game_menu.cpp:54 src/supertux/menu/worldmap_menu.cpp:30 +#: src/supertux/menu/web_asset_menu.cpp:44 +msgid "Download Files" +msgstr "Descargar Ficheiros" + +#: src/supertux/menu/particle_editor_open.cpp:32 +msgid "Load particle file" +msgstr "Cargar ficheiro de partícula" + +#: src/supertux/menu/particle_editor_open.cpp:39 +msgid "Open" +msgstr "Abrir" + +#: src/supertux/menu/game_menu.cpp:51 src/supertux/menu/worldmap_menu.cpp:30 msgid "Continue" msgstr "Continuar" -#: src/supertux/menu/game_menu.cpp:55 +#: src/supertux/menu/game_menu.cpp:52 msgid "Restart Level" msgstr "Reiniciar Nivel" -#: src/supertux/menu/game_menu.cpp:58 +#: src/supertux/menu/game_menu.cpp:55 msgid "Restart from Checkpoint" msgstr "Reiniciar dende o Punto de Rescate" -#: src/supertux/menu/game_menu.cpp:63 +#: src/supertux/menu/game_menu.cpp:60 msgid "Abort Level" msgstr "Cancelar Nivel" -#: src/supertux/menu/keyboard_menu.cpp:32 -#: src/supertux/menu/joystick_menu.cpp:69 -msgid "Up" -msgstr "Arriba" +#: src/supertux/menu/game_menu.cpp:76 src/supertux/menu/game_menu.cpp:87 +#: src/supertux/menu/game_menu.cpp:99 +msgid "Are you sure?" +msgstr "Estás seguro?" -#: src/supertux/menu/keyboard_menu.cpp:33 -#: src/supertux/menu/joystick_menu.cpp:70 -msgid "Down" -msgstr "Abaixo" +#: src/supertux/menu/profile_name_menu.cpp:36 +#, c++-format +msgid "Rename \"{}\"" +msgstr "Renomear \"{}\"" -#: src/supertux/menu/keyboard_menu.cpp:34 +#: src/supertux/menu/profile_name_menu.cpp:36 +msgid "Add profile" +msgstr "Engadir perfil" + +#: src/supertux/menu/profile_name_menu.cpp:40 +msgid "Profile names must have a maximum of 20 characters." +msgstr "Os nomes do perfil deben ter un máximo de 20 caracteres." + +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Create" +msgstr "Crear" + +#: src/supertux/menu/profile_name_menu.cpp:56 +msgid "" +"Profile names must have a maximum of 20 characters.\n" +"Please choose a different name." +msgstr "Os nomes do perfil deben ter un máximo de 20 caracteres.\nPor favor, elixe un nome diferente." + +#: src/supertux/menu/profile_name_menu.cpp:77 +msgid "An error occurred while creating the profile." +msgstr "Produciuse un erro ó crear o perfil." + +#: src/supertux/menu/keyboard_menu.cpp:36 #: src/supertux/menu/joystick_menu.cpp:71 -msgid "Left" -msgstr "Esquerda" +msgid "Up" +msgstr "Arriba" -#: src/supertux/menu/keyboard_menu.cpp:35 +#: src/supertux/menu/keyboard_menu.cpp:37 #: src/supertux/menu/joystick_menu.cpp:72 -msgid "Right" -msgstr "Dereita" +msgid "Down" +msgstr "Abaixo" -#: src/supertux/menu/keyboard_menu.cpp:36 -#: src/supertux/menu/joystick_menu.cpp:73 +#: src/supertux/menu/keyboard_menu.cpp:40 +#: src/supertux/menu/joystick_menu.cpp:75 msgid "Jump" msgstr "Saltar" -#: src/supertux/menu/keyboard_menu.cpp:38 -#: src/supertux/menu/joystick_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:43 +#: src/supertux/menu/joystick_menu.cpp:78 msgid "Peek Left" msgstr "Ollar á Esquerda" -#: src/supertux/menu/keyboard_menu.cpp:39 -#: src/supertux/menu/joystick_menu.cpp:77 +#: src/supertux/menu/keyboard_menu.cpp:44 +#: src/supertux/menu/joystick_menu.cpp:79 msgid "Peek Right" msgstr "Ollar á Dereita" -#: src/supertux/menu/keyboard_menu.cpp:40 -#: src/supertux/menu/joystick_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:45 +#: src/supertux/menu/joystick_menu.cpp:80 msgid "Peek Up" msgstr "Ollar Arriba" -#: src/supertux/menu/keyboard_menu.cpp:41 -#: src/supertux/menu/joystick_menu.cpp:79 +#: src/supertux/menu/keyboard_menu.cpp:46 +#: src/supertux/menu/joystick_menu.cpp:81 msgid "Peek Down" msgstr "Ollar Embaixo" -#: src/supertux/menu/keyboard_menu.cpp:43 -#: src/supertux/menu/joystick_menu.cpp:81 +#: src/supertux/menu/keyboard_menu.cpp:51 +#: src/supertux/menu/joystick_menu.cpp:83 msgid "Console" msgstr "Consola" -#: src/supertux/menu/keyboard_menu.cpp:46 -#: src/supertux/menu/joystick_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:52 +#: src/supertux/menu/joystick_menu.cpp:84 msgid "Cheat Menu" msgstr "Menú das Trampas" -#: src/supertux/menu/keyboard_menu.cpp:47 -#: src/supertux/menu/joystick_menu.cpp:83 +#: src/supertux/menu/keyboard_menu.cpp:53 +#: src/supertux/menu/joystick_menu.cpp:85 msgid "Debug Menu" msgstr "Menú da Depuración" -#: src/supertux/menu/keyboard_menu.cpp:49 -#: src/supertux/menu/joystick_menu.cpp:85 +#: src/supertux/menu/keyboard_menu.cpp:56 +#: src/supertux/menu/joystick_menu.cpp:87 msgid "Jump with Up" msgstr "Saltar coa frecha Arriba" -#: src/supertux/menu/keyboard_menu.cpp:62 +#: src/supertux/menu/keyboard_menu.cpp:82 msgid "Up cursor" msgstr "Cursor arriba" -#: src/supertux/menu/keyboard_menu.cpp:64 +#: src/supertux/menu/keyboard_menu.cpp:84 msgid "Down cursor" msgstr "Cursor abaixo" -#: src/supertux/menu/keyboard_menu.cpp:66 +#: src/supertux/menu/keyboard_menu.cpp:86 msgid "Left cursor" msgstr "Cursor esquerdo" -#: src/supertux/menu/keyboard_menu.cpp:68 +#: src/supertux/menu/keyboard_menu.cpp:88 msgid "Right cursor" msgstr "Cursor dereito" -#: src/supertux/menu/keyboard_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:90 msgid "Return" msgstr "Retroceso" -#: src/supertux/menu/keyboard_menu.cpp:72 +#: src/supertux/menu/keyboard_menu.cpp:92 msgid "Space" msgstr "Espazo" -#: src/supertux/menu/keyboard_menu.cpp:74 +#: src/supertux/menu/keyboard_menu.cpp:94 msgid "Right Shift" msgstr "Maiúscula Dereita" -#: src/supertux/menu/keyboard_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:96 msgid "Left Shift" msgstr "Maiúscula Esquerda" -#: src/supertux/menu/keyboard_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:98 msgid "Right Control" msgstr "Control Dereita" -#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/keyboard_menu.cpp:100 msgid "Left Control" msgstr "Control Esquerda" -#: src/supertux/menu/keyboard_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:102 msgid "Right Alt" msgstr "Alt Dereita" -#: src/supertux/menu/keyboard_menu.cpp:84 +#: src/supertux/menu/keyboard_menu.cpp:104 msgid "Left Alt" msgstr "Alt Esquerda" -#: src/supertux/menu/keyboard_menu.cpp:86 +#: src/supertux/menu/keyboard_menu.cpp:106 msgid "Right Command" msgstr "Tecla Orde Dereita" -#: src/supertux/menu/keyboard_menu.cpp:88 +#: src/supertux/menu/keyboard_menu.cpp:108 msgid "Left Command" msgstr "Tecla Orde Esquerda" -#: src/supertux/menu/keyboard_menu.cpp:102 +#: src/supertux/menu/keyboard_menu.cpp:122 msgid "Press Key" msgstr "Preme Tecla" -#: src/supertux/menu/language_menu.cpp:40 +#: src/supertux/menu/language_menu.cpp:43 msgid "Language" msgstr "Idioma" -#: src/supertux/menu/language_menu.cpp:42 +#: src/supertux/menu/language_menu.cpp:45 msgid "" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:55 +#: src/supertux/menu/joystick_menu.cpp:57 msgid "Manual Configuration" msgstr "Configuración Manual" -#: src/supertux/menu/joystick_menu.cpp:57 +#: src/supertux/menu/joystick_menu.cpp:59 msgid "" "Use manual configuration instead of SDL2's automatic GameController support" msgstr "Utiliza a configuración manual en vez da asistencia automática GameController SDL2" -#: src/supertux/menu/joystick_menu.cpp:75 +#: src/supertux/menu/joystick_menu.cpp:77 msgid "Pause/Menu" msgstr "Pausa/Menú" -#: src/supertux/menu/joystick_menu.cpp:91 +#: src/supertux/menu/joystick_menu.cpp:93 msgid "No Joysticks found" msgstr "Non se atoparon Joysticks" -#: src/supertux/menu/joystick_menu.cpp:92 +#: src/supertux/menu/joystick_menu.cpp:94 msgid "Scan for Joysticks" msgstr "Buscar Joysticks" -#: src/supertux/menu/joystick_menu.cpp:125 +#: src/supertux/menu/joystick_menu.cpp:127 msgid "Press Button" msgstr "Premer Botón" -#: src/supertux/menu/joystick_menu.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:164 msgid "Axis " msgstr "Eixo" -#: src/supertux/menu/joystick_menu.cpp:165 +#: src/supertux/menu/joystick_menu.cpp:167 msgid "-" msgstr "-" -#: src/supertux/menu/joystick_menu.cpp:167 +#: src/supertux/menu/joystick_menu.cpp:169 msgid "+" msgstr "+" -#: src/supertux/menu/joystick_menu.cpp:174 +#: src/supertux/menu/joystick_menu.cpp:176 msgid "X2" msgstr "X2" -#: src/supertux/menu/joystick_menu.cpp:176 +#: src/supertux/menu/joystick_menu.cpp:178 msgid "Y2" msgstr "Y2" -#: src/supertux/menu/joystick_menu.cpp:189 +#: src/supertux/menu/joystick_menu.cpp:191 msgid "Hat Up" msgstr "Inclinar Arriba" -#: src/supertux/menu/joystick_menu.cpp:193 +#: src/supertux/menu/joystick_menu.cpp:195 msgid "Hat Down" msgstr "Inclinar Abaixo" -#: src/supertux/menu/joystick_menu.cpp:197 +#: src/supertux/menu/joystick_menu.cpp:199 msgid "Hat Left" msgstr "Inclinar Esquerda" -#: src/supertux/menu/joystick_menu.cpp:201 +#: src/supertux/menu/joystick_menu.cpp:203 msgid "Hat Right" msgstr "Inclinar Dereito" @@ -2121,41 +3941,107 @@ msgstr "Inclinar Dereito" msgid "Pause" msgstr "Pausa" -#: src/supertux/menu/worldmap_menu.cpp:33 -msgid "Leave World" -msgstr "Deixar o Mundo" +#: src/supertux/menu/worldmap_menu.cpp:33 +msgid "Leave World" +msgstr "Deixar o Mundo" + +#: src/supertux/menu/download_dialog.cpp:42 +msgid "Abort Download" +msgstr "Cancelar a Descarga" + +#: src/supertux/menu/download_dialog.cpp:59 +#, c++-format +msgid "" +"Error:\n" +"{}" +msgstr "Erro:\n{}" + +#: src/supertux/menu/cheat_menu.cpp:38 +msgid "Bonus: Star" +msgstr "Bono: Estrela" + +#: src/supertux/menu/cheat_menu.cpp:39 +msgid "Shrink Tux" +msgstr "Encoller a Tux" + +#: src/supertux/menu/cheat_menu.cpp:40 +msgid "Kill Tux" +msgstr "Destruír a Tux" + +#: src/supertux/menu/cheat_menu.cpp:55 +msgid "Prevent Death" +msgstr "Previr a Morte" + +#: src/supertux/menu/addon_file_install_menu.cpp:32 +msgid "Install Add-on from file" +msgstr "Instala o complemento desde o ficheiro" + +#: src/supertux/menu/addon_file_install_menu.cpp:34 +msgid "Drag and drop add-on ZIP archive" +msgstr "Arrastra e solta o arquivo ZIP do complemento" + +#: src/supertux/menu/particle_editor_menu.cpp:32 +msgid "Particle Editor" +msgstr "Editor de Partículas" + +#: src/supertux/menu/particle_editor_menu.cpp:36 +#: src/supertux/menu/editor_menu.cpp:60 +msgid "Return to Editor" +msgstr "Volver ó Editor" + +#: src/supertux/menu/particle_editor_menu.cpp:37 +msgid "New Particle Config" +msgstr "Nova Configuración da Partícula" + +#: src/supertux/menu/particle_editor_menu.cpp:38 +msgid "Save Particle Config" +msgstr "Gardar Configuración da Partícula" + +#: src/supertux/menu/particle_editor_menu.cpp:39 +msgid "Save Particle Config as..." +msgstr "Gardar Configuración da Partícula como..." -#: src/supertux/menu/download_dialog.cpp:27 -msgid "Abort Download" -msgstr "Cancelar a Descarga" +#: src/supertux/menu/particle_editor_menu.cpp:40 +msgid "Load Another Particle Config" +msgstr "Cargar Outra Configuración da Partícula" -#: src/supertux/menu/download_dialog.cpp:42 -msgid "Error:\n" -msgstr "Erro:\n" +#: src/supertux/menu/particle_editor_menu.cpp:44 +msgid "Open Particle Directory" +msgstr "Abrir Directorio da Partícula" -#: src/supertux/menu/download_dialog.cpp:96 -msgid "Close" -msgstr "Pechar" +#: src/supertux/menu/particle_editor_menu.cpp:45 +#: src/supertux/menu/editor_menu.cpp:118 +msgid "Keyboard Shortcuts" +msgstr "Atallos do Teclado" -#: src/supertux/menu/cheat_menu.cpp:37 -msgid "Bonus: Star" -msgstr "Bono: Estrela" +#: src/supertux/menu/particle_editor_menu.cpp:49 +msgid "Exit Particle Editor" +msgstr "Saír do Editor da Partícula" -#: src/supertux/menu/cheat_menu.cpp:38 -msgid "Shrink Tux" -msgstr "Afundir Tux" +#: src/supertux/menu/particle_editor_menu.cpp:121 +msgid "" +"Keyboard Shortcuts:\n" +"---------------------\n" +"Esc = Open Menu\n" +"Ctrl+S = Save\n" +"Ctrl+Shift+S = Save as\n" +"Ctrl+O = Open\n" +"Ctrl+Z = Undo\n" +"Ctrl+Y = Redo" +msgstr "Atallos de Teclado:\n---------------------\nEsc = Abrir Menú\nCtrl+S = Gardar\nCtrl+Shift+S = Gardar coma\nCtrl+O = Abrir\nCtrl+Z = Desfacer\nCtrl+Y = Refacer" -#: src/supertux/menu/cheat_menu.cpp:39 -msgid "Kill Tux" -msgstr "Destruír a Tux" +#: src/supertux/menu/particle_editor_menu.cpp:122 +#: src/supertux/menu/editor_menu.cpp:206 +msgid "Got it!" +msgstr "Conseguido!" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:70 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Worldmap Settings" msgstr "Configuración do Mapa Principal" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:70 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Level Settings" msgstr "Configuración do Nivel" @@ -2163,7 +4049,7 @@ msgstr "Configuración do Nivel" msgid "Author" msgstr "Autor" -#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1129 +#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1253 msgid "Contact" msgstr "Contacto" @@ -2172,106 +4058,152 @@ msgid "License" msgstr "Licenza" #: src/supertux/menu/editor_level_menu.cpp:37 +msgid "Level Note" +msgstr "Nota do Nivel" + +#: src/supertux/menu/editor_level_menu.cpp:38 msgid "Tileset" msgstr "Conxunto de Teselas" -#: src/supertux/menu/editor_level_menu.cpp:40 +#: src/supertux/menu/editor_level_menu.cpp:41 msgid "Target Time" msgstr "Tempo para acadar o Obxectivo" -#: src/supertux/menu/editor_level_menu.cpp:82 +#: src/supertux/menu/editor_level_menu.cpp:83 msgid "Please enter a name for this level." msgstr "Introduce un nome para este nivel." -#: src/supertux/menu/editor_level_menu.cpp:86 +#: src/supertux/menu/editor_level_menu.cpp:87 msgid "Please enter a level author for this level." msgstr "Introduce un autor do nivel para este nivel." -#: src/supertux/menu/editor_level_menu.cpp:90 +#: src/supertux/menu/editor_level_menu.cpp:91 msgid "Please enter a license for this level." msgstr "Introduce unha licenza para este nivel." -#: src/supertux/menu/editor_menu.cpp:34 -msgid "1/8 tile (4px)" -msgstr "1/8 tesela (4px)" - -#: src/supertux/menu/editor_menu.cpp:35 -msgid "1/4 tile (8px)" -msgstr "1/4 tesela (8px)" +#: src/supertux/menu/editor_menu.cpp:53 +msgid "tiny tile (4px)" +msgstr "tesela minúscula (4px)" -#: src/supertux/menu/editor_menu.cpp:36 -msgid "1/2 tile (16px)" -msgstr "1/2 tesela (16px)" +#: src/supertux/menu/editor_menu.cpp:54 +msgid "small tile (8px)" +msgstr "tesela pequena (8px)" -#: src/supertux/menu/editor_menu.cpp:37 -msgid "1 tile (32px)" -msgstr "1 tesela (32px)" +#: src/supertux/menu/editor_menu.cpp:55 +msgid "medium tile (16px)" +msgstr "tesela media (16px)" -#: src/supertux/menu/editor_menu.cpp:41 -msgid "Return to Editor" -msgstr "Volver ó Editor" +#: src/supertux/menu/editor_menu.cpp:56 +msgid "big tile (32px)" +msgstr "tesela grande (32px)" -#: src/supertux/menu/editor_menu.cpp:42 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Worldmap" msgstr "Gardar Mapa Principal" -#: src/supertux/menu/editor_menu.cpp:42 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Level" msgstr "Gardar Nivel" -#: src/supertux/menu/editor_menu.cpp:45 +#: src/supertux/menu/editor_menu.cpp:65 msgid "Test Level" msgstr "Probar Nivel" -#: src/supertux/menu/editor_menu.cpp:49 +#: src/supertux/menu/editor_menu.cpp:67 msgid "Test Worldmap" msgstr "Probar Mapa Principal" -#: src/supertux/menu/editor_menu.cpp:52 +#: src/supertux/menu/editor_menu.cpp:72 msgid "Share Level" msgstr "Compartir Nivel" -#: src/supertux/menu/editor_menu.cpp:54 +#: src/supertux/menu/editor_menu.cpp:74 +msgid "Package Add-On" +msgstr "Empaquetar como extensión" + +#: src/supertux/menu/editor_menu.cpp:76 msgid "Open Level Directory" msgstr "Abrir o Directorio do Nivel" -#: src/supertux/menu/editor_menu.cpp:57 +#: src/supertux/menu/editor_menu.cpp:79 msgid "Edit Another Level" msgstr "Editar Outro Nivel" -#: src/supertux/menu/editor_menu.cpp:60 +#: src/supertux/menu/editor_menu.cpp:81 msgid "Edit Another World" msgstr "Editar Outro Mundo" -#: src/supertux/menu/editor_menu.cpp:64 +#: src/supertux/menu/editor_menu.cpp:86 +msgid "Convert all tiles in the level using converters." +msgstr "Converte todos os bloques do nivel usando conversores." + +#: src/supertux/menu/editor_menu.cpp:90 msgid "Grid Size" msgstr "Tamaño da Grade" -#: src/supertux/menu/editor_menu.cpp:65 +#: src/supertux/menu/editor_menu.cpp:91 msgid "Show Grid" msgstr "Amosar Grade" -#: src/supertux/menu/editor_menu.cpp:66 +#: src/supertux/menu/editor_menu.cpp:92 msgid "Grid Snapping" msgstr "Axuste da Grade" -#: src/supertux/menu/editor_menu.cpp:67 +#: src/supertux/menu/editor_menu.cpp:93 msgid "Render Background" msgstr "Representar Fondo" -#: src/supertux/menu/editor_menu.cpp:68 +#: src/supertux/menu/editor_menu.cpp:94 msgid "Render Light" msgstr "Representar Luz" -#: src/supertux/menu/editor_menu.cpp:72 -msgid "Keyboard Shortcuts" -msgstr "Atallos do Teclado" +#: src/supertux/menu/editor_menu.cpp:95 +msgid "Autotile Mode" +msgstr "Modo de Tesela Automática" + +#: src/supertux/menu/editor_menu.cpp:96 +msgid "Enable Autotile Help" +msgstr "Activar axuda de autoteselado" + +#: src/supertux/menu/editor_menu.cpp:97 +msgid "Enable Object Undo Tracking" +msgstr "Activar o seguimento de desfacer de obxectos" -#: src/supertux/menu/editor_menu.cpp:75 +#: src/supertux/menu/editor_menu.cpp:100 +msgid "Undo Stack Size" +msgstr "Desfacer o tamaño da pila" + +#: src/supertux/menu/editor_menu.cpp:102 +msgid "Autosave Frequency" +msgstr "Frecuencia de Auto-gardado" + +#: src/supertux/menu/editor_menu.cpp:108 +msgid "Check for Deprecated Tiles" +msgstr "Verificar bloques obsoletos" + +#: src/supertux/menu/editor_menu.cpp:109 +msgid "Check if any deprecated tiles are currently present in the level." +msgstr "Comproba se hai algún bloque obsoleto presente actualmente no nivel." + +#: src/supertux/menu/editor_menu.cpp:110 +msgid "Show Deprecated Tiles" +msgstr "Mostrar Bloques Obsoletos" + +#: src/supertux/menu/editor_menu.cpp:111 +msgid "" +"Indicate all deprecated tiles on the active tilemap, without the need of " +"hovering over." +msgstr "Indica todos os bloques obsoletos no mapa de bloques activo, sen necesidade de pasar o rato." + +#: src/supertux/menu/editor_menu.cpp:121 msgid "Exit Level Editor" msgstr "Saír do Editor do Niveis" -#: src/supertux/menu/editor_menu.cpp:122 +#: src/supertux/menu/editor_menu.cpp:170 +msgid "Do you want to package this world as an add-on?" +msgstr "Queres empaquetar este mundo como unha expansión extra?" + +#: src/supertux/menu/editor_menu.cpp:196 msgid "" "We encourage you to share your levels in the SuperTux forum.\n" "To find your level, click the\n" @@ -2279,7 +4211,7 @@ msgid "" "Do you want to go to the forum now?" msgstr "Animámoste a que compartas os teus niveis no foro de SuperTux.\nPara atopar o teu nivel, preme o\nelemento do menú \"Abrir Directorio de Niveis\".\nQueres ir xa ó foro?" -#: src/supertux/menu/editor_menu.cpp:134 +#: src/supertux/menu/editor_menu.cpp:205 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -2290,127 +4222,456 @@ msgid "" "Ctrl+Y = Redo\n" "F6 = Render Light\n" "F7 = Grid Snapping\n" -"F8 = Show Grid" -msgstr "Atallos do Teclado:\n---------------------\nEsc = Abrir Menú\nCtrl+S = Gardar\nCtrl+T = Probar\nCtrl+Z = Desfacer\nCtrl+Y = Refacer\nF6 = Representar a Luz\nF7 = Axuste á Grade\nF8 = Amosar Grade" +"F8 = Show Grid\n" +"Ctrl++ or Ctrl+Scroll Up = Zoom In\n" +"Ctrl+- or Ctrl+Scroll Down = Zoom Out\n" +"Ctrl+D = Reset Zoom\n" +"\n" +"Scripting Shortcuts:\n" +" ------------- \n" +"Home = Go to beginning of line\n" +"End = Go to end of line\n" +"Left arrow = Go back in text\n" +"Right arrow = Go forward in text\n" +"Backspace = Delete in front of text cursor\n" +"Delete = Delete behind text cursor\n" +"Ctrl+X = Cut whole line\n" +"Ctrl+C = Copy whole line\n" +"Ctrl+V = Paste\n" +"Ctrl+D = Duplicate line\n" +"Ctrl+Z = Undo\n" +"Ctrl+Y = Redo" +msgstr "Atallos de teclado:\n---------------------\nEsc = Abrir menú\nCtrl+S = Gardar\nCtrl+T = Probar\nCtrl+Z = Desfacer\nCtrl+Y = Refacer\nF6 = Renderizar luz\nF7 = Axuste á grella\nF8 = Mostrar grella\nCtrl++ ou Ctrl+Rodar arriba = Zoom dentro\nCtrl+- ou Ctrl+Rodar abaixo = Zoom fóra\nCtrl+D = Restablecer zoom\n\nAtallos de escritura:\n---------------------\nInicio = Ir ao comezo da liña\nFin = Ir ao final da liña\nFrecha esquerda = Retroceder no texto\nFrecha dereita = Avanzar no texto\nRetroceso = Eliminar diante do cursor\nSuprimir = Eliminar detrás do cursor\nCtrl+X = Cortar toda a liña\nCtrl+C = Copiar toda a liña\nCtrl+V = Pegar\nCtrl+D = Duplicar liña\nCtrl+Z = Desfacer\nCtrl+Y = Refacer" -#: src/supertux/menu/editor_menu.cpp:135 -msgid "Got it!" -msgstr "Conseguido!" +#: src/supertux/menu/editor_menu.cpp:232 +msgid "Deprecated tiles are still present in the level." +msgstr "Os bloques obsoletos aínda están presentes no nivel." + +#: src/supertux/menu/editor_menu.cpp:239 +msgid "Do you want to show all deprecated tiles on active tilemaps?" +msgstr "Queres mostrar todos os bloques obsoletos nos mapas de bloques ativos?" + +#: src/supertux/menu/editor_menu.cpp:246 +msgid "There are no more deprecated tiles in the level!" +msgstr "Non hai máis bloques obsoletos no nivel!" + +#: src/supertux/menu/multiplayer_player_menu.cpp:40 +msgid "Play with the keyboard" +msgstr "Xogar co teclado" + +#: src/supertux/menu/multiplayer_player_menu.cpp:58 +msgid "Remove Player" +msgstr "Eliminar Xogador" + +#: src/supertux/menu/multiplayer_player_menu.cpp:82 +msgid "Respawn Player" +msgstr "Reiniciar Xogador" -#: src/supertux/levelintro.cpp:136 -#, c-format -msgid "contributed by %s" -msgstr "aportado por %s" +#: src/supertux/menu/multiplayer_player_menu.cpp:108 +msgid "Spawn Player" +msgstr "Crear Xogador" -#: src/supertux/levelintro.cpp:169 +#: src/supertux/menu/multiplayer_player_menu.cpp:136 +msgid "Controllers" +msgstr "Mandos" + +#: src/supertux/menu/multiplayer_player_menu.cpp:152 +msgid "" +"This controller does not support rumbling;\n" +"please check the controllers manually." +msgstr "Este mando non admite vibracións; \ncomproba os mandos manualmente, por favor." + +#: src/supertux/menu/multiplayer_player_menu.cpp:157 +msgid "" +"This SuperTux build does not support rumbling\n" +"controllers; please check the controllers manually." +msgstr "Esta compilación de SuperTux non admite mandos con vibración; \ncomproba os mandos manualmente, por favor." + +#: src/supertux/menu/multiplayer_player_menu.cpp:184 +msgid "" +"This joystick does not support rumbling;\n" +"please check the joysticks manually." +msgstr "Este joystick non admite vibracións; \ncomproba os joysticks manualmente, por favor." + +#: src/supertux/menu/multiplayer_player_menu.cpp:189 +msgid "" +"This SuperTux build does not support rumbling\n" +"joysticks; please check the joysticks manually." +msgstr "Esta compilación de SuperTux non admite joysticks con vibración; \ncomproba os joysticks manualmente, por favor." + +#: src/supertux/menu/editor_delete_level_menu.cpp:59 +msgid "No levels available" +msgstr "Non hai niveis dispoñibles" + +#: src/supertux/menu/editor_delete_level_menu.cpp:79 +msgid "You cannot delete the level that you are editing!" +msgstr "Non podes eliminar o nivel que estas editando!" + +#: src/supertux/menu/editor_delete_level_menu.cpp:82 +#, c++-format +msgid "You are about to delete level \"{}\". Are you sure?" +msgstr "Estás a piques de eliminar o nivel \"{}\". Estás certo?" + +#: src/supertux/levelintro.cpp:137 +#, c++-format +msgid "contributed by {}" +msgstr "aportado por {}" + +#: src/supertux/levelintro.cpp:184 msgid "Badguys killed" msgstr "Tipos malos destruídos" -#: src/supertux/levelintro.cpp:177 +#: src/supertux/levelintro.cpp:192 msgid "Best time" msgstr "Mellor tempo" -#: src/supertux/levelintro.cpp:181 +#: src/supertux/levelintro.cpp:196 msgid "Level target time" msgstr "Tempo para acadar o obxectivo do nivel" -#: src/supertux/tile_set.cpp:92 +#: src/supertux/tile_set.cpp:113 msgid "Others" msgstr "Outros" -#: src/supertux/moving_object.cpp:44 +#: src/supertux/direction.cpp:67 +msgid "up" +msgstr "arriba" + +#: src/supertux/direction.cpp:69 +msgid "down" +msgstr "abaixo" + +#: src/supertux/moving_object.cpp:63 msgid "Region" msgstr "Rexión" +#: src/supertux/main.cpp:801 +#, c++-format +msgid "New release: SuperTux v{}!" +msgstr "Nova versión: SuperTux v{}!" + +#: src/supertux/main.cpp:804 +#, c++-format +msgid "" +"A new release of SuperTux (v{}) is available!\n" +"For more information, you can visit the SuperTux website.\n" +"\n" +"Do you want to visit the website now?" +msgstr "Hai unha nova versión de SuperTux (v{}) dispoñible!\nPara máis información, podes visitar o sitio web de SuperTux.\n\nQueres visitar o sitio web agora?" + +#: src/supertux/main.cpp:815 +msgid "Checking for new releases..." +msgstr "Buscando novos lanzamentos..." + #: src/control/joystick_config.cpp:85 msgid "Joystick Mappings" msgstr "Asignación do Joystick" -#: src/worldmap/worldmap_parser.cpp:167 +#: src/worldmap/sprite_change.cpp:91 +msgid "Stay action" +msgstr "Posición estática" + +#: src/worldmap/sprite_change.cpp:92 +msgid "Initial stay action" +msgstr "Posición estática inicial" + +#: src/worldmap/sprite_change.cpp:93 +msgid "Stay group" +msgstr "Grupo estático" + +#: src/worldmap/sprite_change.cpp:94 +msgid "Change on touch" +msgstr "Cambiar ó tocar" + +#: src/worldmap/special_tile.hpp:36 +msgid "Special Tile" +msgstr "Bloque especial" + +#: src/worldmap/level_tile.hpp:36 src/worldmap/level_tile.cpp:161 +msgid "Level" +msgstr "Nivel" + +#: src/worldmap/teleporter.cpp:50 +msgid "Automatic" +msgstr "Automático" + +#: src/worldmap/teleporter.cpp:51 +msgid "Target worldmap" +msgstr "Mapa principal obxectivo" + +#: src/worldmap/sprite_change.hpp:35 +msgid "Sprite Change" +msgstr "Cambio de gráfico animado \"sprite\"" + +#: src/worldmap/special_tile.cpp:75 +msgid "Show message" +msgstr "Amosar mensaxe" + +#: src/worldmap/level_tile.cpp:84 msgid "" msgstr "" -#: src/editor/node_marker.cpp:79 +#: src/worldmap/level_tile.cpp:162 +msgid "Outro script" +msgstr "Script de saída" + +#: src/worldmap/level_tile.cpp:163 +msgid "Auto play" +msgstr "Reprodución automática" + +#: src/worldmap/level_tile.cpp:164 +msgid "Title colour" +msgstr "Cor do título" + +#: src/worldmap/teleporter.hpp:34 +msgid "Teleporter" +msgstr "Teletransporte" + +#: src/editor/tip.cpp:80 +msgid "" +"This object's current functionality is deprecated.\n" +"Updating to get its latest functionality is recommended." +msgstr "A funcionalidade actual deste obxecto está obsoleta.\nRecoméndase actualizar para obter a súa última funcionalidade." + +#: src/editor/node_marker.cpp:122 msgid "Path Node" msgstr "Nodo do Camiño" -#: src/editor/object_settings.cpp:112 -msgid "up" -msgstr "arriba" +#: src/editor/node_marker.cpp:123 +msgid "Press CTRL to move Bezier handles" +msgstr "Pulsa CTRL para mover os puntos de control Bézier" -#: src/editor/object_settings.cpp:112 -msgid "down" -msgstr "abaixo" +#: src/editor/node_marker.cpp:127 +msgid "Easing" +msgstr "Transición animada" -#: src/editor/object_settings.cpp:124 +#: src/editor/object_settings.cpp:129 msgid "West" msgstr "Oeste" -#: src/editor/object_settings.cpp:124 +#: src/editor/object_settings.cpp:129 msgid "East" msgstr "Leste" -#: src/editor/object_settings.cpp:124 +#: src/editor/object_settings.cpp:129 msgid "North" msgstr "Norte" -#: src/editor/object_settings.cpp:124 +#: src/editor/object_settings.cpp:129 msgid "South" msgstr "Sur" -#: src/editor/object_settings.cpp:137 +#: src/editor/object_settings.cpp:142 msgid "One shot" msgstr "Un tiro" -#: src/editor/object_settings.cpp:137 +#: src/editor/object_settings.cpp:142 msgid "Ping-pong" msgstr "Ping-pong" -#: src/editor/object_settings.cpp:137 +#: src/editor/object_settings.cpp:142 msgid "Circular" msgstr "Circular" -#: src/editor/object_settings.cpp:137 -msgid "Unordered" -msgstr "Desordenado" +#: src/editor/layers_widget.cpp:331 +#, c++-format +msgid "Sector: {}" +msgstr "Sector: {}" -#: src/editor/object_option.cpp:83 +#: src/editor/object_option.cpp:92 msgid "true" msgstr "certo" -#: src/editor/object_option.cpp:83 +#: src/editor/object_option.cpp:92 msgid "false" msgstr "falso" -#: src/editor/object_option.cpp:246 src/editor/object_option.cpp:295 +#: src/editor/object_option.cpp:308 src/editor/object_option.cpp:356 msgid "invalid" msgstr "non válido" -#: src/editor/object_option.cpp:553 +#: src/editor/object_option.cpp:665 +msgid "Scale X" +msgstr "Escala X" + +#: src/editor/object_option.cpp:666 +msgid "Scale Y" +msgstr "Escala Y" + +#: src/editor/object_option.cpp:667 +msgid "Offset X" +msgstr "Desprazamento X" + +#: src/editor/object_option.cpp:668 +msgid "Offset Y" +msgstr "Desprazamento Y" + +#: src/editor/object_option.cpp:672 src/editor/object_menu.cpp:67 msgid "Remove" msgstr "Eliminar" -#: src/editor/worldmap_objects.hpp:56 src/editor/worldmap_objects.cpp:129 -msgid "Level" -msgstr "Nivel" +#: src/editor/object_option.cpp:689 +msgid "Test from here" +msgstr "Probar dende aquí" -#: src/editor/worldmap_objects.hpp:79 -msgid "Teleporter" -msgstr "Teletransporte" +#: src/editor/object_option.cpp:706 +msgid "Open Particle Editor" +msgstr "Abrir o Editor de Partículas" -#: src/editor/worldmap_objects.hpp:119 -msgid "Sprite Change" -msgstr "Cambio de Fada" +#: src/editor/particle_editor.cpp:114 +msgid "Change texture... ->" +msgstr "Cambiar textura... ->" + +#: src/editor/particle_editor.cpp:126 +msgid "Max amount" +msgstr "Cantidade máxima" + +#: src/editor/particle_editor.cpp:142 +msgid "Spawn anywhere" +msgstr "Aparecer en calquera lugar" + +#: src/editor/particle_editor.cpp:143 +msgid "Life duration" +msgstr "Duración de vida" + +#: src/editor/particle_editor.cpp:148 +msgid "Birth duration" +msgstr "Tempo de creación" + +#: src/editor/particle_editor.cpp:153 +msgid "Death duration" +msgstr "Tempo de destrucción" + +#: src/editor/particle_editor.cpp:160 +msgid "Grow" +msgstr "Crecer" + +#: src/editor/particle_editor.cpp:175 +msgid "Horizontal speed" +msgstr "Velocidade horizontal" + +#: src/editor/particle_editor.cpp:180 +msgid "Vertical speed" +msgstr "Velocidade vertical" + +#: src/editor/particle_editor.cpp:185 +msgid "Horizontal acceleration" +msgstr "Aceleración horizontal" + +#: src/editor/particle_editor.cpp:186 +msgid "Vertical acceleration" +msgstr "Aceleración vertical" + +#: src/editor/particle_editor.cpp:187 +msgid "Horizontal friction" +msgstr "Fricción horizontal" + +#: src/editor/particle_editor.cpp:188 +msgid "Vertical friction" +msgstr "Fricción vertical" + +#: src/editor/particle_editor.cpp:190 +msgid "Initial rotation" +msgstr "Rotación inicial" + +#: src/editor/particle_editor.cpp:201 +msgid "Rotation friction/decceleration" +msgstr "Fricción de giro/desaceleración" + +#: src/editor/particle_editor.cpp:211 +msgid "Destroy" +msgstr "Destruír" + +#: src/editor/particle_editor.cpp:215 +msgid "Stick to surface" +msgstr "Pegarse á superficie" + +#: src/editor/particle_editor.cpp:216 +msgid "Stick and stay" +msgstr "Pegarse e quedarse" + +#: src/editor/particle_editor.cpp:217 +msgid "No collision" +msgstr "Sen colisión" + +#: src/editor/particle_editor.cpp:222 +msgid "Always destroy" +msgstr "Destruír sempre" -#: src/editor/worldmap_objects.hpp:140 -msgid "Special tile" -msgstr "Tesela especial" +#: src/editor/particle_editor.cpp:226 +msgid "Offscreen mode" +msgstr "Modo fora da pantalla" -#: src/editor/editor.cpp:477 +#: src/editor/particle_editor.cpp:229 +msgid "Clear" +msgstr "Limpar" + +#: src/editor/particle_editor.cpp:245 +msgid "<- General settings" +msgstr "<- Configuración xeral" + +#: src/editor/particle_editor.cpp:255 +msgid "Likeliness" +msgstr "Probabilidade" + +#: src/editor/particle_editor.cpp:266 +msgid "Color (RGBA)" +msgstr "Color (RGBA)" + +#: src/editor/particle_editor.cpp:311 +msgid "Scale (x, y)" +msgstr "Escala (x, y)" + +#: src/editor/particle_editor.cpp:332 +msgid "Hitbox scale (x, y)" +msgstr "Escala da caixa de colisión (x, y)" + +#: src/editor/particle_editor.cpp:353 +msgid "Hitbox offset relative to scale" +msgstr "Desprazamento da caixa de colisión relativo á escala" + +#: src/editor/particle_editor.cpp:372 +msgid "Change texture..." +msgstr "Cambiar textura..." + +#: src/editor/particle_editor.cpp:766 +msgid "" +"This particle configuration contains unsaved changes,\n" +"do you want to save?" +msgstr "Estos axustes de partícula teñen cambios sen gardar, \nqueres gardar?" + +#: src/editor/particle_editor.cpp:774 +msgid "Save as" +msgstr "Gardar coma" + +#: src/editor/editor.cpp:577 +msgid "" +"This level contains deprecated tiles.\n" +"It is strongly recommended to replace all deprecated tiles\n" +"to avoid loss of compatibility in future versions." +msgstr "Este nivel contén bloques obsoletos.\nRecoméndase encarecidamente substituír todos os bloques obsoletos para evitar a perda de compatibilidade en versións futuras." + +#: src/editor/editor.cpp:579 +msgid "Tip: Turn on \"Show Deprecated Tiles\" from the level editor menu." +msgstr "Consello: Activa \"Mostrar bloques obsoletos\" dende o menú do editor de niveis." + +#: src/editor/editor.cpp:626 +msgid "" +"Don't forget that your levels and assets\n" +"aren't saved between sessions!\n" +"If you want to keep your levels, download them\n" +"from the \"Manage Assets\" menu." +msgstr "Non esquezas que os teus niveles e datos\ngárdanse entre sesións!\nSe queres gardar os niveis, descárgaos\ndende o menú de “Xestionar Datos”." + +#: src/editor/editor.cpp:661 msgid "This level contains unsaved changes, do you want to save?" msgstr "Este nivel contén cambios non gardados, queres gardalos?" -#: src/editor/editor.cpp:517 +#: src/editor/editor.cpp:662 +msgid "This level may contain unsaved changes, do you want to save?" +msgstr "Este nivel pode conter cambios sen gardar, queres gardar?" + +#: src/editor/editor.cpp:797 msgid "" "Some obsolete add-ons are still active\n" "and might cause collisions with default Super Tux structure.\n" @@ -2418,432 +4679,463 @@ msgid "" "Disabling these add-ons will not delete your game progress." msgstr "Algúns complementos obsoletos aínda están activos\ne poden crear colisións coa estrutura predeterminada de Super Tux.\nAínda podes activar estes complementos no menú.\nDesactivar estes complementos non eliminará o teu progreso no xogo." -#: src/editor/editor.cpp:520 +#: src/editor/editor.cpp:800 msgid "Disable add-ons" msgstr "Desactivar complementos" -#: src/editor/editor.cpp:525 +#: src/editor/editor.cpp:805 msgid "Ignore (not advised)" msgstr "Ignorar (non aconsellado)" -#: src/editor/editor.cpp:529 +#: src/editor/editor.cpp:809 msgid "Leave editor" msgstr "Deixar o editor" -#: src/editor/editor.cpp:740 +#: src/editor/editor.cpp:1023 msgid "" "Couldn't find a \"main\" sector.\n" "Please change the name of the sector where\n" "you'd like the player to start to \"main\"" msgstr "Non se puido atopar un sector \"principal\".\nCambia o nome do sector onde\nqueiras que o xogador inicie como \"principal\"" -#: src/editor/editor.cpp:744 +#: src/editor/editor.cpp:1027 msgid "" "Couldn't find a \"main\" spawnpoint.\n" " Please change the name of the spawnpoint where\n" "you'd like the player to start to \"main\"" msgstr "Non se puido atopar un punto de inicio \"principal\".\nCambia o nome do punto de inicio onde\nqueiras que o xogador inicie como \"principal\"" -#: src/editor/worldmap_objects.cpp:130 -msgid "Outro script" -msgstr "Script de saída" - -#: src/editor/worldmap_objects.cpp:131 -msgid "Auto play" -msgstr "Reprodución automática" - -#: src/editor/worldmap_objects.cpp:133 -msgid "Title colour" -msgstr "Cor do título" - -#: src/editor/worldmap_objects.cpp:175 -msgid "Automatic" -msgstr "Automático" - -#: src/editor/worldmap_objects.cpp:177 -msgid "Target worldmap" -msgstr "Mapa principal obxectivo" - -#: src/editor/worldmap_objects.cpp:240 -msgid "Stay action" -msgstr "Posición estática" - -#: src/editor/worldmap_objects.cpp:241 -msgid "Initial stay action" -msgstr "Posición estática inicial" - -#: src/editor/worldmap_objects.cpp:242 -msgid "Stay group" -msgstr "Grupo estático" +#: src/editor/object_menu.cpp:60 +msgid "Patch Notes" +msgstr "Notas do parche" -#: src/editor/worldmap_objects.cpp:243 -msgid "Change on touch" -msgstr "Cambiar ó tocar" - -#: src/editor/worldmap_objects.cpp:273 -msgid "Show message" -msgstr "Amosar mensaxe" - -#: src/editor/worldmap_objects.cpp:275 -msgid "Invisible" -msgstr "Invisible" +#: src/editor/object_menu.cpp:84 +msgid "" +"This will update the object to its latest functionality.\n" +"Check the \"Patch Notes\" for more information.\n" +"\n" +"Keep in mind this is very likely to break the proper behaviour of the object.\n" +"Make sure to re-check any behaviour, related to the object." +msgstr "Isto actualizará o obxecto á súa última funcionalidade.\nConsulta as \"Notas do parche\" para máis información.\n\nTen en conta que isto probablemente afectará o comportamento correcto do obxecto.\nAsegúrate de volver comprobar calquera comportamento relacionado co obxecto." + +#: src/editor/object_menu.cpp:98 +#, c++-format +msgid "Patch notes for v{}:" +msgstr "Notas do parche para v{}:" + +#: src/editor/overlay_widget.cpp:1062 +msgid "Cannot select deprecated tiles" +msgstr "Non se poden seleccionar bloques obsoletos" + +#: src/editor/overlay_widget.cpp:1567 +msgid "Autotile mode is on" +msgstr "O modo de Tesela Automática está activado" + +#: src/editor/overlay_widget.cpp:1571 +msgid "Hold Ctrl to enable autotile" +msgstr "Pulsar a tecla Ctrl para activar a tesela automática" + +#: src/editor/overlay_widget.cpp:1578 +msgid "Autotile erasing mode is on" +msgstr "O modo de borrado de tesela automática está activado" + +#: src/editor/overlay_widget.cpp:1582 +msgid "Selected tile isn't autotileable" +msgstr "A tesela seleccionada non é autoteselable" + +#: src/editor/overlay_widget.cpp:1587 +msgid "Hold Ctrl to enable autotile erasing" +msgstr "Pulsar a tecla Ctrl para activar o borrado da tesela automática" #: data//credits.stxt:25 msgid "Current SuperTux Team" msgstr "Equipo Actual de SuperTux" #: data//credits.stxt:30 -msgid "Programming, project lead ad interim" -msgstr "Programación, líder do proxecto como interino" +msgid "Maintainer, Programming" +msgstr "Mantedor, Programación" #: data//credits.stxt:35 msgid "Graphics, Level Design, Story" msgstr "Gráficos, Deseño de Niveis, Historia" #: data//credits.stxt:40 -msgid "Graphics, Story, Optimisation" -msgstr "Gráficos, Historia, Optimización" +msgid "Level Design, Story, Optimisation, Coordination" +msgstr "Deseño de Niveis, Historia, Optimización, Coordinación" -#: data//credits.stxt:45 data//credits.stxt:100 data//credits.stxt:186 -#: data//credits.stxt:498 +#: data//credits.stxt:45 data//credits.stxt:120 data//credits.stxt:206 +#: data//credits.stxt:538 msgid "Graphics" msgstr "Gráficos" -#: data//credits.stxt:50 data//credits.stxt:60 data//credits.stxt:82 -#: data//credits.stxt:88 +#: data//credits.stxt:50 data//credits.stxt:102 data//credits.stxt:108 msgid "Graphics, Programming, Level Design" msgstr "Gráficos, Programación, Deseño de Niveis" #: data//credits.stxt:55 +msgid "Features and Programming" +msgstr "Funcións e Programación" + +#: data//credits.stxt:60 +msgid "Minor features and programming" +msgstr "Pequenas melloras e programación" + +#: data//credits.stxt:65 +msgid "Programming, Level Updates" +msgstr "Programación, Actualización de Niveis" + +#: data//credits.stxt:70 msgid "Graphics, Programming" msgstr "Gráficos, Programación" -#: data//credits.stxt:65 data//credits.stxt:130 data//credits.stxt:135 -#: data//credits.stxt:140 data//credits.stxt:145 data//credits.stxt:160 -#: data//credits.stxt:165 data//credits.stxt:494 data//credits.stxt:506 +#: data//credits.stxt:75 data//credits.stxt:85 data//credits.stxt:150 +#: data//credits.stxt:155 data//credits.stxt:160 data//credits.stxt:165 +#: data//credits.stxt:180 data//credits.stxt:185 data//credits.stxt:534 +#: data//credits.stxt:546 msgid "Programming" msgstr "Programación" -#: data//credits.stxt:71 +#: data//credits.stxt:80 data//credits.stxt:266 +msgid "Level Design" +msgstr "Deseño de Niveis" + +#: data//credits.stxt:91 msgid "Original Developers" msgstr "Programadores Orixinais" -#: data//credits.stxt:76 +#: data//credits.stxt:96 msgid "Original Developer" msgstr "Programador Orixinal" -#: data//credits.stxt:94 +#: data//credits.stxt:114 msgid "Music, Level Design" msgstr "Música, Deseño de Niveis" -#: data//credits.stxt:106 +#: data//credits.stxt:126 msgid "Programming, Graphics, Level Design" msgstr "Programación, Gráficos, Deseño de Niveis" -#: data//credits.stxt:112 +#: data//credits.stxt:132 msgid "Programming, Level Design" msgstr "Programación, Deseño de Niveis" -#: data//credits.stxt:118 +#: data//credits.stxt:138 msgid "Graphics, Story" msgstr "Gráficos, Historia" -#: data//credits.stxt:124 +#: data//credits.stxt:144 msgid "Programming, Documentation" msgstr "Programación, Documentación" -#: data//credits.stxt:150 +#: data//credits.stxt:170 msgid "Coordination" msgstr "Coordinación" -#: data//credits.stxt:155 +#: data//credits.stxt:175 msgid "Programming, \"Flexlay\" Level editor" msgstr "Programación, Editor de Niveis \"Flexlay\"" -#: data//credits.stxt:170 +#: data//credits.stxt:190 msgid "Windows build fixes" msgstr "Arranxos das compilacións de Windows" -#: data//credits.stxt:175 +#: data//credits.stxt:195 msgid "Packaging, Nightly builds" msgstr "Empaquetado, Compilacións automáticas" -#: data//credits.stxt:180 +#: data//credits.stxt:200 msgid "Translation Guru (and many details anyone else could have done)" msgstr "Gurú da Tradución (e moitos máis detalles que ninguén máis ten feito)" -#: data//credits.stxt:240 -msgid "Level Design" -msgstr "Deseño de Niveis" - -#: data//credits.stxt:414 +#: data//credits.stxt:450 msgid "Additional contributors" msgstr "Colaboradores adicionais" -#: data//credits.stxt:419 +#: data//credits.stxt:455 msgid "Bug fixes" msgstr "Arranxos de erros" -#: data//credits.stxt:423 +#: data//credits.stxt:459 msgid "Scripting functions, Level fixes" msgstr "Funcións de script, Arranxos de niveis" -#: data//credits.stxt:427 +#: data//credits.stxt:463 msgid "Code quality fixes" msgstr "Arranxos da calidade do código" -#: data//credits.stxt:431 data//credits.stxt:435 data//credits.stxt:439 -#: data//credits.stxt:466 +#: data//credits.stxt:467 data//credits.stxt:471 data//credits.stxt:475 +#: data//credits.stxt:502 msgid "Various contributions" msgstr "Contribucións varias" -#: data//credits.stxt:443 +#: data//credits.stxt:479 msgid "Build issue fix" msgstr "Arranxo de incidencia da compilación" -#: data//credits.stxt:447 data//credits.stxt:451 +#: data//credits.stxt:483 data//credits.stxt:487 msgid "Code contributions" msgstr "Contribucións de código" -#: data//credits.stxt:454 +#: data//credits.stxt:490 msgid "Code contribution, AppData file" msgstr "Contribución de código, Ficheiro AppData" -#: data//credits.stxt:458 +#: data//credits.stxt:494 msgid "Bug fix" msgstr "Amaño de erros" -#: data//credits.stxt:462 +#: data//credits.stxt:498 msgid "Menu reorganization" msgstr "Reorganización do Menú" -#: data//credits.stxt:470 +#: data//credits.stxt:506 msgid "Fixing tile bugs" msgstr "Amañar erros das teselas" -#: data//credits.stxt:474 +#: data//credits.stxt:510 msgid "Build error fix" msgstr "Arranxo de erro da compilación" -#: data//credits.stxt:478 +#: data//credits.stxt:514 msgid "Scripting function fix" msgstr "Arranxo da función de script" -#: data//credits.stxt:482 +#: data//credits.stxt:518 +msgid "New features and notable updates" +msgstr "Novas funcións e actualizacións importantes" + +#: data//credits.stxt:522 msgid "Support for \"glbinding\" as optional OpenGL binding" msgstr "Asistencia para \"glbinding\" como vínculo opcional a OpenGL" -#: data//credits.stxt:486 +#: data//credits.stxt:526 msgid "New menu code" msgstr "Código do novo menú" -#: data//credits.stxt:490 +#: data//credits.stxt:530 msgid "Big Tux Walking Sprites improvements" -msgstr "Grandes melloras das Fadas Camiñantes de Tux" +msgstr "Grandes melloras nos Gráficos animados do camiñar de Tux" -#: data//credits.stxt:502 data//credits.stxt:510 +#: data//credits.stxt:542 data//credits.stxt:550 msgid "Contrib Programming" msgstr "Programación de Colaboradores" -#: data//credits.stxt:514 +#: data//credits.stxt:554 msgid "Programming, Previous Maintainer" msgstr "Programación, Encargado de Mantemento Anterior" -#: data//credits.stxt:518 +#: data//credits.stxt:558 msgid "Various Contributions" msgstr "Contribucións Varias" -#: data//credits.stxt:522 data//credits.stxt:526 data//credits.stxt:530 -#: data//credits.stxt:534 data//credits.stxt:538 data//credits.stxt:542 -#: data//credits.stxt:546 data//credits.stxt:550 data//credits.stxt:554 +#: data//credits.stxt:562 data//credits.stxt:566 data//credits.stxt:570 +#: data//credits.stxt:574 data//credits.stxt:578 data//credits.stxt:582 +#: data//credits.stxt:586 data//credits.stxt:590 data//credits.stxt:594 +#: data//credits.stxt:598 data//credits.stxt:602 data//credits.stxt:606 +#: data//credits.stxt:610 data//credits.stxt:614 data//credits.stxt:618 +#: data//credits.stxt:622 data//credits.stxt:626 data//credits.stxt:630 +#: data//credits.stxt:634 data//credits.stxt:638 data//credits.stxt:642 +#: data//credits.stxt:646 data//credits.stxt:650 data//credits.stxt:654 +#: data//credits.stxt:658 data//credits.stxt:662 msgid "Contributions" msgstr "Colaboracións" -#: data//credits.stxt:560 +#: data//credits.stxt:668 msgid "Localization" msgstr "Localización" -#: data//credits.stxt:1107 +#: data//credits.stxt:1231 msgid " Special Thanks to" msgstr "Agradecemento Especial a" -#: data//credits.stxt:1112 +#: data//credits.stxt:1236 msgid "Creator of Tux, the Linux penguin" msgstr "Creador de Tux, o pingüín de Linux" -#: data//credits.stxt:1116 +#: data//credits.stxt:1240 msgid "SDL, OpenAL and OpenGL" msgstr "SDL, OpenAL e OpenGL" -#: data//credits.stxt:1117 +#: data//credits.stxt:1241 msgid "" "For making such a great gaming experience\n" " possible on Linux" msgstr "Por facer posible esta gran experiencia de xogo\nen Linux" -#: data//credits.stxt:1122 +#: data//credits.stxt:1246 msgid "and you, the player" msgstr "e a ti, o xogador" -#: data//credits.stxt:1123 +#: data//credits.stxt:1247 msgid "for giving this game a chance and playing it" msgstr "por darlle unha oportunidade e xogar con el" -#: data//credits.stxt:1134 +#: data//credits.stxt:1258 msgid "Visit our webpage at" msgstr "Visita a nosa páxina web en" -#: data//credits.stxt:1143 +#: data//credits.stxt:1267 msgid "Or visit us directly at IRC:" msgstr "Ou visítanos directamente no IRC:" -#: data//credits.stxt:1147 -msgid "#supertux at webchat.freenode.net" -msgstr "#supertux en webchat.freenode.net" +#: data//credits.stxt:1271 +msgid "#supertux at web.libera.chat" +msgstr "#supertux en web.libera.chat" -#: data//credits.stxt:1152 +#: data//credits.stxt:1276 msgid "Or at our Forum:" msgstr "Ou no Foro:" -#: data//credits.stxt:1161 +#: data//credits.stxt:1285 msgid "Comments, ideas and suggestions" msgstr "Comentarios, ideas e suxerencias" -#: data//credits.stxt:1165 +#: data//credits.stxt:1289 msgid "go to our mailing list" msgstr "vai á nosa lista de correo" #. l10n: typo contact -#: data//credits.stxt:1175 +#: data//credits.stxt:1299 msgid "Typographical errors can be" msgstr "Os erros tipográficos poden" #. l10n: typo contact -#: data//credits.stxt:1180 +#: data//credits.stxt:1304 msgid "reported to" msgstr "informarse en" #. l10n: typo contact, see -#: data//credits.stxt:1185 +#: data//credits.stxt:1309 msgid "supertux-devel@lists.lethargik.org" msgstr "supertux-devel@lists.lethargik.org" -#: data//credits.stxt:1192 +#: data//credits.stxt:1316 msgid "Want to help…" msgstr "Queres axudar..." -#: data//credits.stxt:1197 +#: data//credits.stxt:1321 msgid "…with localization?" msgstr "...coa localización?" -#: data//credits.stxt:1207 +#: data//credits.stxt:1331 msgid "…with something else?" msgstr "...con algo máis?" -#: data//credits.stxt:1218 +#: data//credits.stxt:1342 msgid "Thank you for" msgstr "Grazas por" -#: data//credits.stxt:1222 +#: data//credits.stxt:1346 msgid "playing" msgstr "xogar" -#: data//credits.stxt:1232 +#: data//credits.stxt:1356 msgid "Penny awaits you in warmer temperatures!" msgstr "Penny agárdate en temperaturas máis cálidas!" -#: data//images/engine/editor/objects.stoi:156 +#: data//images/engine/editor/objects.stoi:4 +msgid "Enemies" +msgstr "Inimigos" + +#: data//images/engine/editor/objects.stoi:162 msgid "Bosses" msgstr "Xefes" -#: data//images/engine/editor/objects.stoi:167 +#: data//images/engine/editor/objects.stoi:173 msgid "Projectiles" msgstr "Proxectís" -#: data//images/engine/editor/objects.stoi:181 +#: data//images/engine/editor/objects.stoi:184 msgid "Environment" msgstr "Ambiente" -#: data//images/ice_world.strf:6 data//images/tiles.strf:327 -#: data//images/worldmap.strf:67 -msgid "Forest" -msgstr "Bosque" - -#: data//images/ice_world.strf:106 +#: data//images/ice_world.strf:80 msgid "Ice Cave & Crystal" msgstr "Cova de Xeo & Cristal" -#: data//images/ice_world.strf:153 +#: data//images/ice_world.strf:127 msgid "Embellishments" msgstr "Adornos" -#: data//images/ice_world.strf:237 -msgid "Ice" -msgstr "Xeo" +#: data//images/ice_world.strf:320 +msgid "Underground Forest" +msgstr "Bosque Subterráneo" -#: data//images/ice_world.strf:282 data//images/tiles.strf:693 -msgid "Castle" -msgstr "Castelo" +#: data//images/ice_world.strf:375 +msgid "Trees & Bushes" +msgstr "Árbores & Arbustos" + +#: data//images/ice_world.strf:406 +msgid "Seasonal" +msgstr "Estacional" -#: data//images/ice_world.strf:328 +#: data//images/ice_world.strf:496 +msgid "Structure" +msgstr "Estrutura" + +#: data//images/ice_world.strf:557 msgid "Pathing" msgstr "Camiñar" -#: data//images/ice_world.strf:424 +#: data//images/ice_world.strf:718 msgid "Water" msgstr "Auga" -#: data//images/tiles.strf:19 data//images/worldmap.strf:41 -msgid "Snow" -msgstr "Neve" - -#: data//images/tiles.strf:124 +#: data//images/tiles.strf:252 msgid "Snow Background" msgstr "Fondo de Neve" -#: data//images/tiles.strf:162 -msgid "Snow Mountain" -msgstr "Montaña Nevada" - -#: data//images/tiles.strf:236 +#: data//images/tiles.strf:300 msgid "Crystal" msgstr "Cristal" -#: data//images/tiles.strf:457 +#: data//images/tiles.strf:539 msgid "Forest Background" msgstr "Fondo de Bosque" -#: data//images/tiles.strf:572 +#: data//images/tiles.strf:690 +msgid "Corrupted Forest" +msgstr "Bosque corrupto" + +#: data//images/tiles.strf:868 +msgid "Corrupted Background" +msgstr "Fondo corrompido" + +#: data//images/tiles.strf:991 msgid "Block + Bonus" msgstr "Bloque + Bono" -#: data//images/tiles.strf:618 +#: data//images/tiles.strf:1069 msgid "Pole + Signs" msgstr "Signos de Polo +" -#: data//images/tiles.strf:661 +#: data//images/tiles.strf:1113 msgid "Liquid" msgstr "Líquido" -#: data//images/tiles.strf:833 data//images/worldmap.strf:199 +#: data//images/tiles.strf:1131 +msgid "Castle" +msgstr "Castelo" + +#: data//images/tiles.strf:1231 data//images/worldmap.strf:199 msgid "Halloween" msgstr "Halloween" -#: data//images/tiles.strf:861 +#: data//images/tiles.strf:1272 msgid "Industrial" msgstr "Industrial" -#: data//images/tiles.strf:876 +#: data//images/tiles.strf:1287 msgid "Unisolid + Lightmap" msgstr "Unisolid + Mapa de Luz" -#: data//images/tiles.strf:893 +#: data//images/tiles.strf:1314 msgid "Miscellaneous" msgstr "Miscelánea" -#: data//images/tiles.strf:927 -msgid "Old/Unused" -msgstr "Antigo/Non utilizado" +#: data//images/tiles.strf:1342 +msgid "Retro Tiles" +msgstr "Bloques retro" #: data//images/worldmap.strf:24 msgid "Water paths" @@ -2856,3 +5148,19 @@ msgstr "Camiños do castelo" #: data//images/worldmap.strf:135 msgid "Darker Forest" msgstr "O Bosque Máis Escuro" + +#: data//images/converters/data.stcd:3 +msgid "Nightly Tiles" +msgstr "bloques nocturnos (nightly)" + +#: data//images/converters/data.stcd:5 +msgid "For levels, created in previous Nightly builds." +msgstr "Para niveis, creados en compilacións nocturnas (nightly) anteriores." + +#: data//images/converters/data.stcd:8 +msgid "Pre-0.6.3 Crystal Tiles" +msgstr "Bloques de cristal anteriores á versión -0.6.3" + +#: data//images/converters/data.stcd:10 +msgid "For levels, created in pre-0.6.3 versions, which use crystal tiles." +msgstr "Para niveis creados en versións anteriores á -0.6.3, que usan bloques de cristal." diff --git a/data/locale/he.po b/data/locale/he.po index 1312a85796d..e4542492204 100644 --- a/data/locale/he.po +++ b/data/locale/he.po @@ -1771,8 +1771,8 @@ msgstr "לחץ על Escape כדי לדלג" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "שימוש: %s [OPTIONS] [LEVELFILE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "שימוש: {} [OPTIONS] [LEVELFILE]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2497,13 +2497,13 @@ msgstr "שינוי גודל" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[פרופיל %s]" +msgid "[Profile {}]" +msgstr "[פרופיל {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "פרופיל %s" +msgid "Profile {}" +msgstr "פרופיל {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2551,8 +2551,8 @@ msgstr "לא ידוע" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" על ידי \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" על ידי \"{}\"" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2564,13 +2564,13 @@ msgstr "לא נמצאו תוספים" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "התקנת %s *חדש*" +msgid "Install {} *NEW*" +msgstr "התקנת {} *חדש*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "התקנת %s" +msgid "Install {}" +msgstr "התקנת {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2590,8 +2590,8 @@ msgstr "בהורדת אינדקס מאגר תוספים" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "בהורדת %s" +msgid "Downloading {}" +msgstr "בהורדת {}" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3104,8 +3104,8 @@ msgstr "אתה לא יכול למחוק את הרמה שאתה עורך!" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "נוצר על ידי %s" +msgid "contributed by {}" +msgstr "נוצר על ידי {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/hi_IN.po b/data/locale/hi_IN.po index 12862a8f611..26d33883183 100644 --- a/data/locale/hi_IN.po +++ b/data/locale/hi_IN.po @@ -1048,7 +1048,7 @@ msgstr "" #: src/supertux/command_line_arguments.cpp:79 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" msgstr "" #: src/supertux/command_line_arguments.cpp:80 @@ -1221,7 +1221,7 @@ msgstr "" #: src/supertux/levelintro.cpp:120 #, c-format -msgid "contributed by %s" +msgid "contributed by {}" msgstr "" #: src/supertux/levelintro.cpp:141 src/supertux/statistics.cpp:119 @@ -1262,7 +1262,7 @@ msgstr "" #: src/supertux/menu/addon_menu.cpp:83 #, c-format -msgid "%s \"%s\" by \"%s\"" +msgid "{} \"{}\" by \"{}\"" msgstr "" #: src/supertux/menu/addon_menu.cpp:139 @@ -1299,12 +1299,12 @@ msgstr "" #: src/supertux/menu/addon_menu.cpp:224 #, c-format -msgid "Install %s *NEW*" +msgid "Install {} *NEW*" msgstr "" #: src/supertux/menu/addon_menu.cpp:235 #, c-format -msgid "Install %s" +msgid "Install {}" msgstr "" #: src/supertux/menu/addon_menu.cpp:246 @@ -1344,7 +1344,7 @@ msgstr "" #: src/supertux/menu/addon_menu.cpp:361 #, c-format -msgid "Downloading %s" +msgid "Downloading {}" msgstr "" #: src/supertux/menu/addon_menu.cpp:408 @@ -2001,12 +2001,12 @@ msgstr "" #: src/supertux/menu/profile_menu.cpp:37 #, c-format -msgid "[Profile %s]" +msgid "[Profile {}]" msgstr "" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "Profile %s" +msgid "Profile {}" msgstr "" #: src/supertux/menu/world_set_menu.cpp:41 diff --git a/data/locale/hr.po b/data/locale/hr.po index c89338339b3..fc5a7f1b2c9 100644 --- a/data/locale/hr.po +++ b/data/locale/hr.po @@ -1766,8 +1766,8 @@ msgstr "Pritisnite Escape za preskakanje" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Upotreba: %s [OPTIONS] [LEVELFILE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Upotreba: {} [OPTIONS] [LEVELFILE]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2491,13 +2491,13 @@ msgstr "Promjena veličine" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[Profil %s]" +msgid "[Profile {}]" +msgstr "[Profil {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "Profil %s" +msgid "Profile {}" +msgstr "Profil {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2545,8 +2545,8 @@ msgstr "Nepoznato" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" od \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" od \"{}\"" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2558,13 +2558,13 @@ msgstr "Nema pronađenih dodataka" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "Instalirajte %s *NOVO*" +msgid "Install {} *NEW*" +msgstr "Instalirajte {} *NOVO*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Instalirajte %s" +msgid "Install {}" +msgstr "Instalirajte {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2584,8 +2584,8 @@ msgstr "Preuzimanje indeksa repozitorija dodataka" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "Preuzimanje %s" +msgid "Downloading {}" +msgstr "Preuzimanje {}" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3098,8 +3098,8 @@ msgstr "Ne možete izbrisati razinu koju uređujete!" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "Doprinosi od %s" +msgid "contributed by {}" +msgstr "Doprinosi od {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/hu.po b/data/locale/hu.po index da0d5187584..bd9eaaf347b 100644 --- a/data/locale/hu.po +++ b/data/locale/hu.po @@ -1189,8 +1189,8 @@ msgstr "Ismeretlen elem" #: src/supertux/command_line_arguments.cpp:74 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Használat: %s [BEÁLLÍTÁSOK] [PÁLYAFÁJL]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Használat: {} [BEÁLLÍTÁSOK] [PÁLYAFÁJL]" #: src/supertux/command_line_arguments.cpp:75 msgid "General Options:" @@ -1817,13 +1817,13 @@ msgstr "Átméretezés" #: src/supertux/menu/profile_menu.cpp:37 #, c-format -msgid "[Profile %s]" -msgstr "[Profil %s]" +msgid "[Profile {}]" +msgstr "[Profil {}]" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "Profile %s" -msgstr "Profil %s" +msgid "Profile {}" +msgstr "Profil {}" #: src/supertux/menu/editor_levelset_menu.cpp:59 #: src/supertux/menu/editor_new_levelset_menu.cpp:35 @@ -1855,8 +1855,8 @@ msgstr "Ismeretlen" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\", \"%s\" által" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\", \"{}\" által" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -1868,13 +1868,13 @@ msgstr "Nem találhatóak kiegészítők" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "%s telepítése *ÚJ*" +msgid "Install {} *NEW*" +msgstr "{} telepítése *ÚJ*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "%s telepítése" +msgid "Install {}" +msgstr "{} telepítése" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -1894,8 +1894,8 @@ msgstr "Kiegészítő-gyűjtemény jegyzékének letöltése" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "%s letöltése" +msgid "Downloading {}" +msgstr "{} letöltése" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -2311,8 +2311,8 @@ msgstr "Értem!" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "%s hozzájárulása" +msgid "contributed by {}" +msgstr "{} hozzájárulása" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/hy.po b/data/locale/hy.po index be02f966713..ac52f64777d 100644 --- a/data/locale/hy.po +++ b/data/locale/hy.po @@ -1766,8 +1766,8 @@ msgstr "Բաց թողնելու համար սեղմեք Escape" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Օգտագործում՝: %s [OPTIONS] [LEVELFILE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Օգտագործում՝: {} [OPTIONS] [LEVELFILE]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2490,13 +2490,13 @@ msgstr "Չափափոխել" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[Պրոֆիլ %s]" +msgid "[Profile {}]" +msgstr "[Պրոֆիլ {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "Անձնագիր %s" +msgid "Profile {}" +msgstr "Անձնագիր {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2544,8 +2544,8 @@ msgstr "Անհայտ" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" կողմից \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" կողմից \"{}\"" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2557,13 +2557,13 @@ msgstr "Հավելումներ չեն գտնվել" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "Տեղադրեք %s *ՆՈՐ*" +msgid "Install {} *NEW*" +msgstr "Տեղադրեք {} *ՆՈՐ*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Տեղադրեք %s" +msgid "Install {}" +msgstr "Տեղադրեք {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2583,8 +2583,8 @@ msgstr "Լրացուցիչ պահեստի ինդեքսը ներբեռնվում #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "Ներբեռնում %s" +msgid "Downloading {}" +msgstr "Ներբեռնում {}" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3097,8 +3097,8 @@ msgstr "Դուք չեք կարող ջնջել այն մակարդակը, որը #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "նպաստել է %s" +msgid "contributed by {}" +msgstr "նպաստել է {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/id.po b/data/locale/id.po index d46b85eb5df..ac77c1290ce 100644 --- a/data/locale/id.po +++ b/data/locale/id.po @@ -1769,8 +1769,8 @@ msgstr "Tekan escape untuk melewati" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Penggunaan: %s [OPSI] [BERKASLEVEL]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Penggunaan: {} [OPSI] [BERKASLEVEL]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2492,13 +2492,13 @@ msgstr "Ganti ukuran" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[Profil %s]" +msgid "[Profile {}]" +msgstr "[Profil {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "Profil %s" +msgid "Profile {}" +msgstr "Profil {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2546,8 +2546,8 @@ msgstr "Tak Diketahui" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" oleh \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" oleh \"{}\"" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2559,13 +2559,13 @@ msgstr "Tak ada Add-on ditemukan" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "Pasang %s *BARU*" +msgid "Install {} *NEW*" +msgstr "Pasang {} *BARU*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Pasang %s" +msgid "Install {}" +msgstr "Pasang {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2585,8 +2585,8 @@ msgstr "Mengunduh Indeks Repositori Add-On" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "Mengunduh %s" +msgid "Downloading {}" +msgstr "Mengunduh {}" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3099,8 +3099,8 @@ msgstr "Anda tidak dapat menghapus level yang sedang Anda edit!" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "kontribusi oleh %s" +msgid "contributed by {}" +msgstr "kontribusi oleh {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/is.po b/data/locale/is.po index b466de14f5a..948e63cc0d2 100644 --- a/data/locale/is.po +++ b/data/locale/is.po @@ -1766,8 +1766,8 @@ msgstr "Ýttu á Escape til að sleppa" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Notkun: %s [OPTIONS] [LEVELFILE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Notkun: {} [OPTIONS] [LEVELFILE]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2490,13 +2490,13 @@ msgstr "Breyta stærð" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[Prófíll %s]" +msgid "[Profile {}]" +msgstr "[Prófíll {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "Prófíll %s" +msgid "Profile {}" +msgstr "Prófíll {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2544,8 +2544,8 @@ msgstr "Óþekktur" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s\"%s\" hjá \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{}\"{}\" hjá \"{}\"" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2557,13 +2557,13 @@ msgstr "Engar viðbætur fundust" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "Settu upp %s *NÝTT*" +msgid "Install {} *NEW*" +msgstr "Settu upp {} *NÝTT*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Settu upp %s" +msgid "Install {}" +msgstr "Settu upp {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2583,8 +2583,8 @@ msgstr "Hleður niður vísitölu viðbótargagnageymslu" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "Niðurhal %s" +msgid "Downloading {}" +msgstr "Niðurhal {}" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3097,8 +3097,8 @@ msgstr "Þú getur ekki eytt stigi sem þú ert að breyta!" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "lagt af %s" +msgid "contributed by {}" +msgstr "lagt af {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/it.po b/data/locale/it.po index 4d6f997e904..08620800806 100644 --- a/data/locale/it.po +++ b/data/locale/it.po @@ -4,15 +4,19 @@ # # Translators: # Angela , 2014-2015 +# A-TNT DC, 2021 # Benjamin Leduc , 2015 +# A-TNT DC, 2021 # Gianfranco Del Borrello , 2016 # Iknos , 2004 +# Ioma Taani, 2019-2020 # Ioma Taani, 2015 # Irene Di Rosa, 2014 -# Marcello Bolognesi, 2013-2015 +# 17c2573a89e395c6dd973e5d003db498_36e4c1e, 2013-2015 +# PoketMarty, 2024 # Ioma Taani, 2018 # Ioma Taani, 2018 -# Seb47TV , 2016 +# Seb47 , 2016 # Simone Centonze , 2018 # William Beltrán , 2016 # William Beltrán , 2016 @@ -20,612 +24,973 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2019-11-24 01:44+0100\n" -"PO-Revision-Date: 2019-12-09 16:23+0000\n" -"Last-Translator: ginoingras \n" -"Language-Team: Italian (http://www.transifex.com/arctic-games/supertux/language/it/)\n" +"POT-Creation-Date: 2024-05-30 16:19+0200\n" +"PO-Revision-Date: 2013-08-10 22:56+0000\n" +"Last-Translator: PoketMarty, 2024\n" +"Language-Team: Italian (http://app.transifex.com/arctic-games/supertux/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: src/trigger/secretarea_trigger.cpp:53 src/trigger/secretarea_trigger.cpp:61 +#: src/trigger/secretarea_trigger.cpp:47 msgid "You found a secret area!" msgstr "Hai trovato un'area segreta!" -#: src/trigger/secretarea_trigger.cpp:77 src/trigger/scripttrigger.cpp:75 -#: src/supertux/game_object.cpp:88 src/supertux/menu/editor_sector_menu.cpp:34 -#: src/supertux/menu/editor_levelset_menu.cpp:58 +#: src/trigger/secretarea_trigger.cpp:55 src/supertux/game_object.cpp:115 +#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_levelset_menu.cpp:52 #: src/supertux/menu/editor_new_levelset_menu.cpp:34 +#: src/supertux/menu/profile_name_menu.cpp:39 #: src/supertux/menu/editor_level_menu.cpp:33 msgid "Name" msgstr "Nome" -#: src/trigger/secretarea_trigger.cpp:78 +#: src/trigger/secretarea_trigger.cpp:56 msgid "Fade tilemap" -msgstr "Sbiadisci tilemap" +msgstr "Sbiadisci mappa caselle" -#: src/trigger/secretarea_trigger.cpp:79 src/trigger/climbable.cpp:81 -#: src/object/infoblock.cpp:57 src/editor/worldmap_objects.cpp:174 -#: src/editor/worldmap_objects.cpp:272 +#: src/trigger/secretarea_trigger.cpp:57 src/trigger/climbable.cpp:59 +#: src/object/infoblock.cpp:76 src/worldmap/teleporter.cpp:49 +#: src/worldmap/special_tile.cpp:74 msgid "Message" msgstr "Messaggio" -#: src/trigger/secretarea_trigger.cpp:80 src/trigger/scripttrigger.cpp:80 -#: src/trigger/door.cpp:73 src/object/ispy.cpp:67 -#: src/object/bonus_block.cpp:201 src/object/bonus_block.cpp:205 -#: src/object/pushbutton.cpp:49 src/object/powerup.cpp:188 -#: src/editor/worldmap_objects.cpp:274 +#: src/trigger/secretarea_trigger.cpp:58 src/trigger/scripttrigger.cpp:51 +#: src/trigger/door.cpp:79 src/object/ispy.cpp:53 +#: src/object/bonus_block.cpp:264 src/object/bonus_block.cpp:268 +#: src/object/pushbutton.cpp:62 src/object/powerup.cpp:301 +#: src/worldmap/special_tile.cpp:76 msgid "Script" msgstr "Script" -#: src/trigger/scripttrigger.cpp:73 -msgid "Script Trigger" -msgstr "" - -#: src/trigger/scripttrigger.cpp:76 src/object/tilemap.cpp:219 -#: src/supertux/menu/editor_sector_menu.cpp:39 -#: src/editor/object_option.cpp:148 -msgid "Width" -msgstr "Larghezza" - -#: src/trigger/scripttrigger.cpp:77 src/object/tilemap.cpp:220 -#: src/supertux/menu/editor_sector_menu.cpp:40 -#: src/editor/object_option.cpp:149 -msgid "Height" -msgstr "Altezza" - -#: src/trigger/scripttrigger.cpp:78 src/object/bicycle_platform.cpp:187 -#: src/object/background.cpp:158 src/object/pneumatic_platform.cpp:145 -#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:47 -#: src/editor/worldmap_objects.cpp:73 -msgid "X" -msgstr "X" - -#: src/trigger/scripttrigger.cpp:79 src/object/bicycle_platform.cpp:188 -#: src/object/background.cpp:159 src/object/pneumatic_platform.cpp:146 -#: src/supertux/menu/joystick_menu.cpp:174 src/supertux/moving_object.cpp:48 -#: src/editor/worldmap_objects.cpp:74 -msgid "Y" -msgstr "S" - -#: src/trigger/scripttrigger.cpp:81 src/object/pushbutton.hpp:31 +#: src/trigger/scripttrigger.cpp:52 src/object/pushbutton.hpp:32 msgid "Button" msgstr "Tasto" -#: src/trigger/scripttrigger.cpp:82 +#: src/trigger/scripttrigger.cpp:53 msgid "Oneshot" msgstr "Oneshot" -#: src/trigger/sequence_trigger.hpp:33 +#: src/trigger/sequence_trigger.hpp:31 msgid "Sequence Trigger" +msgstr "Sequenza di innesco" + +#: src/trigger/text_area.cpp:141 +msgid "Once" +msgstr "" + +#: src/trigger/text_area.cpp:142 +msgid "Text change time" +msgstr "" + +#: src/trigger/text_area.cpp:143 +msgid "Fade time" +msgstr "" + +#: src/trigger/text_area.cpp:144 src/object/textscroller.cpp:353 +msgid "Anchor" +msgstr "Ancora" + +#: src/trigger/text_area.cpp:148 +msgid "Anchor offset X" msgstr "" -#: src/trigger/door.cpp:74 src/badguy/willowisp.cpp:280 -#: src/supertux/menu/editor_sector_menu.cpp:32 -#: src/editor/layers_widget.cpp:275 -#: data//images/engine/editor/objects.stoi:297 +#: src/trigger/text_area.cpp:149 +msgid "Anchor offset Y" +msgstr "" + +#: src/trigger/text_area.cpp:150 +msgid "Texts" +msgstr "" + +#: src/trigger/door.cpp:80 src/badguy/willowisp.cpp:311 +#: src/worldmap/teleporter.cpp:47 data//images/engine/editor/objects.stoi:342 msgid "Sector" msgstr "Settore" -#: src/trigger/door.cpp:75 src/editor/worldmap_objects.hpp:101 +#: src/trigger/door.cpp:81 src/worldmap/spawn_point.hpp:58 msgid "Spawn point" -msgstr "Punto di apparizione" +msgstr "Punto di rientro" -#: src/trigger/switch.cpp:61 src/object/block.cpp:212 src/object/torch.cpp:89 -#: src/object/moving_sprite.cpp:156 src/object/pneumatic_platform.cpp:144 -msgid "Sprite" -msgstr "Sprite" +#: src/trigger/door.cpp:82 +msgid "Locked?" +msgstr "" + +#: src/trigger/door.cpp:83 +msgid "Lock Color" +msgstr "" + +#: src/trigger/switch.cpp:62 src/object/ispy.cpp:54 src/object/bumper.cpp:53 +#: src/object/spotlight.cpp:106 src/object/pushbutton.cpp:61 +#: src/object/gradient.cpp:103 src/object/conveyor_belt.cpp:60 +#: src/badguy/badguy.cpp:1063 src/worldmap/spawn_point.cpp:79 +#: src/worldmap/special_tile.cpp:78 +msgid "Direction" +msgstr "Direzione" -#: src/trigger/switch.cpp:62 +#: src/trigger/switch.cpp:65 msgid "Turn on script" msgstr "Attiva script" -#: src/trigger/switch.cpp:63 +#: src/trigger/switch.cpp:66 msgid "Turn off script" msgstr "Disattiva script" -#: src/trigger/sequence_trigger.cpp:75 +#: src/trigger/scripttrigger.hpp:29 +msgid "Script Trigger" +msgstr "Script d'attivazione" + +#: src/trigger/sequence_trigger.cpp:48 msgid "Sequence" msgstr "Sequenza" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "end sequence" msgstr "fine sequenza" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "stop Tux" msgstr "ferma Tux" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "fireworks" msgstr "fuochi artificiali" -#: src/trigger/sequence_trigger.cpp:80 +#: src/trigger/sequence_trigger.cpp:53 msgid "New worldmap spawnpoint" msgstr "Nuovo punto di rinascita nella mappa del mondo" -#: src/trigger/sequence_trigger.cpp:81 +#: src/trigger/sequence_trigger.cpp:54 msgid "Worldmap fade tilemap" -msgstr "Sbiadisci tilemap nella mappa del mondo" +msgstr "Sbiadisci mappa caselle nella mappa del mondo" -#: src/trigger/sequence_trigger.cpp:82 +#: src/trigger/sequence_trigger.cpp:55 +#: src/object/custom_particle_system.cpp:430 +#: src/object/custom_particle_system.cpp:465 msgid "Fade" msgstr "Sbiadisci" -#: src/trigger/sequence_trigger.cpp:83 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:161 msgid "Fade in" msgstr "Dissolvenza in apertura" -#: src/trigger/sequence_trigger.cpp:83 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:167 +#: src/editor/particle_editor.cpp:212 msgid "Fade out" msgstr "Dissolvenza in chiusura" -#: src/trigger/climbable.hpp:37 +#: src/trigger/climbable.hpp:46 msgid "Climbable" msgstr "Arrampicabile" -#: src/trigger/door.hpp:34 +#: src/trigger/text_area.hpp:47 +msgid "Text Area" +msgstr "Area di Testo" + +#: src/trigger/door.hpp:31 msgid "Door" msgstr "Porta" -#: src/trigger/switch.hpp:33 +#: src/trigger/switch.hpp:30 msgid "Switch" msgstr "Interruttore" #: src/trigger/secretarea_trigger.hpp:36 msgid "Secret Area" -msgstr "" +msgstr "Area Segreta" + +#: src/math/anchor_point.cpp:33 +msgid "Top Left" +msgstr "Cima a Sinistra" + +#: src/math/anchor_point.cpp:34 +msgid "Top" +msgstr "Cima" + +#: src/math/anchor_point.cpp:35 +msgid "Top Right" +msgstr "Cima a Destra" + +#: src/math/anchor_point.cpp:36 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:38 +#: src/supertux/menu/joystick_menu.cpp:73 +msgid "Left" +msgstr "Sinistra" + +#: src/math/anchor_point.cpp:37 +msgid "Middle" +msgstr "Centro" -#: src/object/thunderstorm.hpp:40 +#: src/math/anchor_point.cpp:38 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:39 +#: src/supertux/menu/joystick_menu.cpp:74 +msgid "Right" +msgstr "Destra" + +#: src/math/anchor_point.cpp:39 +msgid "Bottom Left" +msgstr "Fondo a Sinistra" + +#: src/math/anchor_point.cpp:40 +msgid "Bottom" +msgstr "Fondo" + +#: src/math/anchor_point.cpp:41 +msgid "Bottom Right" +msgstr "Fondo a Destra" + +#: src/object/thunderstorm.hpp:44 msgid "Thunderstorm" msgstr "Tempesta di fulmini" -#: src/object/ispy.cpp:66 -msgid "Facing Down" -msgstr "" +#: src/object/cloud_particle_system.cpp:77 +#: src/object/rain_particle_system.cpp:100 +msgid "Intensity" +msgstr "Intensità" -#: src/object/ispy.cpp:68 src/object/gradient.cpp:124 -#: src/badguy/willowisp.cpp:279 src/badguy/badguy.cpp:833 -#: src/editor/worldmap_objects.cpp:209 src/editor/worldmap_objects.cpp:276 -msgid "Direction" -msgstr "Direzione" +#: src/object/custom_particle_system.hpp:46 +msgid "Custom Particles" +msgstr "Particelle Personalizzate" -#: src/object/path_gameobject.hpp:44 src/object/coin.cpp:262 -#: src/object/camera.cpp:212 src/object/platform.cpp:65 -#: src/object/path_gameobject.cpp:168 src/object/tilemap.cpp:233 -#: src/badguy/willowisp.cpp:286 +#: src/object/particle_zone.hpp:41 +msgid "Particle zone" +msgstr "Zona Particellare" + +#: src/object/path_gameobject.hpp:45 src/object/coin.cpp:324 +#: src/object/camera.cpp:168 src/object/platform.cpp:76 +#: src/object/path_gameobject.cpp:175 src/object/tilemap.cpp:284 +#: src/badguy/willowisp.cpp:317 msgid "Path" msgstr "Percorso" -#: src/object/decal.cpp:41 src/object/scripted_object.cpp:67 -#: src/object/particlesystem.cpp:62 src/object/background.cpp:162 -#: src/object/thunderstorm.cpp:68 src/object/tilemap.cpp:226 -#: src/object/gradient.cpp:122 -msgid "Z-pos" -msgstr "Z-pos" - -#: src/object/decal.cpp:42 src/object/scripted_object.cpp:70 -#: src/object/tilemap.cpp:215 +#: src/object/decal.cpp:48 src/object/scripted_object.cpp:70 +#: src/object/tilemap.cpp:266 msgid "Solid" msgstr "Solido" -#: src/object/decal.cpp:43 src/supertux/menu/keyboard_menu.cpp:37 -#: src/supertux/menu/joystick_menu.cpp:74 +#: src/object/decal.cpp:49 src/supertux/menu/keyboard_menu.cpp:41 +#: src/supertux/menu/joystick_menu.cpp:76 msgid "Action" msgstr "Azione" -#: src/object/weak_block.hpp:35 +#: src/object/weak_block.hpp:36 msgid "Weak Tile" -msgstr "" +msgstr "Casella Debole" -#: src/object/gradient.hpp:42 +#: src/object/gradient.hpp:43 msgid "Gradient" msgstr "Gradiente" -#: src/object/tilemap.hpp:53 +#: src/object/tilemap.hpp:58 msgid "Tilemap" -msgstr "Tilemap" +msgstr "Mappa Caselle" + +#: src/object/sound_object.cpp:69 src/object/ambient_sound.cpp:85 +#: src/object/sound_object.hpp:42 src/supertux/menu/options_menu.cpp:128 +#: data//credits.stxt:367 +msgid "Sound" +msgstr "Suono" + +#: src/object/sound_object.cpp:70 src/object/ambient_sound.cpp:87 +msgid "Volume" +msgstr "Volume" + +#: src/object/conveyor_belt.hpp:39 +msgid "Conveyor Belt" +msgstr "Nastro Trasportatore" + +#: src/object/unstable_tile.cpp:70 src/object/weak_block.cpp:97 +#: src/badguy/flame.cpp:86 +msgid "Ice" +msgstr "Ghiaccio" + +#: src/object/unstable_tile.cpp:71 src/object/brick.hpp:34 +msgid "Brick" +msgstr "Mattone" + +#: src/object/unstable_tile.cpp:72 +msgid "Delayed" +msgstr "Posticipato" + +#: src/object/circleplatform.hpp:35 +msgid "Circular Platform" +msgstr "Piattaforma circolare" + +#: src/object/brick.cpp:59 src/object/coin.cpp:69 +#: src/object/invisible_block.cpp:37 src/object/background.cpp:200 +#: src/object/tilemap.cpp:279 src/object/gradient.cpp:109 +#: src/badguy/viciousivy.cpp:44 src/badguy/snail.cpp:69 +#: src/badguy/smartball.cpp:34 src/badguy/bouncing_snowball.cpp:81 +#: src/badguy/kamikazesnowball.cpp:117 src/badguy/walkingleaf.cpp:35 +#: src/badguy/mrbomb.cpp:47 src/badguy/igel.cpp:188 src/badguy/snowball.cpp:40 +#: src/badguy/mrtree.cpp:50 src/badguy/mriceblock.cpp:62 +msgid "Normal" +msgstr "Normale" + +#: src/object/brick.cpp:60 src/object/bonus_block.cpp:175 +#: src/object/coin.cpp:70 src/object/invisible_block.cpp:38 +msgid "Retro" +msgstr "Retro" -#: src/object/brick.cpp:133 +#: src/object/brick.cpp:166 msgid "Breakable" msgstr "Rompibile" -#: src/object/trampoline.cpp:136 src/object/rusty_trampoline.cpp:66 +#: src/object/trampoline.cpp:66 src/object/rusty_trampoline.cpp:66 msgid "Portable" msgstr "Portatile" -#: src/object/spotlight.cpp:59 +#: src/object/trampoline.cpp:67 +msgid "Stationary" +msgstr "Stazionario" + +#: src/object/key.hpp:38 +msgid "Key" +msgstr "Chiave" + +#: src/object/spotlight.cpp:102 src/object/particlesystem.cpp:64 +#: src/object/particle_zone.cpp:50 src/badguy/darttrap.cpp:149 +#: src/supertux/menu/addon_preview_menu.cpp:189 +msgid "Enabled" +msgstr "Abilitato" + +#: src/object/spotlight.cpp:103 src/object/rain_particle_system.cpp:101 msgid "Angle" msgstr "Angolo" -#: src/object/spotlight.cpp:60 src/object/magicblock.cpp:94 -#: src/object/candle.cpp:76 src/object/lantern.cpp:62 -#: src/object/ambient_light.cpp:131 src/badguy/walking_candle.cpp:82 +#: src/object/spotlight.cpp:104 src/object/magicblock.cpp:95 +#: src/object/candle.cpp:75 src/object/torch.cpp:96 src/object/rublight.cpp:55 +#: src/object/lantern.cpp:62 src/object/ambient_light.cpp:122 +#: src/object/key.cpp:192 src/badguy/willowisp.cpp:319 +#: src/badguy/walking_candle.cpp:91 msgid "Color" msgstr "Colore" -#: src/object/spotlight.cpp:61 src/object/textscroller.cpp:279 -#: src/badguy/flame.cpp:59 +#: src/object/spotlight.cpp:105 src/object/textscroller.cpp:350 +#: src/object/rain_particle_system.cpp:102 src/object/conveyor_belt.cpp:61 +#: src/object/circleplatform.cpp:58 src/badguy/flame.cpp:110 +#: src/editor/node_marker.cpp:125 msgid "Speed" msgstr "Velocità" -#: src/object/spotlight.cpp:62 +#: src/object/spotlight.cpp:107 +msgid "Clockwise" +msgstr "Orario" + +#: src/object/spotlight.cpp:107 msgid "Counter-clockwise" msgstr "Anti-orario" +#: src/object/spotlight.cpp:107 +msgid "Stopped" +msgstr "Arrestato" + +#: src/object/spotlight.cpp:110 src/object/lit_object.cpp:69 +#: src/object/candle.cpp:76 src/object/torch.cpp:95 +msgid "Layer" +msgstr "Livello" + #: src/object/scripted_object.cpp:71 msgid "Physics enabled" -msgstr "Fisica attivata" +msgstr "Fisica abilitata" #: src/object/scripted_object.cpp:72 msgid "Visible" msgstr "Visibile" -#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:282 +#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:313 msgid "Hit script" msgstr "Script di collisione" -#: src/object/bonus_block.cpp:202 +#: src/object/custom_particle_system_file.cpp:53 +#: src/object/textscroller.cpp:348 src/object/music_object.cpp:109 +#: src/supertux/menu/particle_editor_open.cpp:38 +msgid "File" +msgstr "File" + +#: src/object/bonus_block.cpp:154 +msgid "Only one custom object is allowed inside bonus blocks." +msgstr "È permesso un solo oggetto personalizzato all'interno del blocco bonus" + +#: src/object/bonus_block.cpp:172 +msgid "Blue" +msgstr "Blu" + +#: src/object/bonus_block.cpp:173 +msgid "Orange" +msgstr "Arancione" + +#: src/object/bonus_block.cpp:174 +msgid "Purple" +msgstr "Viola" + +#: src/object/bonus_block.cpp:265 src/supertux/menu/cheat_apply_menu.cpp:54 msgid "Count" msgstr "Conteggio" -#: src/object/bonus_block.cpp:203 +#: src/object/bonus_block.cpp:266 msgid "Content" msgstr "Contenuto" -#: src/object/bonus_block.cpp:204 src/object/coin.hpp:43 +#: src/object/bonus_block.cpp:267 src/object/coin.hpp:44 msgid "Coin" msgstr "Moneta" -#: src/object/bonus_block.cpp:204 +#: src/object/bonus_block.cpp:267 msgid "Growth (fire flower)" msgstr "Crescita (fiore di fuoco)" -#: src/object/bonus_block.cpp:204 +#: src/object/bonus_block.cpp:267 msgid "Growth (ice flower)" msgstr "Crescita (fiore di ghiaccio)" -#: src/object/bonus_block.cpp:204 +#: src/object/bonus_block.cpp:267 msgid "Growth (air flower)" msgstr "Crescita (fiore d'aria)" -#: src/object/bonus_block.cpp:205 +#: src/object/bonus_block.cpp:268 msgid "Growth (earth flower)" msgstr "Crescita (fiore di terra)" -#: src/object/bonus_block.cpp:205 +#: src/object/bonus_block.cpp:268 +msgid "Growth (retro)" +msgstr "Crescita (retro)" + +#: src/object/bonus_block.cpp:268 src/object/powerup.cpp:66 msgid "Star" msgstr "Stella" -#: src/object/bonus_block.cpp:205 +#: src/object/bonus_block.cpp:268 +msgid "Star (retro)" +msgstr "Stella (retro)" + +#: src/object/bonus_block.cpp:268 msgid "Tux doll" -msgstr "Bambola Tux" +msgstr "Pupa Tux" -#: src/object/bonus_block.cpp:205 +#: src/object/bonus_block.cpp:268 msgid "Custom" msgstr "Personalizzato" -#: src/object/bonus_block.cpp:205 +#: src/object/bonus_block.cpp:268 msgid "Light" msgstr "Luce" -#: src/object/bonus_block.cpp:206 src/object/trampoline.hpp:35 +#: src/object/bonus_block.cpp:268 +msgid "Light (On)" +msgstr "Luce (accesa)" + +#: src/object/bonus_block.cpp:269 src/object/trampoline.hpp:37 msgid "Trampoline" msgstr "Trampolino" -#: src/object/bonus_block.cpp:206 +#: src/object/bonus_block.cpp:269 +msgid "Portable trampoline" +msgstr "Trampolino Portatile" + +#: src/object/bonus_block.cpp:269 msgid "Coin rain" msgstr "Pioggia di monete" -#: src/object/bonus_block.cpp:206 +#: src/object/bonus_block.cpp:269 msgid "Coin explosion" msgstr "Esplosione di monete" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:269 src/object/rock.hpp:43 +msgid "Rock" +msgstr "Roccia" + +#: src/object/bonus_block.cpp:269 +msgid "Potion" +msgstr "Pozione" + +#: src/object/bonus_block.cpp:275 msgid "Custom Content" -msgstr "" +msgstr "Contenuto personalizzato" + +#: src/object/bonus_block.cpp:278 +msgid "Coin sprite" +msgstr "Sprite moneta" -#: src/object/pneumatic_platform.hpp:62 +#: src/object/pneumatic_platform.hpp:65 msgid "Pneumatic Platform" -msgstr "" +msgstr "Piattaforma pneumatica" -#: src/object/coin.cpp:264 src/object/tilemap.cpp:235 +#: src/object/coin.cpp:326 src/object/tilemap.cpp:287 msgid "Following path" msgstr "Segue sentiero" -#: src/object/coin.cpp:267 src/object/camera.cpp:215 -#: src/object/platform.cpp:66 src/object/tilemap.cpp:239 +#: src/object/coin.cpp:329 src/object/camera.cpp:171 +#: src/object/platform.cpp:77 src/object/tilemap.cpp:290 msgid "Path Mode" msgstr "Modalità sentiero" -#: src/object/coin.cpp:270 src/object/coin.cpp:298 +#: src/object/coin.cpp:330 src/object/camera.cpp:172 +#: src/object/platform.cpp:78 src/object/tilemap.cpp:291 +#: src/badguy/willowisp.cpp:322 +msgid "Adapt Speed" +msgstr "Adatta la velocità" + +#: src/object/coin.cpp:331 src/object/platform.cpp:81 +#: src/object/tilemap.cpp:285 src/badguy/willowisp.cpp:318 +msgid "Starting Node" +msgstr "Nodo d'inizio" + +#: src/object/coin.cpp:332 src/object/camera.cpp:173 +#: src/object/platform.cpp:82 src/object/tilemap.cpp:293 +#: src/badguy/willowisp.cpp:323 +msgid "Handle" +msgstr "" + +#: src/object/coin.cpp:335 src/object/coin.cpp:371 msgid "Collect script" msgstr "Raccogli script" -#: src/object/ghost_particle_system.hpp:36 +#: src/object/ghost_particle_system.hpp:37 msgid "Ghost Particles" -msgstr "" +msgstr "Particelle fantasma" -#: src/object/camera.cpp:207 +#: src/object/camera.cpp:163 msgid "Mode" msgstr "Modalità" -#: src/object/camera.cpp:208 +#: src/object/camera.cpp:164 msgid "normal" msgstr "normale" -#: src/object/camera.cpp:208 +#: src/object/camera.cpp:164 msgid "manual" msgstr "manuale" -#: src/object/camera.cpp:208 +#: src/object/camera.cpp:164 msgid "autoscroll" -msgstr "" +msgstr "scorrimento automatico" -#: src/object/textscroller.cpp:280 src/object/music_object.cpp:109 -msgid "File" -msgstr "File" +#: src/object/textscroller.cpp:349 +msgid "Finish Script" +msgstr "Finisci Script" + +#: src/object/textscroller.cpp:351 +msgid "X-offset" +msgstr "sfasamento-X" + +#: src/object/textscroller.cpp:352 +msgid "Controllable" +msgstr "Controllabile" + +#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 +msgid "Center" +msgstr "Centro" -#: src/object/spawnpoint.hpp:46 src/badguy/willowisp.cpp:281 -#: src/editor/worldmap_objects.cpp:173 +#: src/object/textscroller.cpp:357 +msgid "Text Alignment" +msgstr "Allineamento del testo" + +#: src/object/lit_object.hpp:40 +msgid "Lit object" +msgstr "" + +#: src/object/spawnpoint.hpp:48 src/badguy/willowisp.cpp:312 +#: src/worldmap/teleporter.cpp:48 msgid "Spawnpoint" -msgstr "Punto di apparizione" +msgstr "Punto di rientro" #: src/object/rusty_trampoline.cpp:65 msgid "Counter" -msgstr "" +msgstr "Contatore" -#: src/object/candle.hpp:36 +#: src/object/candle.hpp:37 msgid "Candle" msgstr "Candela" -#: src/object/particlesystem.cpp:61 src/badguy/darttrap.cpp:127 -msgid "Enabled" -msgstr "Abilitato" +#: src/object/particlesystem.cpp:65 src/object/background.cpp:184 +#: src/object/thunderstorm.cpp:76 src/object/tilemap.cpp:277 +#: src/object/gradient.cpp:101 src/object/moving_sprite.cpp:193 +msgid "Z-pos" +msgstr "Z-pos" -#: src/object/invisible_block.hpp:31 +#: src/object/invisible_block.hpp:30 msgid "Invisible Block" -msgstr "" +msgstr "Blocco invisibile" -#: src/object/snow_particle_system.hpp:35 +#: src/object/snow_particle_system.hpp:37 msgid "Snow Particles" -msgstr "" +msgstr "Particelle neve" -#: src/object/powerup.hpp:35 +#: src/object/powerup.hpp:40 msgid "Powerup" -msgstr "" +msgstr "Potenziamento" -#: src/object/level_time.hpp:55 -msgid "Time Limit" -msgstr "" +#: src/object/infoblock.cpp:78 +msgid "Front Color" +msgstr "Colore Fronte" -#: src/object/ambient_sound.cpp:119 src/supertux/menu/options_menu.cpp:365 -#: data//credits.stxt:335 -msgid "Sound" -msgstr "Suono" +#: src/object/infoblock.cpp:80 +msgid "Back Color" +msgstr "Colore Dietro" -#: src/object/ambient_sound.cpp:120 -msgid "Distance factor" -msgstr "Fattore distanza" +#: src/object/infoblock.cpp:82 +msgid "Roundness" +msgstr "Arrotondamento" -#: src/object/ambient_sound.cpp:121 -msgid "Distance bias" -msgstr "Influenza della distanza" +#: src/object/infoblock.cpp:84 +msgid "Fade Transition" +msgstr "Transizione Dissolvenza" -#: src/object/ambient_sound.cpp:122 -msgid "Volume" -msgstr "Volume" +#: src/object/fallblock.hpp:41 +msgid "Falling Platform" +msgstr "Piattaforma cadente" + +#: src/object/level_time.hpp:56 +msgid "Time Limit" +msgstr "Tempo limite" + +#: src/object/ambient_sound.cpp:86 +msgid "Radius (in tiles)" +msgstr "Raggio (in caselle)" #: src/object/torch.hpp:41 msgid "Torch" msgstr "Torcia" -#: src/object/icecrusher.hpp:48 -msgid "Icecrusher" -msgstr "" +#: src/object/rublight.hpp:34 +msgid "Rublight" +msgstr "Luce a contatto" -#: src/object/background.hpp:42 +#: src/object/background.hpp:45 msgid "Background" msgstr "Sfondo" -#: src/object/firefly.hpp:36 +#: src/object/text_object.hpp:44 src/gui/menu_string_array.cpp:77 +msgid "Text" +msgstr "Testo" + +#: src/object/firefly.hpp:38 msgid "Checkpoint" -msgstr "" +msgstr "Checkpoint" -#: src/object/ambient_light.hpp:36 +#: src/object/ambient_light.hpp:37 msgid "Ambient Light" -msgstr "" +msgstr "Luce ambientale" -#: src/object/lantern.hpp:37 +#: src/object/lantern.hpp:38 msgid "Lantern" msgstr "Lanterna" -#: src/object/wind.hpp:40 +#: src/object/wind.hpp:43 msgid "Wind" msgstr "Vento" -#: src/object/bicycle_platform.cpp:190 +#: src/object/bicycle_platform.cpp:203 src/object/background.cpp:180 +#: src/object/pneumatic_platform.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:65 +#: src/worldmap/worldmap_object.cpp:77 +msgid "X" +msgstr "X" + +#: src/object/bicycle_platform.cpp:204 src/object/background.cpp:181 +#: src/object/pneumatic_platform.cpp:163 +#: src/supertux/menu/joystick_menu.cpp:174 src/supertux/moving_object.cpp:66 +#: src/worldmap/worldmap_object.cpp:78 +msgid "Y" +msgstr "Y" + +#: src/object/bicycle_platform.cpp:206 msgid "Platforms" -msgstr "" +msgstr "Piattaforme" -#: src/object/bicycle_platform.cpp:191 src/badguy/flame.cpp:58 -#: src/badguy/crystallo.cpp:36 +#: src/object/bicycle_platform.cpp:207 src/object/circleplatform.cpp:57 +#: src/badguy/fish_swimming.cpp:76 src/badguy/flame.cpp:109 +#: src/badguy/rcrystallo.cpp:83 src/badguy/crystallo.cpp:50 msgid "Radius" msgstr "Raggio" -#: src/object/bicycle_platform.cpp:192 +#: src/object/bicycle_platform.cpp:208 msgid "Momentum change rate" msgstr "Cambia il tasso di moto" -#: src/object/rain_particle_system.hpp:34 +#: src/object/rain_particle_system.hpp:41 msgid "Rain Particles" -msgstr "" +msgstr "Particelle pioggia" -#: src/object/platform.hpp:45 +#: src/object/platform.hpp:46 msgid "Platform" msgstr "Piattaforma" -#: src/object/rock.hpp:42 -msgid "Rock" -msgstr "Roccia" - -#: src/object/music_object.hpp:41 src/supertux/menu/options_menu.cpp:367 -#: data//credits.stxt:277 +#: src/object/music_object.hpp:42 src/supertux/menu/options_menu.cpp:130 +#: data//credits.stxt:309 msgid "Music" msgstr "Musica" -#: src/object/rusty_trampoline.hpp:39 -msgid "Rusty Trampoline" +#: src/object/lit_object.cpp:68 +msgid "Light sprite" +msgstr "" + +#: src/object/lit_object.cpp:71 +msgid "Sprite starting action" +msgstr "" + +#: src/object/lit_object.cpp:72 +msgid "Light sprite starting action" +msgstr "" + +#: src/object/lit_object.cpp:74 +msgid "Light sprite offset X" +msgstr "" + +#: src/object/lit_object.cpp:75 +msgid "Light sprite offset Y" msgstr "" -#: src/object/particlesystem.hpp:57 +#: src/object/rusty_trampoline.hpp:40 +msgid "Rusty Trampoline" +msgstr "Trampolino aggiugginito" + +#: src/object/particlesystem.hpp:58 msgid "Particle system" msgstr "Sistema di particelle" -#: src/object/candle.cpp:74 src/object/torch.cpp:88 +#: src/object/candle.cpp:73 src/object/torch.cpp:94 msgid "Burning" msgstr "Bruciante" -#: src/object/candle.cpp:75 +#: src/object/candle.cpp:74 msgid "Flicker" msgstr "Tremolio" -#: src/object/text_array_object.hpp:50 +#: src/object/snow_particle_system.cpp:104 +msgid "Epsilon" +msgstr "" + +#: src/object/snow_particle_system.cpp:105 +msgid "Spin Speed" +msgstr "" + +#: src/object/snow_particle_system.cpp:106 +msgid "State Length" +msgstr "" + +#: src/object/snow_particle_system.cpp:107 +msgid "Wind Speed" +msgstr "Velocità Vento" + +#: src/object/text_array_object.hpp:47 msgid "Text array" msgstr "Array di testo" -#: src/object/infoblock.hpp:36 +#: src/object/infoblock.hpp:37 msgid "Info Block" +msgstr "Blocco informazioni" + +#: src/object/powerup.cpp:61 +msgid "Egg" +msgstr "" + +#: src/object/powerup.cpp:62 +msgid "Fire Flower" +msgstr "" + +#: src/object/powerup.cpp:63 +msgid "Ice Flower" +msgstr "" + +#: src/object/powerup.cpp:64 +msgid "Air Flower" +msgstr "" + +#: src/object/powerup.cpp:65 +msgid "Earth Flower" +msgstr "" + +#: src/object/powerup.cpp:67 +msgid "Tux Doll" +msgstr "" + +#: src/object/powerup.cpp:68 +msgid "Flip Potion" +msgstr "" + +#: src/object/powerup.cpp:69 +msgid "Mints" +msgstr "" + +#: src/object/powerup.cpp:70 +msgid "Coffee" msgstr "" -#: src/object/powerup.cpp:189 +#: src/object/powerup.cpp:71 +msgid "Herring" +msgstr "Aringa" + +#: src/object/powerup.cpp:302 msgid "Disable gravity" msgstr "Disabilita gravità" -#: src/object/ambient_sound.hpp:62 +#: src/object/powerup.cpp:312 src/object/weak_block.cpp:266 +msgid "" +"Sprites no longer define the behaviour of the object.\n" +"Object types are used instead." +msgstr "gli Sprites non definiscono più il comportamento dell'oggetto. tipi Oggetto sono usati al loro posto" + +#: src/object/ambient_sound.hpp:43 msgid "Ambient Sound" -msgstr "" +msgstr "Suono ambientale" -#: src/object/level_time.cpp:51 src/supertux/statistics.cpp:245 -#: src/editor/node_marker.cpp:80 +#: src/object/level_time.cpp:52 src/supertux/statistics.cpp:297 +#: src/editor/node_marker.cpp:124 msgid "Time" msgstr "Tempo" -#: src/object/hurting_platform.hpp:30 +#: src/object/hurting_platform.hpp:31 msgid "Hurting Platform" -msgstr "" +msgstr "Piattaforma danno" -#: src/object/background.cpp:161 +#: src/object/background.cpp:183 msgid "Fill" -msgstr "" +msgstr "Riempi" -#: src/object/background.cpp:163 +#: src/object/background.cpp:185 msgid "Alignment" msgstr "Allineamento" -#: src/object/background.cpp:164 +#: src/object/background.cpp:186 src/supertux/direction.cpp:61 msgid "none" msgstr "nessuno" -#: src/object/background.cpp:164 src/editor/object_settings.cpp:112 +#: src/object/background.cpp:186 src/supertux/direction.cpp:63 msgid "left" msgstr "sinistra" -#: src/object/background.cpp:164 src/editor/object_settings.cpp:112 +#: src/object/background.cpp:186 src/supertux/direction.cpp:65 msgid "right" msgstr "destra" -#: src/object/background.cpp:164 +#: src/object/background.cpp:186 msgid "top" msgstr "cima" -#: src/object/background.cpp:164 +#: src/object/background.cpp:186 msgid "bottom" msgstr "fondo" -#: src/object/background.cpp:167 +#: src/object/background.cpp:189 msgid "Scroll offset x" msgstr "Compensazione di scorrimento x" -#: src/object/background.cpp:168 +#: src/object/background.cpp:190 msgid "Scroll offset y" msgstr "Compensazione di scorrimento y" -#: src/object/background.cpp:169 +#: src/object/background.cpp:191 msgid "Scroll speed x" msgstr "Velocità di scorrimento x" -#: src/object/background.cpp:170 +#: src/object/background.cpp:192 msgid "Scroll speed y" msgstr "Velocità di scorrimento y" -#: src/object/background.cpp:171 +#: src/object/background.cpp:193 msgid "Parallax Speed x" -msgstr "" +msgstr "Velocità parallasse X" -#: src/object/background.cpp:172 +#: src/object/background.cpp:194 msgid "Parallax Speed y" -msgstr "" +msgstr "Velocità parallasse Y" -#: src/object/background.cpp:173 +#: src/object/background.cpp:195 msgid "Top image" msgstr "Immagine superiore" -#: src/object/background.cpp:174 +#: src/object/background.cpp:196 msgid "Image" msgstr "Immagine" -#: src/object/background.cpp:175 +#: src/object/background.cpp:197 msgid "Bottom image" msgstr "Immagine inferiore" -#: src/object/background.cpp:176 src/object/tilemap.cpp:227 -#: src/object/gradient.cpp:129 +#: src/object/background.cpp:198 +msgid "Colour" +msgstr "Colore" + +#: src/object/background.cpp:199 src/object/tilemap.cpp:278 +#: src/object/gradient.cpp:108 msgid "Draw target" msgstr "Disegna obiettivo" -#: src/object/background.cpp:177 src/object/tilemap.cpp:228 -#: src/object/gradient.cpp:130 -msgid "Normal" -msgstr "Normale" - -#: src/object/background.cpp:177 src/object/tilemap.cpp:228 -#: src/object/gradient.cpp:130 +#: src/object/background.cpp:200 src/object/tilemap.cpp:279 +#: src/object/gradient.cpp:109 msgid "Lightmap" msgstr "Mappa luci" -#: src/object/wind.cpp:63 +#: src/object/shard.hpp:35 +msgid "Shard" +msgstr "Scheggia" + +#: src/object/rublight.cpp:56 +msgid "Fading Speed" +msgstr "Velocità di dissolvenza" + +#: src/object/rublight.cpp:57 +msgid "Glowing Strength" +msgstr "Intensità luminosa" + +#: src/object/wind.cpp:78 src/object/custom_particle_system.cpp:499 msgid "Speed X" msgstr "Velocità X" -#: src/object/wind.cpp:64 +#: src/object/wind.cpp:79 src/object/custom_particle_system.cpp:500 msgid "Speed Y" msgstr "Velocità Y" -#: src/object/wind.cpp:65 +#: src/object/wind.cpp:80 msgid "Acceleration" msgstr "Accelerazione" -#: src/object/wind.cpp:66 +#: src/object/wind.cpp:81 msgid "Blowing" msgstr "Soffio" -#: src/object/bicycle_platform.hpp:64 +#: src/object/wind.cpp:82 +msgid "Affects Badguys" +msgstr "Affligge i nemici" + +#: src/object/wind.cpp:83 +msgid "Affects Objects" +msgstr "Affligge gli oggetti" + +#: src/object/wind.cpp:84 +msgid "Affects Player" +msgstr "Affligge il giocatore" + +#: src/object/wind.cpp:85 +msgid "Fancy Particles" +msgstr "Particolari sofisticati" + +#: src/object/bicycle_platform.hpp:67 msgid "Bicycle Platform" -msgstr "" +msgstr "Piattaforma Bici" -#: src/object/platform.cpp:67 src/object/thunderstorm.cpp:69 -#: src/object/tilemap.cpp:240 +#: src/object/platform.cpp:80 src/object/thunderstorm.cpp:77 +#: src/object/tilemap.cpp:292 src/object/conveyor_belt.cpp:62 msgid "Running" msgstr "Correre" -#: src/object/rock.cpp:173 +#: src/object/rock.cpp:71 +msgid "Small" +msgstr "Piccolo" + +#: src/object/rock.cpp:72 +msgid "Large" +msgstr "Grande" + +#: src/object/rock.cpp:234 msgid "On-grab script" msgstr "Script di presa" -#: src/object/rock.cpp:174 +#: src/object/rock.cpp:235 msgid "On-ungrab script" msgstr "Script di rilascio" @@ -633,854 +998,1821 @@ msgstr "Script di rilascio" msgid "Interactive particle system" msgstr "Sistema di particelle interattivo" -#: src/object/thunderstorm.cpp:70 +#: src/object/thunderstorm.cpp:78 msgid "Interval" msgstr "Intervallo" -#: src/object/thunderstorm.cpp:71 +#: src/object/thunderstorm.cpp:79 msgid "Strike Script" -msgstr "" +msgstr "Script dei colpi" -#: src/object/cloud_particle_system.hpp:36 +#: src/object/cloud_particle_system.hpp:42 msgid "Cloud Particles" -msgstr "" +msgstr "Particelle nuvola" + +#: src/object/custom_particle_system.cpp:423 +msgid "Texture" +msgstr "Trama" + +#: src/object/custom_particle_system.cpp:425 +msgid "Amount" +msgstr "Quantità" + +#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:59 +#: src/editor/particle_editor.cpp:141 +msgid "Delay" +msgstr "Attesa" + +#: src/object/custom_particle_system.cpp:427 +msgid "Lifetime" +msgstr "Tempo vitale" + +#: src/object/custom_particle_system.cpp:428 +msgid "Lifetime variation" +msgstr "Variazione del tempo vitale" + +#: src/object/custom_particle_system.cpp:429 +#: src/editor/particle_editor.cpp:164 +msgid "Birth mode" +msgstr "Modalità di nascita" + +#: src/object/custom_particle_system.cpp:430 +#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:115 +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/joystick_menu.cpp:108 +#: src/supertux/menu/joystick_menu.cpp:215 src/editor/object_settings.cpp:129 +#: src/editor/particle_editor.cpp:162 src/editor/particle_editor.cpp:168 +msgid "None" +msgstr "Nessuno" -#: src/object/ispy.hpp:33 +#: src/object/custom_particle_system.cpp:430 +#: src/object/custom_particle_system.cpp:465 +#: src/editor/particle_editor.cpp:166 +msgid "Shrink" +msgstr "Rimpicciolisci" + +#: src/object/custom_particle_system.cpp:434 +#: src/editor/particle_editor.cpp:172 +msgid "Birth easing" +msgstr "Allentamento della nascita" + +#: src/object/custom_particle_system.cpp:436 +#: src/object/custom_particle_system.cpp:471 src/editor/node_marker.cpp:129 +msgid "No easing" +msgstr "Nessun allentamento" + +#: src/object/custom_particle_system.cpp:437 +#: src/object/custom_particle_system.cpp:472 src/editor/node_marker.cpp:130 +msgid "Quad in" +msgstr "Quad dentro" + +#: src/object/custom_particle_system.cpp:437 +#: src/object/custom_particle_system.cpp:472 src/editor/node_marker.cpp:130 +msgid "Quad out" +msgstr "Quad fuori" + +#: src/object/custom_particle_system.cpp:437 +#: src/object/custom_particle_system.cpp:472 src/editor/node_marker.cpp:130 +msgid "Quad in/out" +msgstr "Quad dentro/fuori" + +#: src/object/custom_particle_system.cpp:438 +#: src/object/custom_particle_system.cpp:473 src/editor/node_marker.cpp:131 +msgid "Cubic in" +msgstr "Cubico dentro" + +#: src/object/custom_particle_system.cpp:438 +#: src/object/custom_particle_system.cpp:473 src/editor/node_marker.cpp:131 +msgid "Cubic out" +msgstr "Cubico fuori" + +#: src/object/custom_particle_system.cpp:438 +#: src/object/custom_particle_system.cpp:473 src/editor/node_marker.cpp:131 +msgid "Cubic in/out" +msgstr "Cubico dentro/fuori" + +#: src/object/custom_particle_system.cpp:439 +#: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 +msgid "Quart in" +msgstr "Quarto dentro" + +#: src/object/custom_particle_system.cpp:439 +#: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 +msgid "Quart out" +msgstr "Quarto fuori" + +#: src/object/custom_particle_system.cpp:439 +#: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 +msgid "Quart in/out" +msgstr "Quarto dentro/fuori" + +#: src/object/custom_particle_system.cpp:440 +#: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 +msgid "Quint in" +msgstr "Quint dentro" + +#: src/object/custom_particle_system.cpp:440 +#: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 +msgid "Quint out" +msgstr "Quint fuori" + +#: src/object/custom_particle_system.cpp:440 +#: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 +msgid "Quint in/out" +msgstr "Quint dentro/fuori" + +#: src/object/custom_particle_system.cpp:441 +#: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 +msgid "Sine in" +msgstr "Sine dentro" + +#: src/object/custom_particle_system.cpp:441 +#: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 +msgid "Sine out" +msgstr "Sine fuori" + +#: src/object/custom_particle_system.cpp:441 +#: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 +msgid "Sine in/out" +msgstr "Sine dentro/fuori" + +#: src/object/custom_particle_system.cpp:442 +#: src/object/custom_particle_system.cpp:477 src/editor/node_marker.cpp:135 +msgid "Circular in" +msgstr "Circolare dentro" + +#: src/object/custom_particle_system.cpp:442 +#: src/object/custom_particle_system.cpp:477 src/editor/node_marker.cpp:135 +msgid "Circular out" +msgstr "Circolare fuori" + +#: src/object/custom_particle_system.cpp:442 +#: src/object/custom_particle_system.cpp:477 src/editor/node_marker.cpp:135 +msgid "Circular in/out" +msgstr "Circolare dentro/fuori" + +#: src/object/custom_particle_system.cpp:443 +#: src/object/custom_particle_system.cpp:478 src/editor/node_marker.cpp:136 +msgid "Exponential in" +msgstr "Esponenziale dentro" + +#: src/object/custom_particle_system.cpp:443 +#: src/object/custom_particle_system.cpp:478 src/editor/node_marker.cpp:136 +msgid "Exponential out" +msgstr "Esponenziale fuori" + +#: src/object/custom_particle_system.cpp:443 +#: src/object/custom_particle_system.cpp:478 src/editor/node_marker.cpp:136 +msgid "Exponential in/out" +msgstr "Esponenziale dentro/fuori" + +#: src/object/custom_particle_system.cpp:444 +#: src/object/custom_particle_system.cpp:479 src/editor/node_marker.cpp:137 +msgid "Elastic in" +msgstr "Elastico dentro" + +#: src/object/custom_particle_system.cpp:444 +#: src/object/custom_particle_system.cpp:479 src/editor/node_marker.cpp:137 +msgid "Elastic out" +msgstr "Elastico fuori" + +#: src/object/custom_particle_system.cpp:444 +#: src/object/custom_particle_system.cpp:479 src/editor/node_marker.cpp:137 +msgid "Elastic in/out" +msgstr "Elastico dentro/fuori" + +#: src/object/custom_particle_system.cpp:445 +#: src/object/custom_particle_system.cpp:480 src/editor/node_marker.cpp:138 +msgid "Back in" +msgstr "Indietro dentro" + +#: src/object/custom_particle_system.cpp:445 +#: src/object/custom_particle_system.cpp:480 src/editor/node_marker.cpp:138 +msgid "Back out" +msgstr "Indietro fuori" + +#: src/object/custom_particle_system.cpp:445 +#: src/object/custom_particle_system.cpp:480 src/editor/node_marker.cpp:138 +msgid "Back in/out" +msgstr "Indietro dentro/fuori" + +#: src/object/custom_particle_system.cpp:446 +#: src/object/custom_particle_system.cpp:481 src/editor/node_marker.cpp:139 +msgid "Bounce in" +msgstr "Rimbalzo dentro" + +#: src/object/custom_particle_system.cpp:446 +#: src/object/custom_particle_system.cpp:481 src/editor/node_marker.cpp:139 +msgid "Bounce out" +msgstr "Rimbalzo fuori" + +#: src/object/custom_particle_system.cpp:446 +#: src/object/custom_particle_system.cpp:481 src/editor/node_marker.cpp:139 +msgid "Bounce in/out" +msgstr "Rimbalzo dentro/fuori" + +#: src/object/custom_particle_system.cpp:462 +msgid "Birth time" +msgstr "Tempo di nascita" + +#: src/object/custom_particle_system.cpp:463 +msgid "Birth time variation" +msgstr "Variazione del tempo di nascita" + +#: src/object/custom_particle_system.cpp:464 +#: src/editor/particle_editor.cpp:170 +msgid "Death mode" +msgstr "Modalità di morte" + +#: src/object/custom_particle_system.cpp:469 +#: src/editor/particle_editor.cpp:173 +msgid "Death easing" +msgstr "Allentamento di morte" + +#: src/object/custom_particle_system.cpp:497 +msgid "Death time" +msgstr "Tempo di morte" + +#: src/object/custom_particle_system.cpp:498 +msgid "Death time variation" +msgstr "Variazione del tempo di morte" + +#: src/object/custom_particle_system.cpp:501 +msgid "Speed X (variation)" +msgstr "Velocità X (variazione)" + +#: src/object/custom_particle_system.cpp:502 +msgid "Speed Y (variation)" +msgstr "Velocità Y (variazione)" + +#: src/object/custom_particle_system.cpp:503 +msgid "Acceleration X" +msgstr "Accelerazione X" + +#: src/object/custom_particle_system.cpp:504 +msgid "Acceleration Y" +msgstr "Accelerazione Y" + +#: src/object/custom_particle_system.cpp:505 +msgid "Friction X" +msgstr "Attrito X" + +#: src/object/custom_particle_system.cpp:506 +msgid "Friction Y" +msgstr "Attrito Y" + +#: src/object/custom_particle_system.cpp:507 +#: src/editor/particle_editor.cpp:189 +msgid "Feather factor" +msgstr "Fattore piuma" + +#: src/object/custom_particle_system.cpp:508 +msgid "Rotation" +msgstr "Rotazione" + +#: src/object/custom_particle_system.cpp:509 +msgid "Rotation (variation)" +msgstr "Rotazione (variazione)" + +#: src/object/custom_particle_system.cpp:510 +#: src/editor/particle_editor.cpp:195 +msgid "Rotation speed" +msgstr "Velocità di rotazione" + +#: src/object/custom_particle_system.cpp:511 +msgid "Rotation speed (variation)" +msgstr "Velocità di rotazione (variazione)" + +#: src/object/custom_particle_system.cpp:512 +#: src/editor/particle_editor.cpp:200 +msgid "Rotation acceleration" +msgstr "Accelerazione di rotazione" + +#: src/object/custom_particle_system.cpp:513 +msgid "Rotation friction" +msgstr "Rotazione attrito" + +#: src/object/custom_particle_system.cpp:514 +#: src/editor/particle_editor.cpp:208 +msgid "Rotation mode" +msgstr "Modalità di rotazione" + +#: src/object/custom_particle_system.cpp:515 +#: src/editor/particle_editor.cpp:206 +msgid "Fixed" +msgstr "Fisso" + +#: src/object/custom_particle_system.cpp:515 +#: src/editor/particle_editor.cpp:205 +msgid "Facing" +msgstr "Puntato" + +#: src/object/custom_particle_system.cpp:515 +#: src/editor/particle_editor.cpp:204 +msgid "Wiggling" +msgstr "Dimenato" + +#: src/object/custom_particle_system.cpp:519 +#: src/editor/particle_editor.cpp:219 +msgid "Collision mode" +msgstr "Modalità di collisione" + +#: src/object/custom_particle_system.cpp:520 +msgid "None (pass through)" +msgstr "Nessuno (passa attraverso)" + +#: src/object/custom_particle_system.cpp:520 +msgid "Stick" +msgstr "Attacca" + +#: src/object/custom_particle_system.cpp:520 +msgid "Stick Forever" +msgstr "Attacca per sempre" + +#: src/object/custom_particle_system.cpp:520 +#: src/editor/particle_editor.cpp:214 +msgid "Bounce (heavy)" +msgstr "Rimbalzo (pesante)" + +#: src/object/custom_particle_system.cpp:520 +#: src/editor/particle_editor.cpp:213 +msgid "Bounce (light)" +msgstr "Rimbalzo (leggero)" + +#: src/object/custom_particle_system.cpp:520 +msgid "Kill particle" +msgstr "Uccidi particella" + +#: src/object/custom_particle_system.cpp:520 +msgid "Fade out particle" +msgstr "Dissolvi particella" + +#: src/object/custom_particle_system.cpp:524 +msgid "Delete if off-screen" +msgstr "Elimina se fuori schermata" + +#: src/object/custom_particle_system.cpp:525 +#: src/editor/particle_editor.cpp:224 +msgid "Never" +msgstr "Mai" + +#: src/object/custom_particle_system.cpp:525 +#: src/editor/particle_editor.cpp:223 +msgid "Only on exit" +msgstr "Solo in uscita" + +#: src/object/custom_particle_system.cpp:525 +msgid "Always" +msgstr "Sempre" + +#: src/object/custom_particle_system.cpp:529 +msgid "Cover screen" +msgstr "Copri schermo" + +#: src/object/ispy.hpp:35 msgid "Ispy" msgstr "Spione" -#: src/object/weak_block.cpp:211 -msgid "Linked" -msgstr "Collegato" +#: src/object/particle_zone.cpp:51 +msgid "Particle Name" +msgstr "Nome Particella" + +#: src/object/particle_zone.cpp:62 +msgid "Spawn" +msgstr "Generazione" + +#: src/object/particle_zone.cpp:63 +msgid "Life zone" +msgstr "Zona di vita" + +#: src/object/particle_zone.cpp:64 +msgid "Life zone (clear)" +msgstr "Zona di vita (pulita)" -#: src/object/decal.hpp:34 +#: src/object/particle_zone.cpp:65 +msgid "Kill particles" +msgstr "Uccidi particelle" + +#: src/object/particle_zone.cpp:66 +msgid "Clear particles" +msgstr "Pulisci particelle" + +#: src/object/weak_block.cpp:98 +msgid "Hay" +msgstr "Fieno" + +#: src/object/decal.hpp:41 msgid "Decal" -msgstr "Ricalca" +msgstr "Decalcomania" -#: src/object/tilemap.cpp:216 +#: src/object/tilemap.cpp:267 msgid "Resize offset x" -msgstr "Ridimensiona offset X" +msgstr "Ridimensiona sfasamento X" -#: src/object/tilemap.cpp:217 +#: src/object/tilemap.cpp:268 msgid "Resize offset y" -msgstr "Ridimensiona offset Y" +msgstr "Ridimensiona sfasamento Y" + +#: src/object/tilemap.cpp:270 src/supertux/menu/editor_sector_menu.cpp:41 +#: src/editor/object_option.cpp:178 +msgid "Width" +msgstr "Larghezza" -#: src/object/tilemap.cpp:222 +#: src/object/tilemap.cpp:271 src/supertux/menu/editor_sector_menu.cpp:42 +#: src/editor/object_option.cpp:179 +msgid "Height" +msgstr "Altezza" + +#: src/object/tilemap.cpp:273 msgid "Alpha" msgstr "Alfa" -#: src/object/tilemap.cpp:223 +#: src/object/tilemap.cpp:274 msgid "Speed x" msgstr "Velocità x" -#: src/object/tilemap.cpp:224 +#: src/object/tilemap.cpp:275 msgid "Speed y" msgstr "Velocità y" -#: src/object/tilemap.cpp:225 +#: src/object/tilemap.cpp:276 msgid "Tint" msgstr "Tinta" -#: src/object/tilemap.cpp:243 src/supertux/menu/editor_tilegroup_menu.cpp:26 -#: src/editor/toolbox_widget.cpp:89 +#: src/object/tilemap.cpp:296 src/supertux/menu/editor_tilegroup_menu.cpp:26 +#: src/editor/toolbox_widget.cpp:98 msgid "Tiles" -msgstr "" +msgstr "Caselle" -#: src/object/gradient.cpp:115 -msgid "Left Colour" -msgstr "Colore sinistro" - -#: src/object/gradient.cpp:116 -msgid "Right Colour" -msgstr "Colore destro" +#: src/object/gradient.cpp:98 +msgid "Primary Colour" +msgstr "Colore Primario" -#: src/object/gradient.cpp:118 -msgid "Top Colour" -msgstr "Colore superiore" +#: src/object/gradient.cpp:99 +msgid "Secondary Colour" +msgstr "Colore Secondario" -#: src/object/gradient.cpp:119 -msgid "Bottom Colour" -msgstr "Colore inferiore" - -#: src/object/gradient.cpp:125 +#: src/object/gradient.cpp:104 msgid "Vertical" msgstr "Verticale" -#: src/object/gradient.cpp:125 +#: src/object/gradient.cpp:104 msgid "Horizontal" msgstr "Orizzontale" -#: src/object/gradient.cpp:125 +#: src/object/gradient.cpp:104 msgid "Vertical (whole sector)" msgstr "Verticale (intero settore)" -#: src/object/gradient.cpp:125 +#: src/object/gradient.cpp:104 msgid "Horizontal (whole sector)" msgstr "Orizzontale (intero settore)" -#: src/object/gradient.cpp:135 +#: src/object/gradient.cpp:114 msgid "Blend mode" -msgstr "" +msgstr "Modalità di fusione" -#: src/object/gradient.cpp:136 +#: src/object/gradient.cpp:115 msgid "Blend" -msgstr "" +msgstr "Fusione" -#: src/object/gradient.cpp:136 +#: src/object/gradient.cpp:115 msgid "Additive" -msgstr "" +msgstr "Aggiungi" -#: src/object/gradient.cpp:136 +#: src/object/gradient.cpp:115 msgid "Modulate" -msgstr "" +msgstr "Modulo" -#: src/object/gradient.cpp:136 src/supertux/menu/keyboard_menu.cpp:60 -#: src/supertux/menu/joystick_menu.cpp:108 -#: src/supertux/menu/joystick_menu.cpp:215 src/editor/object_settings.cpp:124 -msgid "None" -msgstr "Nessuno" +#: src/object/bumper.hpp:38 +msgid "Bumper" +msgstr "Paraurti" -#: src/object/unstable_tile.hpp:34 -msgid "Unstable Tile" -msgstr "" +#: src/object/conveyor_belt.cpp:63 +msgid "Length" +msgstr "Lunghezza" -#: src/object/brick.hpp:31 -msgid "Brick" -msgstr "Mattone" +#: src/object/moving_sprite.cpp:192 src/object/pneumatic_platform.cpp:161 +msgid "Sprite" +msgstr "Sprite" -#: src/object/invisible_wall.hpp:34 +#: src/object/unstable_tile.hpp:42 +msgid "Unstable Tile" +msgstr "Casella instabile" + +#: src/object/brick.hpp:70 +msgid "Heavy Brick" +msgstr "Mattone Pesante" + +#: src/object/invisible_wall.hpp:37 msgid "Invisible Wall" -msgstr "" +msgstr "Muro invisibile" -#: src/object/spotlight.hpp:38 +#: src/object/spotlight.hpp:52 msgid "Spotlight" msgstr "Riflettore" -#: src/object/scripted_object.hpp:39 +#: src/object/scripted_object.hpp:40 msgid "Scripted Object" -msgstr "" +msgstr "Oggetto scriptato" + +#: src/object/custom_particle_system_file.hpp:40 +msgid "Custom Particles from file" +msgstr "Particelle Personalizzate da file" -#: src/object/coin.hpp:75 +#: src/object/coin.hpp:97 msgid "Heavy Coin" -msgstr "" +msgstr "Gettone pesante" + +#: src/object/explosion.hpp:35 +msgid "Explosion" +msgstr "Esplosione" -#: src/object/bonus_block.hpp:55 +#: src/object/bonus_block.hpp:62 msgid "Bonus Block" -msgstr "" +msgstr "Blocco Bonus" -#: src/object/magicblock.hpp:41 +#: src/object/magicblock.hpp:42 msgid "Magic Tile" -msgstr "" +msgstr "Casella Magica" -#: src/object/camera.hpp:67 +#: src/object/camera.hpp:61 msgid "Camera" msgstr "Camera" -#: src/object/textscroller.hpp:44 -msgid "TextScroller" -msgstr "" +#: src/object/textscroller.hpp:45 +msgid "Text Scroller" +msgstr "Scorrimento del testo" + +#: src/gui/notification.cpp:57 +msgid "Click for more details." +msgstr "Clicca per dettagli" -#: src/gui/menu_badguy_select.cpp:93 -msgid "List of enemies" -msgstr "Lista dei nemici" +#: src/gui/notification.cpp:150 +msgid "Do not show again" +msgstr "Non mostrare di nuovo" -#: src/gui/menu_badguy_select.cpp:95 -msgid "Enemy" -msgstr "Nemico" +#: src/gui/notification.cpp:157 src/supertux/menu/download_dialog.cpp:124 +msgid "Close" +msgstr "Chiudi" + +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#, c++-format +msgid "Selected item: {}" +msgstr "Oggetto selezionato: {}" + +#: src/gui/menu_string_array.cpp:70 +msgid "Edit string array" +msgstr "Modifica string array" -#: src/gui/menu_badguy_select.cpp:96 +#: src/gui/menu_string_array.cpp:79 src/gui/menu_object_select.cpp:50 +#: src/supertux/menu/profile_menu.cpp:88 msgid "Add" msgstr "Aggiungi" -#: src/gui/menu_badguy_select.cpp:106 src/gui/menu_color.cpp:34 -#: src/gui/dialog.hpp:80 src/gui/menu_script.cpp:47 -#: src/supertux/menu/editor_sector_menu.cpp:46 -#: src/supertux/menu/editor_levelset_menu.cpp:62 -#: src/supertux/menu/addon_menu.cpp:346 +#: src/gui/menu_string_array.cpp:80 +msgid "Insert" +msgstr "Inserisci" + +#: src/gui/menu_string_array.cpp:81 +#: src/supertux/menu/addon_preview_menu.cpp:177 src/editor/object_menu.cpp:61 +msgid "Update" +msgstr "Aggiorna" + +#: src/gui/menu_string_array.cpp:82 src/supertux/menu/profile_menu.cpp:108 +#: src/supertux/menu/profile_menu.cpp:110 +msgid "Delete" +msgstr "Cancella" + +#: src/gui/menu_string_array.cpp:84 src/gui/menu_object_select.cpp:61 +#: src/gui/menu_color.cpp:37 src/gui/dialog.hpp:87 src/gui/menu_script.cpp:46 +#: src/supertux/menu/editor_sector_menu.cpp:48 +#: src/supertux/menu/editor_levelset_menu.cpp:58 #: src/supertux/menu/editor_new_levelset_menu.cpp:37 -#: src/supertux/menu/editor_level_menu.cpp:44 src/editor/object_menu.cpp:43 +#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:71 msgid "OK" msgstr "OK" -#: src/gui/menu_badguy_select.cpp:135 -msgid "Do you want to delete this badguy from the list?" -msgstr "Vuoi togliere questo cattivo dalla lista?" +#: src/gui/menu_object_select.cpp:46 +msgid "List of objects" +msgstr "Lista oggetti" -#: src/gui/menu_badguy_select.cpp:136 src/gui/dialog.hpp:89 -#: src/supertux/menu/editor_menu.cpp:123 src/editor/editor.cpp:482 -msgid "Yes" -msgstr "Si" +#: src/gui/menu_object_select.cpp:48 +#, c++-format +msgid "Select object ({})" +msgstr "Seleziona oggetti ({})" -#: src/gui/menu_badguy_select.cpp:139 src/gui/dialog.hpp:90 -#: src/supertux/menu/editor_menu.cpp:126 src/editor/editor.cpp:489 -msgid "No" -msgstr "No" +#: src/gui/menu_object_select.cpp:114 +msgid "Are you sure you want to remove this object from the list?" +msgstr "Sei sicuro di voler rimuovere quest'oggetto dalla lista?" #: src/gui/menu_color.cpp:24 msgid "Mix the colour" msgstr "Mescola il colore" -#: src/gui/menu_filesystem.cpp:111 +#: src/gui/dialog.hpp:96 src/supertux/menu/editor_level_select_menu.cpp:181 +#: src/editor/editor.cpp:663 +msgid "Yes" +msgstr "Si" + +#: src/gui/dialog.hpp:97 src/supertux/menu/editor_level_select_menu.cpp:185 +#: src/editor/particle_editor.cpp:781 src/editor/editor.cpp:670 +msgid "No" +msgstr "No" + +#: src/gui/menu_list.cpp:38 src/gui/menu_filesystem.cpp:120 +#: src/gui/menu_paths.cpp:48 src/supertux/menu/particle_editor_save_as.cpp:42 #: src/supertux/menu/editor_sectors_menu.cpp:45 -#: src/supertux/menu/editor_sectors_menu.cpp:95 -#: src/supertux/menu/editor_sectors_menu.cpp:100 +#: src/supertux/menu/editor_sectors_menu.cpp:94 +#: src/supertux/menu/editor_sectors_menu.cpp:99 #: src/supertux/menu/editor_objectgroup_menu.cpp:42 -#: src/supertux/menu/editor_tilegroup_menu.cpp:36 src/editor/editor.cpp:493 +#: src/supertux/menu/editor_tilegroup_menu.cpp:36 +#: src/supertux/menu/editor_level_select_menu.cpp:190 +#: src/supertux/menu/editor_save_as.cpp:42 +#: src/supertux/menu/particle_editor_open.cpp:43 +#: src/editor/particle_editor.cpp:785 src/editor/editor.cpp:674 msgid "Cancel" msgstr "Cancella" +#: src/gui/menu_filesystem.cpp:118 +msgid "Open Directory" +msgstr "Apri Directory" + #: src/gui/menu_script.cpp:28 msgid "Edit script" msgstr "Modifica script" -#: src/badguy/toad.hpp:37 +#: src/gui/menu_paths.cpp:32 +msgid "Clone" +msgstr "Clona" + +#: src/gui/menu_paths.cpp:41 +msgid "" +"An error occurred and the game could\n" +"not clone the path. Please contact\n" +"the developers for support." +msgstr "" + +#: src/gui/menu_paths.cpp:44 +msgid "Bind" +msgstr "Associa" + +#: src/gui/menu_paths.cpp:49 +msgid "" +"Do you wish to clone the path to edit it separately,\n" +"or do you want to bind both paths together\n" +"so that any edit on one edits the other?" +msgstr "" + +#: src/gui/menu_paths.cpp:56 +#, c++-format +msgid "Path {}" +msgstr "" + +#: src/gui/menu_paths.cpp:67 src/supertux/menu/integrations_menu.cpp:60 +#: src/supertux/menu/editor_converters_menu.cpp:79 +#: src/supertux/menu/video_system_menu.cpp:45 +#: src/supertux/menu/contrib_menu.cpp:102 src/supertux/menu/debug_menu.cpp:77 +#: src/supertux/menu/multiplayer_menu.cpp:39 +#: src/supertux/menu/custom_menu_menu.cpp:65 +#: src/supertux/menu/editor_level_select_menu.cpp:98 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:63 +#: src/supertux/menu/worldmap_cheat_menu.cpp:57 +#: src/supertux/menu/worldmap_cheat_menu.cpp:196 +#: src/supertux/menu/editor_levelset_select_menu.cpp:114 +#: src/supertux/menu/options_menu.cpp:223 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:69 +#: src/supertux/menu/addon_preview_menu.cpp:193 +#: src/supertux/menu/profile_menu.cpp:118 +#: src/supertux/menu/multiplayer_players_menu.cpp:91 +#: src/supertux/menu/addon_menu.cpp:153 +#: src/supertux/menu/editor_new_levelset_menu.cpp:40 +#: src/supertux/menu/options_select_menu.cpp:44 +#: src/supertux/menu/world_set_menu.cpp:33 +#: src/supertux/menu/addon_browse_menu.cpp:162 +#: src/supertux/menu/web_asset_menu.cpp:48 +#: src/supertux/menu/profile_name_menu.cpp:45 +#: src/supertux/menu/keyboard_menu.cpp:71 +#: src/supertux/menu/sorted_contrib_menu.cpp:51 +#: src/supertux/menu/language_menu.cpp:63 +#: src/supertux/menu/joystick_menu.cpp:99 +#: src/supertux/menu/contrib_levelset_menu.cpp:67 +#: src/supertux/menu/cheat_menu.cpp:58 +#: src/supertux/menu/addon_file_install_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:43 +#: src/supertux/menu/cheat_apply_menu.cpp:63 +#: src/supertux/menu/multiplayer_player_menu.cpp:205 +#: src/supertux/menu/editor_delete_level_menu.cpp:68 +msgid "Back" +msgstr "Indietro" + +#: src/addon/addon_manager.cpp:562 +msgid "Only one resource pack is allowed to be enabled at a time." +msgstr "È possibile abilitare un solo pacchetto risorse alla volta" + +#: src/addon/addon_manager.cpp:837 +#, c++-format +msgid "Add-on {} by {} is already installed." +msgstr "Add-on {} da {} è già installato." + +#: src/addon/addon_manager.cpp:857 +#, c++-format +msgid "Add-on {} by {} successfully installed." +msgstr "Add-on {} da {} è stato installato con successo." + +#: src/addon/addon.cpp:71 src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Levelset" +msgstr "Set di livelli" + +#: src/addon/addon.cpp:74 src/supertux/menu/editor_levelset_menu.cpp:54 +#: data//images/engine/editor/objects.stoi:389 +msgid "Worldmap" +msgstr "Mappa del mondo" + +#: src/addon/addon.cpp:77 +msgid "World" +msgstr "Mondo" + +#: src/addon/addon.cpp:80 +msgid "Add-on" +msgstr "Componenti aggiuntivi" + +#: src/addon/addon.cpp:83 +msgid "Language Pack" +msgstr "Pacchetto Lingua" + +#: src/addon/addon.cpp:86 +msgid "Resource Pack" +msgstr "Pacchetto Risorse" + +#: src/addon/addon.cpp:89 +msgid "Unknown" +msgstr "Sconosciuto" + +#: src/addon/addon.cpp:100 +#, c++-format +msgid "{} \"{}\" by \"{}\"" +msgstr "" + +#: src/addon/addon.cpp:114 +msgid "add-on" +msgstr "" + +#: src/addon/addon.cpp:114 +msgid "add-ons" +msgstr "" + +#: src/badguy/toad.hpp:38 msgid "Toad" msgstr "Rospo" -#: src/badguy/mrtree.hpp:29 -msgid "Walking Tree" -msgstr "" +#: src/badguy/mrtree.hpp:32 +msgid "Mr. Tree" +msgstr "Signor Albero" -#: src/badguy/plant.hpp:33 +#: src/badguy/plant.hpp:34 msgid "Plant" msgstr "Pianta" -#: src/badguy/crystallo.hpp:30 +#: src/badguy/tarantula.hpp:39 src/badguy/tarantula.cpp:353 +msgid "Tarantula" +msgstr "Tarantola" + +#: src/badguy/granito_giant.cpp:71 +msgid "Awake" +msgstr "Sveglio" + +#: src/badguy/granito_giant.cpp:72 +msgid "Sleeping" +msgstr "Addormentato" + +#: src/badguy/granito_giant.cpp:73 +msgid "Corrupted A" +msgstr "" + +#: src/badguy/granito_giant.cpp:74 +msgid "Corrupted B" +msgstr "" + +#: src/badguy/granito_giant.cpp:75 +msgid "Corrupted C" +msgstr "" + +#: src/badguy/crystallo.hpp:33 msgid "Crystallo" msgstr "Crystallo" -#: src/badguy/totem.hpp:36 +#: src/badguy/viciousivy.cpp:45 src/badguy/snail.cpp:70 +#: src/badguy/kamikazesnowball.cpp:118 src/badguy/walkingleaf.cpp:36 +#: src/badguy/jumpy.cpp:46 src/badguy/igel.cpp:189 src/badguy/mrtree.cpp:51 +msgid "Corrupted" +msgstr "" + +#: src/badguy/totem.hpp:37 msgid "Totem" msgstr "Totem" -#: src/badguy/stalactite.hpp:38 +#: src/badguy/stalactite.hpp:42 msgid "Stalactite" msgstr "Stalattite" -#: src/badguy/haywire.hpp:42 +#: src/badguy/fish_chasing.cpp:198 +msgid "Tracking Distance" +msgstr "" + +#: src/badguy/fish_chasing.cpp:199 +msgid "Losing Distance" +msgstr "" + +#: src/badguy/fish_chasing.cpp:200 +msgid "Chase Speed" +msgstr "" + +#: src/badguy/root_sapling.hpp:41 +msgid "Root Sapling" +msgstr "Arboscello radice" + +#: src/badguy/haywire.hpp:46 msgid "Haywire" msgstr "Caotibomba" -#: src/badguy/dispenser.hpp:48 +#: src/badguy/dispenser.hpp:52 msgid "Dispenser" msgstr "Distributore" -#: src/badguy/short_fuse.hpp:29 +#: src/badguy/short_fuse.hpp:30 msgid "Short Fuse" -msgstr "" +msgstr "Miccia corta" -#: src/badguy/zeekling.hpp:36 +#: src/badguy/zeekling.hpp:39 msgid "Zeekling" -msgstr "Zeekling" +msgstr "Vivernofalco" + +#: src/badguy/smartball.cpp:35 +msgid "Pumpkin" +msgstr "Zucca" + +#: src/badguy/bouncing_snowball.cpp:82 +msgid "Fatbat" +msgstr "" + +#: src/badguy/dive_mine.hpp:50 +msgid "Dive Mine" +msgstr "Scubamina" + +#: src/badguy/granito_big.hpp:33 +msgid "Big Granito" +msgstr "Grande Granito" + +#: src/badguy/mriceblock.hpp:49 +msgid "Mr. Iceblock" +msgstr "Signor Ghiaccio" + +#: src/badguy/granito.hpp:39 src/badguy/darttrap.cpp:163 +#: src/badguy/corrupted_granito.cpp:175 src/badguy/dispenser.cpp:438 +msgid "Granito" +msgstr "Granito" + +#: src/badguy/fish_swimming.cpp:54 src/badguy/jumpy.cpp:44 +#: data//images/ice_world.strf:10 data//images/tiles.strf:28 +#: data//images/worldmap.strf:41 +msgid "Snow" +msgstr "Neve" -#: src/badguy/mriceblock.hpp:46 -msgid "Iceblock" +#: src/badguy/fish_swimming.cpp:55 data//images/ice_world.strf:211 +#: data//images/tiles.strf:366 data//images/worldmap.strf:67 +msgid "Forest" +msgstr "Foresta" + +#: src/badguy/crusher.hpp:71 +msgid "Crusher" +msgstr "Frantumatore" + +#: src/badguy/flame.cpp:84 +msgid "Fire" msgstr "" -#: src/badguy/jumpy.hpp:36 +#: src/badguy/flame.cpp:85 +msgid "Ghost" +msgstr "" + +#: src/badguy/corrupted_granito_big.hpp:35 +msgid "Corrupted Big Granito" +msgstr "Grande Granito Corrotto" + +#: src/badguy/scrystallo.cpp:57 +msgid "Walk Radius" +msgstr "Raggio di cammino" + +#: src/badguy/scrystallo.cpp:58 +msgid "Awakening Radius" +msgstr "Raggio di Risveglio" + +#: src/badguy/scrystallo.cpp:59 +msgid "Roof-attached" +msgstr "Attaccato al tetto" + +#: src/badguy/jumpy.hpp:40 msgid "Jumpy" msgstr "Saltellino" -#: src/badguy/captainsnowball.hpp:31 +#: src/badguy/captainsnowball.hpp:32 msgid "Captain Snowball" -msgstr "" +msgstr "Capitan Palla di Neve" -#: src/badguy/ghosttree.hpp:42 +#: src/badguy/ghosttree.hpp:43 msgid "Ghost Tree" -msgstr "" +msgstr "Albero fantasma" -#: src/badguy/willowisp.cpp:283 +#: src/badguy/willowisp.cpp:314 msgid "Track range" msgstr "Gittata d'inseguimento" -#: src/badguy/willowisp.cpp:284 +#: src/badguy/willowisp.cpp:315 msgid "Vanish range" msgstr "Gittata di scomparsa" -#: src/badguy/willowisp.cpp:285 +#: src/badguy/willowisp.cpp:316 msgid "Fly speed" msgstr "Velocità di volo" -#: src/badguy/kugelblitz.hpp:39 +#: src/badguy/kugelblitz.hpp:40 msgid "Kugelblitz" msgstr "Kugelblitz" -#: src/badguy/mole_rock.hpp:42 +#: src/badguy/mole_rock.hpp:44 msgid "Mole's rock" -msgstr "Roccia di Talpa" +msgstr "Talpa-Roccia" -#: src/badguy/badguy.cpp:834 +#: src/badguy/badguy.cpp:1064 msgid "Death script" msgstr "Script di morte" -#: src/badguy/sspiky.hpp:36 +#: src/badguy/sspiky.hpp:37 msgid "Sleeping Spiky" -msgstr "" +msgstr "Spiky dormiente" -#: src/badguy/yeti_stalactite.hpp:33 +#: src/badguy/yeti_stalactite.hpp:34 msgid "Yeti's Stalactite" -msgstr "" +msgstr "Stalattite dello Yeti" -#: src/badguy/livefire.hpp:37 +#: src/badguy/fish_harmless.hpp:30 +msgid "Harmless Fish" +msgstr "Pesce Innocuo" + +#: src/badguy/livefire.hpp:38 msgid "Walking Flame" -msgstr "" +msgstr "Fiamma camminante" -#: src/badguy/livefire.hpp:67 +#: src/badguy/livefire.hpp:71 msgid "Sleeping Flame" -msgstr "" +msgstr "Fiamma addormentata" -#: src/badguy/livefire.hpp:83 +#: src/badguy/livefire.hpp:89 msgid "Dormant Flame" -msgstr "" +msgstr "Fiamma dormiente" -#: src/badguy/owl.hpp:39 +#: src/badguy/owl.hpp:45 msgid "Owl" msgstr "Gufo" -#: src/badguy/igel.hpp:34 +#: src/badguy/igel.hpp:38 msgid "Igel" -msgstr "Igel" +msgstr "Spino" -#: src/badguy/darttrap.cpp:126 +#: src/badguy/darttrap.cpp:148 msgid "Initial delay" msgstr "Ritardo iniziale" -#: src/badguy/darttrap.cpp:128 +#: src/badguy/darttrap.cpp:150 msgid "Fire delay" msgstr "Ritardo fuoco" -#: src/badguy/darttrap.cpp:129 +#: src/badguy/darttrap.cpp:151 msgid "Ammo" msgstr "Munizioni" -#: src/badguy/snowball.hpp:29 -msgid "Snowball" -msgstr "Palla di neve" +#: src/badguy/darttrap.cpp:152 +msgid "Dart sprite" +msgstr "Sprite Dardo" -#: src/badguy/smartblock.hpp:29 -msgid "Smartblock" -msgstr "" +#: src/badguy/darttrap.cpp:164 +msgid "Skull" +msgstr "Teschio" + +#: src/badguy/snowball.hpp:30 +msgid "Mr. Snowball" +msgstr "Signor Palla di Neve" -#: src/badguy/yeti.cpp:369 +#: src/badguy/smartblock.hpp:30 +msgid "Mrs. Iceblock" +msgstr "Signora Ghiaccio" + +#: src/badguy/yeti.cpp:370 msgid "Fixed position" msgstr "Posizione fissata" -#: src/badguy/yeti.cpp:370 +#: src/badguy/yeti.cpp:371 msgid "Lives" msgstr "Vite" -#: src/badguy/goldbomb.hpp:49 +#: src/badguy/goldbomb.hpp:50 msgid "Gold Bomb" +msgstr "Bomba d'oro" + +#: src/badguy/corrupted_granito.hpp:44 +msgid "Corrupted Granito" +msgstr "Granito Corrotto" + +#: src/badguy/mrbomb.cpp:48 +msgid "Classic" msgstr "" -#: src/badguy/flyingsnowball.hpp:32 +#: src/badguy/flyingsnowball.hpp:33 msgid "Flying Snowball" +msgstr "Palla di Neve Volante" + +#: src/badguy/crusher.cpp:75 +msgid "Ice (normal)" msgstr "" -#: src/badguy/skullyhop.hpp:37 -msgid "Skullyhop" +#: src/badguy/crusher.cpp:76 +msgid "Ice (big)" msgstr "" -#: src/badguy/kamikazesnowball.hpp:32 -msgid "Snowshot" +#: src/badguy/crusher.cpp:77 +msgid "Rock (normal)" msgstr "" -#: src/badguy/kamikazesnowball.hpp:52 -msgid "Leafshot" +#: src/badguy/crusher.cpp:78 +msgid "Rock (big)" +msgstr "" + +#: src/badguy/crusher.cpp:79 +msgid "Corrupted (normal)" +msgstr "" + +#: src/badguy/crusher.cpp:80 +msgid "Corrupted (big)" msgstr "" -#: src/badguy/flame.hpp:41 +#: src/badguy/crusher.cpp:492 +msgid "Sideways" +msgstr "Laterale" + +#: src/badguy/kamikazesnowball.hpp:34 +msgid "Kamikaze Snowball" +msgstr "" + +#: src/badguy/kamikazesnowball.hpp:64 +msgid "Leafshot" +msgstr "Colpo di foglia" + +#: src/badguy/fish_swimming.hpp:40 +msgid "Swimming Fish" +msgstr "Pesce Nuotante" + +#: src/badguy/flame.hpp:47 msgid "Flame" msgstr "Fiamma" -#: src/badguy/poisonivy.hpp:30 -msgid "Spring Leaf" +#: src/badguy/scrystallo.hpp:31 +msgid "Sleeping Crystallo" +msgstr "Crystallo Dormiente" + +#: src/badguy/jumpy.cpp:45 +msgid "Wooden" msgstr "" -#: src/badguy/willowisp.hpp:55 -msgid "Will o' Wisp" +#: src/badguy/jumpy.cpp:47 +msgid "Metal" msgstr "" -#: src/badguy/badguy.hpp:50 +#: src/badguy/jumpy.cpp:48 +msgid "Bag" +msgstr "" + +#: src/badguy/willowisp.hpp:57 +msgid "Will o' Wisp" +msgstr "Fuoco Fatuo" + +#: src/badguy/fish_jumping.hpp:41 +msgid "Jumping Fish" +msgstr "Pesce Saltello" + +#: src/badguy/badguy.hpp:61 msgid "Badguy" msgstr "Cattivo" -#: src/badguy/ghostflame.hpp:30 -msgid "Ghost Flame" -msgstr "" +#: src/badguy/rcrystallo.hpp:33 +msgid "Roof Crystallo" +msgstr "Crystallo Soffitto" -#: src/badguy/spiky.hpp:30 +#: src/badguy/spiky.hpp:31 msgid "Spiky" msgstr "Spiky" -#: src/badguy/walkingleaf.hpp:30 -msgid "Autumn Leaf" -msgstr "" +#: src/badguy/walkingleaf.hpp:33 +msgid "Walking Leaf" +msgstr "Foglia Camminante" + +#: src/badguy/root.hpp:39 +msgid "Root" +msgstr "Radice" -#: src/badguy/owl.cpp:227 +#: src/badguy/owl.cpp:241 msgid "Carry" -msgstr "" +msgstr "Portare" -#: src/badguy/darttrap.hpp:33 +#: src/badguy/darttrap.hpp:35 msgid "Dart Trap" -msgstr "" +msgstr "Trappola dardi" -#: src/badguy/skydive.hpp:36 +#: src/badguy/skydive.hpp:43 msgid "Skydive" -msgstr "" +msgstr "Pescebomba" -#: src/badguy/yeti.hpp:37 +#: src/badguy/yeti.hpp:38 msgid "Yeti" msgstr "Yeti" -#: src/badguy/mole.hpp:39 +#: src/badguy/snowball.cpp:41 +msgid "Bumpkin" +msgstr "" + +#: src/badguy/snowball.cpp:42 +msgid "BSOD" +msgstr "" + +#: src/badguy/mole.hpp:38 msgid "Mole" msgstr "Talpa" -#: src/badguy/mrbomb.hpp:42 -msgid "Bomb" -msgstr "" +#: src/badguy/corrupted_granito.cpp:176 +msgid "Skullyhop" +msgstr "Salteschio" + +#: src/badguy/mrbomb.hpp:40 +msgid "Mr. Bomb" +msgstr "Signor Bomba" -#: src/badguy/walking_candle.hpp:40 +#: src/badguy/walking_candle.hpp:41 msgid "Walking Candle" -msgstr "" +msgstr "Candela Camminante" -#: src/badguy/angrystone.hpp:34 +#: src/badguy/angrystone.hpp:39 msgid "Angry Stone" -msgstr "" +msgstr "Pietra Arrabbiata" -#: src/badguy/spidermite.hpp:35 -msgid "Spider" +#: src/badguy/tarantula.cpp:354 +msgid "Spidermite" +msgstr "Acaro losco" + +#: src/badguy/tarantula.cpp:374 +msgid "Static" msgstr "" -#: src/badguy/ghoul.hpp:28 +#: src/badguy/ghoul.hpp:30 msgid "Ghoul" -msgstr "" +msgstr "Ghoul" -#: src/badguy/snowman.hpp:28 +#: src/badguy/granito_giant.hpp:32 +msgid "Giant Granito" +msgstr "Granito Gigante" + +#: src/badguy/snowman.hpp:29 msgid "Snowman" msgstr "Pupazzo di neve" -#: src/badguy/stumpy.hpp:35 -msgid "Walking Stump" +#: src/badguy/viciousivy.hpp:33 +msgid "Vicious Ivy" +msgstr "Crudel-Edera" + +#: src/badguy/stalactite.cpp:156 +msgid "ice" msgstr "" -#: src/badguy/fish.hpp:40 -msgid "Fish" -msgstr "Pesce" +#: src/badguy/stalactite.cpp:157 +msgid "rock" +msgstr "" + +#: src/badguy/fish_chasing.hpp:33 +msgid "Chasing Fish" +msgstr "Pesce Caccia" -#: src/badguy/dispenser.cpp:439 +#: src/badguy/stumpy.hpp:38 +msgid "Stumpy" +msgstr "Troncone" + +#: src/badguy/dispenser.cpp:412 msgid "Interval (seconds)" msgstr "Intervallo (secondi)" -#: src/badguy/dispenser.cpp:440 +#: src/badguy/dispenser.cpp:413 msgid "Random" msgstr "Casuale" -#: src/badguy/dispenser.cpp:441 data//images/engine/editor/objects.stoi:4 -msgid "Enemies" -msgstr "Nemici" +#: src/badguy/dispenser.cpp:416 +#: src/supertux/menu/editor_objectgroup_menu.cpp:30 +#: src/editor/toolbox_widget.cpp:101 +msgid "Objects" +msgstr "Oggetti" -#: src/badguy/dispenser.cpp:442 +#: src/badguy/dispenser.cpp:419 msgid "Limit dispensed badguys" msgstr "Limita la distribuzione dei cattivi" -#: src/badguy/dispenser.cpp:444 +#: src/badguy/dispenser.cpp:421 +msgid "Obey Gravity" +msgstr "Obbedire alla gravità" + +#: src/badguy/dispenser.cpp:423 msgid "Max concurrent badguys" msgstr "Numero massimo di cattivi simultanei" -#: src/badguy/dispenser.cpp:446 src/supertux/menu/editor_levelset_menu.cpp:60 -msgid "Type" -msgstr "Tipo" - -#: src/badguy/dispenser.cpp:447 -msgid "dropper" -msgstr "contagocce" - -#: src/badguy/dispenser.cpp:447 -msgid "rocket launcher" -msgstr "lanciarazzi" +#: src/badguy/dispenser.cpp:435 +msgid "Dropper" +msgstr "" -#: src/badguy/dispenser.cpp:447 -msgid "cannon" -msgstr "cannone" +#: src/badguy/dispenser.cpp:436 +msgid "Cannon" +msgstr "Cannone" -#: src/badguy/dispenser.cpp:447 -msgid "invisible" -msgstr "invisibile" +#: src/badguy/dispenser.cpp:437 src/worldmap/special_tile.cpp:77 +msgid "Invisible" +msgstr "Invisibile" -#: src/badguy/snail.hpp:42 +#: src/badguy/snail.hpp:43 msgid "Snail" msgstr "Lumaca" -#: src/badguy/smartball.hpp:31 -msgid "Smartball" -msgstr "" +#: src/badguy/smartball.hpp:32 +msgid "Mrs. Snowball" +msgstr "Signora Palla di Neve" -#: src/badguy/bouncing_snowball.hpp:31 +#: src/badguy/bouncing_snowball.hpp:39 msgid "Bouncing Snowball" -msgstr "Palla di neve rimbalzante" +msgstr "Palla di Neve Salterella" + +#: src/badguy/granito_big.cpp:52 src/badguy/granito.cpp:263 +msgid "Default" +msgstr "" + +#: src/badguy/granito_big.cpp:53 src/badguy/granito.cpp:264 +msgid "Standing" +msgstr "" + +#: src/badguy/granito_big.cpp:54 src/badguy/granito.cpp:265 +msgid "Walking" +msgstr "" -#: src/badguy/iceflame.hpp:33 -msgid "Ice Flame" +#: src/badguy/mriceblock.cpp:63 +msgid "Laptop" msgstr "" -#: src/badguy/dart.hpp:43 +#: src/badguy/dart.hpp:44 msgid "Dart" msgstr "Dardo" -#: src/supertux/statistics.cpp:47 +#: src/badguy/granito.cpp:268 +msgid "Sitting" +msgstr "" + +#: src/supertux/statistics.cpp:54 msgid "Max coins collected:" msgstr "N. massimo di monete raccolte:" -#: src/supertux/statistics.cpp:48 +#: src/supertux/statistics.cpp:55 msgid "Max fragging:" msgstr "N. massimo di uccisioni:" -#: src/supertux/statistics.cpp:49 +#: src/supertux/statistics.cpp:56 msgid "Max secrets found:" msgstr "N. massimo di segreti trovati:" -#: src/supertux/statistics.cpp:50 +#: src/supertux/statistics.cpp:57 msgid "Best time completed:" msgstr "Miglior tempo di completamento:" -#: src/supertux/statistics.cpp:51 +#: src/supertux/statistics.cpp:58 msgid "Level target time:" msgstr "Obiettivo tempo per il livello:" -#: src/supertux/statistics.cpp:139 src/supertux/levelintro.cpp:159 +#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:175 msgid "Best Level Statistics" msgstr "Statistiche dei migliori risultati dei livelli" -#: src/supertux/statistics.cpp:216 +#: src/supertux/statistics.cpp:238 msgid "You" msgstr "Tu" -#: src/supertux/statistics.cpp:218 +#: src/supertux/statistics.cpp:240 msgid "Best" msgstr "Migliore" -#: src/supertux/statistics.cpp:220 src/supertux/levelintro.cpp:165 +#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:181 msgid "Coins" msgstr "Monete" -#: src/supertux/statistics.cpp:229 +#: src/supertux/statistics.cpp:265 msgid "Badguys" msgstr "Cattivi" -#: src/supertux/statistics.cpp:237 src/supertux/levelintro.cpp:169 +#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:187 msgid "Secrets" msgstr "Segreti" -#: src/supertux/game_object.hpp:77 +#: src/supertux/game_object.hpp:88 msgid "Unknown object" msgstr "Oggetto sconosciuto" -#: src/supertux/command_line_arguments.cpp:74 -#, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Uso: %s [OPZIONI] [LIVELLO]" +#: src/supertux/sector.cpp:507 +msgid "Press escape to skip" +msgstr "Premi escape per saltare" + +#: src/supertux/command_line_arguments.cpp:92 +#, c++-format +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "" -#: src/supertux/command_line_arguments.cpp:75 +#: src/supertux/command_line_arguments.cpp:93 msgid "General Options:" msgstr "Opzioni Generali:" -#: src/supertux/command_line_arguments.cpp:76 +#: src/supertux/command_line_arguments.cpp:94 msgid " -h, --help Show this help message and quit" msgstr "-h, --help Mostra questo messaggio di aiuto e chiude" -#: src/supertux/command_line_arguments.cpp:77 +#: src/supertux/command_line_arguments.cpp:95 msgid " -v, --version Show SuperTux version and quit" msgstr " -v, --version Mostra la versione di SuperTux e chiude" -#: src/supertux/command_line_arguments.cpp:78 +#: src/supertux/command_line_arguments.cpp:96 msgid " --verbose Print verbose messages" msgstr "--verbose Stampa messaggi prolissi" -#: src/supertux/command_line_arguments.cpp:79 +#: src/supertux/command_line_arguments.cpp:97 msgid " --debug Print extra verbose messages" msgstr "-debug Stampa messaggi prolissi extra" -#: src/supertux/command_line_arguments.cpp:80 +#: src/supertux/command_line_arguments.cpp:98 msgid "" " --print-datadir Print SuperTux's primary data directory." msgstr " --print-datadir Mostra la cartella di dati principale di SuperTux." -#: src/supertux/command_line_arguments.cpp:82 +#: src/supertux/command_line_arguments.cpp:99 +msgid "" +" --acknowledgements Print the licenses of libraries used by " +"SuperTux." +msgstr "--acknowledgements Stampa le licenze delle librerie usate da SuperTux" + +#: src/supertux/command_line_arguments.cpp:101 msgid "Video Options:" msgstr "Opzioni Video:" -#: src/supertux/command_line_arguments.cpp:83 +#: src/supertux/command_line_arguments.cpp:102 msgid " -f, --fullscreen Run in fullscreen mode" msgstr "-f, --fullscreen Esegui in modalità a schermo intero" -#: src/supertux/command_line_arguments.cpp:84 +#: src/supertux/command_line_arguments.cpp:103 msgid " -w, --window Run in window mode" msgstr "-w, --window Esegui in modalità finestra" -#: src/supertux/command_line_arguments.cpp:85 +#: src/supertux/command_line_arguments.cpp:104 msgid " -g, --geometry WIDTHxHEIGHT Run SuperTux in given resolution" msgstr "-g, --geometry WIDTHxHEIGHT Esegui SuperTux alla risoluzione data" -#: src/supertux/command_line_arguments.cpp:86 +#: src/supertux/command_line_arguments.cpp:105 msgid " -a, --aspect WIDTH:HEIGHT Run SuperTux with given aspect ratio" msgstr "-a, --aspect WIDTH:HEIGHT Esegui SuperTux con le proporzioni fornite" -#: src/supertux/command_line_arguments.cpp:87 +#: src/supertux/command_line_arguments.cpp:106 msgid " -d, --default Reset video settings to default values" msgstr "-d, --default Ripristina le impostazioni video ai valori originali" -#: src/supertux/command_line_arguments.cpp:88 +#: src/supertux/command_line_arguments.cpp:107 msgid " --renderer RENDERER Use sdl, opengl, or auto to render" msgstr "--renderer RENDERER Usa sdl, opengl, o auto per la visualizzazione" -#: src/supertux/command_line_arguments.cpp:90 +#: src/supertux/command_line_arguments.cpp:109 msgid "Audio Options:" msgstr "Opzioni Audio:" -#: src/supertux/command_line_arguments.cpp:91 +#: src/supertux/command_line_arguments.cpp:110 msgid " --disable-sound Disable sound effects" msgstr "--disable-sound Disabilita gli effetti sonori" -#: src/supertux/command_line_arguments.cpp:92 +#: src/supertux/command_line_arguments.cpp:111 msgid " --disable-music Disable music" msgstr "--disable-music Disabilita la musica" -#: src/supertux/command_line_arguments.cpp:94 +#: src/supertux/command_line_arguments.cpp:113 msgid "Game Options:" msgstr "Opzioni Gioco:" -#: src/supertux/command_line_arguments.cpp:95 +#: src/supertux/command_line_arguments.cpp:114 msgid " --edit-level Open given level in editor" msgstr " --edit-level Apri nell'editor il livello dato" -#: src/supertux/command_line_arguments.cpp:96 +#: src/supertux/command_line_arguments.cpp:115 msgid " --resave Loads given level and saves it" -msgstr "" +msgstr " --resave Carica il livello e lo salva" -#: src/supertux/command_line_arguments.cpp:97 +#: src/supertux/command_line_arguments.cpp:116 msgid " --show-fps Display framerate in levels" msgstr "--show-fps Mostra il framerate nei livelli" -#: src/supertux/command_line_arguments.cpp:98 +#: src/supertux/command_line_arguments.cpp:117 msgid " --no-show-fps Do not display framerate in levels" msgstr "--no-show-fps Non mostrare il framerate nei livelli" -#: src/supertux/command_line_arguments.cpp:99 +#: src/supertux/command_line_arguments.cpp:118 msgid " --show-pos Display player's current position" msgstr " --show-pos Mostra l'attuale posizione del giocatore" -#: src/supertux/command_line_arguments.cpp:100 +#: src/supertux/command_line_arguments.cpp:119 msgid " --no-show-pos Do not display player's position" msgstr " --no-show-pos Non mostra la posizione del giocatore" -#: src/supertux/command_line_arguments.cpp:101 +#: src/supertux/command_line_arguments.cpp:120 msgid " --developer Switch on developer feature" msgstr "--developer Attiva le funzionalità da sviluppatore" -#: src/supertux/command_line_arguments.cpp:102 +#: src/supertux/command_line_arguments.cpp:121 msgid " -s, --debug-scripts Enable script debugger." msgstr "-s, --debug-scripts Abilita lo script debugger." -#: src/supertux/command_line_arguments.cpp:103 +#: src/supertux/command_line_arguments.cpp:122 msgid "" " --spawn-pos X,Y Where in the level to spawn Tux. Only used if" " level is specified." msgstr "--spawn-pos X,Y Dove far apparire Tux nel livello. Utilizzato solo se il livello è specificato." -#: src/supertux/command_line_arguments.cpp:104 +#: src/supertux/command_line_arguments.cpp:123 msgid " --sector SECTOR Spawn Tux in SECTOR\n" msgstr " --sector SETTORE Metti Tux al SETTORE\n" -#: src/supertux/command_line_arguments.cpp:105 +#: src/supertux/command_line_arguments.cpp:124 msgid " --spawnpoint SPAWNPOINT Spawn Tux at SPAWNPOINT\n" msgstr " --spawnpoint PUNTO DI RINASCITA Metti Tux al PUNTO DI RINASCITA\n" -#: src/supertux/command_line_arguments.cpp:107 -msgid "Demo Recording Options:" -msgstr "Opzioni di registrazione demo:" - -#: src/supertux/command_line_arguments.cpp:108 -msgid " --record-demo FILE LEVEL Record a demo to FILE" -msgstr "--record-demo FILE LEVEL Registra una demo su FILE" - -#: src/supertux/command_line_arguments.cpp:109 -msgid " --play-demo FILE LEVEL Play a recorded demo" -msgstr "--play-demo FILE LEVEL Esegui una demo registrata" - -#: src/supertux/command_line_arguments.cpp:111 +#: src/supertux/command_line_arguments.cpp:126 msgid "Directory Options:" msgstr "Opzioni cartella:" -#: src/supertux/command_line_arguments.cpp:112 +#: src/supertux/command_line_arguments.cpp:127 msgid "" " --datadir DIR Set the directory for the games datafiles" msgstr "--datadir DIR Setta la cartella per i file del gioco" -#: src/supertux/command_line_arguments.cpp:113 +#: src/supertux/command_line_arguments.cpp:128 msgid "" " --userdir DIR Set the directory for user data (savegames, " "etc.)" msgstr "--userdir DIR Setta la cartella per i dati utente (salvataggi, ecc.)" -#: src/supertux/command_line_arguments.cpp:115 +#: src/supertux/command_line_arguments.cpp:130 msgid "Add-On Options:" msgstr "Opzioni componenti aggiuntivi" -#: src/supertux/command_line_arguments.cpp:116 +#: src/supertux/command_line_arguments.cpp:131 msgid " --repository-url URL Set the URL to the Add-On repository" msgstr " --repository-url URL Imposta l'URL dell'archivio dei componenti aggiuntivi" -#: src/supertux/command_line_arguments.cpp:118 +#: src/supertux/command_line_arguments.cpp:133 msgid "Environment variables:" msgstr "Variabili d'ambiente:" -#: src/supertux/command_line_arguments.cpp:119 +#: src/supertux/command_line_arguments.cpp:134 msgid "" " SUPERTUX2_USER_DIR Directory for user data (savegames, etc.)" msgstr "SUPERTUX2_USER_DIR Cartella per i dati (salvataggi, ecc.)" -#: src/supertux/command_line_arguments.cpp:120 +#: src/supertux/command_line_arguments.cpp:135 msgid " SUPERTUX2_DATA_DIR Directory for the games datafiles" msgstr "SUPERTUX2_DATA_DIR Cartella per i dati del gioco" -#: src/supertux/title_screen.cpp:43 +#: src/supertux/title_screen.cpp:272 msgid "Copyright" msgstr "Copyright" -#: src/supertux/title_screen.cpp:44 +#: src/supertux/title_screen.cpp:273 msgid "" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to\n" "redistribute it under certain conditions; see the license file for details.\n" msgstr "Il gioco viene fornito SENZA NESSUNA GARANZIA. Questo è software libero e sei libero di \nredistribuirlo sotto alcune condizioni; vedi il file di licenza per i dettagli.\n" -#: src/supertux/menu/contrib_menu.cpp:79 -#: src/supertux/menu/world_set_menu.cpp:31 -msgid "Contrib Levels" -msgstr "Livelli aggiuntivi" +#: src/supertux/game_object.cpp:114 +msgid "Version" +msgstr "Versione" -#: src/supertux/menu/contrib_menu.cpp:119 -#: src/supertux/menu/contrib_menu.cpp:150 -msgid "*NEW*" -msgstr "*NUOVO*" +#: src/supertux/game_object.cpp:129 +#: src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Type" +msgstr "Tipo" -#: src/supertux/menu/contrib_menu.cpp:172 src/supertux/menu/debug_menu.cpp:75 -#: src/supertux/menu/editor_level_select_menu.cpp:84 -#: src/supertux/menu/worldmap_cheat_menu.cpp:55 -#: src/supertux/menu/worldmap_cheat_menu.cpp:153 -#: src/supertux/menu/editor_levelset_select_menu.cpp:96 -#: src/supertux/menu/options_menu.cpp:405 -#: src/supertux/menu/profile_menu.cpp:47 src/supertux/menu/addon_menu.cpp:210 -#: src/supertux/menu/editor_new_levelset_menu.cpp:40 -#: src/supertux/menu/world_set_menu.cpp:33 -#: src/supertux/menu/keyboard_menu.cpp:51 -#: src/supertux/menu/language_menu.cpp:56 -#: src/supertux/menu/joystick_menu.cpp:99 -#: src/supertux/menu/contrib_levelset_menu.cpp:67 -#: src/supertux/menu/cheat_menu.cpp:44 -msgid "Back" -msgstr "Indietro" +#: src/supertux/menu/integrations_menu.cpp:49 +msgid "Integrations" +msgstr "Integrazioni" + +#: src/supertux/menu/integrations_menu.cpp:51 +msgid "Do not share level names when editing" +msgstr "Non condividere i nomi dei livelli durante l'editing" + +#: src/supertux/menu/integrations_menu.cpp:52 +msgid "" +"Enable this if you want to work on secret levels and don't want the names to" +" be spoiled" +msgstr "" + +#: src/supertux/menu/integrations_menu.cpp:54 +msgid "Enable Discord integration" +msgstr "Abilita le integrazioni di Discord" + +#: src/supertux/menu/integrations_menu.cpp:55 +msgid "" +"Sends information to your Discord application about what you're doing in the" +" game." +msgstr "" + +#: src/supertux/menu/integrations_menu.cpp:57 +msgid "Discord (disabled; not compiled)" +msgstr "Discord (disabilitato, non compilato)" + +#: src/supertux/menu/editor_converters_menu.cpp:61 +#: src/supertux/menu/editor_menu.cpp:85 +msgid "Convert Tiles" +msgstr "Converti Caselle" + +#: src/supertux/menu/editor_converters_menu.cpp:64 +msgid "Select Tile Conversion File" +msgstr "Seleziona il File di Conversione Casella" + +#: src/supertux/menu/editor_converters_menu.cpp:72 +#, c++-format +msgid "By: {}" +msgstr "" + +#: src/supertux/menu/editor_converters_menu.cpp:75 +msgid "Convert Tiles By File" +msgstr "Converti Caselle Con File" + +#: src/supertux/menu/editor_converters_menu.cpp:76 +msgid "Convert all tiles in the current level by a file, specified above." +msgstr "" + +#: src/supertux/menu/editor_converters_menu.cpp:89 +msgid "No tile conversion file selected." +msgstr "" + +#: src/supertux/menu/editor_converters_menu.cpp:93 +msgid "" +"This will convert all tiles in the level. Proceed?\n" +"\n" +"Note: This should not be ran more than once on a level.\n" +"Creating a separate copy of the level is highly recommended." +msgstr "" + +#: src/supertux/menu/video_system_menu.cpp:36 +msgid "Select Video System" +msgstr "" -#: src/supertux/menu/debug_menu.cpp:32 +#: src/supertux/menu/video_system_menu.cpp:37 +#, c++-format +msgid "Used video system: {}" +msgstr "" + +#: src/supertux/menu/video_system_menu.cpp:54 +msgid "Restart game for the changes to take effect" +msgstr "" + +#: src/supertux/menu/contrib_menu.cpp:68 +#: src/supertux/menu/world_set_menu.cpp:31 +msgid "Contrib Levels" +msgstr "Livelli aggiuntivi" + +#: src/supertux/menu/contrib_menu.cpp:98 +#: src/supertux/menu/contrib_menu.cpp:112 +msgid "Official Contrib Levels" +msgstr "" + +#: src/supertux/menu/contrib_menu.cpp:99 +#: src/supertux/menu/contrib_menu.cpp:118 +msgid "Community Contrib Levels" +msgstr "" + +#: src/supertux/menu/contrib_menu.cpp:100 +#: src/supertux/menu/contrib_menu.cpp:124 +msgid "User Contrib Levels" +msgstr "" + +#: src/supertux/menu/contrib_menu.cpp:113 +msgid "How is this possible? There are no Official Contrib Levels!" +msgstr "" + +#: src/supertux/menu/contrib_menu.cpp:119 +msgid "No Community Contrib Levels yet. Download them from the Add-ons Menu." +msgstr "" + +#: src/supertux/menu/contrib_menu.cpp:125 +msgid "No User Contrib Levels yet. Create some with the Level Editor." +msgstr "" + +#: src/supertux/menu/debug_menu.cpp:34 msgid "Debug" msgstr "Debug" -#: src/supertux/menu/debug_menu.cpp:56 +#: src/supertux/menu/debug_menu.cpp:58 msgid "Game Speed" msgstr "Velocità del gioco" -#: src/supertux/menu/debug_menu.cpp:57 +#: src/supertux/menu/debug_menu.cpp:59 msgid "Adjust Game Speed" msgstr "Aggiuta velocità del gioco" -#: src/supertux/menu/debug_menu.cpp:63 +#: src/supertux/menu/debug_menu.cpp:65 msgid "Show Collision Rects" msgstr "Mostra i rettangoli di collisione" -#: src/supertux/menu/debug_menu.cpp:64 +#: src/supertux/menu/debug_menu.cpp:66 msgid "Show Worldmap Path" msgstr "Mostra il percorso della mappa del mondo" -#: src/supertux/menu/debug_menu.cpp:65 +#: src/supertux/menu/debug_menu.cpp:67 msgid "Show Controller" -msgstr "" +msgstr "Mostra Controller" -#: src/supertux/menu/debug_menu.cpp:66 +#: src/supertux/menu/debug_menu.cpp:68 msgid "Show Framerate" -msgstr "" +msgstr "Mostra FPS" -#: src/supertux/menu/debug_menu.cpp:67 +#: src/supertux/menu/debug_menu.cpp:69 msgid "Draw Redundant Frames" -msgstr "" +msgstr "Mostra i frame rindondanti" -#: src/supertux/menu/debug_menu.cpp:68 +#: src/supertux/menu/debug_menu.cpp:70 msgid "Show Player Position" -msgstr "" +msgstr "Mostra la posizione del giocatore" -#: src/supertux/menu/debug_menu.cpp:69 +#: src/supertux/menu/debug_menu.cpp:71 msgid "Use Bitmap Fonts" msgstr "Usa font bitmap" -#: src/supertux/menu/debug_menu.cpp:72 +#: src/supertux/menu/debug_menu.cpp:74 msgid "Dump Texture Cache" +msgstr "Fai il dump della cache texture" + +#: src/supertux/menu/particle_editor_save_as.cpp:33 +msgid "Save particle as" +msgstr "Salva particolare come" + +#: src/supertux/menu/particle_editor_save_as.cpp:37 +#: src/supertux/menu/editor_save_as.cpp:37 +msgid "File name" +msgstr "Nome del file" + +#: src/supertux/menu/particle_editor_save_as.cpp:38 +#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:767 +msgid "Save" +msgstr "Salva" + +#: src/supertux/menu/multiplayer_menu.cpp:27 +#: src/supertux/menu/multiplayer_players_menu.cpp:34 +msgid "Multiplayer" +msgstr "" + +#: src/supertux/menu/multiplayer_menu.cpp:30 +msgid "Auto-manage Players" +msgstr "" + +#: src/supertux/menu/multiplayer_menu.cpp:31 +msgid "" +"Automatically add and remove players when controllers are plugged or " +"unplugged" +msgstr "" + +#: src/supertux/menu/multiplayer_menu.cpp:33 +msgid "Allow Multibind" +msgstr "" + +#: src/supertux/menu/multiplayer_menu.cpp:34 +msgid "Allow binding multiple joysticks to a single player" +msgstr "" + +#: src/supertux/menu/multiplayer_menu.cpp:36 +msgid "Manage Players" msgstr "" #: src/supertux/menu/editor_sectors_menu.cpp:31 msgid "Choose Sector" -msgstr "" +msgstr "Scegli il settore" #: src/supertux/menu/editor_sectors_menu.cpp:41 msgid "Sector Settings" -msgstr "" +msgstr "Impostazioni del settore" #: src/supertux/menu/editor_sectors_menu.cpp:42 msgid "Create Sector" -msgstr "" +msgstr "Crea settore" #: src/supertux/menu/editor_sectors_menu.cpp:43 msgid "Delete Sector" -msgstr "" +msgstr "Elimina settore" -#: src/supertux/menu/editor_sectors_menu.cpp:93 +#: src/supertux/menu/editor_sectors_menu.cpp:92 msgid "Each level must have at least one sector." msgstr "Ogni livello deve avere almeno un settore." -#: src/supertux/menu/editor_sectors_menu.cpp:98 +#: src/supertux/menu/editor_sectors_menu.cpp:97 msgid "Do you really want to delete this sector?" msgstr "Vuoi davvero eliminare questo settore?" -#: src/supertux/menu/editor_sectors_menu.cpp:101 +#: src/supertux/menu/editor_sectors_menu.cpp:100 msgid "Delete sector" msgstr "Elimina settore" -#: src/supertux/menu/editor_objectgroup_menu.cpp:30 -#: src/editor/toolbox_widget.cpp:92 -msgid "Objects" -msgstr "Oggetti" +#: src/supertux/menu/custom_menu_menu.cpp:49 +#: src/supertux/menu/options_menu.cpp:191 +msgid "Menu Customization" +msgstr "" -#: src/supertux/menu/editor_level_select_menu.cpp:58 -msgid "Empty World" +#: src/supertux/menu/custom_menu_menu.cpp:51 +msgid "Menu Back Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:52 +msgid "Menu Front Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:53 +msgid "Menu Help Back Color" msgstr "" -#: src/supertux/menu/editor_level_select_menu.cpp:73 +#: src/supertux/menu/custom_menu_menu.cpp:54 +msgid "Menu Help Front Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:55 +msgid "Label Text Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:56 +msgid "Active Text Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:57 +msgid "Divider Line Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:58 +msgid "Menu Roundness" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:60 +msgid "Editor Interface Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:61 +msgid "Editor Hover Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:62 +msgid "Editor Grab Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:64 +msgid "Reset to defaults" +msgstr "" + +#: src/supertux/menu/editor_level_select_menu.cpp:72 +msgid "Empty World" +msgstr "Mondo vuoto" + +#: src/supertux/menu/editor_level_select_menu.cpp:87 msgid "Create Level" msgstr "Crea livello" -#: src/supertux/menu/editor_level_select_menu.cpp:77 +#: src/supertux/menu/editor_level_select_menu.cpp:91 msgid "Edit Worldmap" -msgstr "" +msgstr "Modifica mappa del mondo" -#: src/supertux/menu/editor_level_select_menu.cpp:79 +#: src/supertux/menu/editor_level_select_menu.cpp:93 msgid "Create Worldmap" -msgstr "" +msgstr "Crea mappa del mondo" -#: src/supertux/menu/editor_level_select_menu.cpp:83 -#: src/supertux/menu/editor_levelset_menu.cpp:56 +#: src/supertux/menu/editor_level_select_menu.cpp:95 +#: src/supertux/menu/editor_delete_level_menu.cpp:55 +msgid "Delete level" +msgstr "Elimina livello" + +#: src/supertux/menu/editor_level_select_menu.cpp:97 +#: src/supertux/menu/editor_levelset_menu.cpp:50 msgid "World Settings" -msgstr "" +msgstr "Impostazioni del mondo" -#: src/supertux/menu/editor_level_select_menu.cpp:123 +#: src/supertux/menu/editor_level_select_menu.cpp:141 msgid "" "Share this worldmap under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -1488,7 +2820,7 @@ msgid "" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." msgstr "Condividi questa mappa con licenza CC-BY-SA 4.0 Internazionale (consigliato).\nQuesto permette la modifica e la redistribuzione da terze parti.\nSe non sei d'accordo con questa licenza, cambiala nelle proprietà del livello.\nDICHIARAZIONE LIBERATORIA: Gli autori di SuperTux non si assumono alcuna responsabilità per la licenza scelta." -#: src/supertux/menu/editor_level_select_menu.cpp:130 +#: src/supertux/menu/editor_level_select_menu.cpp:148 msgid "" "Share this level under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -1496,398 +2828,820 @@ msgid "" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." msgstr "Condividi questo livello con licenza CC-BY-SA 4.0 Internazionale (consigliato).\nQuesto permette la modifica e la redistribuzione da terze parti.\nSe non sei d'accordo con questa licenza, cambiala nelle proprietà del livello.\nDICHIARAZIONE LIBERATORIA: Gli autori di SuperTux non si assumono alcuna responsabilità per la licenza scelta." -#: src/supertux/menu/worldmap_cheat_menu.cpp:34 -#: src/supertux/menu/cheat_menu.cpp:30 +#: src/supertux/menu/editor_level_select_menu.cpp:179 +msgid "" +"An auto-save recovery file was found. Would you like to restore the recovery\n" +"file and resume where you were before the editor crashed?" +msgstr "Un auto-salvataggio recovery file è stato trovato. Vuoi ristabilire il recovery
file e riprendere dove eri prima che l'editor crashasse?" + +#: src/supertux/menu/editor_level_select_menu.cpp:186 +msgid "This will delete the auto-save file. Are you sure?" +msgstr "Questo eliminerà l'auto-salvataggio del file. Sei sicuro?" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:35 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:52 +#: src/supertux/menu/cheat_apply_menu.cpp:33 +#: src/supertux/menu/cheat_apply_menu.cpp:51 +msgid "Apply cheat to player" +msgstr "" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:60 +#: src/supertux/menu/multiplayer_players_menu.cpp:39 +#: src/supertux/menu/keyboard_menu.cpp:63 +#: src/supertux/menu/cheat_apply_menu.cpp:39 +#: src/supertux/menu/cheat_apply_menu.cpp:59 +#: src/supertux/menu/multiplayer_player_menu.cpp:37 +#, c++-format +msgid "Player {}" +msgstr "" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:57 +#: src/supertux/menu/cheat_apply_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:56 +msgid "All Players" +msgstr "" + +#: src/supertux/menu/worldmap_cheat_menu.cpp:36 +#: src/supertux/menu/cheat_menu.cpp:31 msgid "Cheats" msgstr "Trucchi" -#: src/supertux/menu/worldmap_cheat_menu.cpp:36 -#: src/supertux/menu/cheat_menu.cpp:32 +#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:33 msgid "Bonus: Grow" msgstr "Bonus: Crescita" -#: src/supertux/menu/worldmap_cheat_menu.cpp:37 -#: src/supertux/menu/cheat_menu.cpp:33 +#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:34 msgid "Bonus: Fire" msgstr "Bonus: Fuoco" -#: src/supertux/menu/worldmap_cheat_menu.cpp:38 -#: src/supertux/menu/cheat_menu.cpp:34 +#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/cheat_menu.cpp:35 msgid "Bonus: Ice" msgstr "Bonus: Ghiaccio" -#: src/supertux/menu/worldmap_cheat_menu.cpp:39 -#: src/supertux/menu/cheat_menu.cpp:35 +#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/cheat_menu.cpp:36 msgid "Bonus: Air" msgstr "Bonus: Aria" -#: src/supertux/menu/worldmap_cheat_menu.cpp:40 -#: src/supertux/menu/cheat_menu.cpp:36 +#: src/supertux/menu/worldmap_cheat_menu.cpp:42 +#: src/supertux/menu/cheat_menu.cpp:37 msgid "Bonus: Earth" msgstr "Bonus: Terra" -#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/worldmap_cheat_menu.cpp:43 msgid "Bonus: None" msgstr "Bonus: Nessuno" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:51 msgid "Leave Ghost Mode" msgstr "Lascia la modalità Fantasma" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:50 msgid "Activate Ghost Mode" msgstr "Attiva modalità fantasma" -#: src/supertux/menu/worldmap_cheat_menu.cpp:46 -#: src/supertux/menu/cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:48 +#: src/supertux/menu/cheat_menu.cpp:41 msgid "Finish Level" msgstr "Completa livello" -#: src/supertux/menu/worldmap_cheat_menu.cpp:47 +#: src/supertux/menu/worldmap_cheat_menu.cpp:49 msgid "Reset Level" msgstr "Resetta livello" -#: src/supertux/menu/worldmap_cheat_menu.cpp:49 +#: src/supertux/menu/worldmap_cheat_menu.cpp:51 msgid "Finish Worldmap" msgstr "Fine Mondo mappa" -#: src/supertux/menu/worldmap_cheat_menu.cpp:50 +#: src/supertux/menu/worldmap_cheat_menu.cpp:52 msgid "Reset Worldmap" msgstr "Resetta mondo mappa" -#: src/supertux/menu/worldmap_cheat_menu.cpp:52 +#: src/supertux/menu/worldmap_cheat_menu.cpp:54 msgid "Go to level" -msgstr "" +msgstr "Vai al livello" -#: src/supertux/menu/worldmap_cheat_menu.cpp:53 +#: src/supertux/menu/worldmap_cheat_menu.cpp:55 msgid "Go to main spawnpoint" -msgstr "" +msgstr "Vai al punto di generazione principale" -#: src/supertux/menu/worldmap_cheat_menu.cpp:145 +#: src/supertux/menu/worldmap_cheat_menu.cpp:188 msgid "Select level" -msgstr "" +msgstr "Scegli livello" + +#: src/supertux/menu/editor_save_as.cpp:33 +#: src/supertux/menu/editor_menu.cpp:63 +msgid "Save Level as" +msgstr "Salva livello come" -#: src/supertux/menu/editor_levelset_select_menu.cpp:54 +#: src/supertux/menu/editor_save_as.cpp:33 +#: src/supertux/menu/editor_menu.cpp:64 +msgid "Save Copy" +msgstr "Salva una copia" + +#: src/supertux/menu/editor_levelset_select_menu.cpp:71 msgid "Choose World" -msgstr "" +msgstr "Scegli il mondo" -#: src/supertux/menu/editor_levelset_select_menu.cpp:82 -#, c-format -msgid "%d level" -msgid_plural "%d levels" -msgstr[0] "%d livello" -msgstr[1] "%d livelli" +#: src/supertux/menu/editor_levelset_select_menu.cpp:99 +#, c++-format +msgid "{} level" +msgid_plural "{} levels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: src/supertux/menu/editor_levelset_select_menu.cpp:95 +#: src/supertux/menu/editor_levelset_select_menu.cpp:112 msgid "Create World" -msgstr "" - -#: src/supertux/menu/options_menu.cpp:85 src/supertux/menu/main_menu.cpp:53 -#: src/supertux/menu/game_menu.cpp:61 src/supertux/menu/worldmap_menu.cpp:31 -msgid "Options" -msgstr "Opzioni" +msgstr "Crea mondo" -#: src/supertux/menu/options_menu.cpp:91 -#: src/supertux/menu/options_menu.cpp:127 -#: src/supertux/menu/options_menu.cpp:418 -#: src/supertux/menu/options_menu.cpp:439 src/editor/object_settings.cpp:112 -msgid "auto" -msgstr "auto" +#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:41 +msgid "Delete World" +msgstr "" -#: src/supertux/menu/options_menu.cpp:206 -msgid "Desktop" -msgstr "Scrivania" +#: src/supertux/menu/options_menu.cpp:72 +#: src/supertux/menu/options_select_menu.cpp:35 +msgid "Locale" +msgstr "" -#: src/supertux/menu/options_menu.cpp:332 +#: src/supertux/menu/options_menu.cpp:76 msgid "Select Language" msgstr "Seleziona la lingua" -#: src/supertux/menu/options_menu.cpp:333 +#: src/supertux/menu/options_menu.cpp:77 msgid "Select a different language to display text in" msgstr "Seleziona una lingua diversa in cui mostrare il testo" -#: src/supertux/menu/options_menu.cpp:335 +#: src/supertux/menu/options_menu.cpp:79 msgid "Language Packs" msgstr "Pacchetti lingua" -#: src/supertux/menu/options_menu.cpp:336 +#: src/supertux/menu/options_menu.cpp:80 msgid "Language packs contain up-to-date translations" msgstr "I pacchetti lingua contengono aggiornamenti alle traduzioni" -#: src/supertux/menu/options_menu.cpp:338 -#: src/supertux/menu/profile_menu.cpp:30 -msgid "Select Profile" -msgstr "Seleziona il profilo" - -#: src/supertux/menu/options_menu.cpp:339 -msgid "Select a profile to play with" -msgstr "Seleziona il profilo con cui giocare" +#: src/supertux/menu/options_menu.cpp:88 +#: src/supertux/menu/options_select_menu.cpp:37 +msgid "Video" +msgstr "" -#: src/supertux/menu/options_menu.cpp:342 +#: src/supertux/menu/options_menu.cpp:91 msgid "Window Resizable" msgstr "Finestra ridimensionabile" -#: src/supertux/menu/options_menu.cpp:343 +#: src/supertux/menu/options_menu.cpp:92 msgid "Allow window resizing, might require a restart to take effect" msgstr "Permetti il ridimensionamento della finestra. Potrebbe essere necessario riavvare il gioco affinché le modifiche abbiano effetto." -#: src/supertux/menu/options_menu.cpp:345 -msgid "Window Resolution" -msgstr "Risoluzione della finestra" - -#: src/supertux/menu/options_menu.cpp:346 -msgid "Resize the window to the given size" -msgstr "Ridimensiona la finestra data la dimensione" - -#: src/supertux/menu/options_menu.cpp:348 +#: src/supertux/menu/options_menu.cpp:96 msgid "Fullscreen" msgstr "Modalità schermo intero" -#: src/supertux/menu/options_menu.cpp:349 +#: src/supertux/menu/options_menu.cpp:97 msgid "Fill the entire screen" msgstr "Gioca a tutto schermo" -#: src/supertux/menu/options_menu.cpp:351 -msgid "Fullscreen Resolution" -msgstr "Risoluzione a schermo intero" - -#: src/supertux/menu/options_menu.cpp:352 -msgid "" -"Determine the resolution used in fullscreen mode (you must toggle fullscreen" -" to complete the change)" -msgstr "Determina la risoluzione usata a schermo intero (devi selezionare Schermo Intero per completare le modifiche)" - -#: src/supertux/menu/options_menu.cpp:354 -msgid "Magnification" -msgstr "Ingrandimento" +#: src/supertux/menu/options_menu.cpp:104 +msgid "Fit to browser" +msgstr "Adatta al browser" -#: src/supertux/menu/options_menu.cpp:355 -msgid "Change the magnification of the game area" -msgstr "Imposta l'ingrandimento dell'area di gioco" - -#: src/supertux/menu/options_menu.cpp:357 -msgid "VSync" -msgstr "VSync" +#: src/supertux/menu/options_menu.cpp:105 +msgid "Fit the resolution to the size of your browser" +msgstr "Adatta la risoluzione alla grandezza del browser" -#: src/supertux/menu/options_menu.cpp:358 -msgid "Set the VSync mode" -msgstr "Imposta la modalità VSync" +#: src/supertux/menu/options_menu.cpp:116 +msgid "Change Video System" +msgstr "" -#: src/supertux/menu/options_menu.cpp:360 -msgid "Aspect Ratio" -msgstr "Rapporto larghezza/altezza" +#: src/supertux/menu/options_menu.cpp:117 +msgid "Change video system used to render graphics" +msgstr "" -#: src/supertux/menu/options_menu.cpp:361 -msgid "Adjust the aspect ratio" -msgstr "Imposta il rapporto larghezza/altezza" +#: src/supertux/menu/options_menu.cpp:124 +#: src/supertux/menu/options_select_menu.cpp:38 +msgid "Audio" +msgstr "" -#: src/supertux/menu/options_menu.cpp:366 +#: src/supertux/menu/options_menu.cpp:129 msgid "Disable all sound effects" msgstr "Disattiva tutti gli effetti sonori" -#: src/supertux/menu/options_menu.cpp:368 +#: src/supertux/menu/options_menu.cpp:131 msgid "Disable all music" msgstr "Disattiva la musica" -#: src/supertux/menu/options_menu.cpp:370 -msgid "Sound Volume" -msgstr "Volume del sonoro" - -#: src/supertux/menu/options_menu.cpp:371 -msgid "Adjust sound volume" -msgstr "Modifica il volume del sonoro" - -#: src/supertux/menu/options_menu.cpp:373 -msgid "Music Volume" -msgstr "Volume della musica" - -#: src/supertux/menu/options_menu.cpp:374 -msgid "Adjust music volume" -msgstr "Modifica il volume della musica" - -#: src/supertux/menu/options_menu.cpp:378 +#: src/supertux/menu/options_menu.cpp:138 msgid "Sound (disabled)" msgstr "Suono (disattivato)" -#: src/supertux/menu/options_menu.cpp:379 +#: src/supertux/menu/options_menu.cpp:139 msgid "Music (disabled)" msgstr "Musica (disattivata)" -#: src/supertux/menu/options_menu.cpp:382 -#: src/supertux/menu/keyboard_menu.cpp:30 +#: src/supertux/menu/options_menu.cpp:147 +#: src/supertux/menu/options_select_menu.cpp:39 +msgid "Controls" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:151 +msgid "Enable Rumbling Controllers" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "Enable vibrating the game controllers." +msgstr "" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "This feature is currently only used in the multiplayer options menu." +msgstr "" + +#: src/supertux/menu/options_menu.cpp:154 +#: src/supertux/menu/keyboard_menu.cpp:34 msgid "Setup Keyboard" msgstr "Configurazione controlli" -#: src/supertux/menu/options_menu.cpp:383 +#: src/supertux/menu/options_menu.cpp:155 msgid "Configure key-action mappings" msgstr "Configura i tasti" -#: src/supertux/menu/options_menu.cpp:385 -#: src/supertux/menu/joystick_menu.cpp:52 +#: src/supertux/menu/options_menu.cpp:158 +#: src/supertux/menu/joystick_menu.cpp:54 msgid "Setup Joystick" msgstr "Configura joystick" -#: src/supertux/menu/options_menu.cpp:386 +#: src/supertux/menu/options_menu.cpp:159 msgid "Configure joystick control-action mappings" msgstr "Configura il joystick" -#: src/supertux/menu/options_menu.cpp:388 +#: src/supertux/menu/options_menu.cpp:167 +#: src/supertux/menu/options_select_menu.cpp:40 +msgid "Extras" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:170 +#: src/supertux/menu/profile_menu.cpp:56 +msgid "Select Profile" +msgstr "Seleziona il profilo" + +#: src/supertux/menu/options_menu.cpp:171 +msgid "Select a profile to play with" +msgstr "Seleziona il profilo con cui giocare" + +#: src/supertux/menu/options_menu.cpp:174 +msgid "Multiplayer settings" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:175 +msgid "Configure settings specific to multiplayer" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:178 msgid "Enable transitions" msgstr "Abilita le transizioni" -#: src/supertux/menu/options_menu.cpp:389 +#: src/supertux/menu/options_menu.cpp:179 msgid "Enable screen transitions and smooth menu animation" msgstr "Abilita le transizioni e le animazioni nei menù" -#: src/supertux/menu/options_menu.cpp:393 -msgid "Developer Mode" -msgstr "Modalità Sviluppatore" +#: src/supertux/menu/options_menu.cpp:181 +msgid "Custom title screen levels" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:182 +msgid "Allow overriding the title screen level, when loading certain worlds" +msgstr "" -#: src/supertux/menu/options_menu.cpp:398 +#: src/supertux/menu/options_menu.cpp:185 msgid "Christmas Mode" msgstr "Modalità Natale" -#: src/supertux/menu/options_menu.cpp:401 +#: src/supertux/menu/options_menu.cpp:187 +msgid "Integrations and presence" +msgstr "Integrazioni e presenze" + +#: src/supertux/menu/options_menu.cpp:188 +msgid "" +"Manage whether SuperTux should display the levels you play on your social " +"media profiles (Discord)" +msgstr "Gestisci se SuperTux deve visualizzare i livelli che giochi sui tuoi profili sui social media (Discord)" + +#: src/supertux/menu/options_menu.cpp:192 +msgid "Customize the appearance of the menus" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:199 +#: src/supertux/menu/options_select_menu.cpp:41 +msgid "Advanced" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:204 +msgid "Developer Mode" +msgstr "Modalità Sviluppatore" + +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirmation Dialog" msgstr "Dialogo di conferma" -#: src/supertux/menu/options_menu.cpp:402 +#: src/supertux/menu/options_menu.cpp:206 +msgid "Confirm aborting level" +msgstr "Conferma l'uscita dal livello" + +#: src/supertux/menu/options_menu.cpp:208 msgid "Pause on focus loss" msgstr "Pausa alla perdita del focus" +#: src/supertux/menu/options_menu.cpp:209 +msgid "Automatically pause the game when the window loses focus" +msgstr "Pausa automatica il gioco quando la finestra perde concentrazione" + +#: src/supertux/menu/options_menu.cpp:211 +msgid "Use custom mouse cursor" +msgstr "Usa un cursore del mouse personalizzato" + +#: src/supertux/menu/options_menu.cpp:211 +msgid "Whether the game renders its own cursor or uses the system's cursor" +msgstr "Se il gioco esegue il rendering del proprio cursore o utilizza il cursore del sistema" + +#: src/supertux/menu/options_menu.cpp:214 +msgid "Check for new releases" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:215 +msgid "" +"Allows the game to perform checks for new SuperTux releases on startup and " +"notify if any found." +msgstr "" + +#: src/supertux/menu/options_menu.cpp:245 +#: src/supertux/menu/options_menu.cpp:288 src/supertux/direction.cpp:76 +msgid "auto" +msgstr "auto" + +#: src/supertux/menu/options_menu.cpp:281 +msgid "Magnification" +msgstr "Ingrandimento" + +#: src/supertux/menu/options_menu.cpp:282 +msgid "Change the magnification of the game area" +msgstr "Imposta l'ingrandimento dell'area di gioco" + +#: src/supertux/menu/options_menu.cpp:318 +msgid "Aspect Ratio" +msgstr "Rapporto larghezza/altezza" + +#: src/supertux/menu/options_menu.cpp:319 +msgid "Adjust the aspect ratio" +msgstr "Imposta il rapporto larghezza/altezza" + +#: src/supertux/menu/options_menu.cpp:346 +msgid "Window Resolution" +msgstr "Risoluzione della finestra" + +#: src/supertux/menu/options_menu.cpp:347 +msgid "Resize the window to the given size" +msgstr "Ridimensiona la finestra data la dimensione" + +#: src/supertux/menu/options_menu.cpp:377 +msgid "Desktop" +msgstr "Scrivania" + +#: src/supertux/menu/options_menu.cpp:404 +msgid "Fullscreen Resolution" +msgstr "Risoluzione a schermo intero" + +#: src/supertux/menu/options_menu.cpp:405 +msgid "" +"Determine the resolution used in fullscreen mode (you must toggle fullscreen" +" to complete the change)" +msgstr "Determina la risoluzione usata a schermo intero (devi selezionare Schermo Intero per completare le modifiche)" + +#: src/supertux/menu/options_menu.cpp:411 +msgid "on" +msgstr "Attivo" + +#: src/supertux/menu/options_menu.cpp:412 +msgid "off" +msgstr "Disattivo" + +#: src/supertux/menu/options_menu.cpp:413 +msgid "adaptive" +msgstr "Adattivo" + +#: src/supertux/menu/options_menu.cpp:431 +msgid "VSync" +msgstr "VSync" + +#: src/supertux/menu/options_menu.cpp:432 +msgid "Set the VSync mode" +msgstr "Imposta la modalità VSync" + +#: src/supertux/menu/options_menu.cpp:467 +msgid "Sound Volume" +msgstr "Volume del sonoro" + +#: src/supertux/menu/options_menu.cpp:468 +msgid "Adjust sound volume" +msgstr "Modifica il volume del sonoro" + +#: src/supertux/menu/options_menu.cpp:503 +msgid "Music Volume" +msgstr "Volume della musica" + +#: src/supertux/menu/options_menu.cpp:504 +msgid "Adjust music volume" +msgstr "Modifica il volume della musica" + +#: src/supertux/menu/options_menu.cpp:517 +msgid "On-screen controls scale" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:638 +msgid "" +"The game couldn't detect your browser resolution.\n" +"This most likely happens because it is not embedded\n" +"in the SuperTux custom HTML template.\n" +msgstr "Il gioco non è riuscito a rilevare la risoluzione del tuo browser. \nQuesto molto probabilmente accade perché non è incorporato \nnel modello HTML personalizzato di SuperTux.\n" + +#: src/supertux/menu/editor_delete_levelset_menu.cpp:80 +msgid "You cannot delete the world that you are editing" +msgstr "" + +#: src/supertux/menu/editor_delete_levelset_menu.cpp:83 +#, c++-format +msgid "You are about to delete world \"{}\". Are you sure?" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:82 +#, c++-format +msgid "{} \"{}\"" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:87 +msgid "Some information about this add-on is not available." +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:88 +msgid "Perform a \"Check Online\" to try retrieving it." +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:92 +msgid "No author specified." +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:92 +#, c++-format +msgid "Author: {}" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:93 +#, c++-format +msgid "Type: {}" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:94 +msgid "No license specified." +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:94 +#, c++-format +msgid "License: {}" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:99 +msgid "Dependencies:" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Installed" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Not installed" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:113 +msgid "Not available!" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:120 +msgid "Description:" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:123 +msgid "No description available." +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:147 +msgid "Failed to load all available screenshot previews." +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:152 +msgid "Show screenshots" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:165 +msgid "Screenshot previews are disabled for automatic installs." +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:169 +msgid "No screenshot previews available." +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:177 +msgid "Install" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:190 +msgid "Uninstall" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:214 +#, c++-format +msgid "Are you sure you want to uninstall \"{}\"?" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:215 +msgid "" +"\n" +"Your progress won't be lost." +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:227 +#, c++-format +msgid "" +"NOTE: The add-on \"{}\" is a dependency of {} other installed {}.\n" +"Are you sure you wish to uninstall?" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:246 +#, c++-format +msgid "" +"Cannot toggle add-on \"{}\":\n" +"{}" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:279 +msgid "Fetching screenshot previews..." +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Updating" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Downloading" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:328 +msgid "Add-on uninstalled successfully." +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:333 +#, c++-format +msgid "" +"Error uninstalling add-on:\n" +"{}" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:361 +msgid "" +"Please restart SuperTux\n" +"for these changes to take effect." +msgstr "Riavviare SuperTux\naffinché le modifiche abbiano effetto" + #: src/supertux/menu/main_menu.cpp:51 src/supertux/menu/world_set_menu.cpp:28 msgid "Start Game" msgstr "Inizia a giocare" -#: src/supertux/menu/main_menu.cpp:52 src/supertux/menu/addon_menu.cpp:119 +#: src/supertux/menu/main_menu.cpp:55 msgid "Add-ons" msgstr "Add-ons" -#: src/supertux/menu/main_menu.cpp:54 src/supertux/menu/editor_menu.cpp:39 +#: src/supertux/menu/main_menu.cpp:57 src/supertux/menu/web_asset_menu.cpp:38 +msgid "Manage Assets" +msgstr "Gestisci gli Assets" + +#: src/supertux/menu/main_menu.cpp:59 +#: src/supertux/menu/options_select_menu.cpp:29 +#: src/supertux/menu/game_menu.cpp:58 src/supertux/menu/worldmap_menu.cpp:31 +#: src/supertux/menu/editor_menu.cpp:70 +msgid "Options" +msgstr "Opzioni" + +#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/editor_menu.cpp:58 msgid "Level Editor" msgstr "Editor dei livelli" -#: src/supertux/menu/main_menu.cpp:55 +#: src/supertux/menu/main_menu.cpp:61 msgid "Credits" msgstr "Crediti" -#: src/supertux/menu/main_menu.cpp:56 +#: src/supertux/menu/main_menu.cpp:64 msgid "Donate" msgstr "Dona" -#: src/supertux/menu/main_menu.cpp:57 +#: src/supertux/menu/main_menu.cpp:67 msgid "Quit" msgstr "Esci" -#: src/supertux/menu/editor_sector_menu.cpp:35 +#: src/supertux/menu/main_menu.cpp:106 +msgid "" +"This will take you to the SuperTux donation page. Are you sure you want to " +"continue?" +msgstr "" + +#: src/supertux/menu/editor_sector_menu.cpp:34 +#, c++-format +msgid "Sector {}" +msgstr "" + +#: src/supertux/menu/editor_sector_menu.cpp:37 msgid "Initialization script" msgstr "Script d'inizializzazione" -#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_sector_menu.cpp:38 msgid "Gravity" msgstr "Gravità" -#: src/supertux/menu/editor_sector_menu.cpp:41 +#: src/supertux/menu/editor_sector_menu.cpp:43 msgid "Resize offset X" msgstr "Ridimensiona offset X" -#: src/supertux/menu/editor_sector_menu.cpp:42 +#: src/supertux/menu/editor_sector_menu.cpp:44 msgid "Resize offset Y" msgstr "Ridimensiona offset Y" -#: src/supertux/menu/editor_sector_menu.cpp:43 +#: src/supertux/menu/editor_sector_menu.cpp:45 msgid "Resize" msgstr "Ridimensiona" -#: src/supertux/menu/profile_menu.cpp:37 -#, c-format -msgid "[Profile %s]" -msgstr "[Profilo %s]" +#: src/supertux/menu/profile_menu.cpp:60 +msgid "No profiles found." +msgstr "" + +#: src/supertux/menu/profile_menu.cpp:68 +#: src/supertux/menu/profile_menu.cpp:149 +#: src/supertux/menu/profile_menu.cpp:168 +#, c++-format +msgid "Profile {}" +msgstr "" + +#: src/supertux/menu/profile_menu.cpp:69 +#, c++-format +msgid "{} (Profile {})" +msgstr "" + +#: src/supertux/menu/profile_menu.cpp:84 +msgid "No profile selected." +msgstr "" + +#: src/supertux/menu/profile_menu.cpp:91 src/supertux/menu/profile_menu.cpp:93 +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Rename" +msgstr "" + +#: src/supertux/menu/profile_menu.cpp:98 +#: src/supertux/menu/profile_menu.cpp:100 +msgid "Reset" +msgstr "" -#: src/supertux/menu/profile_menu.cpp:41 -#, c-format -msgid "Profile %s" -msgstr "Profilo %s" +#: src/supertux/menu/profile_menu.cpp:103 +#: src/supertux/menu/profile_menu.cpp:105 +msgid "Reset all" +msgstr "" + +#: src/supertux/menu/profile_menu.cpp:113 +#: src/supertux/menu/profile_menu.cpp:115 +msgid "Delete all" +msgstr "" + +#: src/supertux/menu/profile_menu.cpp:148 +#, c++-format +msgid "" +"This will reset all game progress on the profile \"{}\".\n" +"Are you sure?" +msgstr "" + +#: src/supertux/menu/profile_menu.cpp:157 +msgid "This will reset your game progress on all profiles. Are you sure?" +msgstr "Questo resetterà i tuoi progressi di gioco su tutti i profili. Sei sicuro?" + +#: src/supertux/menu/profile_menu.cpp:167 +#, c++-format +msgid "" +"This will delete the profile \"{}\",\n" +"including all game progress on it. Are you sure?" +msgstr "" + +#: src/supertux/menu/profile_menu.cpp:178 +msgid "" +"This will delete all profiles, including all game progress on them.\n" +"Are you sure?" +msgstr "" -#: src/supertux/menu/editor_levelset_menu.cpp:59 +#: src/supertux/menu/editor_levelset_menu.cpp:53 #: src/supertux/menu/editor_new_levelset_menu.cpp:35 msgid "Description" msgstr "Descrizione" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:48 -#: data//images/engine/editor/objects.stoi:329 -msgid "Worldmap" -msgstr "Mappa del mondo" +#: src/supertux/menu/editor_levelset_menu.cpp:55 +msgid "Title Screen Level" +msgstr "" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:45 -msgid "Levelset" -msgstr "Set di livelli" +#: src/supertux/menu/editor_levelset_menu.cpp:56 +msgid "A level to be used for the title screen, after exiting the world." +msgstr "" -#: src/supertux/menu/addon_menu.cpp:51 -msgid "World" -msgstr "Mondo" +#: src/supertux/menu/multiplayer_players_menu.cpp:46 +msgid "Add Player" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:57 -msgid "Unknown" -msgstr "Sconosciuto" +#: src/supertux/menu/multiplayer_players_menu.cpp:59 +msgid "Remove Last Player" +msgstr "" + +#: src/supertux/menu/multiplayer_players_menu.cpp:62 +msgid "" +"Warning: The player you are trying to\n" +"remove is currently in-game.\n" +"\n" +"Do you wish to remove them anyways?" +msgstr "" #: src/supertux/menu/addon_menu.cpp:68 -#, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" di \"%s\"" +msgid "Installed Language Packs" +msgstr "" + +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Add-ons" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:126 +#: src/supertux/menu/addon_menu.cpp:76 src/supertux/menu/addon_menu.cpp:117 +msgid "No language packs installed" +msgstr "" + +#: src/supertux/menu/addon_menu.cpp:76 msgid "No Add-ons installed" msgstr "Nessun componente aggiuntivo installato" +#: src/supertux/menu/addon_menu.cpp:124 +#, c++-format +msgid "{} {}*UPDATE*" +msgstr "" + #: src/supertux/menu/addon_menu.cpp:130 -msgid "No Add-ons found" -msgstr "Nessun componente aggiuntivo trovato" +#, c++-format +msgid "{}{}" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:176 -#, c-format -msgid "Install %s *NEW*" -msgstr "Installa %s *NUOVO*" +#: src/supertux/menu/addon_menu.cpp:140 +msgid "No updates available." +msgstr "" -#: src/supertux/menu/addon_menu.cpp:187 -#, c-format -msgid "Install %s" -msgstr "Installa %s" +#: src/supertux/menu/addon_menu.cpp:144 +#, c++-format +msgid "{} {} available" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:196 -msgid "No new Add-ons found" -msgstr "Nessun nuovo componente aggiuntivo trovato" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "update" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:202 -msgid "Check Online (disabled)" -msgstr "Controlla sul Web (disattivato)" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "updates" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:206 -msgid "Check Online" -msgstr "Controlla sul Web" +#: src/supertux/menu/addon_menu.cpp:146 +msgid "Check for updates" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:283 -msgid "Downloading Add-On Repository Index" -msgstr "Scaricamento dell'indice dei componenti aggiuntivi" +#: src/supertux/menu/addon_menu.cpp:150 +msgid "Browse language packs" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:298 -#, c-format -msgid "Downloading %s" -msgstr "Scaricamento di %s" +#: src/supertux/menu/addon_menu.cpp:150 +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Add-ons" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:345 -msgid "" -"Please restart SuperTux\n" -"for these changes to take effect." -msgstr "Riavviare SuperTux\naffinché le modifiche abbiano effetto" +#: src/supertux/menu/addon_menu.cpp:151 +msgid "Install from file" +msgstr "" + +#: src/supertux/menu/addon_menu.cpp:208 +msgid "Checking for updates..." +msgstr "" #: src/supertux/menu/editor_new_levelset_menu.cpp:31 msgid "New World" -msgstr "" +msgstr "Nuovo mondo" #: src/supertux/menu/editor_new_levelset_menu.cpp:51 msgid "Please enter a name for this level subset." @@ -1897,169 +3651,254 @@ msgstr "Inserisci un nome per questo gruppo di livelli" msgid "Story Mode" msgstr "Storia" -#: src/supertux/menu/game_menu.cpp:31 -msgid "Are you sure?" -msgstr "Sei sicuro?" +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Language Packs" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:112 +#, c++-format +msgid "Page {}/{}" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new language packs available" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new Add-ons available" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No language packs available" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No Add-ons available" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:135 +#: src/supertux/menu/addon_browse_menu.cpp:139 +msgid "Previous page" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:143 +#: src/supertux/menu/addon_browse_menu.cpp:147 +msgid "Next page" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:154 +msgid "Check Online (disabled)" +msgstr "Controlla sul Web (disattivato)" + +#: src/supertux/menu/addon_browse_menu.cpp:158 +msgid "Check Online" +msgstr "Controlla sul Web" + +#: src/supertux/menu/addon_browse_menu.cpp:195 +msgid "Downloading Add-On Repository Index" +msgstr "Scaricamento dell'indice dei componenti aggiuntivi" -#: src/supertux/menu/game_menu.cpp:54 src/supertux/menu/worldmap_menu.cpp:30 +#: src/supertux/menu/web_asset_menu.cpp:42 +msgid "New files location" +msgstr "Nuova localizzazione dei file" + +#: src/supertux/menu/web_asset_menu.cpp:43 +msgid "Add Files" +msgstr "Aggiungi files" + +#: src/supertux/menu/web_asset_menu.cpp:44 +msgid "Download Files" +msgstr "Scarica files" + +#: src/supertux/menu/particle_editor_open.cpp:32 +msgid "Load particle file" +msgstr "Carica file di particolari" + +#: src/supertux/menu/particle_editor_open.cpp:39 +msgid "Open" +msgstr "Apri" + +#: src/supertux/menu/game_menu.cpp:51 src/supertux/menu/worldmap_menu.cpp:30 msgid "Continue" msgstr "Continua" -#: src/supertux/menu/game_menu.cpp:55 +#: src/supertux/menu/game_menu.cpp:52 msgid "Restart Level" msgstr "Ricomincia livello" -#: src/supertux/menu/game_menu.cpp:58 +#: src/supertux/menu/game_menu.cpp:55 msgid "Restart from Checkpoint" -msgstr "" +msgstr "Riparti dal checkpoint" -#: src/supertux/menu/game_menu.cpp:63 +#: src/supertux/menu/game_menu.cpp:60 msgid "Abort Level" msgstr "Abbandona il livello" -#: src/supertux/menu/keyboard_menu.cpp:32 -#: src/supertux/menu/joystick_menu.cpp:69 -msgid "Up" -msgstr "Su" +#: src/supertux/menu/game_menu.cpp:76 src/supertux/menu/game_menu.cpp:87 +#: src/supertux/menu/game_menu.cpp:99 +msgid "Are you sure?" +msgstr "Sei sicuro?" -#: src/supertux/menu/keyboard_menu.cpp:33 -#: src/supertux/menu/joystick_menu.cpp:70 -msgid "Down" -msgstr "Giù/Abbassati" +#: src/supertux/menu/profile_name_menu.cpp:36 +#, c++-format +msgid "Rename \"{}\"" +msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:34 +#: src/supertux/menu/profile_name_menu.cpp:36 +msgid "Add profile" +msgstr "" + +#: src/supertux/menu/profile_name_menu.cpp:40 +msgid "Profile names must have a maximum of 20 characters." +msgstr "" + +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Create" +msgstr "" + +#: src/supertux/menu/profile_name_menu.cpp:56 +msgid "" +"Profile names must have a maximum of 20 characters.\n" +"Please choose a different name." +msgstr "" + +#: src/supertux/menu/profile_name_menu.cpp:77 +msgid "An error occurred while creating the profile." +msgstr "" + +#: src/supertux/menu/keyboard_menu.cpp:36 #: src/supertux/menu/joystick_menu.cpp:71 -msgid "Left" -msgstr "Sinistra" +msgid "Up" +msgstr "Su" -#: src/supertux/menu/keyboard_menu.cpp:35 +#: src/supertux/menu/keyboard_menu.cpp:37 #: src/supertux/menu/joystick_menu.cpp:72 -msgid "Right" -msgstr "Destra" +msgid "Down" +msgstr "Giù/Abbassati" -#: src/supertux/menu/keyboard_menu.cpp:36 -#: src/supertux/menu/joystick_menu.cpp:73 +#: src/supertux/menu/keyboard_menu.cpp:40 +#: src/supertux/menu/joystick_menu.cpp:75 msgid "Jump" msgstr "Salta" -#: src/supertux/menu/keyboard_menu.cpp:38 -#: src/supertux/menu/joystick_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:43 +#: src/supertux/menu/joystick_menu.cpp:78 msgid "Peek Left" msgstr "Guarda a sinistra" -#: src/supertux/menu/keyboard_menu.cpp:39 -#: src/supertux/menu/joystick_menu.cpp:77 +#: src/supertux/menu/keyboard_menu.cpp:44 +#: src/supertux/menu/joystick_menu.cpp:79 msgid "Peek Right" msgstr "Guarda a destra" -#: src/supertux/menu/keyboard_menu.cpp:40 -#: src/supertux/menu/joystick_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:45 +#: src/supertux/menu/joystick_menu.cpp:80 msgid "Peek Up" msgstr "Guarda su" -#: src/supertux/menu/keyboard_menu.cpp:41 -#: src/supertux/menu/joystick_menu.cpp:79 +#: src/supertux/menu/keyboard_menu.cpp:46 +#: src/supertux/menu/joystick_menu.cpp:81 msgid "Peek Down" msgstr "Guarda giù" -#: src/supertux/menu/keyboard_menu.cpp:43 -#: src/supertux/menu/joystick_menu.cpp:81 +#: src/supertux/menu/keyboard_menu.cpp:51 +#: src/supertux/menu/joystick_menu.cpp:83 msgid "Console" msgstr "Console" -#: src/supertux/menu/keyboard_menu.cpp:46 +#: src/supertux/menu/keyboard_menu.cpp:52 #: src/supertux/menu/joystick_menu.cpp:84 msgid "Cheat Menu" msgstr "Menù Trucchi" -#: src/supertux/menu/keyboard_menu.cpp:47 +#: src/supertux/menu/keyboard_menu.cpp:53 #: src/supertux/menu/joystick_menu.cpp:85 msgid "Debug Menu" msgstr "Menù di Debug" -#: src/supertux/menu/keyboard_menu.cpp:49 +#: src/supertux/menu/keyboard_menu.cpp:56 #: src/supertux/menu/joystick_menu.cpp:87 msgid "Jump with Up" msgstr "Salta con il tasto Su" -#: src/supertux/menu/keyboard_menu.cpp:62 +#: src/supertux/menu/keyboard_menu.cpp:82 msgid "Up cursor" msgstr "Freccia su" -#: src/supertux/menu/keyboard_menu.cpp:64 +#: src/supertux/menu/keyboard_menu.cpp:84 msgid "Down cursor" msgstr "Freccia giù" -#: src/supertux/menu/keyboard_menu.cpp:66 +#: src/supertux/menu/keyboard_menu.cpp:86 msgid "Left cursor" msgstr "Freccia sinistra" -#: src/supertux/menu/keyboard_menu.cpp:68 +#: src/supertux/menu/keyboard_menu.cpp:88 msgid "Right cursor" msgstr "Freccia destra" -#: src/supertux/menu/keyboard_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:90 msgid "Return" msgstr "Invio" -#: src/supertux/menu/keyboard_menu.cpp:72 +#: src/supertux/menu/keyboard_menu.cpp:92 msgid "Space" msgstr "Spazio" -#: src/supertux/menu/keyboard_menu.cpp:74 +#: src/supertux/menu/keyboard_menu.cpp:94 msgid "Right Shift" msgstr "Shift destro" -#: src/supertux/menu/keyboard_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:96 msgid "Left Shift" msgstr "Shift sinistro" -#: src/supertux/menu/keyboard_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:98 msgid "Right Control" msgstr "Ctrl destro" -#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/keyboard_menu.cpp:100 msgid "Left Control" msgstr "Ctrl sinistro" -#: src/supertux/menu/keyboard_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:102 msgid "Right Alt" msgstr "Alt destro" -#: src/supertux/menu/keyboard_menu.cpp:84 +#: src/supertux/menu/keyboard_menu.cpp:104 msgid "Left Alt" msgstr "Alt sinistro" -#: src/supertux/menu/keyboard_menu.cpp:86 +#: src/supertux/menu/keyboard_menu.cpp:106 msgid "Right Command" msgstr "comando destro" -#: src/supertux/menu/keyboard_menu.cpp:88 +#: src/supertux/menu/keyboard_menu.cpp:108 msgid "Left Command" msgstr "comando sinistra" -#: src/supertux/menu/keyboard_menu.cpp:102 +#: src/supertux/menu/keyboard_menu.cpp:122 msgid "Press Key" msgstr "Premi un tasto" -#: src/supertux/menu/language_menu.cpp:40 +#: src/supertux/menu/language_menu.cpp:43 msgid "Language" msgstr "Lingua" -#: src/supertux/menu/language_menu.cpp:42 +#: src/supertux/menu/language_menu.cpp:45 msgid "" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:55 +#: src/supertux/menu/joystick_menu.cpp:57 msgid "Manual Configuration" msgstr "Configurazione Manuale" -#: src/supertux/menu/joystick_menu.cpp:57 +#: src/supertux/menu/joystick_menu.cpp:59 msgid "" "Use manual configuration instead of SDL2's automatic GameController support" msgstr "Utilizza la configurazione manuale anziché usare il supporto automatico per il GameController di SDL2" -#: src/supertux/menu/joystick_menu.cpp:75 +#: src/supertux/menu/joystick_menu.cpp:77 msgid "Pause/Menu" msgstr "Pausa/Menu" @@ -2119,45 +3958,111 @@ msgstr "Pausa" msgid "Leave World" msgstr "Esci dal mondo" -#: src/supertux/menu/download_dialog.cpp:27 +#: src/supertux/menu/download_dialog.cpp:42 msgid "Abort Download" msgstr "Interrompi Download" -#: src/supertux/menu/download_dialog.cpp:42 -msgid "Error:\n" -msgstr "Errore:\n" - -#: src/supertux/menu/download_dialog.cpp:96 -msgid "Close" -msgstr "Chiudi" +#: src/supertux/menu/download_dialog.cpp:59 +#, c++-format +msgid "" +"Error:\n" +"{}" +msgstr "" -#: src/supertux/menu/cheat_menu.cpp:37 +#: src/supertux/menu/cheat_menu.cpp:38 msgid "Bonus: Star" msgstr "Bonus: Stella" -#: src/supertux/menu/cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:39 msgid "Shrink Tux" msgstr "Strizzacervelli Tux" -#: src/supertux/menu/cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:40 msgid "Kill Tux" msgstr "Uccidi Tux" +#: src/supertux/menu/cheat_menu.cpp:55 +msgid "Prevent Death" +msgstr "" + +#: src/supertux/menu/addon_file_install_menu.cpp:32 +msgid "Install Add-on from file" +msgstr "" + +#: src/supertux/menu/addon_file_install_menu.cpp:34 +msgid "Drag and drop add-on ZIP archive" +msgstr "" + +#: src/supertux/menu/particle_editor_menu.cpp:32 +msgid "Particle Editor" +msgstr "Editore dei particolari" + +#: src/supertux/menu/particle_editor_menu.cpp:36 +#: src/supertux/menu/editor_menu.cpp:60 +msgid "Return to Editor" +msgstr "Tornare all'Editor" + +#: src/supertux/menu/particle_editor_menu.cpp:37 +msgid "New Particle Config" +msgstr "Configura nuovo particolare" + +#: src/supertux/menu/particle_editor_menu.cpp:38 +msgid "Save Particle Config" +msgstr "Salva nuova configurazione del particolare" + +#: src/supertux/menu/particle_editor_menu.cpp:39 +msgid "Save Particle Config as..." +msgstr "Salva particolare come..." + +#: src/supertux/menu/particle_editor_menu.cpp:40 +msgid "Load Another Particle Config" +msgstr "Carica un altra configurazione particolare" + +#: src/supertux/menu/particle_editor_menu.cpp:44 +msgid "Open Particle Directory" +msgstr "Apri la directory del particolare" + +#: src/supertux/menu/particle_editor_menu.cpp:45 +#: src/supertux/menu/editor_menu.cpp:118 +msgid "Keyboard Shortcuts" +msgstr "Scorciatoie da tastiera" + +#: src/supertux/menu/particle_editor_menu.cpp:49 +msgid "Exit Particle Editor" +msgstr "Esci dall'editor del particolare" + +#: src/supertux/menu/particle_editor_menu.cpp:121 +msgid "" +"Keyboard Shortcuts:\n" +"---------------------\n" +"Esc = Open Menu\n" +"Ctrl+S = Save\n" +"Ctrl+Shift+S = Save as\n" +"Ctrl+O = Open\n" +"Ctrl+Z = Undo\n" +"Ctrl+Y = Redo" +msgstr "Scorciatoie di tastiera: \n---------------------\nEsc = Apri Menu \nCtrl + S = Salva\nCtrl + Shift + S = Salva come\nCtrl + O = Apri \nCtrl + Z = Annulla\nCtrl + Y = Ripristina" + +#: src/supertux/menu/particle_editor_menu.cpp:122 +#: src/supertux/menu/editor_menu.cpp:206 +msgid "Got it!" +msgstr "Acchiappato!" + #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:70 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Worldmap Settings" -msgstr "" +msgstr "Impostazioni della mappa del mondo" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:70 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Level Settings" -msgstr "" +msgstr "Impostazioni del livello" #: src/supertux/menu/editor_level_menu.cpp:34 msgid "Author" msgstr "Autore" -#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1113 +#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1253 msgid "Contact" msgstr "Contatti" @@ -2166,245 +4071,620 @@ msgid "License" msgstr "Licenza" #: src/supertux/menu/editor_level_menu.cpp:37 +msgid "Level Note" +msgstr "Note del livello" + +#: src/supertux/menu/editor_level_menu.cpp:38 msgid "Tileset" -msgstr "Tileset" +msgstr "Serie di Caselle" -#: src/supertux/menu/editor_level_menu.cpp:40 +#: src/supertux/menu/editor_level_menu.cpp:41 msgid "Target Time" -msgstr "" +msgstr "Tempo da raggiungere" -#: src/supertux/menu/editor_level_menu.cpp:82 +#: src/supertux/menu/editor_level_menu.cpp:83 msgid "Please enter a name for this level." msgstr "Inserisci un nome per questo livello" -#: src/supertux/menu/editor_level_menu.cpp:86 +#: src/supertux/menu/editor_level_menu.cpp:87 msgid "Please enter a level author for this level." msgstr "Inserisci un nome d'autore per questo livello" -#: src/supertux/menu/editor_level_menu.cpp:90 +#: src/supertux/menu/editor_level_menu.cpp:91 msgid "Please enter a license for this level." msgstr "Inserisci una licenza per questo livello" -#: src/supertux/menu/editor_menu.cpp:34 -msgid "1/8 tile (4px)" -msgstr "1/8 tile (4px)" +#: src/supertux/menu/editor_menu.cpp:53 +msgid "tiny tile (4px)" +msgstr "casella minuscola (4px)" -#: src/supertux/menu/editor_menu.cpp:35 -msgid "1/4 tile (8px)" -msgstr "1/4 tile (8px)" - -#: src/supertux/menu/editor_menu.cpp:36 -msgid "1/2 tile (16px)" -msgstr "1/2 tile (16px)" +#: src/supertux/menu/editor_menu.cpp:54 +msgid "small tile (8px)" +msgstr "casella piccola (8px)" -#: src/supertux/menu/editor_menu.cpp:37 -msgid "1 tile (32px)" -msgstr "1 tile (32px)" +#: src/supertux/menu/editor_menu.cpp:55 +msgid "medium tile (16px)" +msgstr "casella media (16px)" -#: src/supertux/menu/editor_menu.cpp:41 -msgid "Return to Editor" -msgstr "Tornare all'Editor" +#: src/supertux/menu/editor_menu.cpp:56 +msgid "big tile (32px)" +msgstr "casella grande (32px)" -#: src/supertux/menu/editor_menu.cpp:42 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Worldmap" -msgstr "" +msgstr "Salva mappa del mondo" -#: src/supertux/menu/editor_menu.cpp:42 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Level" -msgstr "" +msgstr "Salva livello" -#: src/supertux/menu/editor_menu.cpp:45 +#: src/supertux/menu/editor_menu.cpp:65 msgid "Test Level" -msgstr "" +msgstr "Prova il livello" -#: src/supertux/menu/editor_menu.cpp:49 +#: src/supertux/menu/editor_menu.cpp:67 msgid "Test Worldmap" -msgstr "" +msgstr "Prova la mappa del mondo" -#: src/supertux/menu/editor_menu.cpp:52 +#: src/supertux/menu/editor_menu.cpp:72 msgid "Share Level" -msgstr "" +msgstr "Condividi livello" -#: src/supertux/menu/editor_menu.cpp:54 +#: src/supertux/menu/editor_menu.cpp:74 +msgid "Package Add-On" +msgstr "Pacchetto Aggiunte" + +#: src/supertux/menu/editor_menu.cpp:76 msgid "Open Level Directory" +msgstr "Apri cartella del livello" + +#: src/supertux/menu/editor_menu.cpp:79 +msgid "Edit Another Level" +msgstr "Modifica un altro livello" + +#: src/supertux/menu/editor_menu.cpp:81 +msgid "Edit Another World" +msgstr "Modifica un altro mondo" + +#: src/supertux/menu/editor_menu.cpp:86 +msgid "Convert all tiles in the level using converters." +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:90 +msgid "Grid Size" +msgstr "Dimensione della griglia" + +#: src/supertux/menu/editor_menu.cpp:91 +msgid "Show Grid" +msgstr "Mostra griglia" + +#: src/supertux/menu/editor_menu.cpp:92 +msgid "Grid Snapping" +msgstr "Snap della griglia" + +#: src/supertux/menu/editor_menu.cpp:93 +msgid "Render Background" +msgstr "Renderizza sfondo" + +#: src/supertux/menu/editor_menu.cpp:94 +msgid "Render Light" +msgstr "Renderizza luce" + +#: src/supertux/menu/editor_menu.cpp:95 +msgid "Autotile Mode" +msgstr "Modalità Auto-Casella" + +#: src/supertux/menu/editor_menu.cpp:96 +msgid "Enable Autotile Help" +msgstr "Abilita Aiuto Auto-Casella" + +#: src/supertux/menu/editor_menu.cpp:97 +msgid "Enable Object Undo Tracking" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:100 +msgid "Undo Stack Size" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:102 +msgid "Autosave Frequency" +msgstr "Frequenza di salvataggio automatico" + +#: src/supertux/menu/editor_menu.cpp:108 +msgid "Check for Deprecated Tiles" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:109 +msgid "Check if any deprecated tiles are currently present in the level." +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:110 +msgid "Show Deprecated Tiles" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:111 +msgid "" +"Indicate all deprecated tiles on the active tilemap, without the need of " +"hovering over." +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:121 +msgid "Exit Level Editor" +msgstr "Esci dall'editor di livello" + +#: src/supertux/menu/editor_menu.cpp:170 +msgid "Do you want to package this world as an add-on?" +msgstr "Vuoi rendere questo mondo come un pacchetto di aggiunte?" + +#: src/supertux/menu/editor_menu.cpp:196 +msgid "" +"We encourage you to share your levels in the SuperTux forum.\n" +"To find your level, click the\n" +"\"Open Level directory\" menu item.\n" +"Do you want to go to the forum now?" +msgstr "Incoraggiamo la condivisione dei livelli nel forum di SuperTux.\nPer trovare i propri livelli, clicca su\n\"Apri cartella livelli\".\nAndare al forum adesso?" + +#: src/supertux/menu/editor_menu.cpp:205 +msgid "" +"Keyboard Shortcuts:\n" +"---------------------\n" +"Esc = Open Menu\n" +"Ctrl+S = Save\n" +"Ctrl+T = Test\n" +"Ctrl+Z = Undo\n" +"Ctrl+Y = Redo\n" +"F6 = Render Light\n" +"F7 = Grid Snapping\n" +"F8 = Show Grid\n" +"Ctrl++ or Ctrl+Scroll Up = Zoom In\n" +"Ctrl+- or Ctrl+Scroll Down = Zoom Out\n" +"Ctrl+D = Reset Zoom\n" +"\n" +"Scripting Shortcuts:\n" +" ------------- \n" +"Home = Go to beginning of line\n" +"End = Go to end of line\n" +"Left arrow = Go back in text\n" +"Right arrow = Go forward in text\n" +"Backspace = Delete in front of text cursor\n" +"Delete = Delete behind text cursor\n" +"Ctrl+X = Cut whole line\n" +"Ctrl+C = Copy whole line\n" +"Ctrl+V = Paste\n" +"Ctrl+D = Duplicate line\n" +"Ctrl+Z = Undo\n" +"Ctrl+Y = Redo" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:232 +msgid "Deprecated tiles are still present in the level." msgstr "" -#: src/supertux/menu/editor_menu.cpp:57 -msgid "Edit Another Level" +#: src/supertux/menu/editor_menu.cpp:239 +msgid "Do you want to show all deprecated tiles on active tilemaps?" msgstr "" -#: src/supertux/menu/editor_menu.cpp:60 -msgid "Edit Another World" +#: src/supertux/menu/editor_menu.cpp:246 +msgid "There are no more deprecated tiles in the level!" msgstr "" -#: src/supertux/menu/editor_menu.cpp:64 -msgid "Grid Size" +#: src/supertux/menu/multiplayer_player_menu.cpp:40 +msgid "Play with the keyboard" msgstr "" -#: src/supertux/menu/editor_menu.cpp:65 -msgid "Show Grid" +#: src/supertux/menu/multiplayer_player_menu.cpp:58 +msgid "Remove Player" msgstr "" -#: src/supertux/menu/editor_menu.cpp:66 -msgid "Grid Snapping" +#: src/supertux/menu/multiplayer_player_menu.cpp:82 +msgid "Respawn Player" msgstr "" -#: src/supertux/menu/editor_menu.cpp:67 -msgid "Render Background" +#: src/supertux/menu/multiplayer_player_menu.cpp:108 +msgid "Spawn Player" msgstr "" -#: src/supertux/menu/editor_menu.cpp:68 -msgid "Render Light" +#: src/supertux/menu/multiplayer_player_menu.cpp:136 +msgid "Controllers" msgstr "" -#: src/supertux/menu/editor_menu.cpp:72 -msgid "Keyboard Shortcuts" +#: src/supertux/menu/multiplayer_player_menu.cpp:152 +msgid "" +"This controller does not support rumbling;\n" +"please check the controllers manually." msgstr "" -#: src/supertux/menu/editor_menu.cpp:75 -msgid "Exit Level Editor" +#: src/supertux/menu/multiplayer_player_menu.cpp:157 +msgid "" +"This SuperTux build does not support rumbling\n" +"controllers; please check the controllers manually." msgstr "" -#: src/supertux/menu/editor_menu.cpp:122 +#: src/supertux/menu/multiplayer_player_menu.cpp:184 msgid "" -"We encourage you to share your levels in the SuperTux forum.\n" -"To find your level, click the\n" -"\"Open output directory\" menu item.\n" -"Do you want to go to the forum now?" +"This joystick does not support rumbling;\n" +"please check the joysticks manually." msgstr "" -#: src/supertux/menu/editor_menu.cpp:134 +#: src/supertux/menu/multiplayer_player_menu.cpp:189 msgid "" -"Keyboard Shortcuts:\n" -"---------------------\n" -"Esc = Open Menu\n" -"Ctrl+S = Save\n" -"Ctrl+T = Test\n" -"Ctrl+Z = Undo\n" -"Ctrl+Y = Redo\n" -"F6 = Render Light\n" -"F7 = Grid Snapping\n" -"F8 = Show Grid" +"This SuperTux build does not support rumbling\n" +"joysticks; please check the joysticks manually." msgstr "" -#: src/supertux/menu/editor_menu.cpp:135 -msgid "Got it!" +#: src/supertux/menu/editor_delete_level_menu.cpp:59 +msgid "No levels available" +msgstr "" + +#: src/supertux/menu/editor_delete_level_menu.cpp:79 +msgid "You cannot delete the level that you are editing!" +msgstr "" + +#: src/supertux/menu/editor_delete_level_menu.cpp:82 +#, c++-format +msgid "You are about to delete level \"{}\". Are you sure?" msgstr "" -#: src/supertux/levelintro.cpp:135 -#, c-format -msgid "contributed by %s" -msgstr "con il contributo di %s" +#: src/supertux/levelintro.cpp:137 +#, c++-format +msgid "contributed by {}" +msgstr "" -#: src/supertux/levelintro.cpp:167 +#: src/supertux/levelintro.cpp:184 msgid "Badguys killed" msgstr "Cattivoni uccisi" -#: src/supertux/levelintro.cpp:171 +#: src/supertux/levelintro.cpp:192 msgid "Best time" msgstr "Miglior tempo" -#: src/supertux/levelintro.cpp:175 +#: src/supertux/levelintro.cpp:196 msgid "Level target time" msgstr "Obiettivo tempo per il livello" -#: src/supertux/tile_set.cpp:92 +#: src/supertux/tile_set.cpp:113 msgid "Others" msgstr "Altri" -#: src/supertux/moving_object.cpp:44 +#: src/supertux/direction.cpp:67 +msgid "up" +msgstr "su" + +#: src/supertux/direction.cpp:69 +msgid "down" +msgstr "giù" + +#: src/supertux/moving_object.cpp:63 msgid "Region" +msgstr "Regione" + +#: src/supertux/main.cpp:801 +#, c++-format +msgid "New release: SuperTux v{}!" +msgstr "" + +#: src/supertux/main.cpp:804 +#, c++-format +msgid "" +"A new release of SuperTux (v{}) is available!\n" +"For more information, you can visit the SuperTux website.\n" +"\n" +"Do you want to visit the website now?" +msgstr "" + +#: src/supertux/main.cpp:815 +msgid "Checking for new releases..." msgstr "" #: src/control/joystick_config.cpp:85 msgid "Joystick Mappings" msgstr "Configurazione Joystick" -#: src/worldmap/worldmap_parser.cpp:167 +#: src/worldmap/sprite_change.cpp:91 +msgid "Stay action" +msgstr "Azione di stasi" + +#: src/worldmap/sprite_change.cpp:92 +msgid "Initial stay action" +msgstr "Azione iniziale di stasi" + +#: src/worldmap/sprite_change.cpp:93 +msgid "Stay group" +msgstr "Ferma gruppo" + +#: src/worldmap/sprite_change.cpp:94 +msgid "Change on touch" +msgstr "Cambia al tocco" + +#: src/worldmap/special_tile.hpp:36 +msgid "Special Tile" +msgstr "" + +#: src/worldmap/level_tile.hpp:36 src/worldmap/level_tile.cpp:161 +msgid "Level" +msgstr "Livello" + +#: src/worldmap/teleporter.cpp:50 +msgid "Automatic" +msgstr "Automatico" + +#: src/worldmap/teleporter.cpp:51 +msgid "Target worldmap" +msgstr "Specifica mappa del mondo" + +#: src/worldmap/sprite_change.hpp:35 +msgid "Sprite Change" +msgstr "Cambio sprite" + +#: src/worldmap/special_tile.cpp:75 +msgid "Show message" +msgstr "Mostra messaggio" + +#: src/worldmap/level_tile.cpp:84 msgid "" msgstr "" -#: src/editor/node_marker.cpp:79 +#: src/worldmap/level_tile.cpp:162 +msgid "Outro script" +msgstr "Script di epilogo" + +#: src/worldmap/level_tile.cpp:163 +msgid "Auto play" +msgstr "Riproduzione automatica" + +#: src/worldmap/level_tile.cpp:164 +msgid "Title colour" +msgstr "Colore titolo" + +#: src/worldmap/teleporter.hpp:34 +msgid "Teleporter" +msgstr "Teletrasportatore" + +#: src/editor/tip.cpp:80 +msgid "" +"This object's current functionality is deprecated.\n" +"Updating to get its latest functionality is recommended." +msgstr "" + +#: src/editor/node_marker.cpp:122 msgid "Path Node" msgstr "Snodo del sentiero" -#: src/editor/object_settings.cpp:112 -msgid "up" -msgstr "su" +#: src/editor/node_marker.cpp:123 +msgid "Press CTRL to move Bezier handles" +msgstr "Premi CTRL per spostare le maniglie di Bezier" -#: src/editor/object_settings.cpp:112 -msgid "down" -msgstr "giù" +#: src/editor/node_marker.cpp:127 +msgid "Easing" +msgstr "Allentamento" -#: src/editor/object_settings.cpp:124 +#: src/editor/object_settings.cpp:129 msgid "West" msgstr "Ovest" -#: src/editor/object_settings.cpp:124 +#: src/editor/object_settings.cpp:129 msgid "East" msgstr "Est" -#: src/editor/object_settings.cpp:124 +#: src/editor/object_settings.cpp:129 msgid "North" msgstr "Nord" -#: src/editor/object_settings.cpp:124 +#: src/editor/object_settings.cpp:129 msgid "South" msgstr "Sud" -#: src/editor/object_settings.cpp:137 +#: src/editor/object_settings.cpp:142 msgid "One shot" msgstr "One shot" -#: src/editor/object_settings.cpp:137 +#: src/editor/object_settings.cpp:142 msgid "Ping-pong" msgstr "Ping-pong" -#: src/editor/object_settings.cpp:137 +#: src/editor/object_settings.cpp:142 msgid "Circular" msgstr "Circolare" -#: src/editor/object_settings.cpp:137 -msgid "Unordered" -msgstr "Non ordinato" +#: src/editor/layers_widget.cpp:331 +#, c++-format +msgid "Sector: {}" +msgstr "" -#: src/editor/object_option.cpp:83 +#: src/editor/object_option.cpp:92 msgid "true" msgstr "vero" -#: src/editor/object_option.cpp:83 +#: src/editor/object_option.cpp:92 msgid "false" msgstr "falso" -#: src/editor/object_option.cpp:246 src/editor/object_option.cpp:295 +#: src/editor/object_option.cpp:308 src/editor/object_option.cpp:356 msgid "invalid" msgstr "non valido" -#: src/editor/object_option.cpp:553 +#: src/editor/object_option.cpp:665 +msgid "Scale X" +msgstr "" + +#: src/editor/object_option.cpp:666 +msgid "Scale Y" +msgstr "" + +#: src/editor/object_option.cpp:667 +msgid "Offset X" +msgstr "" + +#: src/editor/object_option.cpp:668 +msgid "Offset Y" +msgstr "" + +#: src/editor/object_option.cpp:672 src/editor/object_menu.cpp:67 msgid "Remove" msgstr "Rimuovi" -#: src/editor/worldmap_objects.hpp:56 src/editor/worldmap_objects.cpp:129 -msgid "Level" -msgstr "Livello" +#: src/editor/object_option.cpp:689 +msgid "Test from here" +msgstr "Test da qui" -#: src/editor/worldmap_objects.hpp:79 -msgid "Teleporter" -msgstr "Teletrasportatore" +#: src/editor/object_option.cpp:706 +msgid "Open Particle Editor" +msgstr "Apri l'editor dei particolari" -#: src/editor/worldmap_objects.hpp:119 -msgid "Sprite Change" +#: src/editor/particle_editor.cpp:114 +msgid "Change texture... ->" +msgstr "" + +#: src/editor/particle_editor.cpp:126 +msgid "Max amount" +msgstr "Quantità massima" + +#: src/editor/particle_editor.cpp:142 +msgid "Spawn anywhere" +msgstr "Genera ovunque" + +#: src/editor/particle_editor.cpp:143 +msgid "Life duration" +msgstr "Durata della vita" + +#: src/editor/particle_editor.cpp:148 +msgid "Birth duration" +msgstr "Durata della nascita" + +#: src/editor/particle_editor.cpp:153 +msgid "Death duration" +msgstr "Durata della morte" + +#: src/editor/particle_editor.cpp:160 +msgid "Grow" +msgstr "Crescita" + +#: src/editor/particle_editor.cpp:175 +msgid "Horizontal speed" +msgstr "Velocità orizzontale" + +#: src/editor/particle_editor.cpp:180 +msgid "Vertical speed" +msgstr "Velocità verticale" + +#: src/editor/particle_editor.cpp:185 +msgid "Horizontal acceleration" +msgstr "Accelerazione orizzantale" + +#: src/editor/particle_editor.cpp:186 +msgid "Vertical acceleration" +msgstr "Accelerazione verticale" + +#: src/editor/particle_editor.cpp:187 +msgid "Horizontal friction" +msgstr "Attrito orizzontale" + +#: src/editor/particle_editor.cpp:188 +msgid "Vertical friction" +msgstr "Attrito verticale" + +#: src/editor/particle_editor.cpp:190 +msgid "Initial rotation" +msgstr "Rotazione iniziale" + +#: src/editor/particle_editor.cpp:201 +msgid "Rotation friction/decceleration" +msgstr "Rotazione
attrito/decelerazione" + +#: src/editor/particle_editor.cpp:211 +msgid "Destroy" +msgstr "Distruggi" + +#: src/editor/particle_editor.cpp:215 +msgid "Stick to surface" +msgstr "Attieniti alla superficie" + +#: src/editor/particle_editor.cpp:216 +msgid "Stick and stay" +msgstr "Attieniti e resta" + +#: src/editor/particle_editor.cpp:217 +msgid "No collision" +msgstr "Nessuna collisione" + +#: src/editor/particle_editor.cpp:222 +msgid "Always destroy" +msgstr "Distruggi sempre" + +#: src/editor/particle_editor.cpp:226 +msgid "Offscreen mode" +msgstr "Modalità di schermo spento" + +#: src/editor/particle_editor.cpp:229 +msgid "Clear" +msgstr "" + +#: src/editor/particle_editor.cpp:245 +msgid "<- General settings" +msgstr "" + +#: src/editor/particle_editor.cpp:255 +msgid "Likeliness" +msgstr "" + +#: src/editor/particle_editor.cpp:266 +msgid "Color (RGBA)" +msgstr "" + +#: src/editor/particle_editor.cpp:311 +msgid "Scale (x, y)" +msgstr "" + +#: src/editor/particle_editor.cpp:332 +msgid "Hitbox scale (x, y)" +msgstr "" + +#: src/editor/particle_editor.cpp:353 +msgid "Hitbox offset relative to scale" +msgstr "" + +#: src/editor/particle_editor.cpp:372 +msgid "Change texture..." +msgstr "" + +#: src/editor/particle_editor.cpp:766 +msgid "" +"This particle configuration contains unsaved changes,\n" +"do you want to save?" +msgstr "Questa configurazione dei particolari contiene modifiche non salvate, \nVuoi salvarle?" + +#: src/editor/particle_editor.cpp:774 +msgid "Save as" +msgstr "Salva come" + +#: src/editor/editor.cpp:577 +msgid "" +"This level contains deprecated tiles.\n" +"It is strongly recommended to replace all deprecated tiles\n" +"to avoid loss of compatibility in future versions." +msgstr "" + +#: src/editor/editor.cpp:579 +msgid "Tip: Turn on \"Show Deprecated Tiles\" from the level editor menu." msgstr "" -#: src/editor/worldmap_objects.hpp:140 -msgid "Special tile" -msgstr "Casella speciale" +#: src/editor/editor.cpp:626 +msgid "" +"Don't forget that your levels and assets\n" +"aren't saved between sessions!\n" +"If you want to keep your levels, download them\n" +"from the \"Manage Assets\" menu." +msgstr "Non dimenticare che i tuoi livelli e assets\nnon sono salvati tra le sessioni!\nSe vuoi tenere i tuoi livelli, scaricali dal menu \"Gestisci Assets\". " -#: src/editor/editor.cpp:481 +#: src/editor/editor.cpp:661 msgid "This level contains unsaved changes, do you want to save?" +msgstr "Questo livello contiene cambiamenti non salvati. Vuoi salvare?" + +#: src/editor/editor.cpp:662 +msgid "This level may contain unsaved changes, do you want to save?" msgstr "" -#: src/editor/editor.cpp:521 +#: src/editor/editor.cpp:797 msgid "" "Some obsolete add-ons are still active\n" "and might cause collisions with default Super Tux structure.\n" @@ -2412,432 +4692,463 @@ msgid "" "Disabling these add-ons will not delete your game progress." msgstr "Alcuni componenti aggiuntivi obsoleti sono ancora attivi\ne possono creare conflitti con la struttura di base di Super Tux.\nSi possono ancora abilitare questi componenti nel menu.\nDisabilitare questi componenti aggiuntivi non cancellerà i progressi di gioco." -#: src/editor/editor.cpp:524 +#: src/editor/editor.cpp:800 msgid "Disable add-ons" msgstr "Disabilita componenti aggiuntivi" -#: src/editor/editor.cpp:529 +#: src/editor/editor.cpp:805 msgid "Ignore (not advised)" msgstr "Ignora (sconsigliato)" -#: src/editor/editor.cpp:533 +#: src/editor/editor.cpp:809 msgid "Leave editor" msgstr "Esci dall'editor dei livelli" -#: src/editor/editor.cpp:743 +#: src/editor/editor.cpp:1023 msgid "" "Couldn't find a \"main\" sector.\n" "Please change the name of the sector where\n" "you'd like the player to start to \"main\"" msgstr "Impossibile trovare il settore \"main\".\nCambiare il nome del settore dove\nvorresti che il giocatore cominci su \"main\"" -#: src/editor/editor.cpp:747 +#: src/editor/editor.cpp:1027 msgid "" "Couldn't find a \"main\" spawnpoint.\n" " Please change the name of the spawnpoint where\n" "you'd like the player to start to \"main\"" msgstr "Impossibile trovare il punto di rinascita \"main\".\nCambiare il nome del punto di rinascita dove\nvorresti che il giocatore cominci su \"main\"" -#: src/editor/worldmap_objects.cpp:130 -msgid "Outro script" -msgstr "Script di epilogo" - -#: src/editor/worldmap_objects.cpp:131 -msgid "Auto play" -msgstr "Riproduzione automatica" - -#: src/editor/worldmap_objects.cpp:133 -msgid "Title colour" -msgstr "Colore titolo" +#: src/editor/object_menu.cpp:60 +msgid "Patch Notes" +msgstr "" -#: src/editor/worldmap_objects.cpp:175 -msgid "Automatic" -msgstr "Automatico" +#: src/editor/object_menu.cpp:84 +msgid "" +"This will update the object to its latest functionality.\n" +"Check the \"Patch Notes\" for more information.\n" +"\n" +"Keep in mind this is very likely to break the proper behaviour of the object.\n" +"Make sure to re-check any behaviour, related to the object." +msgstr "" -#: src/editor/worldmap_objects.cpp:177 -msgid "Target worldmap" -msgstr "Specifica mappa del mondo" +#: src/editor/object_menu.cpp:98 +#, c++-format +msgid "Patch notes for v{}:" +msgstr "" -#: src/editor/worldmap_objects.cpp:240 -msgid "Stay action" -msgstr "Azione di stasi" +#: src/editor/overlay_widget.cpp:1062 +msgid "Cannot select deprecated tiles" +msgstr "" -#: src/editor/worldmap_objects.cpp:241 -msgid "Initial stay action" -msgstr "Azione iniziale di stasi" +#: src/editor/overlay_widget.cpp:1567 +msgid "Autotile mode is on" +msgstr "Modalità Auto-Casella attiva" -#: src/editor/worldmap_objects.cpp:242 -msgid "Stay group" -msgstr "Ferma gruppo" +#: src/editor/overlay_widget.cpp:1571 +msgid "Hold Ctrl to enable autotile" +msgstr "Premi CTRL per abilitare la Modalità Auto-Casella" -#: src/editor/worldmap_objects.cpp:243 -msgid "Change on touch" -msgstr "Cambia al tocco" +#: src/editor/overlay_widget.cpp:1578 +msgid "Autotile erasing mode is on" +msgstr "Cancellazione Auto-Casella attiva" -#: src/editor/worldmap_objects.cpp:273 -msgid "Show message" -msgstr "Mostra messaggio" +#: src/editor/overlay_widget.cpp:1582 +msgid "Selected tile isn't autotileable" +msgstr "La casella selezionata non dispone di Auto-Casella" -#: src/editor/worldmap_objects.cpp:275 -msgid "Invisible" -msgstr "Invisibile" +#: src/editor/overlay_widget.cpp:1587 +msgid "Hold Ctrl to enable autotile erasing" +msgstr "Premi CTRL per abilitare la Cancellazione Auto-Casella" #: data//credits.stxt:25 msgid "Current SuperTux Team" -msgstr "" +msgstr "Team SuperTux corrente" #: data//credits.stxt:30 -msgid "Programming, project lead ad interim" -msgstr "Programmazione, capo progetto ad interim" +msgid "Maintainer, Programming" +msgstr "" #: data//credits.stxt:35 msgid "Graphics, Level Design, Story" -msgstr "" +msgstr "Grafica, design dei livelli, storia" #: data//credits.stxt:40 -msgid "Graphics, Story, Optimisation" -msgstr "" +msgid "Level Design, Story, Optimisation, Coordination" +msgstr "Design dei livelli, Storia, Ottimizzazione, Coordinamento" -#: data//credits.stxt:45 data//credits.stxt:100 data//credits.stxt:186 -#: data//credits.stxt:498 +#: data//credits.stxt:45 data//credits.stxt:120 data//credits.stxt:206 +#: data//credits.stxt:538 msgid "Graphics" msgstr "Grafica" -#: data//credits.stxt:50 data//credits.stxt:60 data//credits.stxt:82 -#: data//credits.stxt:88 +#: data//credits.stxt:50 data//credits.stxt:102 data//credits.stxt:108 msgid "Graphics, Programming, Level Design" msgstr "Grafica, programmazione, creazione livelli" #: data//credits.stxt:55 +msgid "Features and Programming" +msgstr "Caratteristiche a Programmazione" + +#: data//credits.stxt:60 +msgid "Minor features and programming" +msgstr "Caratteristiche minori e programmazione" + +#: data//credits.stxt:65 +msgid "Programming, Level Updates" +msgstr "Programmazione, Aggiornamento dei Livelli" + +#: data//credits.stxt:70 msgid "Graphics, Programming" -msgstr "" +msgstr "Grafica, programmazione" -#: data//credits.stxt:65 data//credits.stxt:130 data//credits.stxt:135 -#: data//credits.stxt:140 data//credits.stxt:145 data//credits.stxt:160 -#: data//credits.stxt:165 data//credits.stxt:494 data//credits.stxt:506 +#: data//credits.stxt:75 data//credits.stxt:85 data//credits.stxt:150 +#: data//credits.stxt:155 data//credits.stxt:160 data//credits.stxt:165 +#: data//credits.stxt:180 data//credits.stxt:185 data//credits.stxt:534 +#: data//credits.stxt:546 msgid "Programming" msgstr "Programmazione" -#: data//credits.stxt:71 +#: data//credits.stxt:80 data//credits.stxt:266 +msgid "Level Design" +msgstr "Creazione livelli" + +#: data//credits.stxt:91 msgid "Original Developers" -msgstr "" +msgstr "Sviluppatori originali" -#: data//credits.stxt:76 +#: data//credits.stxt:96 msgid "Original Developer" msgstr "Sviluppatore originale" -#: data//credits.stxt:94 +#: data//credits.stxt:114 msgid "Music, Level Design" msgstr "Musica, creazione livelli" -#: data//credits.stxt:106 +#: data//credits.stxt:126 msgid "Programming, Graphics, Level Design" msgstr "Programmazione, grafica, creazione livelli" -#: data//credits.stxt:112 +#: data//credits.stxt:132 msgid "Programming, Level Design" msgstr "Programmazione, creazione livelli" -#: data//credits.stxt:118 +#: data//credits.stxt:138 msgid "Graphics, Story" msgstr "Grafica, storia" -#: data//credits.stxt:124 +#: data//credits.stxt:144 msgid "Programming, Documentation" msgstr "Programmazione, documentazione" -#: data//credits.stxt:150 +#: data//credits.stxt:170 msgid "Coordination" msgstr "Coordinamento" -#: data//credits.stxt:155 +#: data//credits.stxt:175 msgid "Programming, \"Flexlay\" Level editor" msgstr "Programmazione, editor di livello \"Flexlay\"" -#: data//credits.stxt:170 +#: data//credits.stxt:190 msgid "Windows build fixes" msgstr "Correzioni alla versione Windows" -#: data//credits.stxt:175 +#: data//credits.stxt:195 msgid "Packaging, Nightly builds" msgstr "Paccheto, NIghtly build" -#: data//credits.stxt:180 +#: data//credits.stxt:200 msgid "Translation Guru (and many details anyone else could have done)" msgstr "Guru della traduzione (e molte altre minuzie che poteva fare chiunque altro)" -#: data//credits.stxt:240 -msgid "Level Design" -msgstr "Creazione livelli" - -#: data//credits.stxt:414 +#: data//credits.stxt:450 msgid "Additional contributors" msgstr "Altri contributori" -#: data//credits.stxt:419 +#: data//credits.stxt:455 msgid "Bug fixes" msgstr "Correzione bug" -#: data//credits.stxt:423 +#: data//credits.stxt:459 msgid "Scripting functions, Level fixes" msgstr "Funzioni scripting, correzioni ai livelli" -#: data//credits.stxt:427 +#: data//credits.stxt:463 msgid "Code quality fixes" msgstr "Correzioni di qualità al codice" -#: data//credits.stxt:431 data//credits.stxt:435 data//credits.stxt:439 -#: data//credits.stxt:466 +#: data//credits.stxt:467 data//credits.stxt:471 data//credits.stxt:475 +#: data//credits.stxt:502 msgid "Various contributions" msgstr "Contributi vari" -#: data//credits.stxt:443 +#: data//credits.stxt:479 msgid "Build issue fix" msgstr "Riparazioni ai problemi di compilazione" -#: data//credits.stxt:447 data//credits.stxt:451 +#: data//credits.stxt:483 data//credits.stxt:487 msgid "Code contributions" msgstr "Contributi al codice" -#: data//credits.stxt:454 +#: data//credits.stxt:490 msgid "Code contribution, AppData file" msgstr "Contributi al codice, file AppData" -#: data//credits.stxt:458 +#: data//credits.stxt:494 msgid "Bug fix" msgstr "Correzione bug" -#: data//credits.stxt:462 +#: data//credits.stxt:498 msgid "Menu reorganization" msgstr "Riorganizzazione menu" -#: data//credits.stxt:470 +#: data//credits.stxt:506 msgid "Fixing tile bugs" msgstr "Correzione bug caselle" -#: data//credits.stxt:474 +#: data//credits.stxt:510 msgid "Build error fix" msgstr "Correzione errori di compilazione" -#: data//credits.stxt:478 +#: data//credits.stxt:514 msgid "Scripting function fix" msgstr "Correzione funzione di scripting" -#: data//credits.stxt:482 +#: data//credits.stxt:518 +msgid "New features and notable updates" +msgstr "Nuove caratteristiche e aggiornamenti notevoli" + +#: data//credits.stxt:522 msgid "Support for \"glbinding\" as optional OpenGL binding" msgstr "Supporto per \"glbinding\" come binding OpenGL opzionale" -#: data//credits.stxt:486 +#: data//credits.stxt:526 msgid "New menu code" msgstr "Nuovo codice menu" -#: data//credits.stxt:490 +#: data//credits.stxt:530 msgid "Big Tux Walking Sprites improvements" msgstr "Miglioramenti agli sprite di camminata di Big Tux" -#: data//credits.stxt:502 data//credits.stxt:510 +#: data//credits.stxt:542 data//credits.stxt:550 msgid "Contrib Programming" msgstr "Contributi a Programmazione" -#: data//credits.stxt:514 +#: data//credits.stxt:554 msgid "Programming, Previous Maintainer" msgstr "Programmazione, manutentore precedente" -#: data//credits.stxt:518 +#: data//credits.stxt:558 msgid "Various Contributions" -msgstr "" +msgstr "Contributi vari" -#: data//credits.stxt:522 data//credits.stxt:526 data//credits.stxt:530 -#: data//credits.stxt:534 data//credits.stxt:538 data//credits.stxt:542 -#: data//credits.stxt:546 data//credits.stxt:550 data//credits.stxt:554 +#: data//credits.stxt:562 data//credits.stxt:566 data//credits.stxt:570 +#: data//credits.stxt:574 data//credits.stxt:578 data//credits.stxt:582 +#: data//credits.stxt:586 data//credits.stxt:590 data//credits.stxt:594 +#: data//credits.stxt:598 data//credits.stxt:602 data//credits.stxt:606 +#: data//credits.stxt:610 data//credits.stxt:614 data//credits.stxt:618 +#: data//credits.stxt:622 data//credits.stxt:626 data//credits.stxt:630 +#: data//credits.stxt:634 data//credits.stxt:638 data//credits.stxt:642 +#: data//credits.stxt:646 data//credits.stxt:650 data//credits.stxt:654 +#: data//credits.stxt:658 data//credits.stxt:662 msgid "Contributions" -msgstr "" +msgstr "Contributi" -#: data//credits.stxt:560 +#: data//credits.stxt:668 msgid "Localization" msgstr "Traduzione" -#: data//credits.stxt:1091 +#: data//credits.stxt:1231 msgid " Special Thanks to" -msgstr "" +msgstr "Ringraziamenti speciali a" -#: data//credits.stxt:1096 +#: data//credits.stxt:1236 msgid "Creator of Tux, the Linux penguin" msgstr "Creatore di Tux, il pinguino di Linux" -#: data//credits.stxt:1100 +#: data//credits.stxt:1240 msgid "SDL, OpenAL and OpenGL" msgstr "SDL, OpenAL e OpenGL" -#: data//credits.stxt:1101 +#: data//credits.stxt:1241 msgid "" "For making such a great gaming experience\n" " possible on Linux" msgstr "Per aver reso possibile una tale esperienza\ndi gioco su Linux" -#: data//credits.stxt:1106 +#: data//credits.stxt:1246 msgid "and you, the player" -msgstr "" +msgstr "e a te, giocatore!" -#: data//credits.stxt:1107 +#: data//credits.stxt:1247 msgid "for giving this game a chance and playing it" -msgstr "" +msgstr "per dare una chance a questo gioco giocandoci" -#: data//credits.stxt:1118 +#: data//credits.stxt:1258 msgid "Visit our webpage at" msgstr "Visita la nostra pagina a" -#: data//credits.stxt:1127 +#: data//credits.stxt:1267 msgid "Or visit us directly at IRC:" msgstr "Oppure facci visita direttamente su IRC:" -#: data//credits.stxt:1131 -msgid "#supertux at webchat.freenode.net" -msgstr "#supertux su webchat.freenode.net" +#: data//credits.stxt:1271 +msgid "#supertux at web.libera.chat" +msgstr "#supertux su web.libera.chat" -#: data//credits.stxt:1136 +#: data//credits.stxt:1276 msgid "Or at our Forum:" msgstr "O sul nostro Forum:" -#: data//credits.stxt:1145 +#: data//credits.stxt:1285 msgid "Comments, ideas and suggestions" msgstr "Commenti, idee e suggerimenti" -#: data//credits.stxt:1149 +#: data//credits.stxt:1289 msgid "go to our mailing list" msgstr "vai alla nostra mailing list" #. l10n: typo contact -#: data//credits.stxt:1159 +#: data//credits.stxt:1299 msgid "Typographical errors can be" msgstr "Gli errori tipografici possono essere" #. l10n: typo contact -#: data//credits.stxt:1164 +#: data//credits.stxt:1304 msgid "reported to" msgstr "riportato a" #. l10n: typo contact, see -#: data//credits.stxt:1169 +#: data//credits.stxt:1309 msgid "supertux-devel@lists.lethargik.org" msgstr "supertux-devel@lists.lethargik.org" -#: data//credits.stxt:1176 +#: data//credits.stxt:1316 msgid "Want to help…" msgstr "Vuoi aiutare..." -#: data//credits.stxt:1181 +#: data//credits.stxt:1321 msgid "…with localization?" msgstr "...con la traduzione?" -#: data//credits.stxt:1191 +#: data//credits.stxt:1331 msgid "…with something else?" msgstr "...con qualcos'altro?" -#: data//credits.stxt:1202 +#: data//credits.stxt:1342 msgid "Thank you for" msgstr "Grazie per" -#: data//credits.stxt:1206 +#: data//credits.stxt:1346 msgid "playing" msgstr "aver giocato" -#: data//credits.stxt:1216 +#: data//credits.stxt:1356 msgid "Penny awaits you in warmer temperatures!" -msgstr "" +msgstr "Penny ti attende in temperature più calde!" + +#: data//images/engine/editor/objects.stoi:4 +msgid "Enemies" +msgstr "Nemici" -#: data//images/engine/editor/objects.stoi:156 +#: data//images/engine/editor/objects.stoi:162 msgid "Bosses" msgstr "Boss" -#: data//images/engine/editor/objects.stoi:167 +#: data//images/engine/editor/objects.stoi:173 msgid "Projectiles" msgstr "Proiettili" -#: data//images/engine/editor/objects.stoi:181 +#: data//images/engine/editor/objects.stoi:184 msgid "Environment" -msgstr "" - -#: data//images/ice_world.strf:6 data//images/tiles.strf:327 -#: data//images/worldmap.strf:67 -msgid "Forest" -msgstr "Foresta" +msgstr "Ambiente" -#: data//images/ice_world.strf:106 +#: data//images/ice_world.strf:80 msgid "Ice Cave & Crystal" msgstr "Grotta di ghiaccio e cristallo" -#: data//images/ice_world.strf:153 +#: data//images/ice_world.strf:127 msgid "Embellishments" msgstr "Decorazioni" -#: data//images/ice_world.strf:237 -msgid "Ice" -msgstr "Ghiaccio" +#: data//images/ice_world.strf:320 +msgid "Underground Forest" +msgstr "Foresta Sotterranea" -#: data//images/ice_world.strf:282 data//images/tiles.strf:693 -msgid "Castle" -msgstr "Castello" +#: data//images/ice_world.strf:375 +msgid "Trees & Bushes" +msgstr "Alberi & Cespugli" -#: data//images/ice_world.strf:328 +#: data//images/ice_world.strf:406 +msgid "Seasonal" +msgstr "Stagionale" + +#: data//images/ice_world.strf:496 +msgid "Structure" +msgstr "Struttura" + +#: data//images/ice_world.strf:557 msgid "Pathing" msgstr "Instradamento" -#: data//images/ice_world.strf:424 +#: data//images/ice_world.strf:718 msgid "Water" msgstr "Acqua" -#: data//images/tiles.strf:19 data//images/worldmap.strf:41 -msgid "Snow" -msgstr "Neve" - -#: data//images/tiles.strf:124 +#: data//images/tiles.strf:252 msgid "Snow Background" -msgstr "" +msgstr "Sfondo innevato" -#: data//images/tiles.strf:162 -msgid "Snow Mountain" -msgstr "Montagna Nevosa" - -#: data//images/tiles.strf:236 +#: data//images/tiles.strf:300 msgid "Crystal" -msgstr "" +msgstr "Cristallo" -#: data//images/tiles.strf:457 +#: data//images/tiles.strf:539 msgid "Forest Background" +msgstr "Sfondo foresta" + +#: data//images/tiles.strf:690 +msgid "Corrupted Forest" msgstr "" -#: data//images/tiles.strf:572 -msgid "Block + Bonus" +#: data//images/tiles.strf:868 +msgid "Corrupted Background" msgstr "" -#: data//images/tiles.strf:618 +#: data//images/tiles.strf:991 +msgid "Block + Bonus" +msgstr "Blocchi + Bonus" + +#: data//images/tiles.strf:1069 msgid "Pole + Signs" -msgstr "" +msgstr "Pali + Segnali" -#: data//images/tiles.strf:661 +#: data//images/tiles.strf:1113 msgid "Liquid" -msgstr "" +msgstr "Liquido" + +#: data//images/tiles.strf:1131 +msgid "Castle" +msgstr "Castello" -#: data//images/tiles.strf:819 data//images/worldmap.strf:199 +#: data//images/tiles.strf:1231 data//images/worldmap.strf:199 msgid "Halloween" msgstr "Halloween" -#: data//images/tiles.strf:847 +#: data//images/tiles.strf:1272 msgid "Industrial" msgstr "Industriale" -#: data//images/tiles.strf:862 +#: data//images/tiles.strf:1287 msgid "Unisolid + Lightmap" -msgstr "" +msgstr "Unisolido + mappa della luce" -#: data//images/tiles.strf:879 +#: data//images/tiles.strf:1314 msgid "Miscellaneous" -msgstr "" +msgstr "Miscellanea" -#: data//images/tiles.strf:913 -msgid "Old/Unused" -msgstr "" +#: data//images/tiles.strf:1342 +msgid "Retro Tiles" +msgstr "Caselle Retro" #: data//images/worldmap.strf:24 msgid "Water paths" @@ -2850,3 +5161,19 @@ msgstr "Percorsi del castello" #: data//images/worldmap.strf:135 msgid "Darker Forest" msgstr "Foresta più oscura" + +#: data//images/converters/data.stcd:3 +msgid "Nightly Tiles" +msgstr "" + +#: data//images/converters/data.stcd:5 +msgid "For levels, created in previous Nightly builds." +msgstr "" + +#: data//images/converters/data.stcd:8 +msgid "Pre-0.6.3 Crystal Tiles" +msgstr "" + +#: data//images/converters/data.stcd:10 +msgid "For levels, created in pre-0.6.3 versions, which use crystal tiles." +msgstr "" diff --git a/data/locale/ja.po b/data/locale/ja.po index 508261a0f5a..80f4b296003 100644 --- a/data/locale/ja.po +++ b/data/locale/ja.po @@ -3,10 +3,13 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: +# 0ea743a388003249c3a27027490eb004_eb62725 <93be5fa112647d5d896be9f7b3c2eda8_426397>, 2019 +# 111More1, 2023 +# b1e11c107ebf1f339ff7adfc86b9dbe0_2e3e89d, 2016 # IAN RODRÍGUEZ Lorenzo, 2023 # 515ce455fbf38ec9585626e8d26b6324_7a9a6ef, 2016-2017 # Ryo Nakano, 2016 -# Ryo Nakano, 2018-2022 +# Ryo Nakano, 2018-2022,2024 # b1e11c107ebf1f339ff7adfc86b9dbe0_2e3e89d, 2016 # Sanshiro sumita, 2015 # Sanshiro sumita, 2015-2016 @@ -19,9 +22,9 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-05-30 16:19+0200\n" "PO-Revision-Date: 2013-08-10 22:56+0000\n" -"Last-Translator: IAN RODRÍGUEZ Lorenzo, 2023\n" +"Last-Translator: 0ea743a388003249c3a27027490eb004_eb62725 <93be5fa112647d5d896be9f7b3c2eda8_426397>, 2019\n" "Language-Team: Japanese (http://app.transifex.com/arctic-games/supertux/language/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,124 +32,166 @@ msgstr "" "Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/trigger/secretarea_trigger.cpp:53 src/trigger/secretarea_trigger.cpp:61 +#: src/trigger/secretarea_trigger.cpp:47 msgid "You found a secret area!" msgstr "秘密の場所を見つけました!" -#: src/trigger/secretarea_trigger.cpp:77 src/supertux/game_object.cpp:90 -#: src/supertux/menu/editor_sector_menu.cpp:34 -#: src/supertux/menu/editor_levelset_menu.cpp:58 +#: src/trigger/secretarea_trigger.cpp:55 src/supertux/game_object.cpp:115 +#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_levelset_menu.cpp:52 #: src/supertux/menu/editor_new_levelset_menu.cpp:34 +#: src/supertux/menu/profile_name_menu.cpp:39 #: src/supertux/menu/editor_level_menu.cpp:33 msgid "Name" msgstr "名前" -#: src/trigger/secretarea_trigger.cpp:78 +#: src/trigger/secretarea_trigger.cpp:56 msgid "Fade tilemap" msgstr "タイルマップをフェード" -#: src/trigger/secretarea_trigger.cpp:79 src/trigger/climbable.cpp:81 -#: src/object/infoblock.cpp:57 src/editor/worldmap_objects.cpp:172 -#: src/editor/worldmap_objects.cpp:270 +#: src/trigger/secretarea_trigger.cpp:57 src/trigger/climbable.cpp:59 +#: src/object/infoblock.cpp:76 src/worldmap/teleporter.cpp:49 +#: src/worldmap/special_tile.cpp:74 msgid "Message" msgstr "メッセージ" -#: src/trigger/secretarea_trigger.cpp:80 src/trigger/scripttrigger.cpp:75 -#: src/trigger/door.cpp:73 src/object/ispy.cpp:67 -#: src/object/bonus_block.cpp:207 src/object/bonus_block.cpp:211 -#: src/object/pushbutton.cpp:51 src/object/powerup.cpp:190 -#: src/editor/worldmap_objects.cpp:272 +#: src/trigger/secretarea_trigger.cpp:58 src/trigger/scripttrigger.cpp:51 +#: src/trigger/door.cpp:79 src/object/ispy.cpp:53 +#: src/object/bonus_block.cpp:264 src/object/bonus_block.cpp:268 +#: src/object/pushbutton.cpp:62 src/object/powerup.cpp:301 +#: src/worldmap/special_tile.cpp:76 msgid "Script" msgstr "スクリプト" -#: src/trigger/scripttrigger.cpp:76 src/object/pushbutton.hpp:31 +#: src/trigger/scripttrigger.cpp:52 src/object/pushbutton.hpp:32 msgid "Button" msgstr "ボタン" -#: src/trigger/scripttrigger.cpp:77 +#: src/trigger/scripttrigger.cpp:53 msgid "Oneshot" msgstr "一度のみ" -#: src/trigger/sequence_trigger.hpp:33 +#: src/trigger/sequence_trigger.hpp:31 msgid "Sequence Trigger" msgstr "シーケンストリガー" -#: src/trigger/door.cpp:74 src/badguy/willowisp.cpp:320 -#: src/supertux/menu/editor_sector_menu.cpp:32 -#: src/editor/layers_widget.cpp:342 -#: data//images/engine/editor/objects.stoi:321 +#: src/trigger/text_area.cpp:141 +msgid "Once" +msgstr "" + +#: src/trigger/text_area.cpp:142 +msgid "Text change time" +msgstr "" + +#: src/trigger/text_area.cpp:143 +msgid "Fade time" +msgstr "" + +#: src/trigger/text_area.cpp:144 src/object/textscroller.cpp:353 +msgid "Anchor" +msgstr "アンカー" + +#: src/trigger/text_area.cpp:148 +msgid "Anchor offset X" +msgstr "" + +#: src/trigger/text_area.cpp:149 +msgid "Anchor offset Y" +msgstr "" + +#: src/trigger/text_area.cpp:150 +msgid "Texts" +msgstr "" + +#: src/trigger/door.cpp:80 src/badguy/willowisp.cpp:311 +#: src/worldmap/teleporter.cpp:47 data//images/engine/editor/objects.stoi:342 msgid "Sector" msgstr "セクター" -#: src/trigger/door.cpp:75 src/editor/worldmap_objects.hpp:101 +#: src/trigger/door.cpp:81 src/worldmap/spawn_point.hpp:58 msgid "Spawn point" msgstr "スタート地点" -#: src/trigger/switch.cpp:61 src/object/block.cpp:224 src/object/torch.cpp:102 -#: src/object/moving_sprite.cpp:156 src/object/pneumatic_platform.cpp:146 -msgid "Sprite" -msgstr "スプライト" +#: src/trigger/door.cpp:82 +msgid "Locked?" +msgstr "" + +#: src/trigger/door.cpp:83 +msgid "Lock Color" +msgstr "" + +#: src/trigger/switch.cpp:62 src/object/ispy.cpp:54 src/object/bumper.cpp:53 +#: src/object/spotlight.cpp:106 src/object/pushbutton.cpp:61 +#: src/object/gradient.cpp:103 src/object/conveyor_belt.cpp:60 +#: src/badguy/badguy.cpp:1063 src/worldmap/spawn_point.cpp:79 +#: src/worldmap/special_tile.cpp:78 +msgid "Direction" +msgstr "向き" -#: src/trigger/switch.cpp:62 +#: src/trigger/switch.cpp:65 msgid "Turn on script" msgstr "スプリクト効果を出す" -#: src/trigger/switch.cpp:63 +#: src/trigger/switch.cpp:66 msgid "Turn off script" msgstr "スプリクト効果を止める" -#: src/trigger/scripttrigger.hpp:32 +#: src/trigger/scripttrigger.hpp:29 msgid "Script Trigger" msgstr "スクリプトトリガー" -#: src/trigger/sequence_trigger.cpp:75 +#: src/trigger/sequence_trigger.cpp:48 msgid "Sequence" msgstr "シーケンス" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "end sequence" msgstr "シーケンスを終了" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "stop Tux" msgstr "Tuxを止める" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "fireworks" msgstr "花火" -#: src/trigger/sequence_trigger.cpp:80 +#: src/trigger/sequence_trigger.cpp:53 msgid "New worldmap spawnpoint" msgstr "新しいワールドマップのスタート地点" -#: src/trigger/sequence_trigger.cpp:81 +#: src/trigger/sequence_trigger.cpp:54 msgid "Worldmap fade tilemap" msgstr "ワールドマップフェードタイルマップ" -#: src/trigger/sequence_trigger.cpp:82 +#: src/trigger/sequence_trigger.cpp:55 #: src/object/custom_particle_system.cpp:430 #: src/object/custom_particle_system.cpp:465 msgid "Fade" msgstr "フェード" -#: src/trigger/sequence_trigger.cpp:83 src/editor/particle_editor.cpp:161 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:161 msgid "Fade in" msgstr "フェードイン" -#: src/trigger/sequence_trigger.cpp:83 src/editor/particle_editor.cpp:167 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:167 #: src/editor/particle_editor.cpp:212 msgid "Fade out" msgstr "フェードアウト" -#: src/trigger/climbable.hpp:37 +#: src/trigger/climbable.hpp:46 msgid "Climbable" msgstr "ハシゴ" -#: src/trigger/door.hpp:34 +#: src/trigger/text_area.hpp:47 +msgid "Text Area" +msgstr "" + +#: src/trigger/door.hpp:31 msgid "Door" msgstr "ドアー" -#: src/trigger/switch.hpp:33 +#: src/trigger/switch.hpp:30 msgid "Switch" msgstr "スイッチ" @@ -154,118 +199,194 @@ msgstr "スイッチ" msgid "Secret Area" msgstr "秘密の場所" -#: src/object/thunderstorm.hpp:40 +#: src/math/anchor_point.cpp:33 +msgid "Top Left" +msgstr "" + +#: src/math/anchor_point.cpp:34 +msgid "Top" +msgstr "" + +#: src/math/anchor_point.cpp:35 +msgid "Top Right" +msgstr "" + +#: src/math/anchor_point.cpp:36 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:38 +#: src/supertux/menu/joystick_menu.cpp:73 +msgid "Left" +msgstr "左" + +#: src/math/anchor_point.cpp:37 +msgid "Middle" +msgstr "" + +#: src/math/anchor_point.cpp:38 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:39 +#: src/supertux/menu/joystick_menu.cpp:74 +msgid "Right" +msgstr "右" + +#: src/math/anchor_point.cpp:39 +msgid "Bottom Left" +msgstr "" + +#: src/math/anchor_point.cpp:40 +msgid "Bottom" +msgstr "" + +#: src/math/anchor_point.cpp:41 +msgid "Bottom Right" +msgstr "" + +#: src/object/thunderstorm.hpp:44 msgid "Thunderstorm" msgstr "雷雨" -#: src/object/cloud_particle_system.cpp:79 +#: src/object/cloud_particle_system.cpp:77 #: src/object/rain_particle_system.cpp:100 msgid "Intensity" msgstr "強度" -#: src/object/custom_particle_system.hpp:45 +#: src/object/custom_particle_system.hpp:46 msgid "Custom Particles" msgstr "カスタムパーティクル" -#: src/object/ispy.cpp:66 -msgid "Facing Down" -msgstr "下向き" - -#: src/object/ispy.cpp:68 src/object/spotlight.cpp:103 -#: src/object/gradient.cpp:137 src/badguy/willowisp.cpp:319 -#: src/badguy/badguy.cpp:848 src/editor/worldmap_objects.cpp:207 -#: src/editor/worldmap_objects.cpp:274 -msgid "Direction" -msgstr "向き" - -#: src/object/particle_zone.hpp:39 +#: src/object/particle_zone.hpp:41 msgid "Particle zone" msgstr "パーティクルゾーン" -#: src/object/path_gameobject.hpp:44 src/object/coin.cpp:301 -#: src/object/camera.cpp:224 src/object/platform.cpp:73 -#: src/object/path_gameobject.cpp:173 src/object/tilemap.cpp:246 -#: src/gui/menu_paths.cpp:52 src/badguy/willowisp.cpp:326 +#: src/object/path_gameobject.hpp:45 src/object/coin.cpp:324 +#: src/object/camera.cpp:168 src/object/platform.cpp:76 +#: src/object/path_gameobject.cpp:175 src/object/tilemap.cpp:284 +#: src/badguy/willowisp.cpp:317 msgid "Path" -msgstr "道" - -#: src/object/decal.cpp:49 src/object/scripted_object.cpp:67 -#: src/object/particlesystem.cpp:65 src/object/background.cpp:183 -#: src/object/thunderstorm.cpp:68 src/object/tilemap.cpp:239 -#: src/object/gradient.cpp:135 -msgid "Z-pos" -msgstr "z軸のポジション" +msgstr "パス" -#: src/object/decal.cpp:50 src/object/scripted_object.cpp:70 -#: src/object/tilemap.cpp:228 +#: src/object/decal.cpp:48 src/object/scripted_object.cpp:70 +#: src/object/tilemap.cpp:266 msgid "Solid" msgstr "固定" -#: src/object/decal.cpp:51 src/supertux/menu/keyboard_menu.cpp:37 -#: src/supertux/menu/joystick_menu.cpp:74 +#: src/object/decal.cpp:49 src/supertux/menu/keyboard_menu.cpp:41 +#: src/supertux/menu/joystick_menu.cpp:76 msgid "Action" msgstr "アクション" -#: src/object/weak_block.hpp:35 +#: src/object/weak_block.hpp:36 msgid "Weak Tile" msgstr "壊れやすい足場" -#: src/object/bumper.cpp:46 -msgid "Facing Left" -msgstr "左向き" - -#: src/object/gradient.hpp:42 +#: src/object/gradient.hpp:43 msgid "Gradient" msgstr "グラデーション" -#: src/object/tilemap.hpp:57 +#: src/object/tilemap.hpp:58 msgid "Tilemap" msgstr "タイルマップ" -#: src/object/circleplatform.hpp:32 +#: src/object/sound_object.cpp:69 src/object/ambient_sound.cpp:85 +#: src/object/sound_object.hpp:42 src/supertux/menu/options_menu.cpp:128 +#: data//credits.stxt:367 +msgid "Sound" +msgstr "効果音" + +#: src/object/sound_object.cpp:70 src/object/ambient_sound.cpp:87 +msgid "Volume" +msgstr "音量" + +#: src/object/conveyor_belt.hpp:39 +msgid "Conveyor Belt" +msgstr "" + +#: src/object/unstable_tile.cpp:70 src/object/weak_block.cpp:97 +#: src/badguy/flame.cpp:86 +msgid "Ice" +msgstr "氷" + +#: src/object/unstable_tile.cpp:71 src/object/brick.hpp:34 +msgid "Brick" +msgstr "レンガ" + +#: src/object/unstable_tile.cpp:72 +msgid "Delayed" +msgstr "" + +#: src/object/circleplatform.hpp:35 msgid "Circular Platform" msgstr "円形プラットフォーム" -#: src/object/brick.cpp:133 +#: src/object/brick.cpp:59 src/object/coin.cpp:69 +#: src/object/invisible_block.cpp:37 src/object/background.cpp:200 +#: src/object/tilemap.cpp:279 src/object/gradient.cpp:109 +#: src/badguy/viciousivy.cpp:44 src/badguy/snail.cpp:69 +#: src/badguy/smartball.cpp:34 src/badguy/bouncing_snowball.cpp:81 +#: src/badguy/kamikazesnowball.cpp:117 src/badguy/walkingleaf.cpp:35 +#: src/badguy/mrbomb.cpp:47 src/badguy/igel.cpp:188 src/badguy/snowball.cpp:40 +#: src/badguy/mrtree.cpp:50 src/badguy/mriceblock.cpp:62 +msgid "Normal" +msgstr "標準" + +#: src/object/brick.cpp:60 src/object/bonus_block.cpp:175 +#: src/object/coin.cpp:70 src/object/invisible_block.cpp:38 +msgid "Retro" +msgstr "" + +#: src/object/brick.cpp:166 msgid "Breakable" msgstr "破壊可能" -#: src/object/trampoline.cpp:136 src/object/rusty_trampoline.cpp:66 +#: src/object/trampoline.cpp:66 src/object/rusty_trampoline.cpp:66 msgid "Portable" msgstr "持ち運び可能" -#: src/object/spotlight.cpp:100 src/object/rain_particle_system.cpp:101 +#: src/object/trampoline.cpp:67 +msgid "Stationary" +msgstr "" + +#: src/object/key.hpp:38 +msgid "Key" +msgstr "" + +#: src/object/spotlight.cpp:102 src/object/particlesystem.cpp:64 +#: src/object/particle_zone.cpp:50 src/badguy/darttrap.cpp:149 +#: src/supertux/menu/addon_preview_menu.cpp:189 +msgid "Enabled" +msgstr "有効" + +#: src/object/spotlight.cpp:103 src/object/rain_particle_system.cpp:101 msgid "Angle" msgstr "角度" -#: src/object/spotlight.cpp:101 src/object/magicblock.cpp:94 -#: src/object/candle.cpp:77 src/object/torch.cpp:104 -#: src/object/rublight.cpp:54 src/object/lantern.cpp:62 -#: src/object/ambient_light.cpp:131 src/badguy/willowisp.cpp:328 -#: src/badguy/walking_candle.cpp:82 +#: src/object/spotlight.cpp:104 src/object/magicblock.cpp:95 +#: src/object/candle.cpp:75 src/object/torch.cpp:96 src/object/rublight.cpp:55 +#: src/object/lantern.cpp:62 src/object/ambient_light.cpp:122 +#: src/object/key.cpp:192 src/badguy/willowisp.cpp:319 +#: src/badguy/walking_candle.cpp:91 msgid "Color" msgstr "色" -#: src/object/spotlight.cpp:102 src/object/textscroller.cpp:350 -#: src/object/rain_particle_system.cpp:102 src/object/circleplatform.cpp:55 -#: src/badguy/flame.cpp:59 src/editor/node_marker.cpp:125 +#: src/object/spotlight.cpp:105 src/object/textscroller.cpp:350 +#: src/object/rain_particle_system.cpp:102 src/object/conveyor_belt.cpp:61 +#: src/object/circleplatform.cpp:58 src/badguy/flame.cpp:110 +#: src/editor/node_marker.cpp:125 msgid "Speed" msgstr "速度" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Clockwise" msgstr "時計回り" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Counter-clockwise" msgstr "左回り" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Stopped" msgstr "停止" -#: src/object/spotlight.cpp:107 src/object/candle.cpp:78 -#: src/object/torch.cpp:103 +#: src/object/spotlight.cpp:110 src/object/lit_object.cpp:69 +#: src/object/candle.cpp:76 src/object/torch.cpp:95 msgid "Layer" msgstr "レイヤー" @@ -277,125 +398,171 @@ msgstr "物理エンジンが有効" msgid "Visible" msgstr "可視" -#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:322 +#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:313 msgid "Hit script" msgstr "スクリプトを打つ" -#: src/object/custom_particle_system_file.cpp:50 +#: src/object/custom_particle_system_file.cpp:53 #: src/object/textscroller.cpp:348 src/object/music_object.cpp:109 #: src/supertux/menu/particle_editor_open.cpp:38 msgid "File" msgstr "ファイル" -#: src/object/bonus_block.cpp:208 +#: src/object/bonus_block.cpp:154 +msgid "Only one custom object is allowed inside bonus blocks." +msgstr "" + +#: src/object/bonus_block.cpp:172 +msgid "Blue" +msgstr "" + +#: src/object/bonus_block.cpp:173 +msgid "Orange" +msgstr "" + +#: src/object/bonus_block.cpp:174 +msgid "Purple" +msgstr "" + +#: src/object/bonus_block.cpp:265 src/supertux/menu/cheat_apply_menu.cpp:54 msgid "Count" msgstr "カウント" -#: src/object/bonus_block.cpp:209 +#: src/object/bonus_block.cpp:266 msgid "Content" msgstr "内容" -#: src/object/bonus_block.cpp:210 src/object/coin.hpp:43 +#: src/object/bonus_block.cpp:267 src/object/coin.hpp:44 msgid "Coin" msgstr "コイン" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (fire flower)" msgstr "進化 (ファイアーフラワー)" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (ice flower)" msgstr "進化 (アイス フラワー)" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (air flower)" msgstr "進化 (エアー フラワー)" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Growth (earth flower)" msgstr "進化 (アース フラワー)" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 +msgid "Growth (retro)" +msgstr "" + +#: src/object/bonus_block.cpp:268 src/object/powerup.cpp:66 msgid "Star" msgstr "スター" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 +msgid "Star (retro)" +msgstr "" + +#: src/object/bonus_block.cpp:268 msgid "Tux doll" msgstr "Tuxの人形" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Custom" msgstr "カスタム" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Light" msgstr "光" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Light (On)" -msgstr "ライト(オン)" +msgstr "ライト (オン)" -#: src/object/bonus_block.cpp:212 src/object/trampoline.hpp:35 +#: src/object/bonus_block.cpp:269 src/object/trampoline.hpp:37 msgid "Trampoline" msgstr "トランポリン" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 +msgid "Portable trampoline" +msgstr "運べるトランポリン" + +#: src/object/bonus_block.cpp:269 msgid "Coin rain" msgstr "コインの雨" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 msgid "Coin explosion" msgstr "コインの爆発" -#: src/object/bonus_block.cpp:216 +#: src/object/bonus_block.cpp:269 src/object/rock.hpp:43 +msgid "Rock" +msgstr "岩" + +#: src/object/bonus_block.cpp:269 +msgid "Potion" +msgstr "" + +#: src/object/bonus_block.cpp:275 msgid "Custom Content" msgstr "カスタムコンテンツ" -#: src/object/pneumatic_platform.hpp:62 +#: src/object/bonus_block.cpp:278 +msgid "Coin sprite" +msgstr "" + +#: src/object/pneumatic_platform.hpp:65 msgid "Pneumatic Platform" msgstr "空気圧で動く足場" -#: src/object/coin.cpp:303 src/object/tilemap.cpp:249 +#: src/object/coin.cpp:326 src/object/tilemap.cpp:287 msgid "Following path" -msgstr "道に従う" +msgstr "パスに従う" -#: src/object/coin.cpp:306 src/object/camera.cpp:227 -#: src/object/platform.cpp:74 src/object/tilemap.cpp:252 +#: src/object/coin.cpp:329 src/object/camera.cpp:171 +#: src/object/platform.cpp:77 src/object/tilemap.cpp:290 msgid "Path Mode" msgstr "パスモード" -#: src/object/coin.cpp:307 src/object/camera.cpp:228 -#: src/object/platform.cpp:75 src/object/tilemap.cpp:253 -#: src/badguy/willowisp.cpp:331 +#: src/object/coin.cpp:330 src/object/camera.cpp:172 +#: src/object/platform.cpp:78 src/object/tilemap.cpp:291 +#: src/badguy/willowisp.cpp:322 msgid "Adapt Speed" msgstr "速度に適応する" -#: src/object/coin.cpp:308 src/object/platform.cpp:77 -#: src/object/tilemap.cpp:247 src/badguy/willowisp.cpp:327 +#: src/object/coin.cpp:331 src/object/platform.cpp:81 +#: src/object/tilemap.cpp:285 src/badguy/willowisp.cpp:318 msgid "Starting Node" msgstr "開始ノード" -#: src/object/coin.cpp:311 src/object/coin.cpp:339 +#: src/object/coin.cpp:332 src/object/camera.cpp:173 +#: src/object/platform.cpp:82 src/object/tilemap.cpp:293 +#: src/badguy/willowisp.cpp:323 +msgid "Handle" +msgstr "" + +#: src/object/coin.cpp:335 src/object/coin.cpp:371 msgid "Collect script" msgstr "スクリプトを記録する" -#: src/object/ghost_particle_system.hpp:36 +#: src/object/ghost_particle_system.hpp:37 msgid "Ghost Particles" msgstr "幽霊の粒子" -#: src/object/camera.cpp:219 +#: src/object/camera.cpp:163 msgid "Mode" msgstr "モード" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "normal" msgstr "通常" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "manual" msgstr "手動" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "autoscroll" msgstr "自動スクロール" @@ -411,32 +578,20 @@ msgstr "X オフセット" msgid "Controllable" msgstr "制御可能" -#: src/object/textscroller.cpp:353 -msgid "Anchor" -msgstr "アンカー" - -#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 -#: src/supertux/menu/keyboard_menu.cpp:34 -#: src/supertux/menu/joystick_menu.cpp:71 -msgid "Left" -msgstr "左" - #: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 msgid "Center" msgstr "中心" -#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 -#: src/supertux/menu/keyboard_menu.cpp:35 -#: src/supertux/menu/joystick_menu.cpp:72 -msgid "Right" -msgstr "右" - #: src/object/textscroller.cpp:357 msgid "Text Alignment" msgstr "テキストの配置" -#: src/object/spawnpoint.hpp:46 src/badguy/willowisp.cpp:321 -#: src/editor/worldmap_objects.cpp:171 +#: src/object/lit_object.hpp:40 +msgid "Lit object" +msgstr "" + +#: src/object/spawnpoint.hpp:48 src/badguy/willowisp.cpp:312 +#: src/worldmap/teleporter.cpp:48 msgid "Spawnpoint" msgstr "ゲームのスタート地点" @@ -444,266 +599,339 @@ msgstr "ゲームのスタート地点" msgid "Counter" msgstr "カウンター" -#: src/object/candle.hpp:36 +#: src/object/candle.hpp:37 msgid "Candle" msgstr "ロウソク" -#: src/object/particlesystem.cpp:64 src/object/particle_zone.cpp:79 -#: src/badguy/darttrap.cpp:127 -msgid "Enabled" -msgstr "有効" +#: src/object/particlesystem.cpp:65 src/object/background.cpp:184 +#: src/object/thunderstorm.cpp:76 src/object/tilemap.cpp:277 +#: src/object/gradient.cpp:101 src/object/moving_sprite.cpp:193 +msgid "Z-pos" +msgstr "z軸のポジション" -#: src/object/invisible_block.hpp:31 +#: src/object/invisible_block.hpp:30 msgid "Invisible Block" msgstr "見えないブロック" -#: src/object/snow_particle_system.hpp:35 +#: src/object/snow_particle_system.hpp:37 msgid "Snow Particles" msgstr "雪" -#: src/object/powerup.hpp:35 +#: src/object/powerup.hpp:40 msgid "Powerup" msgstr "パワーアップ" -#: src/object/fallblock.hpp:39 +#: src/object/infoblock.cpp:78 +msgid "Front Color" +msgstr "" + +#: src/object/infoblock.cpp:80 +msgid "Back Color" +msgstr "" + +#: src/object/infoblock.cpp:82 +msgid "Roundness" +msgstr "" + +#: src/object/infoblock.cpp:84 +msgid "Fade Transition" +msgstr "" + +#: src/object/fallblock.hpp:41 msgid "Falling Platform" msgstr "落下するプラットフォーム" -#: src/object/level_time.hpp:55 +#: src/object/level_time.hpp:56 msgid "Time Limit" msgstr "時間制限" -#: src/object/ambient_sound.cpp:119 src/supertux/menu/options_menu.cpp:391 -#: data//credits.stxt:352 -msgid "Sound" -msgstr "効果音" - -#: src/object/ambient_sound.cpp:120 -msgid "Distance factor" -msgstr "距離係数" - -#: src/object/ambient_sound.cpp:121 -msgid "Distance bias" -msgstr "距離の偏り" - -#: src/object/ambient_sound.cpp:122 -msgid "Volume" -msgstr "音量" +#: src/object/ambient_sound.cpp:86 +msgid "Radius (in tiles)" +msgstr "" #: src/object/torch.hpp:41 msgid "Torch" msgstr "たいまつ" -#: src/object/icecrusher.hpp:53 -msgid "Icecrusher" -msgstr "砕氷機" - -#: src/object/rublight.hpp:33 +#: src/object/rublight.hpp:34 msgid "Rublight" msgstr "ルブライト" -#: src/object/background.hpp:43 +#: src/object/background.hpp:45 msgid "Background" msgstr "背景" -#: src/object/firefly.hpp:36 +#: src/object/text_object.hpp:44 src/gui/menu_string_array.cpp:77 +msgid "Text" +msgstr "" + +#: src/object/firefly.hpp:38 msgid "Checkpoint" msgstr "中間地点" -#: src/object/ambient_light.hpp:36 +#: src/object/ambient_light.hpp:37 msgid "Ambient Light" msgstr "環境光" -#: src/object/lantern.hpp:37 +#: src/object/lantern.hpp:38 msgid "Lantern" msgstr "ランタン" -#: src/object/wind.hpp:40 +#: src/object/wind.hpp:43 msgid "Wind" msgstr "風" -#: src/object/bicycle_platform.cpp:189 src/object/background.cpp:179 -#: src/object/pneumatic_platform.cpp:147 -#: src/supertux/menu/joystick_menu.cpp:170 src/supertux/moving_object.cpp:58 -#: src/editor/worldmap_objects.cpp:73 +#: src/object/bicycle_platform.cpp:203 src/object/background.cpp:180 +#: src/object/pneumatic_platform.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:65 +#: src/worldmap/worldmap_object.cpp:77 msgid "X" msgstr "X" -#: src/object/bicycle_platform.cpp:190 src/object/background.cpp:180 -#: src/object/pneumatic_platform.cpp:148 -#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:59 -#: src/editor/worldmap_objects.cpp:74 +#: src/object/bicycle_platform.cpp:204 src/object/background.cpp:181 +#: src/object/pneumatic_platform.cpp:163 +#: src/supertux/menu/joystick_menu.cpp:174 src/supertux/moving_object.cpp:66 +#: src/worldmap/worldmap_object.cpp:78 msgid "Y" msgstr "Y" -#: src/object/bicycle_platform.cpp:192 +#: src/object/bicycle_platform.cpp:206 msgid "Platforms" msgstr "動く足場" -#: src/object/bicycle_platform.cpp:193 src/object/circleplatform.cpp:54 -#: src/badguy/flame.cpp:58 src/badguy/rcrystallo.cpp:50 -#: src/badguy/crystallo.cpp:35 +#: src/object/bicycle_platform.cpp:207 src/object/circleplatform.cpp:57 +#: src/badguy/fish_swimming.cpp:76 src/badguy/flame.cpp:109 +#: src/badguy/rcrystallo.cpp:83 src/badguy/crystallo.cpp:50 msgid "Radius" msgstr "半径" -#: src/object/bicycle_platform.cpp:194 +#: src/object/bicycle_platform.cpp:208 msgid "Momentum change rate" msgstr "推進力変化率" -#: src/object/rain_particle_system.hpp:40 +#: src/object/rain_particle_system.hpp:41 msgid "Rain Particles" msgstr "雨粒" -#: src/object/platform.hpp:45 +#: src/object/platform.hpp:46 msgid "Platform" msgstr "動く足場" -#: src/object/rock.hpp:42 -msgid "Rock" -msgstr "岩" - -#: src/object/music_object.hpp:41 src/supertux/menu/options_menu.cpp:393 -#: data//credits.stxt:294 +#: src/object/music_object.hpp:42 src/supertux/menu/options_menu.cpp:130 +#: data//credits.stxt:309 msgid "Music" msgstr "音楽" -#: src/object/rusty_trampoline.hpp:39 +#: src/object/lit_object.cpp:68 +msgid "Light sprite" +msgstr "" + +#: src/object/lit_object.cpp:71 +msgid "Sprite starting action" +msgstr "" + +#: src/object/lit_object.cpp:72 +msgid "Light sprite starting action" +msgstr "" + +#: src/object/lit_object.cpp:74 +msgid "Light sprite offset X" +msgstr "" + +#: src/object/lit_object.cpp:75 +msgid "Light sprite offset Y" +msgstr "" + +#: src/object/rusty_trampoline.hpp:40 msgid "Rusty Trampoline" msgstr "錆びたトランポリン" -#: src/object/particlesystem.hpp:57 +#: src/object/particlesystem.hpp:58 msgid "Particle system" msgstr "粒子の組織" -#: src/object/candle.cpp:75 src/object/torch.cpp:101 +#: src/object/candle.cpp:73 src/object/torch.cpp:94 msgid "Burning" msgstr "燃えている" -#: src/object/candle.cpp:76 +#: src/object/candle.cpp:74 msgid "Flicker" msgstr "光" -#: src/object/text_array_object.hpp:50 +#: src/object/snow_particle_system.cpp:104 +msgid "Epsilon" +msgstr "" + +#: src/object/snow_particle_system.cpp:105 +msgid "Spin Speed" +msgstr "" + +#: src/object/snow_particle_system.cpp:106 +msgid "State Length" +msgstr "" + +#: src/object/snow_particle_system.cpp:107 +msgid "Wind Speed" +msgstr "" + +#: src/object/text_array_object.hpp:47 msgid "Text array" msgstr "テキスト配列" -#: src/object/infoblock.hpp:36 +#: src/object/infoblock.hpp:37 msgid "Info Block" msgstr "情報ブロック" -#: src/object/powerup.cpp:191 +#: src/object/powerup.cpp:61 +msgid "Egg" +msgstr "" + +#: src/object/powerup.cpp:62 +msgid "Fire Flower" +msgstr "" + +#: src/object/powerup.cpp:63 +msgid "Ice Flower" +msgstr "" + +#: src/object/powerup.cpp:64 +msgid "Air Flower" +msgstr "" + +#: src/object/powerup.cpp:65 +msgid "Earth Flower" +msgstr "" + +#: src/object/powerup.cpp:67 +msgid "Tux Doll" +msgstr "" + +#: src/object/powerup.cpp:68 +msgid "Flip Potion" +msgstr "" + +#: src/object/powerup.cpp:69 +msgid "Mints" +msgstr "" + +#: src/object/powerup.cpp:70 +msgid "Coffee" +msgstr "" + +#: src/object/powerup.cpp:71 +msgid "Herring" +msgstr "" + +#: src/object/powerup.cpp:302 msgid "Disable gravity" msgstr "重力を無効にする" -#: src/object/ambient_sound.hpp:62 +#: src/object/powerup.cpp:312 src/object/weak_block.cpp:266 +msgid "" +"Sprites no longer define the behaviour of the object.\n" +"Object types are used instead." +msgstr "" + +#: src/object/ambient_sound.hpp:43 msgid "Ambient Sound" msgstr "環境音" -#: src/object/level_time.cpp:51 src/supertux/statistics.cpp:297 +#: src/object/level_time.cpp:52 src/supertux/statistics.cpp:297 #: src/editor/node_marker.cpp:124 msgid "Time" msgstr "時間" -#: src/object/hurting_platform.hpp:30 +#: src/object/hurting_platform.hpp:31 msgid "Hurting Platform" msgstr "壊れた動く足場" -#: src/object/icecrusher.cpp:83 -msgid "Sideways" -msgstr "横向き" - -#: src/object/background.cpp:182 +#: src/object/background.cpp:183 msgid "Fill" msgstr "敷き詰め" -#: src/object/background.cpp:184 +#: src/object/background.cpp:185 msgid "Alignment" msgstr "照準" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 src/supertux/direction.cpp:61 msgid "none" msgstr "なし" -#: src/object/background.cpp:185 src/editor/object_settings.cpp:119 +#: src/object/background.cpp:186 src/supertux/direction.cpp:63 msgid "left" msgstr "左" -#: src/object/background.cpp:185 src/editor/object_settings.cpp:119 +#: src/object/background.cpp:186 src/supertux/direction.cpp:65 msgid "right" msgstr "右" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 msgid "top" msgstr "上" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 msgid "bottom" msgstr "下" -#: src/object/background.cpp:188 +#: src/object/background.cpp:189 msgid "Scroll offset x" msgstr "x軸のスクロール オフセット" -#: src/object/background.cpp:189 +#: src/object/background.cpp:190 msgid "Scroll offset y" msgstr "y軸のスクロール オフセット" -#: src/object/background.cpp:190 +#: src/object/background.cpp:191 msgid "Scroll speed x" msgstr "x軸のスクロール スピード" -#: src/object/background.cpp:191 +#: src/object/background.cpp:192 msgid "Scroll speed y" msgstr "y軸のスクロール スピード" -#: src/object/background.cpp:192 +#: src/object/background.cpp:193 msgid "Parallax Speed x" msgstr "x軸の視差速度" -#: src/object/background.cpp:193 +#: src/object/background.cpp:194 msgid "Parallax Speed y" msgstr "y軸の視差速度" -#: src/object/background.cpp:194 +#: src/object/background.cpp:195 msgid "Top image" msgstr "上部の画像" -#: src/object/background.cpp:195 +#: src/object/background.cpp:196 msgid "Image" msgstr "画像" -#: src/object/background.cpp:196 +#: src/object/background.cpp:197 msgid "Bottom image" msgstr "下部の画像" -#: src/object/background.cpp:197 +#: src/object/background.cpp:198 msgid "Colour" msgstr "色" -#: src/object/background.cpp:198 src/object/tilemap.cpp:240 -#: src/object/gradient.cpp:142 +#: src/object/background.cpp:199 src/object/tilemap.cpp:278 +#: src/object/gradient.cpp:108 msgid "Draw target" msgstr "ターゲットを表示" -#: src/object/background.cpp:199 src/object/tilemap.cpp:241 -#: src/object/gradient.cpp:143 -msgid "Normal" -msgstr "標準" - -#: src/object/background.cpp:199 src/object/tilemap.cpp:241 -#: src/object/gradient.cpp:143 +#: src/object/background.cpp:200 src/object/tilemap.cpp:279 +#: src/object/gradient.cpp:109 msgid "Lightmap" msgstr "ライトマップ" -#: src/object/shard.hpp:34 +#: src/object/shard.hpp:35 msgid "Shard" msgstr "シャード" -#: src/object/rublight.cpp:55 +#: src/object/rublight.cpp:56 msgid "Fading Speed" msgstr "フェード速度" -#: src/object/rublight.cpp:56 +#: src/object/rublight.cpp:57 msgid "Glowing Strength" msgstr "輝く強さ" @@ -739,20 +967,28 @@ msgstr "プレイヤーに影響を与える" msgid "Fancy Particles" msgstr "ファンシーパーティクル" -#: src/object/bicycle_platform.hpp:64 +#: src/object/bicycle_platform.hpp:67 msgid "Bicycle Platform" msgstr "自動で動く足場" -#: src/object/platform.cpp:76 src/object/thunderstorm.cpp:69 -#: src/object/tilemap.cpp:254 +#: src/object/platform.cpp:80 src/object/thunderstorm.cpp:77 +#: src/object/tilemap.cpp:292 src/object/conveyor_belt.cpp:62 msgid "Running" msgstr "動作中" -#: src/object/rock.cpp:192 +#: src/object/rock.cpp:71 +msgid "Small" +msgstr "" + +#: src/object/rock.cpp:72 +msgid "Large" +msgstr "" + +#: src/object/rock.cpp:234 msgid "On-grab script" msgstr "つかんだ際のスクリプト" -#: src/object/rock.cpp:193 +#: src/object/rock.cpp:235 msgid "On-ungrab script" msgstr "離した際のスクリプトクリプト" @@ -760,15 +996,15 @@ msgstr "離した際のスクリプトクリプト" msgid "Interactive particle system" msgstr "インタラクティブ パーティクル システム" -#: src/object/thunderstorm.cpp:70 +#: src/object/thunderstorm.cpp:78 msgid "Interval" msgstr "間隔" -#: src/object/thunderstorm.cpp:71 +#: src/object/thunderstorm.cpp:79 msgid "Strike Script" msgstr "当たった際のスクリプト" -#: src/object/cloud_particle_system.hpp:41 +#: src/object/cloud_particle_system.hpp:42 msgid "Cloud Particles" msgstr "雲粒" @@ -780,7 +1016,7 @@ msgstr "テクスチャ" msgid "Amount" msgstr "額" -#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:56 +#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:59 #: src/editor/particle_editor.cpp:141 msgid "Delay" msgstr "遅れ" @@ -799,10 +1035,11 @@ msgid "Birth mode" msgstr "誕生モード" #: src/object/custom_particle_system.cpp:430 -#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:149 -#: src/supertux/menu/keyboard_menu.cpp:58 -#: src/supertux/menu/joystick_menu.cpp:106 -#: src/supertux/menu/joystick_menu.cpp:213 src/editor/object_settings.cpp:131 +#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:115 +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/joystick_menu.cpp:108 +#: src/supertux/menu/joystick_menu.cpp:215 src/editor/object_settings.cpp:129 #: src/editor/particle_editor.cpp:162 src/editor/particle_editor.cpp:168 msgid "None" msgstr "なし" @@ -1131,597 +1368,916 @@ msgstr "いつも" msgid "Cover screen" msgstr "カバースクリーン" -#: src/object/ispy.hpp:33 +#: src/object/ispy.hpp:35 msgid "Ispy" msgstr "これは何?" -#: src/object/skull_tile.hpp:32 -msgid "Skull Tile" -msgstr "頭蓋骨の足場" - -#: src/object/particle_zone.cpp:80 +#: src/object/particle_zone.cpp:51 msgid "Particle Name" msgstr "粒子名" -#: src/object/particle_zone.cpp:81 -msgid "Zone Type" -msgstr "ゾーンタイプ" - -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:62 msgid "Spawn" msgstr "スポーン" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:63 msgid "Life zone" msgstr "ライフゾーン" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:64 msgid "Life zone (clear)" msgstr "ライフゾーン(クリア)" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:65 msgid "Kill particles" msgstr "粒子を消去する" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:66 msgid "Clear particles" msgstr "透明な粒子" -#: src/object/weak_block.cpp:211 -msgid "Linked" -msgstr "関連付け" +#: src/object/weak_block.cpp:98 +msgid "Hay" +msgstr "" -#: src/object/decal.hpp:40 +#: src/object/decal.hpp:41 msgid "Decal" msgstr "デカール" -#: src/object/tilemap.cpp:229 +#: src/object/tilemap.cpp:267 msgid "Resize offset x" msgstr "オフセットのx座標をサイズ変更" -#: src/object/tilemap.cpp:230 +#: src/object/tilemap.cpp:268 msgid "Resize offset y" msgstr "オフセットのy座標をサイズ変更" -#: src/object/tilemap.cpp:232 src/supertux/menu/editor_sector_menu.cpp:39 -#: src/editor/object_option.cpp:173 +#: src/object/tilemap.cpp:270 src/supertux/menu/editor_sector_menu.cpp:41 +#: src/editor/object_option.cpp:178 msgid "Width" msgstr "幅" -#: src/object/tilemap.cpp:233 src/supertux/menu/editor_sector_menu.cpp:40 -#: src/editor/object_option.cpp:174 +#: src/object/tilemap.cpp:271 src/supertux/menu/editor_sector_menu.cpp:42 +#: src/editor/object_option.cpp:179 msgid "Height" msgstr "高さ" -#: src/object/tilemap.cpp:235 +#: src/object/tilemap.cpp:273 msgid "Alpha" msgstr "アルファ値" -#: src/object/tilemap.cpp:236 +#: src/object/tilemap.cpp:274 msgid "Speed x" msgstr "x軸のスピード" -#: src/object/tilemap.cpp:237 +#: src/object/tilemap.cpp:275 msgid "Speed y" msgstr "y軸のスピード" -#: src/object/tilemap.cpp:238 +#: src/object/tilemap.cpp:276 msgid "Tint" msgstr "色合い" -#: src/object/tilemap.cpp:257 src/supertux/menu/editor_tilegroup_menu.cpp:26 -#: src/editor/toolbox_widget.cpp:90 +#: src/object/tilemap.cpp:296 src/supertux/menu/editor_tilegroup_menu.cpp:26 +#: src/editor/toolbox_widget.cpp:98 msgid "Tiles" msgstr "タイル" -#: src/object/gradient.cpp:128 -msgid "Left Colour" -msgstr "左の色" - -#: src/object/gradient.cpp:129 -msgid "Right Colour" -msgstr "右の色" - -#: src/object/gradient.cpp:131 -msgid "Top Colour" -msgstr "上部の色" +#: src/object/gradient.cpp:98 +msgid "Primary Colour" +msgstr "" -#: src/object/gradient.cpp:132 -msgid "Bottom Colour" -msgstr "下部の色" +#: src/object/gradient.cpp:99 +msgid "Secondary Colour" +msgstr "" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Vertical" msgstr "縦" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Horizontal" msgstr "横" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Vertical (whole sector)" msgstr "縦 (セクター全体)" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Horizontal (whole sector)" msgstr "横 (セクター全体)" -#: src/object/gradient.cpp:148 +#: src/object/gradient.cpp:114 msgid "Blend mode" msgstr "混色モード" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Blend" msgstr "混色" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Additive" msgstr "加算" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Modulate" msgstr "乗算" -#: src/object/bumper.hpp:35 +#: src/object/bumper.hpp:38 msgid "Bumper" msgstr "バンパー" -#: src/object/unstable_tile.hpp:37 +#: src/object/conveyor_belt.cpp:63 +msgid "Length" +msgstr "長さ" + +#: src/object/moving_sprite.cpp:192 src/object/pneumatic_platform.cpp:161 +msgid "Sprite" +msgstr "スプライト" + +#: src/object/unstable_tile.hpp:42 msgid "Unstable Tile" msgstr "不安定なタイル" -#: src/object/brick.hpp:31 -msgid "Brick" -msgstr "レンガ" +#: src/object/brick.hpp:70 +msgid "Heavy Brick" +msgstr "" -#: src/object/invisible_wall.hpp:34 +#: src/object/invisible_wall.hpp:37 msgid "Invisible Wall" msgstr "見えない壁" -#: src/object/spotlight.hpp:51 +#: src/object/spotlight.hpp:52 msgid "Spotlight" msgstr "スポットライト" -#: src/object/scripted_object.hpp:39 +#: src/object/scripted_object.hpp:40 msgid "Scripted Object" msgstr "スクリプトがあるオブジェクト" -#: src/object/custom_particle_system_file.hpp:39 +#: src/object/custom_particle_system_file.hpp:40 msgid "Custom Particles from file" msgstr "ファイルからのカスタム パーティクル" -#: src/object/coin.hpp:78 +#: src/object/coin.hpp:97 msgid "Heavy Coin" msgstr "重いコイン" -#: src/object/bonus_block.hpp:56 +#: src/object/explosion.hpp:35 +msgid "Explosion" +msgstr "" + +#: src/object/bonus_block.hpp:62 msgid "Bonus Block" msgstr "ボーナスブロック" -#: src/object/magicblock.hpp:41 +#: src/object/magicblock.hpp:42 msgid "Magic Tile" msgstr "マジックタイル" -#: src/object/camera.hpp:67 +#: src/object/camera.hpp:61 msgid "Camera" msgstr "カメラ" -#: src/object/textscroller.hpp:44 +#: src/object/textscroller.hpp:45 msgid "Text Scroller" msgstr "テキストスクローラー" -#: src/gui/menu_badguy_select.cpp:94 -msgid "List of enemies" -msgstr "敵のリスト" +#: src/gui/notification.cpp:57 +msgid "Click for more details." +msgstr "詳細はこちらをクリックしてください。" + +#: src/gui/notification.cpp:150 +msgid "Do not show again" +msgstr "今後表示しない" + +#: src/gui/notification.cpp:157 src/supertux/menu/download_dialog.cpp:124 +msgid "Close" +msgstr "閉じる" + +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#, c++-format +msgid "Selected item: {}" +msgstr "" -#: src/gui/menu_badguy_select.cpp:96 -msgid "Select enemy" -msgstr "敵を選択" +#: src/gui/menu_string_array.cpp:70 +msgid "Edit string array" +msgstr "" -#: src/gui/menu_badguy_select.cpp:97 +#: src/gui/menu_string_array.cpp:79 src/gui/menu_object_select.cpp:50 +#: src/supertux/menu/profile_menu.cpp:88 msgid "Add" msgstr "追加" -#: src/gui/menu_badguy_select.cpp:107 src/gui/menu_color.cpp:37 -#: src/gui/dialog.hpp:81 src/gui/menu_script.cpp:47 -#: src/supertux/menu/editor_sector_menu.cpp:46 -#: src/supertux/menu/editor_levelset_menu.cpp:62 -#: src/supertux/menu/addon_menu.cpp:349 -#: src/supertux/menu/editor_new_levelset_menu.cpp:37 -#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:43 -msgid "OK" -msgstr "OK" +#: src/gui/menu_string_array.cpp:80 +msgid "Insert" +msgstr "挿入" -#: src/gui/menu_badguy_select.cpp:136 -msgid "Do you want to delete this badguy from the list?" -msgstr "リストから敵を削除しますか?" +#: src/gui/menu_string_array.cpp:81 +#: src/supertux/menu/addon_preview_menu.cpp:177 src/editor/object_menu.cpp:61 +msgid "Update" +msgstr "更新" -#: src/gui/menu_badguy_select.cpp:137 src/gui/dialog.hpp:90 -#: src/supertux/menu/editor_level_select_menu.cpp:164 -#: src/supertux/menu/editor_menu.cpp:164 src/editor/editor.cpp:583 -msgid "Yes" -msgstr "はい" +#: src/gui/menu_string_array.cpp:82 src/supertux/menu/profile_menu.cpp:108 +#: src/supertux/menu/profile_menu.cpp:110 +msgid "Delete" +msgstr "削除" -#: src/gui/menu_badguy_select.cpp:140 src/gui/dialog.hpp:91 -#: src/supertux/menu/editor_level_select_menu.cpp:168 -#: src/supertux/menu/editor_menu.cpp:167 src/editor/particle_editor.cpp:780 -#: src/editor/editor.cpp:590 -msgid "No" -msgstr "いいえ" +#: src/gui/menu_string_array.cpp:84 src/gui/menu_object_select.cpp:61 +#: src/gui/menu_color.cpp:37 src/gui/dialog.hpp:87 src/gui/menu_script.cpp:46 +#: src/supertux/menu/editor_sector_menu.cpp:48 +#: src/supertux/menu/editor_levelset_menu.cpp:58 +#: src/supertux/menu/editor_new_levelset_menu.cpp:37 +#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:71 +msgid "OK" +msgstr "OK" + +#: src/gui/menu_object_select.cpp:46 +msgid "List of objects" +msgstr "" + +#: src/gui/menu_object_select.cpp:48 +#, c++-format +msgid "Select object ({})" +msgstr "オブジェクトを選択 ({})" + +#: src/gui/menu_object_select.cpp:114 +msgid "Are you sure you want to remove this object from the list?" +msgstr "リストからこのオブジェクトを削除してもよろしいですか?" #: src/gui/menu_color.cpp:24 msgid "Mix the colour" msgstr "混色" -#: src/gui/menu_filesystem.cpp:112 src/gui/menu_paths.cpp:44 -#: src/supertux/menu/particle_editor_save_as.cpp:42 +#: src/gui/dialog.hpp:96 src/supertux/menu/editor_level_select_menu.cpp:181 +#: src/editor/editor.cpp:663 +msgid "Yes" +msgstr "はい" + +#: src/gui/dialog.hpp:97 src/supertux/menu/editor_level_select_menu.cpp:185 +#: src/editor/particle_editor.cpp:781 src/editor/editor.cpp:670 +msgid "No" +msgstr "いいえ" + +#: src/gui/menu_list.cpp:38 src/gui/menu_filesystem.cpp:120 +#: src/gui/menu_paths.cpp:48 src/supertux/menu/particle_editor_save_as.cpp:42 #: src/supertux/menu/editor_sectors_menu.cpp:45 -#: src/supertux/menu/editor_sectors_menu.cpp:95 -#: src/supertux/menu/editor_sectors_menu.cpp:100 +#: src/supertux/menu/editor_sectors_menu.cpp:94 +#: src/supertux/menu/editor_sectors_menu.cpp:99 #: src/supertux/menu/editor_objectgroup_menu.cpp:42 #: src/supertux/menu/editor_tilegroup_menu.cpp:36 -#: src/supertux/menu/editor_level_select_menu.cpp:173 +#: src/supertux/menu/editor_level_select_menu.cpp:190 #: src/supertux/menu/editor_save_as.cpp:42 #: src/supertux/menu/particle_editor_open.cpp:43 -#: src/editor/particle_editor.cpp:784 src/editor/editor.cpp:594 +#: src/editor/particle_editor.cpp:785 src/editor/editor.cpp:674 msgid "Cancel" msgstr "キャンセル" +#: src/gui/menu_filesystem.cpp:118 +msgid "Open Directory" +msgstr "ディレクトリを開く" + #: src/gui/menu_script.cpp:28 msgid "Edit script" msgstr "スクリプトを編集" -#: src/gui/menu_paths.cpp:30 +#: src/gui/menu_paths.cpp:32 msgid "Clone" msgstr "クローン" -#: src/gui/menu_paths.cpp:38 +#: src/gui/menu_paths.cpp:41 msgid "" -"An error occured and the game could\n" +"An error occurred and the game could\n" "not clone the path. Please contact\n" "the developers for support." -msgstr "エラーが発生し、ゲームが中断される可能性があります\nパスをクローンしないでください。お問い合わせください\n開発者にサポートを求めます。" +msgstr "" -#: src/gui/menu_paths.cpp:41 +#: src/gui/menu_paths.cpp:44 msgid "Bind" msgstr "練る" -#: src/gui/menu_paths.cpp:63 src/supertux/menu/integrations_menu.cpp:60 -#: src/supertux/menu/contrib_menu.cpp:161 src/supertux/menu/debug_menu.cpp:75 -#: src/supertux/menu/editor_level_select_menu.cpp:88 -#: src/supertux/menu/worldmap_cheat_menu.cpp:55 -#: src/supertux/menu/worldmap_cheat_menu.cpp:153 +#: src/gui/menu_paths.cpp:49 +msgid "" +"Do you wish to clone the path to edit it separately,\n" +"or do you want to bind both paths together\n" +"so that any edit on one edits the other?" +msgstr "" + +#: src/gui/menu_paths.cpp:56 +#, c++-format +msgid "Path {}" +msgstr "" + +#: src/gui/menu_paths.cpp:67 src/supertux/menu/integrations_menu.cpp:60 +#: src/supertux/menu/editor_converters_menu.cpp:79 +#: src/supertux/menu/video_system_menu.cpp:45 +#: src/supertux/menu/contrib_menu.cpp:102 src/supertux/menu/debug_menu.cpp:77 +#: src/supertux/menu/multiplayer_menu.cpp:39 +#: src/supertux/menu/custom_menu_menu.cpp:65 +#: src/supertux/menu/editor_level_select_menu.cpp:98 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:63 +#: src/supertux/menu/worldmap_cheat_menu.cpp:57 +#: src/supertux/menu/worldmap_cheat_menu.cpp:196 #: src/supertux/menu/editor_levelset_select_menu.cpp:114 -#: src/supertux/menu/options_menu.cpp:442 -#: src/supertux/menu/profile_menu.cpp:54 src/supertux/menu/addon_menu.cpp:213 +#: src/supertux/menu/options_menu.cpp:223 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:69 +#: src/supertux/menu/addon_preview_menu.cpp:193 +#: src/supertux/menu/profile_menu.cpp:118 +#: src/supertux/menu/multiplayer_players_menu.cpp:91 +#: src/supertux/menu/addon_menu.cpp:153 #: src/supertux/menu/editor_new_levelset_menu.cpp:40 +#: src/supertux/menu/options_select_menu.cpp:44 #: src/supertux/menu/world_set_menu.cpp:33 +#: src/supertux/menu/addon_browse_menu.cpp:162 #: src/supertux/menu/web_asset_menu.cpp:48 -#: src/supertux/menu/keyboard_menu.cpp:49 -#: src/supertux/menu/language_menu.cpp:56 -#: src/supertux/menu/joystick_menu.cpp:97 +#: src/supertux/menu/profile_name_menu.cpp:45 +#: src/supertux/menu/keyboard_menu.cpp:71 +#: src/supertux/menu/sorted_contrib_menu.cpp:51 +#: src/supertux/menu/language_menu.cpp:63 +#: src/supertux/menu/joystick_menu.cpp:99 #: src/supertux/menu/contrib_levelset_menu.cpp:67 -#: src/supertux/menu/cheat_menu.cpp:44 -#: src/supertux/menu/editor_delete_level_menu.cpp:43 +#: src/supertux/menu/cheat_menu.cpp:58 +#: src/supertux/menu/addon_file_install_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:43 +#: src/supertux/menu/cheat_apply_menu.cpp:63 +#: src/supertux/menu/multiplayer_player_menu.cpp:205 +#: src/supertux/menu/editor_delete_level_menu.cpp:68 msgid "Back" msgstr "戻る" -#: src/badguy/toad.hpp:37 +#: src/addon/addon_manager.cpp:562 +msgid "Only one resource pack is allowed to be enabled at a time." +msgstr "同時に有効にできるリソースパックは1つのみです。" + +#: src/addon/addon_manager.cpp:837 +#, c++-format +msgid "Add-on {} by {} is already installed." +msgstr "アドオン {} (作者: {}) はすでにインストール済みです。" + +#: src/addon/addon_manager.cpp:857 +#, c++-format +msgid "Add-on {} by {} successfully installed." +msgstr "アドオン {} (作者: {}) のインストールに成功しました。" + +#: src/addon/addon.cpp:71 src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Levelset" +msgstr "レベル集" + +#: src/addon/addon.cpp:74 src/supertux/menu/editor_levelset_menu.cpp:54 +#: data//images/engine/editor/objects.stoi:389 +msgid "Worldmap" +msgstr "ワールドマップ" + +#: src/addon/addon.cpp:77 +msgid "World" +msgstr "ワールド" + +#: src/addon/addon.cpp:80 +msgid "Add-on" +msgstr "アドオン" + +#: src/addon/addon.cpp:83 +msgid "Language Pack" +msgstr "言語パック" + +#: src/addon/addon.cpp:86 +msgid "Resource Pack" +msgstr "リソースパック" + +#: src/addon/addon.cpp:89 +msgid "Unknown" +msgstr "不明" + +#: src/addon/addon.cpp:100 +#, c++-format +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" (作者: \"{}\")" + +#: src/addon/addon.cpp:114 +msgid "add-on" +msgstr "アドオン" + +#: src/addon/addon.cpp:114 +msgid "add-ons" +msgstr "アドオン" + +#: src/badguy/toad.hpp:38 msgid "Toad" msgstr "カエル" -#: src/badguy/mrtree.hpp:29 -msgid "Walking Tree" -msgstr "歩く木" +#: src/badguy/mrtree.hpp:32 +msgid "Mr. Tree" +msgstr "Mr.ツリー" -#: src/badguy/plant.hpp:33 +#: src/badguy/plant.hpp:34 msgid "Plant" msgstr "植物" -#: src/badguy/crystallo.hpp:30 +#: src/badguy/tarantula.hpp:39 src/badguy/tarantula.cpp:353 +msgid "Tarantula" +msgstr "" + +#: src/badguy/granito_giant.cpp:71 +msgid "Awake" +msgstr "" + +#: src/badguy/granito_giant.cpp:72 +msgid "Sleeping" +msgstr "" + +#: src/badguy/granito_giant.cpp:73 +msgid "Corrupted A" +msgstr "" + +#: src/badguy/granito_giant.cpp:74 +msgid "Corrupted B" +msgstr "" + +#: src/badguy/granito_giant.cpp:75 +msgid "Corrupted C" +msgstr "" + +#: src/badguy/crystallo.hpp:33 msgid "Crystallo" msgstr "結晶" -#: src/badguy/totem.hpp:36 +#: src/badguy/viciousivy.cpp:45 src/badguy/snail.cpp:70 +#: src/badguy/kamikazesnowball.cpp:118 src/badguy/walkingleaf.cpp:36 +#: src/badguy/jumpy.cpp:46 src/badguy/igel.cpp:189 src/badguy/mrtree.cpp:51 +msgid "Corrupted" +msgstr "" + +#: src/badguy/totem.hpp:37 msgid "Totem" msgstr "トーテム" -#: src/badguy/stalactite.hpp:38 +#: src/badguy/stalactite.hpp:42 msgid "Stalactite" msgstr "鍾乳石" -#: src/badguy/haywire.hpp:45 +#: src/badguy/fish_chasing.cpp:198 +msgid "Tracking Distance" +msgstr "" + +#: src/badguy/fish_chasing.cpp:199 +msgid "Losing Distance" +msgstr "" + +#: src/badguy/fish_chasing.cpp:200 +msgid "Chase Speed" +msgstr "" + +#: src/badguy/root_sapling.hpp:41 +msgid "Root Sapling" +msgstr "" + +#: src/badguy/haywire.hpp:46 msgid "Haywire" msgstr "ヘイワイヤー" -#: src/badguy/dispenser.hpp:48 +#: src/badguy/dispenser.hpp:52 msgid "Dispenser" msgstr "ディスペンサー" -#: src/badguy/short_fuse.hpp:29 +#: src/badguy/short_fuse.hpp:30 msgid "Short Fuse" msgstr "ショートヒューズ" -#: src/badguy/zeekling.hpp:36 +#: src/badguy/zeekling.hpp:39 msgid "Zeekling" msgstr "ドラゴン" -#: src/badguy/mriceblock.hpp:46 -msgid "Iceblock" -msgstr "氷のブロック" +#: src/badguy/smartball.cpp:35 +msgid "Pumpkin" +msgstr "" + +#: src/badguy/bouncing_snowball.cpp:82 +msgid "Fatbat" +msgstr "" + +#: src/badguy/dive_mine.hpp:50 +msgid "Dive Mine" +msgstr "" + +#: src/badguy/granito_big.hpp:33 +msgid "Big Granito" +msgstr "" + +#: src/badguy/mriceblock.hpp:49 +msgid "Mr. Iceblock" +msgstr "" + +#: src/badguy/granito.hpp:39 src/badguy/darttrap.cpp:163 +#: src/badguy/corrupted_granito.cpp:175 src/badguy/dispenser.cpp:438 +msgid "Granito" +msgstr "" + +#: src/badguy/fish_swimming.cpp:54 src/badguy/jumpy.cpp:44 +#: data//images/ice_world.strf:10 data//images/tiles.strf:28 +#: data//images/worldmap.strf:41 +msgid "Snow" +msgstr "雪" + +#: src/badguy/fish_swimming.cpp:55 data//images/ice_world.strf:211 +#: data//images/tiles.strf:366 data//images/worldmap.strf:67 +msgid "Forest" +msgstr "森" + +#: src/badguy/crusher.hpp:71 +msgid "Crusher" +msgstr "" + +#: src/badguy/flame.cpp:84 +msgid "Fire" +msgstr "火" -#: src/badguy/scrystallo.cpp:52 +#: src/badguy/flame.cpp:85 +msgid "Ghost" +msgstr "幽霊" + +#: src/badguy/corrupted_granito_big.hpp:35 +msgid "Corrupted Big Granito" +msgstr "" + +#: src/badguy/scrystallo.cpp:57 msgid "Walk Radius" msgstr "粒子を消去する" -#: src/badguy/scrystallo.cpp:53 +#: src/badguy/scrystallo.cpp:58 msgid "Awakening Radius" msgstr "覚醒半径" -#: src/badguy/jumpy.hpp:36 +#: src/badguy/scrystallo.cpp:59 +msgid "Roof-attached" +msgstr "" + +#: src/badguy/jumpy.hpp:40 msgid "Jumpy" msgstr "ジャンピー" -#: src/badguy/captainsnowball.hpp:31 +#: src/badguy/captainsnowball.hpp:32 msgid "Captain Snowball" msgstr "キャプテンスノーボール" -#: src/badguy/ghosttree.hpp:42 +#: src/badguy/ghosttree.hpp:43 msgid "Ghost Tree" msgstr "幽霊の木" -#: src/badguy/willowisp.cpp:323 +#: src/badguy/willowisp.cpp:314 msgid "Track range" msgstr "トラックの範囲" -#: src/badguy/willowisp.cpp:324 +#: src/badguy/willowisp.cpp:315 msgid "Vanish range" msgstr "消える範囲" -#: src/badguy/willowisp.cpp:325 +#: src/badguy/willowisp.cpp:316 msgid "Fly speed" msgstr "飛行スピード" -#: src/badguy/kugelblitz.hpp:39 +#: src/badguy/kugelblitz.hpp:40 msgid "Kugelblitz" msgstr "クーゲルブリッツ" -#: src/badguy/mole_rock.hpp:43 +#: src/badguy/mole_rock.hpp:44 msgid "Mole's rock" msgstr "モグラの岩" -#: src/badguy/badguy.cpp:849 +#: src/badguy/badguy.cpp:1064 msgid "Death script" msgstr "デス スクリプト" -#: src/badguy/sspiky.hpp:36 +#: src/badguy/sspiky.hpp:37 msgid "Sleeping Spiky" msgstr "眠っているスパイキー" -#: src/badguy/yeti_stalactite.hpp:33 +#: src/badguy/yeti_stalactite.hpp:34 msgid "Yeti's Stalactite" msgstr "Yetiの鍾乳石" -#: src/badguy/livefire.hpp:37 +#: src/badguy/fish_harmless.hpp:30 +msgid "Harmless Fish" +msgstr "" + +#: src/badguy/livefire.hpp:38 msgid "Walking Flame" msgstr "歩く炎" -#: src/badguy/livefire.hpp:68 +#: src/badguy/livefire.hpp:71 msgid "Sleeping Flame" msgstr "眠っている炎" -#: src/badguy/livefire.hpp:84 +#: src/badguy/livefire.hpp:89 msgid "Dormant Flame" msgstr "休眠中の火" -#: src/badguy/owl.hpp:39 +#: src/badguy/owl.hpp:45 msgid "Owl" msgstr "フクロウ" -#: src/badguy/igel.hpp:34 +#: src/badguy/igel.hpp:38 msgid "Igel" msgstr "ハリネズミ" -#: src/badguy/darttrap.cpp:126 +#: src/badguy/darttrap.cpp:148 msgid "Initial delay" msgstr "初期遅延" -#: src/badguy/darttrap.cpp:128 +#: src/badguy/darttrap.cpp:150 msgid "Fire delay" msgstr "火の遅れ" -#: src/badguy/darttrap.cpp:129 +#: src/badguy/darttrap.cpp:151 msgid "Ammo" msgstr "弾薬" -#: src/badguy/snowball.hpp:29 -msgid "Snowball" -msgstr "雪玉" +#: src/badguy/darttrap.cpp:152 +msgid "Dart sprite" +msgstr "" + +#: src/badguy/darttrap.cpp:164 +msgid "Skull" +msgstr "" + +#: src/badguy/snowball.hpp:30 +msgid "Mr. Snowball" +msgstr "" -#: src/badguy/smartblock.hpp:29 -msgid "Smartblock" -msgstr "スマートブロック" +#: src/badguy/smartblock.hpp:30 +msgid "Mrs. Iceblock" +msgstr "" -#: src/badguy/yeti.cpp:369 +#: src/badguy/yeti.cpp:370 msgid "Fixed position" msgstr "固定位置" -#: src/badguy/yeti.cpp:370 +#: src/badguy/yeti.cpp:371 msgid "Lives" msgstr "ライフ" -#: src/badguy/goldbomb.hpp:49 +#: src/badguy/goldbomb.hpp:50 msgid "Gold Bomb" msgstr "金の爆弾" -#: src/badguy/flyingsnowball.hpp:32 +#: src/badguy/corrupted_granito.hpp:44 +msgid "Corrupted Granito" +msgstr "" + +#: src/badguy/mrbomb.cpp:48 +msgid "Classic" +msgstr "" + +#: src/badguy/flyingsnowball.hpp:33 msgid "Flying Snowball" msgstr "飛ぶ雪玉" -#: src/badguy/skullyhop.hpp:37 -msgid "Skullyhop" -msgstr "プ飛ぶドクロ" +#: src/badguy/crusher.cpp:75 +msgid "Ice (normal)" +msgstr "" + +#: src/badguy/crusher.cpp:76 +msgid "Ice (big)" +msgstr "" + +#: src/badguy/crusher.cpp:77 +msgid "Rock (normal)" +msgstr "" + +#: src/badguy/crusher.cpp:78 +msgid "Rock (big)" +msgstr "" + +#: src/badguy/crusher.cpp:79 +msgid "Corrupted (normal)" +msgstr "" + +#: src/badguy/crusher.cpp:80 +msgid "Corrupted (big)" +msgstr "" + +#: src/badguy/crusher.cpp:492 +msgid "Sideways" +msgstr "横向き" -#: src/badguy/kamikazesnowball.hpp:32 -msgid "Snowshot" -msgstr "スノーショット" +#: src/badguy/kamikazesnowball.hpp:34 +msgid "Kamikaze Snowball" +msgstr "" -#: src/badguy/kamikazesnowball.hpp:52 +#: src/badguy/kamikazesnowball.hpp:64 msgid "Leafshot" msgstr "リーフショット" -#: src/badguy/flame.hpp:41 +#: src/badguy/fish_swimming.hpp:40 +msgid "Swimming Fish" +msgstr "" + +#: src/badguy/flame.hpp:47 msgid "Flame" msgstr "玉" -#: src/badguy/scrystallo.hpp:30 +#: src/badguy/scrystallo.hpp:31 msgid "Sleeping Crystallo" msgstr "スリーピングクリスタロ" -#: src/badguy/poisonivy.hpp:30 -msgid "Spring Leaf" -msgstr "春の葉" +#: src/badguy/jumpy.cpp:45 +msgid "Wooden" +msgstr "" + +#: src/badguy/jumpy.cpp:47 +msgid "Metal" +msgstr "" + +#: src/badguy/jumpy.cpp:48 +msgid "Bag" +msgstr "" #: src/badguy/willowisp.hpp:57 msgid "Will o' Wisp" msgstr "ウィルオーウィスプ" -#: src/badguy/badguy.hpp:53 +#: src/badguy/fish_jumping.hpp:41 +msgid "Jumping Fish" +msgstr "" + +#: src/badguy/badguy.hpp:61 msgid "Badguy" msgstr "敵" -#: src/badguy/ghostflame.hpp:30 -msgid "Ghost Flame" -msgstr "幽霊玉" - -#: src/badguy/rcrystallo.hpp:30 +#: src/badguy/rcrystallo.hpp:33 msgid "Roof Crystallo" msgstr "ルーフクリスタロ" -#: src/badguy/spiky.hpp:30 +#: src/badguy/spiky.hpp:31 msgid "Spiky" msgstr "スパイキー" -#: src/badguy/walkingleaf.hpp:30 -msgid "Autumn Leaf" -msgstr "秋の葉" +#: src/badguy/walkingleaf.hpp:33 +msgid "Walking Leaf" +msgstr "" + +#: src/badguy/root.hpp:39 +msgid "Root" +msgstr "" -#: src/badguy/owl.cpp:227 +#: src/badguy/owl.cpp:241 msgid "Carry" msgstr "運ぶ" -#: src/badguy/darttrap.hpp:33 +#: src/badguy/darttrap.hpp:35 msgid "Dart Trap" msgstr "未舗装のトラップ" -#: src/badguy/skydive.hpp:38 +#: src/badguy/skydive.hpp:43 msgid "Skydive" msgstr "スカイダイビング" -#: src/badguy/yeti.hpp:37 +#: src/badguy/yeti.hpp:38 msgid "Yeti" msgstr "Yeti" -#: src/badguy/mole.hpp:39 +#: src/badguy/snowball.cpp:41 +msgid "Bumpkin" +msgstr "" + +#: src/badguy/snowball.cpp:42 +msgid "BSOD" +msgstr "" + +#: src/badguy/mole.hpp:38 msgid "Mole" msgstr "モグラ" -#: src/badguy/mrbomb.hpp:42 -msgid "Bomb" -msgstr "爆弾" +#: src/badguy/corrupted_granito.cpp:176 +msgid "Skullyhop" +msgstr "プ飛ぶドクロ" + +#: src/badguy/mrbomb.hpp:40 +msgid "Mr. Bomb" +msgstr "Mr.ボム" -#: src/badguy/walking_candle.hpp:40 +#: src/badguy/walking_candle.hpp:41 msgid "Walking Candle" msgstr "歩くろうそく" -#: src/badguy/angrystone.hpp:34 +#: src/badguy/angrystone.hpp:39 msgid "Angry Stone" msgstr "怒ってる石" -#: src/badguy/spidermite.hpp:35 -msgid "Spider" -msgstr "蜘蛛" +#: src/badguy/tarantula.cpp:354 +msgid "Spidermite" +msgstr "" + +#: src/badguy/tarantula.cpp:374 +msgid "Static" +msgstr "" #: src/badguy/ghoul.hpp:30 msgid "Ghoul" msgstr "グール" -#: src/badguy/snowman.hpp:28 +#: src/badguy/granito_giant.hpp:32 +msgid "Giant Granito" +msgstr "" + +#: src/badguy/snowman.hpp:29 msgid "Snowman" msgstr "雪だるま" -#: src/badguy/stumpy.hpp:35 -msgid "Walking Stump" -msgstr "歩く切り株" +#: src/badguy/viciousivy.hpp:33 +msgid "Vicious Ivy" +msgstr "" + +#: src/badguy/stalactite.cpp:156 +msgid "ice" +msgstr "" + +#: src/badguy/stalactite.cpp:157 +msgid "rock" +msgstr "" + +#: src/badguy/fish_chasing.hpp:33 +msgid "Chasing Fish" +msgstr "" -#: src/badguy/fish.hpp:40 -msgid "Fish" -msgstr "魚" +#: src/badguy/stumpy.hpp:38 +msgid "Stumpy" +msgstr "切り株" -#: src/badguy/dispenser.cpp:445 +#: src/badguy/dispenser.cpp:412 msgid "Interval (seconds)" msgstr "間隔 (秒)" -#: src/badguy/dispenser.cpp:446 +#: src/badguy/dispenser.cpp:413 msgid "Random" msgstr "ランダム" -#: src/badguy/dispenser.cpp:447 data//images/engine/editor/objects.stoi:4 -msgid "Enemies" -msgstr "敵" +#: src/badguy/dispenser.cpp:416 +#: src/supertux/menu/editor_objectgroup_menu.cpp:30 +#: src/editor/toolbox_widget.cpp:101 +msgid "Objects" +msgstr "オブジェクト" -#: src/badguy/dispenser.cpp:448 +#: src/badguy/dispenser.cpp:419 msgid "Limit dispensed badguys" msgstr "分配される敵を制限" -#: src/badguy/dispenser.cpp:450 +#: src/badguy/dispenser.cpp:421 msgid "Obey Gravity" msgstr "重力に従う" -#: src/badguy/dispenser.cpp:452 +#: src/badguy/dispenser.cpp:423 msgid "Max concurrent badguys" msgstr "同時に出てくる敵の最大数" -#: src/badguy/dispenser.cpp:454 src/supertux/menu/editor_levelset_menu.cpp:60 -msgid "Type" -msgstr "種類" - -#: src/badguy/dispenser.cpp:455 -msgid "dropper" -msgstr "スポイト" - -#: src/badguy/dispenser.cpp:455 -msgid "rocket launcher" -msgstr "ロケットランチャー" +#: src/badguy/dispenser.cpp:435 +msgid "Dropper" +msgstr "" -#: src/badguy/dispenser.cpp:455 -msgid "cannon" -msgstr "大砲" +#: src/badguy/dispenser.cpp:436 +msgid "Cannon" +msgstr "" -#: src/badguy/dispenser.cpp:455 -msgid "invisible" +#: src/badguy/dispenser.cpp:437 src/worldmap/special_tile.cpp:77 +msgid "Invisible" msgstr "非表示" -#: src/badguy/snail.hpp:42 +#: src/badguy/snail.hpp:43 msgid "Snail" msgstr "カタツムリ" -#: src/badguy/smartball.hpp:31 -msgid "Smartball" -msgstr "賢い玉" +#: src/badguy/smartball.hpp:32 +msgid "Mrs. Snowball" +msgstr "" -#: src/badguy/bouncing_snowball.hpp:32 +#: src/badguy/bouncing_snowball.hpp:39 msgid "Bouncing Snowball" msgstr "ボーナス スノーボール" -#: src/badguy/iceflame.hpp:33 -msgid "Ice Flame" -msgstr "氷の炎" +#: src/badguy/granito_big.cpp:52 src/badguy/granito.cpp:263 +msgid "Default" +msgstr "" + +#: src/badguy/granito_big.cpp:53 src/badguy/granito.cpp:264 +msgid "Standing" +msgstr "" + +#: src/badguy/granito_big.cpp:54 src/badguy/granito.cpp:265 +msgid "Walking" +msgstr "" + +#: src/badguy/mriceblock.cpp:63 +msgid "Laptop" +msgstr "" -#: src/badguy/dart.hpp:43 +#: src/badguy/dart.hpp:44 msgid "Dart" msgstr "ダーツ" +#: src/badguy/granito.cpp:268 +msgid "Sitting" +msgstr "" + #: src/supertux/statistics.cpp:54 msgid "Max coins collected:" msgstr "最も多く集めたコインの数:" @@ -1742,7 +2298,7 @@ msgstr "ゴールまでの最短時間:" msgid "Level target time:" msgstr "レベルの目標時間:" -#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:160 +#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:175 msgid "Best Level Statistics" msgstr "レベルの記録" @@ -1754,7 +2310,7 @@ msgstr "今回" msgid "Best" msgstr "ベスト" -#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:166 +#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:181 msgid "Coins" msgstr "集めたコインの数" @@ -1762,203 +2318,200 @@ msgstr "集めたコインの数" msgid "Badguys" msgstr "たおした敵の数" -#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:172 +#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:187 msgid "Secrets" msgstr "見つけた秘密の場所の数" -#: src/supertux/game_object.hpp:78 +#: src/supertux/game_object.hpp:88 msgid "Unknown object" msgstr "不明なオブジェクト" -#: src/supertux/sector.cpp:414 +#: src/supertux/sector.cpp:507 msgid "Press escape to skip" msgstr "スキップするにはエスケープキーを押してください" -#: src/supertux/command_line_arguments.cpp:94 -#, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "使用法: %s [OPTIONS] [LEVELFILE]" +#: src/supertux/command_line_arguments.cpp:92 +#, c++-format +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "使用法: {} [OPTIONS] [LEVELFILE]" -#: src/supertux/command_line_arguments.cpp:95 +#: src/supertux/command_line_arguments.cpp:93 msgid "General Options:" msgstr "全般的なオプション:" -#: src/supertux/command_line_arguments.cpp:96 +#: src/supertux/command_line_arguments.cpp:94 msgid " -h, --help Show this help message and quit" -msgstr " -h, --help このヘルプメッセージを表示して終了します" +msgstr " -h, --help このヘルプメッセージを表示して終了する" -#: src/supertux/command_line_arguments.cpp:97 +#: src/supertux/command_line_arguments.cpp:95 msgid " -v, --version Show SuperTux version and quit" -msgstr " -v, --version SuperTuxのバージョンを表示して終了します" +msgstr " -v, --version SuperTux のバージョンを表示して終了する" -#: src/supertux/command_line_arguments.cpp:98 +#: src/supertux/command_line_arguments.cpp:96 msgid " --verbose Print verbose messages" -msgstr " --verbose 詳細なメッセージを出力します" +msgstr " --verbose 詳細なメッセージを出力する" -#: src/supertux/command_line_arguments.cpp:99 +#: src/supertux/command_line_arguments.cpp:97 msgid " --debug Print extra verbose messages" -msgstr " --debug 追加の詳細メッセージを出力します" +msgstr " --debug 追加の詳細メッセージを出力する" -#: src/supertux/command_line_arguments.cpp:100 +#: src/supertux/command_line_arguments.cpp:98 msgid "" " --print-datadir Print SuperTux's primary data directory." -msgstr " --print-datadir SuperTux の現在のデータディレクトリを出力します。" +msgstr " --print-datadir SuperTux の現在のデータディレクトリを出力する。" -#: src/supertux/command_line_arguments.cpp:101 +#: src/supertux/command_line_arguments.cpp:99 msgid "" " --acknowledgements Print the licenses of libraries used by " "SuperTux." -msgstr "--acknowledgements SuperTux で使用されるライブラリのライセンスを出力します。" +msgstr " --acknowledgements SuperTux で使用されているライブラリのライセンスを出力する。" -#: src/supertux/command_line_arguments.cpp:103 +#: src/supertux/command_line_arguments.cpp:101 msgid "Video Options:" msgstr "ビデオのオプション:" -#: src/supertux/command_line_arguments.cpp:104 +#: src/supertux/command_line_arguments.cpp:102 msgid " -f, --fullscreen Run in fullscreen mode" -msgstr " -f, --fullscreen 全画面モードで実行します" +msgstr " -f, --fullscreen 全画面モードで実行する" -#: src/supertux/command_line_arguments.cpp:105 +#: src/supertux/command_line_arguments.cpp:103 msgid " -w, --window Run in window mode" -msgstr " -w, --window ウィンドウモードで実行します" +msgstr " -w, --window ウィンドウモードで実行する" -#: src/supertux/command_line_arguments.cpp:106 +#: src/supertux/command_line_arguments.cpp:104 msgid " -g, --geometry WIDTHxHEIGHT Run SuperTux in given resolution" -msgstr " -g, --geometry 幅x高さ 指定された解像度でSuperTuxを実行します" +msgstr " -g, --geometry 幅x高さ 指定された解像度で SuperTux を実行する" -#: src/supertux/command_line_arguments.cpp:107 +#: src/supertux/command_line_arguments.cpp:105 msgid " -a, --aspect WIDTH:HEIGHT Run SuperTux with given aspect ratio" -msgstr " -a, --aspect 幅:高さ 指定されたアスペクト比でSuperTuxを実行します" +msgstr " -a, --aspect 幅:高さ 指定されたアスペクト比で SuperTux を実行する" -#: src/supertux/command_line_arguments.cpp:108 +#: src/supertux/command_line_arguments.cpp:106 msgid " -d, --default Reset video settings to default values" -msgstr " -d, --default ビデオ設定をデフォルト値に戻します" +msgstr " -d, --default ビデオ設定をデフォルトにリセットする" -#: src/supertux/command_line_arguments.cpp:109 +#: src/supertux/command_line_arguments.cpp:107 msgid " --renderer RENDERER Use sdl, opengl, or auto to render" -msgstr " --renderer レンダラー SDLまたは、OpenGLを使用するか、自動的にレンダリングします" +msgstr " --renderer レンダラー \"sdl\"、\"opengl\"、または \"auto\" を指定する" -#: src/supertux/command_line_arguments.cpp:111 +#: src/supertux/command_line_arguments.cpp:109 msgid "Audio Options:" msgstr "オーディオのオプション:" -#: src/supertux/command_line_arguments.cpp:112 +#: src/supertux/command_line_arguments.cpp:110 msgid " --disable-sound Disable sound effects" -msgstr " --disable-sound 効果音を無効にします" +msgstr " --disable-sound 効果音を無効にする" -#: src/supertux/command_line_arguments.cpp:113 +#: src/supertux/command_line_arguments.cpp:111 msgid " --disable-music Disable music" -msgstr " --disable-music BGMを無効にします" +msgstr " --disable-music BGM を無効にする" -#: src/supertux/command_line_arguments.cpp:115 +#: src/supertux/command_line_arguments.cpp:113 msgid "Game Options:" msgstr "ゲームのオプション:" -#: src/supertux/command_line_arguments.cpp:116 +#: src/supertux/command_line_arguments.cpp:114 msgid " --edit-level Open given level in editor" -msgstr " --edit-level 指定されたレベルをエディターで開きます" +msgstr " --edit-level 指定されたレベルをエディターで開く" -#: src/supertux/command_line_arguments.cpp:117 +#: src/supertux/command_line_arguments.cpp:115 msgid " --resave Loads given level and saves it" -msgstr " --再保存 指定されたレベルを読み込んで保存します" +msgstr " --resave 指定されたレベルを読み込んで保存する" -#: src/supertux/command_line_arguments.cpp:118 +#: src/supertux/command_line_arguments.cpp:116 msgid " --show-fps Display framerate in levels" -msgstr " --show-fps レベルにフレームレートを表示します" +msgstr " --show-fps レベルにフレームレートを表示する" -#: src/supertux/command_line_arguments.cpp:119 +#: src/supertux/command_line_arguments.cpp:117 msgid " --no-show-fps Do not display framerate in levels" -msgstr " --no-show-fps レベルにフレームレートを表示しません" +msgstr " --no-show-fps レベルにフレームレートを表示しない" -#: src/supertux/command_line_arguments.cpp:120 +#: src/supertux/command_line_arguments.cpp:118 msgid " --show-pos Display player's current position" -msgstr " --show-pos プレイヤーの現在の位置を表示します" +msgstr " --show-pos プレイヤーの現在の位置を表示する" -#: src/supertux/command_line_arguments.cpp:121 +#: src/supertux/command_line_arguments.cpp:119 msgid " --no-show-pos Do not display player's position" -msgstr " --no-show-pos プレイヤーの位置を表示しません" +msgstr " --no-show-pos プレイヤーの位置を表示しない" -#: src/supertux/command_line_arguments.cpp:122 +#: src/supertux/command_line_arguments.cpp:120 msgid " --developer Switch on developer feature" -msgstr " --developer 開発者向け機能を有効にします" +msgstr " --developer 開発者向け機能を有効にする" -#: src/supertux/command_line_arguments.cpp:123 +#: src/supertux/command_line_arguments.cpp:121 msgid " -s, --debug-scripts Enable script debugger." -msgstr " -s, --debug-scripts スクリプトデバッガーを有効にします" +msgstr " -s, --debug-scripts スクリプトデバッガーを有効にする。" -#: src/supertux/command_line_arguments.cpp:124 +#: src/supertux/command_line_arguments.cpp:122 msgid "" " --spawn-pos X,Y Where in the level to spawn Tux. Only used if" " level is specified." -msgstr " --spawn-pos X,Y Tux をレベルのどこからスタートさせるか指定します。レベルが指定されている場合のみに使われます。" +msgstr " --spawn-pos X,Y Tux をレベルのどこにスポーンさせるか指定する。レベルが指定されている場合のみに使用される。" -#: src/supertux/command_line_arguments.cpp:125 +#: src/supertux/command_line_arguments.cpp:123 msgid " --sector SECTOR Spawn Tux in SECTOR\n" -msgstr " --sector セクター Tuxを指定されたセクターからスタートさせます\n" +msgstr " --sector セクター 指定されたセクターに Tux をスポーンする\n" -#: src/supertux/command_line_arguments.cpp:126 +#: src/supertux/command_line_arguments.cpp:124 msgid " --spawnpoint SPAWNPOINT Spawn Tux at SPAWNPOINT\n" -msgstr " --spawnpoint 開始地点 Tuxを指定された開始地点からスタートさせます\n" - -#: src/supertux/command_line_arguments.cpp:128 -msgid "Demo Recording Options:" -msgstr "デモの録音オプション:" +msgstr " --spawnpoint 開始地点 指定された開始地点に Tux をスポーンする\n" -#: src/supertux/command_line_arguments.cpp:129 -msgid " --record-demo FILE LEVEL Record a demo to FILE" -msgstr " --record-demo ファイル レベル ファイルにデモを記録します" - -#: src/supertux/command_line_arguments.cpp:130 -msgid " --play-demo FILE LEVEL Play a recorded demo" -msgstr " --play-demo ファイル レベル 記録したデモを再生します" - -#: src/supertux/command_line_arguments.cpp:132 +#: src/supertux/command_line_arguments.cpp:126 msgid "Directory Options:" msgstr "ディレクトリのオプション:" -#: src/supertux/command_line_arguments.cpp:133 +#: src/supertux/command_line_arguments.cpp:127 msgid "" " --datadir DIR Set the directory for the games datafiles" -msgstr " --datadir ディレクトリ ゲームのデータファイルを保存するディレクトリを設定します" +msgstr " --datadir ディレクトリ ゲームのデータファイルを保存するディレクトリを設定する" -#: src/supertux/command_line_arguments.cpp:134 +#: src/supertux/command_line_arguments.cpp:128 msgid "" " --userdir DIR Set the directory for user data (savegames, " "etc.)" -msgstr " --userdir ディレクトリ ユーザーデータ (セーブデータなど) を保存するディレクトリを設定します" +msgstr " --userdir ディレクトリ ユーザーデータ (セーブデータなど) を保存するディレクトリを設定する" -#: src/supertux/command_line_arguments.cpp:136 +#: src/supertux/command_line_arguments.cpp:130 msgid "Add-On Options:" msgstr "アドオンのオプション:" -#: src/supertux/command_line_arguments.cpp:137 +#: src/supertux/command_line_arguments.cpp:131 msgid " --repository-url URL Set the URL to the Add-On repository" -msgstr " --repository-url URL URLをアドオンのレポジトリに設定します" +msgstr " --repository-url URL URL をアドオンのレポジトリに設定する" -#: src/supertux/command_line_arguments.cpp:139 +#: src/supertux/command_line_arguments.cpp:133 msgid "Environment variables:" msgstr "環境変数:" -#: src/supertux/command_line_arguments.cpp:140 +#: src/supertux/command_line_arguments.cpp:134 msgid "" " SUPERTUX2_USER_DIR Directory for user data (savegames, etc.)" msgstr " SUPERTUX2_USER_DIR ユーザーデータ (セーブデータなど) を保存するディレクトリ" -#: src/supertux/command_line_arguments.cpp:141 +#: src/supertux/command_line_arguments.cpp:135 msgid " SUPERTUX2_DATA_DIR Directory for the games datafiles" msgstr " SUPERTUX2_DATA_DIR ゲームのデータファイルを保存するディレクトリ" -#: src/supertux/title_screen.cpp:44 +#: src/supertux/title_screen.cpp:272 msgid "Copyright" -msgstr "作成者" +msgstr "Copyright" -#: src/supertux/title_screen.cpp:45 +#: src/supertux/title_screen.cpp:273 msgid "" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to\n" "redistribute it under certain conditions; see the license file for details.\n" -msgstr "このゲームは絶対無保証です。このゲームはフリーソフトであり、一定の条件の元で再配布することができます。\n詳細はライセンスファイルをご覧ください。\n" +msgstr "このゲームはいかなる保証も行いません。このゲームはフリーソフトウェアで、\n一定の条件下で再頒布可能です。詳細はライセンスファイルをご覧ください。\n" -#: src/supertux/menu/integrations_menu.cpp:49 +#: src/supertux/game_object.cpp:114 +msgid "Version" +msgstr "バージョン" + +#: src/supertux/game_object.cpp:129 +#: src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Type" +msgstr "種類" + +#: src/supertux/menu/integrations_menu.cpp:49 msgid "Integrations" msgstr "統合" @@ -1966,60 +2519,146 @@ msgstr "統合" msgid "Do not share level names when editing" msgstr "編集中はレベル名を共有しない" +#: src/supertux/menu/integrations_menu.cpp:52 +msgid "" +"Enable this if you want to work on secret levels and don't want the names to" +" be spoiled" +msgstr "非公開のレベルを編集するときにレベル名を公開したくない場合、有効にしてください" + #: src/supertux/menu/integrations_menu.cpp:54 msgid "Enable Discord integration" -msgstr "Discord 統合を有効にする" +msgstr "Discord統合を有効にする" + +#: src/supertux/menu/integrations_menu.cpp:55 +msgid "" +"Sends information to your Discord application about what you're doing in the" +" game." +msgstr "ゲーム内のアクティビティ情報をDiscordアプリケーションに送信します。" #: src/supertux/menu/integrations_menu.cpp:57 msgid "Discord (disabled; not compiled)" msgstr "Discord (無効; コンパイルされていません)" -#: src/supertux/menu/contrib_menu.cpp:80 +#: src/supertux/menu/editor_converters_menu.cpp:61 +#: src/supertux/menu/editor_menu.cpp:85 +msgid "Convert Tiles" +msgstr "タイルを変換" + +#: src/supertux/menu/editor_converters_menu.cpp:64 +msgid "Select Tile Conversion File" +msgstr "タイル変換ファイルを選択" + +#: src/supertux/menu/editor_converters_menu.cpp:72 +#, c++-format +msgid "By: {}" +msgstr "作者: {}" + +#: src/supertux/menu/editor_converters_menu.cpp:75 +msgid "Convert Tiles By File" +msgstr "ファイルを使用してタイルを変換" + +#: src/supertux/menu/editor_converters_menu.cpp:76 +msgid "Convert all tiles in the current level by a file, specified above." +msgstr "上で指定されたファイルを使用して、現在のレベルに含まれるすべてのタイルを変換します。" + +#: src/supertux/menu/editor_converters_menu.cpp:89 +msgid "No tile conversion file selected." +msgstr "タイル変換ファイルが未選択です。" + +#: src/supertux/menu/editor_converters_menu.cpp:93 +msgid "" +"This will convert all tiles in the level. Proceed?\n" +"\n" +"Note: This should not be ran more than once on a level.\n" +"Creating a separate copy of the level is highly recommended." +msgstr "レベルに含まれるすべてのタイルを変換します。続行しますか?\n\n注意: ひとつのレベルに対して複数回実行しないでください。\nレベルを複製したうえで実行することを推奨します。" + +#: src/supertux/menu/video_system_menu.cpp:36 +msgid "Select Video System" +msgstr "ビデオシステムを選択" + +#: src/supertux/menu/video_system_menu.cpp:37 +#, c++-format +msgid "Used video system: {}" +msgstr "使用中のビデオシステム: {}" + +#: src/supertux/menu/video_system_menu.cpp:54 +msgid "Restart game for the changes to take effect" +msgstr "変更を反映するには、ゲームを再起動してください" + +#: src/supertux/menu/contrib_menu.cpp:68 #: src/supertux/menu/world_set_menu.cpp:31 msgid "Contrib Levels" -msgstr "コミュニティー作品" +msgstr "追加レベル" + +#: src/supertux/menu/contrib_menu.cpp:98 +#: src/supertux/menu/contrib_menu.cpp:112 +msgid "Official Contrib Levels" +msgstr "公式作の追加レベル" + +#: src/supertux/menu/contrib_menu.cpp:99 +#: src/supertux/menu/contrib_menu.cpp:118 +msgid "Community Contrib Levels" +msgstr "コミュニティー作の追加レベル" -#: src/supertux/menu/debug_menu.cpp:32 +#: src/supertux/menu/contrib_menu.cpp:100 +#: src/supertux/menu/contrib_menu.cpp:124 +msgid "User Contrib Levels" +msgstr "ユーザー作の追加レベル" + +#: src/supertux/menu/contrib_menu.cpp:113 +msgid "How is this possible? There are no Official Contrib Levels!" +msgstr "どうやったんでしょうか?公式作の追加レベルはありません!" + +#: src/supertux/menu/contrib_menu.cpp:119 +msgid "No Community Contrib Levels yet. Download them from the Add-ons Menu." +msgstr "コミュニティー作の追加レベルはまだありません。\"アドオン\" メニューからダウンロードしてください。" + +#: src/supertux/menu/contrib_menu.cpp:125 +msgid "No User Contrib Levels yet. Create some with the Level Editor." +msgstr "ユーザー作の追加レベルはまだありません。レベルエディターから作成してください。" + +#: src/supertux/menu/debug_menu.cpp:34 msgid "Debug" msgstr "デバッグ" -#: src/supertux/menu/debug_menu.cpp:56 +#: src/supertux/menu/debug_menu.cpp:58 msgid "Game Speed" msgstr "ゲームの速度" -#: src/supertux/menu/debug_menu.cpp:57 +#: src/supertux/menu/debug_menu.cpp:59 msgid "Adjust Game Speed" msgstr "ゲームの速度を調整します" -#: src/supertux/menu/debug_menu.cpp:63 +#: src/supertux/menu/debug_menu.cpp:65 msgid "Show Collision Rects" msgstr "衝突判定を表示" -#: src/supertux/menu/debug_menu.cpp:64 +#: src/supertux/menu/debug_menu.cpp:66 msgid "Show Worldmap Path" msgstr "ワールドマップの道を表示" -#: src/supertux/menu/debug_menu.cpp:65 +#: src/supertux/menu/debug_menu.cpp:67 msgid "Show Controller" msgstr "コントローラーを表示" -#: src/supertux/menu/debug_menu.cpp:66 +#: src/supertux/menu/debug_menu.cpp:68 msgid "Show Framerate" msgstr "フレームレートを表示" -#: src/supertux/menu/debug_menu.cpp:67 +#: src/supertux/menu/debug_menu.cpp:69 msgid "Draw Redundant Frames" msgstr "余分なフレームを描画" -#: src/supertux/menu/debug_menu.cpp:68 +#: src/supertux/menu/debug_menu.cpp:70 msgid "Show Player Position" msgstr "プレイヤーの位置を表示" -#: src/supertux/menu/debug_menu.cpp:69 +#: src/supertux/menu/debug_menu.cpp:71 msgid "Use Bitmap Fonts" msgstr "ビットマップフォントを使う" -#: src/supertux/menu/debug_menu.cpp:72 +#: src/supertux/menu/debug_menu.cpp:74 msgid "Dump Texture Cache" msgstr "テクスチャーのキャッシュを消去" @@ -2033,10 +2672,37 @@ msgid "File name" msgstr "ファイル名" #: src/supertux/menu/particle_editor_save_as.cpp:38 -#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:766 +#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:767 msgid "Save" msgstr "保存" +#: src/supertux/menu/multiplayer_menu.cpp:27 +#: src/supertux/menu/multiplayer_players_menu.cpp:34 +msgid "Multiplayer" +msgstr "マルチプレイヤー" + +#: src/supertux/menu/multiplayer_menu.cpp:30 +msgid "Auto-manage Players" +msgstr "プレイヤーを自動管理" + +#: src/supertux/menu/multiplayer_menu.cpp:31 +msgid "" +"Automatically add and remove players when controllers are plugged or " +"unplugged" +msgstr "コントローラーが接続/切断された際に、自動的にプレイヤーを追加/削除します" + +#: src/supertux/menu/multiplayer_menu.cpp:33 +msgid "Allow Multibind" +msgstr "複数台接続を許可" + +#: src/supertux/menu/multiplayer_menu.cpp:34 +msgid "Allow binding multiple joysticks to a single player" +msgstr "複数のジョイスティックでひとりのプレイヤーを操作できるようにします" + +#: src/supertux/menu/multiplayer_menu.cpp:36 +msgid "Manage Players" +msgstr "プレイヤーを管理" + #: src/supertux/menu/editor_sectors_menu.cpp:31 msgid "Choose Sector" msgstr "セクターを選ぶ" @@ -2053,50 +2719,98 @@ msgstr "セクターを作る" msgid "Delete Sector" msgstr "セクターを削除" -#: src/supertux/menu/editor_sectors_menu.cpp:93 +#: src/supertux/menu/editor_sectors_menu.cpp:92 msgid "Each level must have at least one sector." msgstr "レベルには少なくとも1つのセクターが必要です。" -#: src/supertux/menu/editor_sectors_menu.cpp:98 +#: src/supertux/menu/editor_sectors_menu.cpp:97 msgid "Do you really want to delete this sector?" msgstr "本当にこのセクターを削除しますか?" -#: src/supertux/menu/editor_sectors_menu.cpp:101 +#: src/supertux/menu/editor_sectors_menu.cpp:100 msgid "Delete sector" msgstr "セクターを削除" -#: src/supertux/menu/editor_objectgroup_menu.cpp:30 -#: src/editor/toolbox_widget.cpp:93 -msgid "Objects" -msgstr "オブジェクト" +#: src/supertux/menu/custom_menu_menu.cpp:49 +#: src/supertux/menu/options_menu.cpp:191 +msgid "Menu Customization" +msgstr "メニューのカスタマイズ" + +#: src/supertux/menu/custom_menu_menu.cpp:51 +msgid "Menu Back Color" +msgstr "メニューの背景色" + +#: src/supertux/menu/custom_menu_menu.cpp:52 +msgid "Menu Front Color" +msgstr "メニューの前景色" + +#: src/supertux/menu/custom_menu_menu.cpp:53 +msgid "Menu Help Back Color" +msgstr "メニューのヘルプ内容の背景色" + +#: src/supertux/menu/custom_menu_menu.cpp:54 +msgid "Menu Help Front Color" +msgstr "メニューのヘルプ内容の前景色" + +#: src/supertux/menu/custom_menu_menu.cpp:55 +msgid "Label Text Color" +msgstr "ラベルの文字色" -#: src/supertux/menu/editor_level_select_menu.cpp:62 +#: src/supertux/menu/custom_menu_menu.cpp:56 +msgid "Active Text Color" +msgstr "ホバー中の文字色" + +#: src/supertux/menu/custom_menu_menu.cpp:57 +msgid "Divider Line Color" +msgstr "区切り線の色" + +#: src/supertux/menu/custom_menu_menu.cpp:58 +msgid "Menu Roundness" +msgstr "メニューの角丸度合い" + +#: src/supertux/menu/custom_menu_menu.cpp:60 +msgid "Editor Interface Color" +msgstr "エディターの画面色" + +#: src/supertux/menu/custom_menu_menu.cpp:61 +msgid "Editor Hover Color" +msgstr "エディターでホバーしたときの色" + +#: src/supertux/menu/custom_menu_menu.cpp:62 +msgid "Editor Grab Color" +msgstr "エディターで掴んだときの色" + +#: src/supertux/menu/custom_menu_menu.cpp:64 +msgid "Reset to defaults" +msgstr "デフォルトにリセット" + +#: src/supertux/menu/editor_level_select_menu.cpp:72 msgid "Empty World" -msgstr "レベルがありません" +msgstr "レベルなし" -#: src/supertux/menu/editor_level_select_menu.cpp:77 +#: src/supertux/menu/editor_level_select_menu.cpp:87 msgid "Create Level" msgstr "レベルを作る" -#: src/supertux/menu/editor_level_select_menu.cpp:81 +#: src/supertux/menu/editor_level_select_menu.cpp:91 msgid "Edit Worldmap" msgstr "ワールドマップを編集" -#: src/supertux/menu/editor_level_select_menu.cpp:83 +#: src/supertux/menu/editor_level_select_menu.cpp:93 msgid "Create Worldmap" msgstr "ワールドマップを作る" -#: src/supertux/menu/editor_level_select_menu.cpp:85 -#: src/supertux/menu/editor_delete_level_menu.cpp:33 +#: src/supertux/menu/editor_level_select_menu.cpp:95 +#: src/supertux/menu/editor_delete_level_menu.cpp:55 msgid "Delete level" msgstr "レベルを削除" -#: src/supertux/menu/editor_level_select_menu.cpp:87 -#: src/supertux/menu/editor_levelset_menu.cpp:56 +#: src/supertux/menu/editor_level_select_menu.cpp:97 +#: src/supertux/menu/editor_levelset_menu.cpp:50 msgid "World Settings" msgstr "ワールドの設定" -#: src/supertux/menu/editor_level_select_menu.cpp:127 +#: src/supertux/menu/editor_level_select_menu.cpp:141 msgid "" "Share this worldmap under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -2104,7 +2818,7 @@ msgid "" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." msgstr "このワールドマップを、クリエイティブ・コモンズ - 表示 - 継承 4.0 国際ライセンスに基づいて共有することをおすすめします。\nこれにより、ほかの誰かが修正したり再頒布したりできるようになります。\n同意できない場合は、ワールドマップのプロパティでライセンスを変更してください。\n免責事項: SuperTuxの開発者は、ライセンスの選択について責任を負いません。" -#: src/supertux/menu/editor_level_select_menu.cpp:134 +#: src/supertux/menu/editor_level_select_menu.cpp:148 msgid "" "Share this level under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -2112,494 +2826,814 @@ msgid "" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." msgstr "このレベルを、クリエイティブ・コモンズ - 表示 - 継承 4.0 国際ライセンスに基づいて共有することをおすすめします。\nこれにより、ほかの誰かが修正したり再頒布したりできるようになります。\n同意できない場合は、レベルのプロパティでライセンスを変更してください。\n免責事項: SuperTuxの開発者は、ライセンスの選択について責任を負いません。" -#: src/supertux/menu/editor_level_select_menu.cpp:162 +#: src/supertux/menu/editor_level_select_menu.cpp:179 msgid "" "An auto-save recovery file was found. Would you like to restore the recovery\n" "file and resume where you were before the editor crashed?" msgstr "自動保存された回復ファイルが見つかりました。回復ファイルを復元して、\nエディターがクラッシュ前の状態を復元しますか?" -#: src/supertux/menu/editor_level_select_menu.cpp:169 +#: src/supertux/menu/editor_level_select_menu.cpp:186 msgid "This will delete the auto-save file. Are you sure?" msgstr "これは自動保存されたファイルを削除します。よろしいですか?" -#: src/supertux/menu/worldmap_cheat_menu.cpp:34 -#: src/supertux/menu/cheat_menu.cpp:30 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:35 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:52 +#: src/supertux/menu/cheat_apply_menu.cpp:33 +#: src/supertux/menu/cheat_apply_menu.cpp:51 +msgid "Apply cheat to player" +msgstr "プレイヤーに攻略を適用" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:60 +#: src/supertux/menu/multiplayer_players_menu.cpp:39 +#: src/supertux/menu/keyboard_menu.cpp:63 +#: src/supertux/menu/cheat_apply_menu.cpp:39 +#: src/supertux/menu/cheat_apply_menu.cpp:59 +#: src/supertux/menu/multiplayer_player_menu.cpp:37 +#, c++-format +msgid "Player {}" +msgstr "プレイヤー {}" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:57 +#: src/supertux/menu/cheat_apply_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:56 +msgid "All Players" +msgstr "すべてのプレイヤー" + +#: src/supertux/menu/worldmap_cheat_menu.cpp:36 +#: src/supertux/menu/cheat_menu.cpp:31 msgid "Cheats" msgstr "攻略" -#: src/supertux/menu/worldmap_cheat_menu.cpp:36 -#: src/supertux/menu/cheat_menu.cpp:32 +#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:33 msgid "Bonus: Grow" msgstr "ボーナス: 大きめ" -#: src/supertux/menu/worldmap_cheat_menu.cpp:37 +#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:34 msgid "Bonus: Fire" msgstr "ボーナス: ファイア" -#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/cheat_menu.cpp:35 msgid "Bonus: Ice" msgstr "ボーナス: アイス" -#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/cheat_menu.cpp:36 msgid "Bonus: Air" msgstr "ボーナス: エアー" -#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:42 +#: src/supertux/menu/cheat_menu.cpp:37 msgid "Bonus: Earth" msgstr "ボーナス: アース" -#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/worldmap_cheat_menu.cpp:43 msgid "Bonus: None" msgstr "ボーナス: 普通" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:51 msgid "Leave Ghost Mode" msgstr "ゴーストモードを終了" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:50 msgid "Activate Ghost Mode" msgstr "ゴーストモードを有効にする" -#: src/supertux/menu/worldmap_cheat_menu.cpp:46 -#: src/supertux/menu/cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:48 +#: src/supertux/menu/cheat_menu.cpp:41 msgid "Finish Level" msgstr "レベルを終える" -#: src/supertux/menu/worldmap_cheat_menu.cpp:47 +#: src/supertux/menu/worldmap_cheat_menu.cpp:49 msgid "Reset Level" msgstr "レベルをリセット" -#: src/supertux/menu/worldmap_cheat_menu.cpp:49 +#: src/supertux/menu/worldmap_cheat_menu.cpp:51 msgid "Finish Worldmap" msgstr "ワールドマップを終わる" -#: src/supertux/menu/worldmap_cheat_menu.cpp:50 +#: src/supertux/menu/worldmap_cheat_menu.cpp:52 msgid "Reset Worldmap" msgstr "ワールドマップをリセット" -#: src/supertux/menu/worldmap_cheat_menu.cpp:52 +#: src/supertux/menu/worldmap_cheat_menu.cpp:54 msgid "Go to level" msgstr "レベルに移動" -#: src/supertux/menu/worldmap_cheat_menu.cpp:53 +#: src/supertux/menu/worldmap_cheat_menu.cpp:55 msgid "Go to main spawnpoint" msgstr "スタート地点に移動" -#: src/supertux/menu/worldmap_cheat_menu.cpp:145 +#: src/supertux/menu/worldmap_cheat_menu.cpp:188 msgid "Select level" msgstr "レベルを選ぶ" #: src/supertux/menu/editor_save_as.cpp:33 -#: src/supertux/menu/editor_menu.cpp:49 +#: src/supertux/menu/editor_menu.cpp:63 msgid "Save Level as" msgstr "レベルに名前をつけて保存" #: src/supertux/menu/editor_save_as.cpp:33 -#: src/supertux/menu/editor_menu.cpp:50 +#: src/supertux/menu/editor_menu.cpp:64 msgid "Save Copy" msgstr "コピーを保存" -#: src/supertux/menu/editor_levelset_select_menu.cpp:72 +#: src/supertux/menu/editor_levelset_select_menu.cpp:71 msgid "Choose World" msgstr "ワールドを選ぶ" -#: src/supertux/menu/editor_levelset_select_menu.cpp:100 -#, c-format -msgid "%d level" -msgid_plural "%d levels" -msgstr[0] "%d レベル" +#: src/supertux/menu/editor_levelset_select_menu.cpp:99 +#, c++-format +msgid "{} level" +msgid_plural "{} levels" +msgstr[0] "{} 個のレベル" -#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_levelset_select_menu.cpp:112 msgid "Create World" msgstr "ワールドを作る" -#: src/supertux/menu/options_menu.cpp:98 src/supertux/menu/main_menu.cpp:64 -#: src/supertux/menu/game_menu.cpp:61 src/supertux/menu/worldmap_menu.cpp:31 -msgid "Options" -msgstr "オプション" - -#: src/supertux/menu/options_menu.cpp:104 -#: src/supertux/menu/options_menu.cpp:142 -#: src/supertux/menu/options_menu.cpp:455 -#: src/supertux/menu/options_menu.cpp:476 src/editor/object_settings.cpp:119 -msgid "auto" -msgstr "自動" - -#: src/supertux/menu/options_menu.cpp:221 -msgid "Desktop" -msgstr "デスクトップ" - -#: src/supertux/menu/options_menu.cpp:251 -msgid "on" -msgstr "の上" - -#: src/supertux/menu/options_menu.cpp:252 -msgid "off" -msgstr "オフ" +#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:41 +msgid "Delete World" +msgstr "ワールドを削除" -#: src/supertux/menu/options_menu.cpp:253 -msgid "adaptive" -msgstr "適応的な" +#: src/supertux/menu/options_menu.cpp:72 +#: src/supertux/menu/options_select_menu.cpp:35 +msgid "Locale" +msgstr "ロケール" -#: src/supertux/menu/options_menu.cpp:347 +#: src/supertux/menu/options_menu.cpp:76 msgid "Select Language" msgstr "言語を選択" -#: src/supertux/menu/options_menu.cpp:348 +#: src/supertux/menu/options_menu.cpp:77 msgid "Select a different language to display text in" msgstr "テキストを表示するための言語を選択します" -#: src/supertux/menu/options_menu.cpp:350 +#: src/supertux/menu/options_menu.cpp:79 msgid "Language Packs" msgstr "言語パック" -#: src/supertux/menu/options_menu.cpp:351 +#: src/supertux/menu/options_menu.cpp:80 msgid "Language packs contain up-to-date translations" msgstr "言語パックには、最新の翻訳データが含まれています" -#: src/supertux/menu/options_menu.cpp:353 -#: src/supertux/menu/profile_menu.cpp:34 -msgid "Select Profile" -msgstr "プロファイルを選択" - -#: src/supertux/menu/options_menu.cpp:354 -msgid "Select a profile to play with" -msgstr "プレイに使用するプロファイルを選択します" +#: src/supertux/menu/options_menu.cpp:88 +#: src/supertux/menu/options_select_menu.cpp:37 +msgid "Video" +msgstr "ビデオ" -#: src/supertux/menu/options_menu.cpp:358 +#: src/supertux/menu/options_menu.cpp:91 msgid "Window Resizable" msgstr "ウィンドウをサイズ変更可能にする" -#: src/supertux/menu/options_menu.cpp:359 +#: src/supertux/menu/options_menu.cpp:92 msgid "Allow window resizing, might require a restart to take effect" -msgstr "ウィンドウのサイズ変更を許可します。設定の反映には再起動が必要になることがあります" +msgstr "ウィンドウのサイズ変更を許可します。設定の反映には再起動が必要なことがあります" -#: src/supertux/menu/options_menu.cpp:361 -msgid "Window Resolution" -msgstr "ウィンドウ解像度" - -#: src/supertux/menu/options_menu.cpp:362 -msgid "Resize the window to the given size" -msgstr "指定されたサイズにウィンドウをサイズ変更します" - -#: src/supertux/menu/options_menu.cpp:364 +#: src/supertux/menu/options_menu.cpp:96 msgid "Fullscreen" msgstr "全画面" -#: src/supertux/menu/options_menu.cpp:365 +#: src/supertux/menu/options_menu.cpp:97 msgid "Fill the entire screen" msgstr "画面全体にゲームを映します" -#: src/supertux/menu/options_menu.cpp:367 -msgid "Fullscreen Resolution" -msgstr "全画面解像度" - -#: src/supertux/menu/options_menu.cpp:368 -msgid "" -"Determine the resolution used in fullscreen mode (you must toggle fullscreen" -" to complete the change)" -msgstr "全画面モードで使用する解像度を決めます (全画面モードに切り替える必要があります)" - -#: src/supertux/menu/options_menu.cpp:373 +#: src/supertux/menu/options_menu.cpp:104 msgid "Fit to browser" msgstr "ブラウザに合わせる" -#: src/supertux/menu/options_menu.cpp:374 +#: src/supertux/menu/options_menu.cpp:105 msgid "Fit the resolution to the size of your browser" -msgstr "解像度をブラウザのサイズに合わせる" - -#: src/supertux/menu/options_menu.cpp:378 -msgid "Magnification" -msgstr "拡大率" +msgstr "解像度をブラウザのサイズに合わせます" -#: src/supertux/menu/options_menu.cpp:379 -msgid "Change the magnification of the game area" -msgstr "ゲームエリアの拡大率を設定します" +#: src/supertux/menu/options_menu.cpp:116 +msgid "Change Video System" +msgstr "ビデオシステムを変更" -#: src/supertux/menu/options_menu.cpp:381 -msgid "VSync" -msgstr "垂直同期" +#: src/supertux/menu/options_menu.cpp:117 +msgid "Change video system used to render graphics" +msgstr "グラフィックスの描画に使われるビデオシステムを変更します" -#: src/supertux/menu/options_menu.cpp:382 -msgid "Set the VSync mode" -msgstr "垂直同期モードを設定します" +#: src/supertux/menu/options_menu.cpp:124 +#: src/supertux/menu/options_select_menu.cpp:38 +msgid "Audio" +msgstr "オーディオ" -#: src/supertux/menu/options_menu.cpp:385 -msgid "Aspect Ratio" -msgstr "アスペクト比" - -#: src/supertux/menu/options_menu.cpp:386 -msgid "Adjust the aspect ratio" -msgstr "アスペクト比を調整します" - -#: src/supertux/menu/options_menu.cpp:392 +#: src/supertux/menu/options_menu.cpp:129 msgid "Disable all sound effects" msgstr "すべての効果音を無効にします" -#: src/supertux/menu/options_menu.cpp:394 +#: src/supertux/menu/options_menu.cpp:131 msgid "Disable all music" msgstr "すべての音楽を無効にします" -#: src/supertux/menu/options_menu.cpp:396 -msgid "Sound Volume" -msgstr "効果音の音量" - -#: src/supertux/menu/options_menu.cpp:397 -msgid "Adjust sound volume" -msgstr "効果音の音量を調整します" - -#: src/supertux/menu/options_menu.cpp:399 -msgid "Music Volume" -msgstr "音楽の音量" - -#: src/supertux/menu/options_menu.cpp:400 -msgid "Adjust music volume" -msgstr "音楽の音量を調整します" - -#: src/supertux/menu/options_menu.cpp:404 +#: src/supertux/menu/options_menu.cpp:138 msgid "Sound (disabled)" msgstr "効果音 (無効)" -#: src/supertux/menu/options_menu.cpp:405 +#: src/supertux/menu/options_menu.cpp:139 msgid "Music (disabled)" msgstr "音楽 (無効)" -#: src/supertux/menu/options_menu.cpp:408 -#: src/supertux/menu/keyboard_menu.cpp:30 +#: src/supertux/menu/options_menu.cpp:147 +#: src/supertux/menu/options_select_menu.cpp:39 +msgid "Controls" +msgstr "コントロール" + +#: src/supertux/menu/options_menu.cpp:151 +msgid "Enable Rumbling Controllers" +msgstr "コントローラーの振動を有効にする" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "Enable vibrating the game controllers." +msgstr "ゲームコントローラーの振動を有効にします。" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "This feature is currently only used in the multiplayer options menu." +msgstr "この機能は現状、マルチプレイヤーオプションメニューでのみ使用されます。" + +#: src/supertux/menu/options_menu.cpp:154 +#: src/supertux/menu/keyboard_menu.cpp:34 msgid "Setup Keyboard" msgstr "キーボードを設定" -#: src/supertux/menu/options_menu.cpp:409 +#: src/supertux/menu/options_menu.cpp:155 msgid "Configure key-action mappings" msgstr "キーアクションの割り当てを設定します" -#: src/supertux/menu/options_menu.cpp:412 -#: src/supertux/menu/joystick_menu.cpp:52 +#: src/supertux/menu/options_menu.cpp:158 +#: src/supertux/menu/joystick_menu.cpp:54 msgid "Setup Joystick" msgstr "ジョイスティックをセットアップ" -#: src/supertux/menu/options_menu.cpp:413 +#: src/supertux/menu/options_menu.cpp:159 msgid "Configure joystick control-action mappings" msgstr "ジョイスティックのコントロールボタン・アクションボタンの割り当てを設定します" -#: src/supertux/menu/options_menu.cpp:417 -msgid "On-screen controls" -msgstr "画面上のコントロール" +#: src/supertux/menu/options_menu.cpp:167 +#: src/supertux/menu/options_select_menu.cpp:40 +msgid "Extras" +msgstr "その他" + +#: src/supertux/menu/options_menu.cpp:170 +#: src/supertux/menu/profile_menu.cpp:56 +msgid "Select Profile" +msgstr "プロファイルを選択" + +#: src/supertux/menu/options_menu.cpp:171 +msgid "Select a profile to play with" +msgstr "プレイに使用するプロファイルを選択します" + +#: src/supertux/menu/options_menu.cpp:174 +msgid "Multiplayer settings" +msgstr "マルチプレイヤーの設定" -#: src/supertux/menu/options_menu.cpp:418 -msgid "Toggle on-screen controls for mobile devices" -msgstr "モバイルデバイスのオンスクリーンコントロールを切り替えます" +#: src/supertux/menu/options_menu.cpp:175 +msgid "Configure settings specific to multiplayer" +msgstr "マルチプレイヤー関連の設定を行います" -#: src/supertux/menu/options_menu.cpp:420 +#: src/supertux/menu/options_menu.cpp:178 msgid "Enable transitions" -msgstr "トランジションを有効にする" +msgstr "画面遷移を有効にする" -#: src/supertux/menu/options_menu.cpp:421 +#: src/supertux/menu/options_menu.cpp:179 msgid "Enable screen transitions and smooth menu animation" msgstr "画面遷移と滑らかなメニューアニメーションを有効にします" -#: src/supertux/menu/options_menu.cpp:425 -msgid "Developer Mode" -msgstr "開発者モード" +#: src/supertux/menu/options_menu.cpp:181 +msgid "Custom title screen levels" +msgstr "" -#: src/supertux/menu/options_menu.cpp:430 +#: src/supertux/menu/options_menu.cpp:182 +msgid "Allow overriding the title screen level, when loading certain worlds" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:185 msgid "Christmas Mode" msgstr "クリスマスモード" -#: src/supertux/menu/options_menu.cpp:433 +#: src/supertux/menu/options_menu.cpp:187 +msgid "Integrations and presence" +msgstr "統合と表示" + +#: src/supertux/menu/options_menu.cpp:188 +msgid "" +"Manage whether SuperTux should display the levels you play on your social " +"media profiles (Discord)" +msgstr "SuperTuxでプレイしたレベルを、ソーシャルメディア (Discord) のプロフィールに表示するかどうかを設定します" + +#: src/supertux/menu/options_menu.cpp:192 +msgid "Customize the appearance of the menus" +msgstr "メニューの見た目をカスタマイズします" + +#: src/supertux/menu/options_menu.cpp:199 +#: src/supertux/menu/options_select_menu.cpp:41 +msgid "Advanced" +msgstr "高度" + +#: src/supertux/menu/options_menu.cpp:204 +msgid "Developer Mode" +msgstr "開発者モード" + +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirmation Dialog" msgstr "確認ダイアログ" -#: src/supertux/menu/options_menu.cpp:433 +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirm aborting level" -msgstr "レベルをやめるかどうかを確認します" +msgstr "レベルをやめる際に確認します" -#: src/supertux/menu/options_menu.cpp:434 +#: src/supertux/menu/options_menu.cpp:208 msgid "Pause on focus loss" -msgstr "ウィンドウがフォーカスされていないときに一時停止" +msgstr "非フォーカス時に一時停止" -#: src/supertux/menu/options_menu.cpp:435 +#: src/supertux/menu/options_menu.cpp:209 msgid "Automatically pause the game when the window loses focus" -msgstr "ウィンドウがフォーカスを失ったときにゲームを自動的に一時停止します" +msgstr "ウィンドウがフォーカスを外れたときにゲームを自動的に一時停止します" -#: src/supertux/menu/options_menu.cpp:436 +#: src/supertux/menu/options_menu.cpp:211 msgid "Use custom mouse cursor" msgstr "ペンギン型のマウスカーソルを使う" -#: src/supertux/menu/options_menu.cpp:436 +#: src/supertux/menu/options_menu.cpp:211 msgid "Whether the game renders its own cursor or uses the system's cursor" msgstr "ゲーム独自のカーソルを描画するか、システムのカーソルを使うかを設定します" -#: src/supertux/menu/options_menu.cpp:438 -msgid "Integrations and presence" -msgstr "統合と表示" +#: src/supertux/menu/options_menu.cpp:214 +msgid "Check for new releases" +msgstr "アップデートを自動的に確認" -#: src/supertux/menu/options_menu.cpp:439 +#: src/supertux/menu/options_menu.cpp:215 msgid "" -"Manage whether SuperTux should display the levels you play on your social " -"media profiles (Discord)" -msgstr "ソーシャルメディア (Discord) のプロフィールに、SuperTuxでプレイしたレベルを表示するかどうかを設定します" +"Allows the game to perform checks for new SuperTux releases on startup and " +"notify if any found." +msgstr "ゲーム起動時にSuperTuxの新バージョンがリリースされているか確認し、見つかった場合は通知することを許可します。" -#: src/supertux/menu/options_menu.cpp:559 +#: src/supertux/menu/options_menu.cpp:245 +#: src/supertux/menu/options_menu.cpp:288 src/supertux/direction.cpp:76 +msgid "auto" +msgstr "自動" + +#: src/supertux/menu/options_menu.cpp:281 +msgid "Magnification" +msgstr "拡大率" + +#: src/supertux/menu/options_menu.cpp:282 +msgid "Change the magnification of the game area" +msgstr "ゲームエリアの拡大率を設定します" + +#: src/supertux/menu/options_menu.cpp:318 +msgid "Aspect Ratio" +msgstr "アスペクト比" + +#: src/supertux/menu/options_menu.cpp:319 +msgid "Adjust the aspect ratio" +msgstr "アスペクト比を調整します" + +#: src/supertux/menu/options_menu.cpp:346 +msgid "Window Resolution" +msgstr "ウィンドウ解像度" + +#: src/supertux/menu/options_menu.cpp:347 +msgid "Resize the window to the given size" +msgstr "指定されたサイズにウィンドウをサイズ変更します" + +#: src/supertux/menu/options_menu.cpp:377 +msgid "Desktop" +msgstr "デスクトップ" + +#: src/supertux/menu/options_menu.cpp:404 +msgid "Fullscreen Resolution" +msgstr "全画面解像度" + +#: src/supertux/menu/options_menu.cpp:405 +msgid "" +"Determine the resolution used in fullscreen mode (you must toggle fullscreen" +" to complete the change)" +msgstr "全画面モードで使用する解像度を決めます (全画面モードに切り替える必要があります)" + +#: src/supertux/menu/options_menu.cpp:411 +msgid "on" +msgstr "オン" + +#: src/supertux/menu/options_menu.cpp:412 +msgid "off" +msgstr "オフ" + +#: src/supertux/menu/options_menu.cpp:413 +msgid "adaptive" +msgstr "適応的" + +#: src/supertux/menu/options_menu.cpp:431 +msgid "VSync" +msgstr "垂直同期" + +#: src/supertux/menu/options_menu.cpp:432 +msgid "Set the VSync mode" +msgstr "垂直同期モードを設定します" + +#: src/supertux/menu/options_menu.cpp:467 +msgid "Sound Volume" +msgstr "効果音の音量" + +#: src/supertux/menu/options_menu.cpp:468 +msgid "Adjust sound volume" +msgstr "効果音の音量を調整します" + +#: src/supertux/menu/options_menu.cpp:503 +msgid "Music Volume" +msgstr "音楽の音量" + +#: src/supertux/menu/options_menu.cpp:504 +msgid "Adjust music volume" +msgstr "音楽の音量を調整します" + +#: src/supertux/menu/options_menu.cpp:517 +msgid "On-screen controls scale" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:638 msgid "" "The game couldn't detect your browser resolution.\n" "This most likely happens because it is not embedded\n" "in the SuperTux custom HTML template.\n" msgstr "ゲームはブラウザの解像度を検出できませんでした。\nこれは埋め込まれていないために発生する可能性が高いです\nSuperTux カスタム HTML テンプレート内。\n" -#: src/supertux/menu/main_menu.cpp:56 src/supertux/menu/world_set_menu.cpp:28 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:80 +msgid "You cannot delete the world that you are editing" +msgstr "編集中のワールドは削除できません" + +#: src/supertux/menu/editor_delete_levelset_menu.cpp:83 +#, c++-format +msgid "You are about to delete world \"{}\". Are you sure?" +msgstr "ワールド \"{}\" を削除しようとしています。よろしいですか?" + +#: src/supertux/menu/addon_preview_menu.cpp:82 +#, c++-format +msgid "{} \"{}\"" +msgstr "{} \"{}\"" + +#: src/supertux/menu/addon_preview_menu.cpp:87 +msgid "Some information about this add-on is not available." +msgstr "このアドオンは一部の情報が不明です。" + +#: src/supertux/menu/addon_preview_menu.cpp:88 +msgid "Perform a \"Check Online\" to try retrieving it." +msgstr "\"オンラインで確認\"を実行して、アドオンの再取得をお試しください。" + +#: src/supertux/menu/addon_preview_menu.cpp:92 +msgid "No author specified." +msgstr "作者は未指定です。" + +#: src/supertux/menu/addon_preview_menu.cpp:92 +#, c++-format +msgid "Author: {}" +msgstr "作者: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:93 +#, c++-format +msgid "Type: {}" +msgstr "種類: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:94 +msgid "No license specified." +msgstr "ライセンスは未指定です。" + +#: src/supertux/menu/addon_preview_menu.cpp:94 +#, c++-format +msgid "License: {}" +msgstr "ライセンス: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:99 +msgid "Dependencies:" +msgstr "依存関係:" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Installed" +msgstr "インストール済み" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Not installed" +msgstr "未インストール" + +#: src/supertux/menu/addon_preview_menu.cpp:113 +msgid "Not available!" +msgstr "利用できません!" + +#: src/supertux/menu/addon_preview_menu.cpp:120 +msgid "Description:" +msgstr "説明:" + +#: src/supertux/menu/addon_preview_menu.cpp:123 +msgid "No description available." +msgstr "説明は利用できません。" + +#: src/supertux/menu/addon_preview_menu.cpp:147 +msgid "Failed to load all available screenshot previews." +msgstr "すべての利用可能なスクリーンショットプレビューの読み込みに失敗しました。" + +#: src/supertux/menu/addon_preview_menu.cpp:152 +msgid "Show screenshots" +msgstr "スクリーンショットを表示" + +#: src/supertux/menu/addon_preview_menu.cpp:165 +msgid "Screenshot previews are disabled for automatic installs." +msgstr "自動インストールの場合、スクリーンショットプレビューは無効化されています。" + +#: src/supertux/menu/addon_preview_menu.cpp:169 +msgid "No screenshot previews available." +msgstr "スクリーンショットプレビューは利用できません。" + +#: src/supertux/menu/addon_preview_menu.cpp:177 +msgid "Install" +msgstr "インストール" + +#: src/supertux/menu/addon_preview_menu.cpp:190 +msgid "Uninstall" +msgstr "アンインストール" + +#: src/supertux/menu/addon_preview_menu.cpp:214 +#, c++-format +msgid "Are you sure you want to uninstall \"{}\"?" +msgstr "\"{}\"をアンインストールしてもよろしいですか?" + +#: src/supertux/menu/addon_preview_menu.cpp:215 +msgid "" +"\n" +"Your progress won't be lost." +msgstr "\nセーブデータは維持されます。" + +#: src/supertux/menu/addon_preview_menu.cpp:227 +#, c++-format +msgid "" +"NOTE: The add-on \"{}\" is a dependency of {} other installed {}.\n" +"Are you sure you wish to uninstall?" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:246 +#, c++-format +msgid "" +"Cannot toggle add-on \"{}\":\n" +"{}" +msgstr "アドオン\"{}\"を切り替えできません:\n{}" + +#: src/supertux/menu/addon_preview_menu.cpp:279 +msgid "Fetching screenshot previews..." +msgstr "スクリーンショットのプレビューを取得しています…" + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Updating" +msgstr "更新しています" + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Downloading" +msgstr "ダウンロードしています" + +#: src/supertux/menu/addon_preview_menu.cpp:328 +msgid "Add-on uninstalled successfully." +msgstr "アドオンのアンインストールに成功しました。" + +#: src/supertux/menu/addon_preview_menu.cpp:333 +#, c++-format +msgid "" +"Error uninstalling add-on:\n" +"{}" +msgstr "アドオンのアンインストールエラー:\n{}" + +#: src/supertux/menu/addon_preview_menu.cpp:361 +msgid "" +"Please restart SuperTux\n" +"for these changes to take effect." +msgstr "これらの変更を反映するには、\nSuperTuxを再起動してください。" + +#: src/supertux/menu/main_menu.cpp:51 src/supertux/menu/world_set_menu.cpp:28 msgid "Start Game" msgstr "ゲームを始める" -#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/addon_menu.cpp:122 +#: src/supertux/menu/main_menu.cpp:55 msgid "Add-ons" msgstr "アドオン" -#: src/supertux/menu/main_menu.cpp:62 src/supertux/menu/web_asset_menu.cpp:38 +#: src/supertux/menu/main_menu.cpp:57 src/supertux/menu/web_asset_menu.cpp:38 msgid "Manage Assets" msgstr "資産の管理" -#: src/supertux/menu/main_menu.cpp:65 src/supertux/menu/editor_menu.cpp:43 +#: src/supertux/menu/main_menu.cpp:59 +#: src/supertux/menu/options_select_menu.cpp:29 +#: src/supertux/menu/game_menu.cpp:58 src/supertux/menu/worldmap_menu.cpp:31 +#: src/supertux/menu/editor_menu.cpp:70 +msgid "Options" +msgstr "オプション" + +#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/editor_menu.cpp:58 msgid "Level Editor" msgstr "レベルエディター" -#: src/supertux/menu/main_menu.cpp:66 +#: src/supertux/menu/main_menu.cpp:61 msgid "Credits" msgstr "クレジット" -#: src/supertux/menu/main_menu.cpp:67 +#: src/supertux/menu/main_menu.cpp:64 msgid "Donate" msgstr "寄付" -#: src/supertux/menu/main_menu.cpp:69 +#: src/supertux/menu/main_menu.cpp:67 msgid "Quit" msgstr "終了" -#: src/supertux/menu/editor_sector_menu.cpp:35 +#: src/supertux/menu/main_menu.cpp:106 +msgid "" +"This will take you to the SuperTux donation page. Are you sure you want to " +"continue?" +msgstr "SuperTuxの寄付ページを表示します。続行してもよろしいですか?" + +#: src/supertux/menu/editor_sector_menu.cpp:34 +#, c++-format +msgid "Sector {}" +msgstr "" + +#: src/supertux/menu/editor_sector_menu.cpp:37 msgid "Initialization script" msgstr "初期化スクリプト" -#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_sector_menu.cpp:38 msgid "Gravity" msgstr "重力" -#: src/supertux/menu/editor_sector_menu.cpp:41 +#: src/supertux/menu/editor_sector_menu.cpp:43 msgid "Resize offset X" msgstr "オフセットのX座標をサイズ変更" -#: src/supertux/menu/editor_sector_menu.cpp:42 +#: src/supertux/menu/editor_sector_menu.cpp:44 msgid "Resize offset Y" msgstr "オフセットのY座標をサイズ変更" -#: src/supertux/menu/editor_sector_menu.cpp:43 +#: src/supertux/menu/editor_sector_menu.cpp:45 msgid "Resize" msgstr "サイズ変更" -#: src/supertux/menu/profile_menu.cpp:41 -#, c-format -msgid "[Profile %s]" -msgstr "[プロファイル %s]" - -#: src/supertux/menu/profile_menu.cpp:45 -#, c-format -msgid "Profile %s" -msgstr "プロファイル %s" - -#: src/supertux/menu/profile_menu.cpp:50 -msgid "Reset profile" -msgstr "プロファイルをリセット" +#: src/supertux/menu/profile_menu.cpp:60 +msgid "No profiles found." +msgstr "プロファイルが見つかりません。" + +#: src/supertux/menu/profile_menu.cpp:68 +#: src/supertux/menu/profile_menu.cpp:149 +#: src/supertux/menu/profile_menu.cpp:168 +#, c++-format +msgid "Profile {}" +msgstr "プロファイル {}" + +#: src/supertux/menu/profile_menu.cpp:69 +#, c++-format +msgid "{} (Profile {})" +msgstr "{} (プロファイル {})" + +#: src/supertux/menu/profile_menu.cpp:84 +msgid "No profile selected." +msgstr "プロファイルが選択されていません。" + +#: src/supertux/menu/profile_menu.cpp:91 src/supertux/menu/profile_menu.cpp:93 +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Rename" +msgstr "名前を変更" + +#: src/supertux/menu/profile_menu.cpp:98 +#: src/supertux/menu/profile_menu.cpp:100 +msgid "Reset" +msgstr "リセット" + +#: src/supertux/menu/profile_menu.cpp:103 +#: src/supertux/menu/profile_menu.cpp:105 +msgid "Reset all" +msgstr "すべてリセット" + +#: src/supertux/menu/profile_menu.cpp:113 +#: src/supertux/menu/profile_menu.cpp:115 +msgid "Delete all" +msgstr "すべて削除" + +#: src/supertux/menu/profile_menu.cpp:148 +#, c++-format +msgid "" +"This will reset all game progress on the profile \"{}\".\n" +"Are you sure?" +msgstr "プロファイル \"{}\" のすべてのセーブデータをリセットします。\nよろしいですか?" -#: src/supertux/menu/profile_menu.cpp:51 -msgid "Reset all profiles" -msgstr "すべてのプロファイルをリセット" +#: src/supertux/menu/profile_menu.cpp:157 +msgid "This will reset your game progress on all profiles. Are you sure?" +msgstr "すべてのプロファイルのセーブデータをリセットします。よろしいですか?" -#: src/supertux/menu/profile_menu.cpp:67 -msgid "Deleting your profile will reset your game progress. Are you sure?" -msgstr "プロファイルを削除すると、セーブデータがリセットされます。よろしいですか?" +#: src/supertux/menu/profile_menu.cpp:167 +#, c++-format +msgid "" +"This will delete the profile \"{}\",\n" +"including all game progress on it. Are you sure?" +msgstr "プロファイル \"{}\" を削除します。これにはこのプロファイルの\nすべてのセーブデータも含まれます。よろしいですか?" -#: src/supertux/menu/profile_menu.cpp:73 -msgid "This will reset your game progress on all profiles. Are you sure?" -msgstr "すべてのプロファイルのセーブデータがリセットされます。よろしいですか?" +#: src/supertux/menu/profile_menu.cpp:178 +msgid "" +"This will delete all profiles, including all game progress on them.\n" +"Are you sure?" +msgstr "すべてのプロファイルを削除します。これにはすべてのプロファイルの\nセーブデータも含まれます。よろしいですか?" -#: src/supertux/menu/editor_levelset_menu.cpp:59 +#: src/supertux/menu/editor_levelset_menu.cpp:53 #: src/supertux/menu/editor_new_levelset_menu.cpp:35 msgid "Description" msgstr "説明" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:48 -#: data//images/engine/editor/objects.stoi:371 -msgid "Worldmap" -msgstr "ワールドマップ" +#: src/supertux/menu/editor_levelset_menu.cpp:55 +msgid "Title Screen Level" +msgstr "" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:45 -msgid "Levelset" -msgstr "レベル集" +#: src/supertux/menu/editor_levelset_menu.cpp:56 +msgid "A level to be used for the title screen, after exiting the world." +msgstr "" -#: src/supertux/menu/addon_menu.cpp:51 -msgid "World" -msgstr "ワールド" +#: src/supertux/menu/multiplayer_players_menu.cpp:46 +msgid "Add Player" +msgstr "プレイヤーを追加" -#: src/supertux/menu/addon_menu.cpp:54 -msgid "Add-on" -msgstr "アドオン" +#: src/supertux/menu/multiplayer_players_menu.cpp:59 +msgid "Remove Last Player" +msgstr "最後のプレイヤーを削除" -#: src/supertux/menu/addon_menu.cpp:60 -msgid "Unknown" -msgstr "不明" +#: src/supertux/menu/multiplayer_players_menu.cpp:62 +msgid "" +"Warning: The player you are trying to\n" +"remove is currently in-game.\n" +"\n" +"Do you wish to remove them anyways?" +msgstr "警告: 削除しようとしているプレイヤーは\n現在プレイ中です。\n\n強制的に削除してもよろしいですか?" -#: src/supertux/menu/addon_menu.cpp:71 -#, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" 作成者: \"%s\"" +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Language Packs" +msgstr "インストール済み言語パック" -#: src/supertux/menu/addon_menu.cpp:129 +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Add-ons" +msgstr "インストール済みアドオン" + +#: src/supertux/menu/addon_menu.cpp:76 src/supertux/menu/addon_menu.cpp:117 +msgid "No language packs installed" +msgstr "言語パック未インストール" + +#: src/supertux/menu/addon_menu.cpp:76 msgid "No Add-ons installed" -msgstr "アドオンがインストールされていません" +msgstr "アドオン未インストール" -#: src/supertux/menu/addon_menu.cpp:133 -msgid "No Add-ons found" -msgstr "アドオンが見つかりませんでした" +#: src/supertux/menu/addon_menu.cpp:124 +#, c++-format +msgid "{} {}*UPDATE*" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:179 -#, c-format -msgid "Install %s *NEW*" -msgstr "%s をインストール *新規*" +#: src/supertux/menu/addon_menu.cpp:130 +#, c++-format +msgid "{}{}" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:190 -#, c-format -msgid "Install %s" -msgstr "%s をインストール" +#: src/supertux/menu/addon_menu.cpp:140 +msgid "No updates available." +msgstr "利用可能なアップデートはありません。" -#: src/supertux/menu/addon_menu.cpp:199 -msgid "No new Add-ons found" -msgstr "新しいアドオンは見つかりませんでした" +#: src/supertux/menu/addon_menu.cpp:144 +#, c++-format +msgid "{} {} available" +msgstr "{}件の{}が利用可能" -#: src/supertux/menu/addon_menu.cpp:205 -msgid "Check Online (disabled)" -msgstr "オンラインで調べる (無効)" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "update" +msgstr "アップデート" -#: src/supertux/menu/addon_menu.cpp:209 -msgid "Check Online" -msgstr "オンラインで調べる" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "updates" +msgstr "アップデート" -#: src/supertux/menu/addon_menu.cpp:286 -msgid "Downloading Add-On Repository Index" -msgstr "アドオンのレポジトリのインデックスをダウンロードしています" +#: src/supertux/menu/addon_menu.cpp:146 +msgid "Check for updates" +msgstr "アップデートを確認" -#: src/supertux/menu/addon_menu.cpp:301 -#, c-format -msgid "Downloading %s" -msgstr "%s をダウンロードしています" +#: src/supertux/menu/addon_menu.cpp:150 +msgid "Browse language packs" +msgstr "言語パックを探す" -#: src/supertux/menu/addon_menu.cpp:348 -msgid "" -"Please restart SuperTux\n" -"for these changes to take effect." -msgstr "これらの変更を反映するには、\nSuperTuxを再起動してください。" +#: src/supertux/menu/addon_menu.cpp:150 +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Add-ons" +msgstr "アドオンを探す" + +#: src/supertux/menu/addon_menu.cpp:151 +msgid "Install from file" +msgstr "ファイルからインストール" + +#: src/supertux/menu/addon_menu.cpp:208 +msgid "Checking for updates..." +msgstr "アップデートを確認しています…" #: src/supertux/menu/editor_new_levelset_menu.cpp:31 msgid "New World" @@ -2613,13 +3647,60 @@ msgstr "このレベルのサブセットの名前を入力してください。 msgid "Story Mode" msgstr "ストーリーモード" +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Language Packs" +msgstr "言語パックを探す" + +#: src/supertux/menu/addon_browse_menu.cpp:112 +#, c++-format +msgid "Page {}/{}" +msgstr "ページ {}/{}" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new language packs available" +msgstr "利用可能な新しい言語パックなし" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new Add-ons available" +msgstr "利用可能な新しいアドオンなし" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No language packs available" +msgstr "利用可能な言語パックなし" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No Add-ons available" +msgstr "利用可能なアドオンなし" + +#: src/supertux/menu/addon_browse_menu.cpp:135 +#: src/supertux/menu/addon_browse_menu.cpp:139 +msgid "Previous page" +msgstr "前のページ" + +#: src/supertux/menu/addon_browse_menu.cpp:143 +#: src/supertux/menu/addon_browse_menu.cpp:147 +msgid "Next page" +msgstr "次のページ" + +#: src/supertux/menu/addon_browse_menu.cpp:154 +msgid "Check Online (disabled)" +msgstr "オンラインで確認 (無効)" + +#: src/supertux/menu/addon_browse_menu.cpp:158 +msgid "Check Online" +msgstr "オンラインで確認" + +#: src/supertux/menu/addon_browse_menu.cpp:195 +msgid "Downloading Add-On Repository Index" +msgstr "アドオンのリポジトリのインデックスをダウンロードしています" + #: src/supertux/menu/web_asset_menu.cpp:42 msgid "New files location" msgstr "新しいファイルの場所" #: src/supertux/menu/web_asset_menu.cpp:43 msgid "Add Files" -msgstr "追加ファイル" +msgstr "ファイルを追加" #: src/supertux/menu/web_asset_menu.cpp:44 msgid "Download Files" @@ -2631,209 +3712,237 @@ msgstr "パーティクルファイルをロードする" #: src/supertux/menu/particle_editor_open.cpp:39 msgid "Open" -msgstr "開ける" - -#: src/supertux/menu/game_menu.cpp:31 -msgid "Are you sure?" -msgstr "よろしいですか?" +msgstr "開く" -#: src/supertux/menu/game_menu.cpp:54 src/supertux/menu/worldmap_menu.cpp:30 +#: src/supertux/menu/game_menu.cpp:51 src/supertux/menu/worldmap_menu.cpp:30 msgid "Continue" msgstr "続行" -#: src/supertux/menu/game_menu.cpp:55 +#: src/supertux/menu/game_menu.cpp:52 msgid "Restart Level" -msgstr "スタートからやり直す" +msgstr "レベルをやり直す" -#: src/supertux/menu/game_menu.cpp:58 +#: src/supertux/menu/game_menu.cpp:55 msgid "Restart from Checkpoint" msgstr "チェックポイントからやり直す" -#: src/supertux/menu/game_menu.cpp:63 +#: src/supertux/menu/game_menu.cpp:60 msgid "Abort Level" msgstr "レベルをやめる" -#: src/supertux/menu/keyboard_menu.cpp:32 -#: src/supertux/menu/joystick_menu.cpp:69 +#: src/supertux/menu/game_menu.cpp:76 src/supertux/menu/game_menu.cpp:87 +#: src/supertux/menu/game_menu.cpp:99 +msgid "Are you sure?" +msgstr "よろしいですか?" + +#: src/supertux/menu/profile_name_menu.cpp:36 +#, c++-format +msgid "Rename \"{}\"" +msgstr "\"{}\"の名前を変更" + +#: src/supertux/menu/profile_name_menu.cpp:36 +msgid "Add profile" +msgstr "プロファイルを追加" + +#: src/supertux/menu/profile_name_menu.cpp:40 +msgid "Profile names must have a maximum of 20 characters." +msgstr "プロファイル名は最大20文字です。" + +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Create" +msgstr "作成" + +#: src/supertux/menu/profile_name_menu.cpp:56 +msgid "" +"Profile names must have a maximum of 20 characters.\n" +"Please choose a different name." +msgstr "プロファイル名は最大20文字です。\n他の名前を選択してください。" + +#: src/supertux/menu/profile_name_menu.cpp:77 +msgid "An error occurred while creating the profile." +msgstr "プロファイル作成中にエラーが発生しました。" + +#: src/supertux/menu/keyboard_menu.cpp:36 +#: src/supertux/menu/joystick_menu.cpp:71 msgid "Up" msgstr "上" -#: src/supertux/menu/keyboard_menu.cpp:33 -#: src/supertux/menu/joystick_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:37 +#: src/supertux/menu/joystick_menu.cpp:72 msgid "Down" msgstr "下" -#: src/supertux/menu/keyboard_menu.cpp:36 -#: src/supertux/menu/joystick_menu.cpp:73 +#: src/supertux/menu/keyboard_menu.cpp:40 +#: src/supertux/menu/joystick_menu.cpp:75 msgid "Jump" msgstr "ジャンプ" -#: src/supertux/menu/keyboard_menu.cpp:38 -#: src/supertux/menu/joystick_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:43 +#: src/supertux/menu/joystick_menu.cpp:78 msgid "Peek Left" msgstr "左を見る" -#: src/supertux/menu/keyboard_menu.cpp:39 -#: src/supertux/menu/joystick_menu.cpp:77 +#: src/supertux/menu/keyboard_menu.cpp:44 +#: src/supertux/menu/joystick_menu.cpp:79 msgid "Peek Right" msgstr "右を見る" -#: src/supertux/menu/keyboard_menu.cpp:40 -#: src/supertux/menu/joystick_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:45 +#: src/supertux/menu/joystick_menu.cpp:80 msgid "Peek Up" msgstr "上を見る" -#: src/supertux/menu/keyboard_menu.cpp:41 -#: src/supertux/menu/joystick_menu.cpp:79 +#: src/supertux/menu/keyboard_menu.cpp:46 +#: src/supertux/menu/joystick_menu.cpp:81 msgid "Peek Down" msgstr "下を見る" -#: src/supertux/menu/keyboard_menu.cpp:43 -#: src/supertux/menu/joystick_menu.cpp:81 +#: src/supertux/menu/keyboard_menu.cpp:51 +#: src/supertux/menu/joystick_menu.cpp:83 msgid "Console" msgstr "コンソール" -#: src/supertux/menu/keyboard_menu.cpp:44 -#: src/supertux/menu/joystick_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:52 +#: src/supertux/menu/joystick_menu.cpp:84 msgid "Cheat Menu" msgstr "攻略メニュー" -#: src/supertux/menu/keyboard_menu.cpp:45 -#: src/supertux/menu/joystick_menu.cpp:83 +#: src/supertux/menu/keyboard_menu.cpp:53 +#: src/supertux/menu/joystick_menu.cpp:85 msgid "Debug Menu" msgstr "デバッグメニュー" -#: src/supertux/menu/keyboard_menu.cpp:47 -#: src/supertux/menu/joystick_menu.cpp:85 +#: src/supertux/menu/keyboard_menu.cpp:56 +#: src/supertux/menu/joystick_menu.cpp:87 msgid "Jump with Up" msgstr "上キーでジャンプ" -#: src/supertux/menu/keyboard_menu.cpp:60 +#: src/supertux/menu/keyboard_menu.cpp:82 msgid "Up cursor" msgstr "上キー" -#: src/supertux/menu/keyboard_menu.cpp:62 +#: src/supertux/menu/keyboard_menu.cpp:84 msgid "Down cursor" msgstr "下キー" -#: src/supertux/menu/keyboard_menu.cpp:64 +#: src/supertux/menu/keyboard_menu.cpp:86 msgid "Left cursor" msgstr "左キー" -#: src/supertux/menu/keyboard_menu.cpp:66 +#: src/supertux/menu/keyboard_menu.cpp:88 msgid "Right cursor" msgstr "右キー" -#: src/supertux/menu/keyboard_menu.cpp:68 +#: src/supertux/menu/keyboard_menu.cpp:90 msgid "Return" msgstr "Returnキー" -#: src/supertux/menu/keyboard_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:92 msgid "Space" msgstr "スペースキー" -#: src/supertux/menu/keyboard_menu.cpp:72 +#: src/supertux/menu/keyboard_menu.cpp:94 msgid "Right Shift" msgstr "右Shiftキー" -#: src/supertux/menu/keyboard_menu.cpp:74 +#: src/supertux/menu/keyboard_menu.cpp:96 msgid "Left Shift" msgstr "左Shiftキー" -#: src/supertux/menu/keyboard_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:98 msgid "Right Control" msgstr "右Controlキー" -#: src/supertux/menu/keyboard_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:100 msgid "Left Control" msgstr "左Controlキー" -#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/keyboard_menu.cpp:102 msgid "Right Alt" msgstr "右Altキー" -#: src/supertux/menu/keyboard_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:104 msgid "Left Alt" msgstr "左Altキー" -#: src/supertux/menu/keyboard_menu.cpp:84 +#: src/supertux/menu/keyboard_menu.cpp:106 msgid "Right Command" msgstr "右のコマンドキー" -#: src/supertux/menu/keyboard_menu.cpp:86 +#: src/supertux/menu/keyboard_menu.cpp:108 msgid "Left Command" msgstr "左のコマンドキー" -#: src/supertux/menu/keyboard_menu.cpp:100 +#: src/supertux/menu/keyboard_menu.cpp:122 msgid "Press Key" msgstr "キーを押してください" -#: src/supertux/menu/language_menu.cpp:40 +#: src/supertux/menu/language_menu.cpp:43 msgid "Language" msgstr "言語" -#: src/supertux/menu/language_menu.cpp:42 +#: src/supertux/menu/language_menu.cpp:45 msgid "" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:55 +#: src/supertux/menu/joystick_menu.cpp:57 msgid "Manual Configuration" msgstr "手動構成" -#: src/supertux/menu/joystick_menu.cpp:57 +#: src/supertux/menu/joystick_menu.cpp:59 msgid "" "Use manual configuration instead of SDL2's automatic GameController support" -msgstr "SDL2 の自動 GameController サポートの代わりに、手動構成を使用します" +msgstr "SDL2の自動GameControllerサポートの代わりに、手動構成を使用します" -#: src/supertux/menu/joystick_menu.cpp:75 +#: src/supertux/menu/joystick_menu.cpp:77 msgid "Pause/Menu" msgstr "ポーズ/メニュー" -#: src/supertux/menu/joystick_menu.cpp:91 +#: src/supertux/menu/joystick_menu.cpp:93 msgid "No Joysticks found" msgstr "ジョイスティックが見つかりません" -#: src/supertux/menu/joystick_menu.cpp:92 +#: src/supertux/menu/joystick_menu.cpp:94 msgid "Scan for Joysticks" msgstr "ジョイスティックを検索" -#: src/supertux/menu/joystick_menu.cpp:125 +#: src/supertux/menu/joystick_menu.cpp:127 msgid "Press Button" msgstr "ボタンを押してください" -#: src/supertux/menu/joystick_menu.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:164 msgid "Axis " msgstr "軸" -#: src/supertux/menu/joystick_menu.cpp:165 +#: src/supertux/menu/joystick_menu.cpp:167 msgid "-" msgstr "-" -#: src/supertux/menu/joystick_menu.cpp:167 +#: src/supertux/menu/joystick_menu.cpp:169 msgid "+" msgstr "+" -#: src/supertux/menu/joystick_menu.cpp:174 +#: src/supertux/menu/joystick_menu.cpp:176 msgid "X2" msgstr "X2" -#: src/supertux/menu/joystick_menu.cpp:176 +#: src/supertux/menu/joystick_menu.cpp:178 msgid "Y2" msgstr "Y2" -#: src/supertux/menu/joystick_menu.cpp:189 +#: src/supertux/menu/joystick_menu.cpp:191 msgid "Hat Up" msgstr "ハットスイッチを上に" -#: src/supertux/menu/joystick_menu.cpp:193 +#: src/supertux/menu/joystick_menu.cpp:195 msgid "Hat Down" msgstr "ハットスイッチを下に" -#: src/supertux/menu/joystick_menu.cpp:197 +#: src/supertux/menu/joystick_menu.cpp:199 msgid "Hat Left" msgstr "ハットスイッチを左に" -#: src/supertux/menu/joystick_menu.cpp:201 +#: src/supertux/menu/joystick_menu.cpp:203 msgid "Hat Right" msgstr "ハットスイッチを右に" @@ -2845,58 +3954,53 @@ msgstr "ポーズ" msgid "Leave World" msgstr "ワールドを離れる" -#: src/supertux/menu/download_dialog.cpp:27 +#: src/supertux/menu/download_dialog.cpp:42 msgid "Abort Download" msgstr "ダウンロードを中止" -#: src/supertux/menu/download_dialog.cpp:42 -msgid "Error:\n" -msgstr "エラー:\n" - -#: src/supertux/menu/download_dialog.cpp:96 -msgid "Close" -msgstr "閉じる" - -#: src/supertux/menu/cheat_menu.cpp:33 -msgid "Bonus: Fire x 64" -msgstr "ボーナス:火×64" - -#: src/supertux/menu/cheat_menu.cpp:34 -msgid "Bonus: Ice x 64" -msgstr "おまけ:氷×64" - -#: src/supertux/menu/cheat_menu.cpp:35 -msgid "Bonus: Air x 64" -msgstr "おまけ:エアー×64" - -#: src/supertux/menu/cheat_menu.cpp:36 -msgid "Bonus: Earth x 64" -msgstr "おまけ:土×64" +#: src/supertux/menu/download_dialog.cpp:59 +#, c++-format +msgid "" +"Error:\n" +"{}" +msgstr "" -#: src/supertux/menu/cheat_menu.cpp:37 +#: src/supertux/menu/cheat_menu.cpp:38 msgid "Bonus: Star" msgstr "ボーナス: スター" -#: src/supertux/menu/cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:39 msgid "Shrink Tux" msgstr "Tuxを小さくする" -#: src/supertux/menu/cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:40 msgid "Kill Tux" msgstr "Tuxを殺す" +#: src/supertux/menu/cheat_menu.cpp:55 +msgid "Prevent Death" +msgstr "死なないようにする" + +#: src/supertux/menu/addon_file_install_menu.cpp:32 +msgid "Install Add-on from file" +msgstr "ファイルからアドオンをインストール" + +#: src/supertux/menu/addon_file_install_menu.cpp:34 +msgid "Drag and drop add-on ZIP archive" +msgstr "アドオンのZIPアーカイブをドラッグ&ドロップ" + #: src/supertux/menu/particle_editor_menu.cpp:32 msgid "Particle Editor" msgstr "パーティクルエディタ" #: src/supertux/menu/particle_editor_menu.cpp:36 -#: src/supertux/menu/editor_menu.cpp:45 +#: src/supertux/menu/editor_menu.cpp:60 msgid "Return to Editor" msgstr "エディターに戻る" #: src/supertux/menu/particle_editor_menu.cpp:37 msgid "New Particle Config" -msgstr "新しいパーティクル構成" +msgstr "新しいパーティクル設定" #: src/supertux/menu/particle_editor_menu.cpp:38 msgid "Save Particle Config" @@ -2908,14 +4012,14 @@ msgstr "パーティクル設定を名前を付けて保存..." #: src/supertux/menu/particle_editor_menu.cpp:40 msgid "Load Another Particle Config" -msgstr "別のパーティクル設定をロードする" +msgstr "別のパーティクル設定を読み込む" #: src/supertux/menu/particle_editor_menu.cpp:44 msgid "Open Particle Directory" -msgstr "オープン粒子ディレクトリ" +msgstr "パーティクルディレクトリを開く" #: src/supertux/menu/particle_editor_menu.cpp:45 -#: src/supertux/menu/editor_menu.cpp:88 +#: src/supertux/menu/editor_menu.cpp:118 msgid "Keyboard Shortcuts" msgstr "キーボードショートカット" @@ -2923,7 +4027,7 @@ msgstr "キーボードショートカット" msgid "Exit Particle Editor" msgstr "パーティクルエディタを終了する" -#: src/supertux/menu/particle_editor_menu.cpp:120 +#: src/supertux/menu/particle_editor_menu.cpp:121 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -2933,20 +4037,20 @@ msgid "" "Ctrl+O = Open\n" "Ctrl+Z = Undo\n" "Ctrl+Y = Redo" -msgstr "キーボードショートカット:\n---------------------\nEsc = メニューを開く\nCtrl+S = 保存\nCtrl+Shift+S = 名前をつけて保存\nCtrl+O = 開く\nCtrl+Z = 元に戻す\nCtrl+Y = やり直し" +msgstr "キーボードショートカット:\n---------------------\nEsc = メニューを開く\nCtrl+S = 保存\nCtrl+Shift+S = 名前を付けて保存\nCtrl+O = 開く\nCtrl+Z = 元に戻す\nCtrl+Y = やり直し" -#: src/supertux/menu/particle_editor_menu.cpp:121 -#: src/supertux/menu/editor_menu.cpp:176 +#: src/supertux/menu/particle_editor_menu.cpp:122 +#: src/supertux/menu/editor_menu.cpp:206 msgid "Got it!" msgstr "了解" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:86 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Worldmap Settings" msgstr "ワールドマップの設定" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:86 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Level Settings" msgstr "レベルの設定" @@ -2954,7 +4058,7 @@ msgstr "レベルの設定" msgid "Author" msgstr "作成者" -#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1166 +#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1253 msgid "Contact" msgstr "連絡先" @@ -2986,99 +4090,129 @@ msgstr "このレベルの作成者を入力してください。" msgid "Please enter a license for this level." msgstr "このレベルのライセンスを入力してください。" -#: src/supertux/menu/editor_menu.cpp:38 +#: src/supertux/menu/editor_menu.cpp:53 msgid "tiny tile (4px)" msgstr "最小 (4px)" -#: src/supertux/menu/editor_menu.cpp:39 +#: src/supertux/menu/editor_menu.cpp:54 msgid "small tile (8px)" msgstr "小 (8px)" -#: src/supertux/menu/editor_menu.cpp:40 +#: src/supertux/menu/editor_menu.cpp:55 msgid "medium tile (16px)" msgstr "中 (16px)" -#: src/supertux/menu/editor_menu.cpp:41 +#: src/supertux/menu/editor_menu.cpp:56 msgid "big tile (32px)" msgstr "大 (32px)" -#: src/supertux/menu/editor_menu.cpp:46 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Worldmap" msgstr "ワールドマップを保存" -#: src/supertux/menu/editor_menu.cpp:46 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Level" msgstr "レベルを保存" -#: src/supertux/menu/editor_menu.cpp:55 +#: src/supertux/menu/editor_menu.cpp:65 msgid "Test Level" msgstr "レベルをテスト" -#: src/supertux/menu/editor_menu.cpp:59 +#: src/supertux/menu/editor_menu.cpp:67 msgid "Test Worldmap" msgstr "ワールドマップをテスト" -#: src/supertux/menu/editor_menu.cpp:62 +#: src/supertux/menu/editor_menu.cpp:72 msgid "Share Level" msgstr "レベルを共有" -#: src/supertux/menu/editor_menu.cpp:64 +#: src/supertux/menu/editor_menu.cpp:74 msgid "Package Add-On" -msgstr "アドオンにパッケージ" +msgstr "アドオンとしてパッケージ化" -#: src/supertux/menu/editor_menu.cpp:66 +#: src/supertux/menu/editor_menu.cpp:76 msgid "Open Level Directory" msgstr "レベルのディレクトリを開く" -#: src/supertux/menu/editor_menu.cpp:70 +#: src/supertux/menu/editor_menu.cpp:79 msgid "Edit Another Level" msgstr "別のレベルを編集" -#: src/supertux/menu/editor_menu.cpp:73 +#: src/supertux/menu/editor_menu.cpp:81 msgid "Edit Another World" msgstr "別のワールドを編集" -#: src/supertux/menu/editor_menu.cpp:77 +#: src/supertux/menu/editor_menu.cpp:86 +msgid "Convert all tiles in the level using converters." +msgstr "コンバーターを使用して、レベル内のすべてのタイルを変換します。" + +#: src/supertux/menu/editor_menu.cpp:90 msgid "Grid Size" msgstr "グリッドサイズ" -#: src/supertux/menu/editor_menu.cpp:78 +#: src/supertux/menu/editor_menu.cpp:91 msgid "Show Grid" msgstr "グリッドを表示" -#: src/supertux/menu/editor_menu.cpp:79 +#: src/supertux/menu/editor_menu.cpp:92 msgid "Grid Snapping" msgstr "グリッドにスナップ" -#: src/supertux/menu/editor_menu.cpp:80 +#: src/supertux/menu/editor_menu.cpp:93 msgid "Render Background" msgstr "背景を表示" -#: src/supertux/menu/editor_menu.cpp:81 +#: src/supertux/menu/editor_menu.cpp:94 msgid "Render Light" msgstr "光を表示" -#: src/supertux/menu/editor_menu.cpp:82 +#: src/supertux/menu/editor_menu.cpp:95 msgid "Autotile Mode" msgstr "自動タイル作成モード" -#: src/supertux/menu/editor_menu.cpp:83 +#: src/supertux/menu/editor_menu.cpp:96 msgid "Enable Autotile Help" msgstr "自動タイル作成モードを有効にする" -#: src/supertux/menu/editor_menu.cpp:84 +#: src/supertux/menu/editor_menu.cpp:97 +msgid "Enable Object Undo Tracking" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:100 +msgid "Undo Stack Size" +msgstr "アンドゥのスタックサイズ" + +#: src/supertux/menu/editor_menu.cpp:102 msgid "Autosave Frequency" msgstr "自動保存する間隔" -#: src/supertux/menu/editor_menu.cpp:91 +#: src/supertux/menu/editor_menu.cpp:108 +msgid "Check for Deprecated Tiles" +msgstr "非推奨のタイルを確認" + +#: src/supertux/menu/editor_menu.cpp:109 +msgid "Check if any deprecated tiles are currently present in the level." +msgstr "レベルに非推奨のタイルが存在していないか確認します。" + +#: src/supertux/menu/editor_menu.cpp:110 +msgid "Show Deprecated Tiles" +msgstr "非推奨のタイルを表示" + +#: src/supertux/menu/editor_menu.cpp:111 +msgid "" +"Indicate all deprecated tiles on the active tilemap, without the need of " +"hovering over." +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:121 msgid "Exit Level Editor" msgstr "レベルエディターを終了" -#: src/supertux/menu/editor_menu.cpp:140 +#: src/supertux/menu/editor_menu.cpp:170 msgid "Do you want to package this world as an add-on?" -msgstr "このワールドをアドオンとしてパッケージしますか?" +msgstr "このワールドをアドオンとしてパッケージ化しますか?" -#: src/supertux/menu/editor_menu.cpp:163 +#: src/supertux/menu/editor_menu.cpp:196 msgid "" "We encourage you to share your levels in the SuperTux forum.\n" "To find your level, click the\n" @@ -3086,7 +4220,7 @@ msgid "" "Do you want to go to the forum now?" msgstr "SuperTuxフォーラムで自作のレベルを共有することをおすすめします。\n自作のレベルを見つけるには、メニュー項目の\n\"レベルディレクトリを開く\"をクリックしてください。\n今すぐフォーラムに移動しますか?" -#: src/supertux/menu/editor_menu.cpp:175 +#: src/supertux/menu/editor_menu.cpp:205 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -3097,54 +4231,217 @@ msgid "" "Ctrl+Y = Redo\n" "F6 = Render Light\n" "F7 = Grid Snapping\n" -"F8 = Show Grid" -msgstr "キーボードショートカット:\n---------------------\nEsc = メニューを開く\nCtrl+S = 保存\nCtrl+T = テスト\nCtrl+Z = 元に戻す\nCtrl+Y = やり直し\nF6 = 光を表示\nF7 = グリッドにスナップ\nF8 = グリッドを表示" +"F8 = Show Grid\n" +"Ctrl++ or Ctrl+Scroll Up = Zoom In\n" +"Ctrl+- or Ctrl+Scroll Down = Zoom Out\n" +"Ctrl+D = Reset Zoom\n" +"\n" +"Scripting Shortcuts:\n" +" ------------- \n" +"Home = Go to beginning of line\n" +"End = Go to end of line\n" +"Left arrow = Go back in text\n" +"Right arrow = Go forward in text\n" +"Backspace = Delete in front of text cursor\n" +"Delete = Delete behind text cursor\n" +"Ctrl+X = Cut whole line\n" +"Ctrl+C = Copy whole line\n" +"Ctrl+V = Paste\n" +"Ctrl+D = Duplicate line\n" +"Ctrl+Z = Undo\n" +"Ctrl+Y = Redo" +msgstr "" -#: src/supertux/menu/editor_delete_level_menu.cpp:53 -msgid "You cannot delete level that you are editing!" -msgstr "編集中のレベルは削除できません。" +#: src/supertux/menu/editor_menu.cpp:232 +msgid "Deprecated tiles are still present in the level." +msgstr "レベルに非推奨のタイルが存在します。" -#: src/supertux/levelintro.cpp:136 -#, c-format -msgid "contributed by %s" -msgstr "%s さんの作品" +#: src/supertux/menu/editor_menu.cpp:239 +msgid "Do you want to show all deprecated tiles on active tilemaps?" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:246 +msgid "There are no more deprecated tiles in the level!" +msgstr "レベルに非推奨のタイルは存在しません!" + +#: src/supertux/menu/multiplayer_player_menu.cpp:40 +msgid "Play with the keyboard" +msgstr "キーボードでプレイ" + +#: src/supertux/menu/multiplayer_player_menu.cpp:58 +msgid "Remove Player" +msgstr "プレイヤーを削除" + +#: src/supertux/menu/multiplayer_player_menu.cpp:82 +msgid "Respawn Player" +msgstr "プレイヤーを再スタート" + +#: src/supertux/menu/multiplayer_player_menu.cpp:108 +msgid "Spawn Player" +msgstr "プレイヤーをスタート" + +#: src/supertux/menu/multiplayer_player_menu.cpp:136 +msgid "Controllers" +msgstr "コントローラー" + +#: src/supertux/menu/multiplayer_player_menu.cpp:152 +msgid "" +"This controller does not support rumbling;\n" +"please check the controllers manually." +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:157 +msgid "" +"This SuperTux build does not support rumbling\n" +"controllers; please check the controllers manually." +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:184 +msgid "" +"This joystick does not support rumbling;\n" +"please check the joysticks manually." +msgstr "" -#: src/supertux/levelintro.cpp:169 +#: src/supertux/menu/multiplayer_player_menu.cpp:189 +msgid "" +"This SuperTux build does not support rumbling\n" +"joysticks; please check the joysticks manually." +msgstr "" + +#: src/supertux/menu/editor_delete_level_menu.cpp:59 +msgid "No levels available" +msgstr "利用可能なレベルなし" + +#: src/supertux/menu/editor_delete_level_menu.cpp:79 +msgid "You cannot delete the level that you are editing!" +msgstr "編集中のレベルは削除できません!" + +#: src/supertux/menu/editor_delete_level_menu.cpp:82 +#, c++-format +msgid "You are about to delete level \"{}\". Are you sure?" +msgstr "レベル \"{}\" を削除しようとしています。よろしいですか?" + +#: src/supertux/levelintro.cpp:137 +#, c++-format +msgid "contributed by {}" +msgstr "" + +#: src/supertux/levelintro.cpp:184 msgid "Badguys killed" msgstr "倒した敵の数" -#: src/supertux/levelintro.cpp:177 +#: src/supertux/levelintro.cpp:192 msgid "Best time" msgstr "最短時間" -#: src/supertux/levelintro.cpp:181 +#: src/supertux/levelintro.cpp:196 msgid "Level target time" msgstr "レベルの目標時間" -#: src/supertux/tile_set.cpp:118 +#: src/supertux/tile_set.cpp:113 msgid "Others" msgstr "その他" -#: src/supertux/moving_object.cpp:55 +#: src/supertux/direction.cpp:67 +msgid "up" +msgstr "上へ" + +#: src/supertux/direction.cpp:69 +msgid "down" +msgstr "下へ" + +#: src/supertux/moving_object.cpp:63 msgid "Region" msgstr "地域" -#: src/supertux/main.cpp:563 +#: src/supertux/main.cpp:801 +#, c++-format +msgid "New release: SuperTux v{}!" +msgstr "新しいバージョン: SuperTux v{}!" + +#: src/supertux/main.cpp:804 +#, c++-format msgid "" -"The UBports version is under heavy development!\n" -"If you encounter issues, PLEASE contact the maintainter\n" -"at https://github.com/supertux/supertux/issues or on the\n" -"Open Store's Telegram at https://open-store.io/telegram" -msgstr "UBports バージョンは鋭意開発中です。\n問題が発生した場合は、メンテナンス担当者に連絡してください\nhttps://github.com/supertux/supertux/issues または\nhttps://open-store.io/telegram で Store の Telegram を開く" +"A new release of SuperTux (v{}) is available!\n" +"For more information, you can visit the SuperTux website.\n" +"\n" +"Do you want to visit the website now?" +msgstr "SuperTux (v{}) が利用可能です!\n詳細はSuperTuxのWebサイトで確認できます。\n\n今すぐWebサイトで確認しますか?" + +#: src/supertux/main.cpp:815 +msgid "Checking for new releases..." +msgstr "新しいバージョンを確認しています…" #: src/control/joystick_config.cpp:85 msgid "Joystick Mappings" msgstr "ジョイスティックのマッピング" -#: src/worldmap/worldmap_parser.cpp:167 +#: src/worldmap/sprite_change.cpp:91 +msgid "Stay action" +msgstr "滞在行動" + +#: src/worldmap/sprite_change.cpp:92 +msgid "Initial stay action" +msgstr "初期滞在行動" + +#: src/worldmap/sprite_change.cpp:93 +msgid "Stay group" +msgstr "グループにとどまる" + +#: src/worldmap/sprite_change.cpp:94 +msgid "Change on touch" +msgstr "タッチに変更" + +#: src/worldmap/special_tile.hpp:36 +msgid "Special Tile" +msgstr "特別なタイル" + +#: src/worldmap/level_tile.hpp:36 src/worldmap/level_tile.cpp:161 +msgid "Level" +msgstr "レベル" + +#: src/worldmap/teleporter.cpp:50 +msgid "Automatic" +msgstr "自動" + +#: src/worldmap/teleporter.cpp:51 +msgid "Target worldmap" +msgstr "ターゲットのワールドマップ" + +#: src/worldmap/sprite_change.hpp:35 +msgid "Sprite Change" +msgstr "スプライトの変更" + +#: src/worldmap/special_tile.cpp:75 +msgid "Show message" +msgstr "メッセージを表示" + +#: src/worldmap/level_tile.cpp:84 msgid "" msgstr "" +#: src/worldmap/level_tile.cpp:162 +msgid "Outro script" +msgstr "終了時のスクリプト" + +#: src/worldmap/level_tile.cpp:163 +msgid "Auto play" +msgstr "自動的に開始" + +#: src/worldmap/level_tile.cpp:164 +msgid "Title colour" +msgstr "タイトルの色" + +#: src/worldmap/teleporter.hpp:34 +msgid "Teleporter" +msgstr "テレポート" + +#: src/editor/tip.cpp:80 +msgid "" +"This object's current functionality is deprecated.\n" +"Updating to get its latest functionality is recommended." +msgstr "" + #: src/editor/node_marker.cpp:122 msgid "Path Node" msgstr "パスの接点" @@ -3157,85 +4454,82 @@ msgstr "CTRL を押してベジェ ハンドルを移動します" msgid "Easing" msgstr "イージング" -#: src/editor/object_settings.cpp:119 -msgid "up" -msgstr "上へ" - -#: src/editor/object_settings.cpp:119 -msgid "down" -msgstr "下へ" - -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "West" msgstr "西" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "East" msgstr "東" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "North" msgstr "北" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "South" msgstr "南" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "One shot" msgstr "一度" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "Ping-pong" msgstr "往復" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "Circular" msgstr "円形" -#: src/editor/object_settings.cpp:144 -msgid "Unordered" -msgstr "順不同" +#: src/editor/layers_widget.cpp:331 +#, c++-format +msgid "Sector: {}" +msgstr "" -#: src/editor/object_option.cpp:85 +#: src/editor/object_option.cpp:92 msgid "true" msgstr "はい" -#: src/editor/object_option.cpp:85 +#: src/editor/object_option.cpp:92 msgid "false" msgstr "いいえ" -#: src/editor/object_option.cpp:271 src/editor/object_option.cpp:320 +#: src/editor/object_option.cpp:308 src/editor/object_option.cpp:356 msgid "invalid" msgstr "無効" -#: src/editor/object_option.cpp:580 +#: src/editor/object_option.cpp:665 +msgid "Scale X" +msgstr "" + +#: src/editor/object_option.cpp:666 +msgid "Scale Y" +msgstr "" + +#: src/editor/object_option.cpp:667 +msgid "Offset X" +msgstr "オフセットX" + +#: src/editor/object_option.cpp:668 +msgid "Offset Y" +msgstr "オフセットY" + +#: src/editor/object_option.cpp:672 src/editor/object_menu.cpp:67 msgid "Remove" msgstr "削除" -#: src/editor/object_option.cpp:597 +#: src/editor/object_option.cpp:689 msgid "Test from here" msgstr "ここからテスト" -#: src/editor/object_option.cpp:614 +#: src/editor/object_option.cpp:706 msgid "Open Particle Editor" msgstr "パーティクルエディタを開く" -#: src/editor/worldmap_objects.hpp:56 src/editor/worldmap_objects.cpp:127 -msgid "Level" -msgstr "レベル" - -#: src/editor/worldmap_objects.hpp:79 -msgid "Teleporter" -msgstr "テレポート" - -#: src/editor/worldmap_objects.hpp:119 -msgid "Sprite Change" -msgstr "スプライトの変更" - -#: src/editor/worldmap_objects.hpp:140 -msgid "Special tile" -msgstr "スペシャルタイル" +#: src/editor/particle_editor.cpp:114 +msgid "Change texture... ->" +msgstr "" #: src/editor/particle_editor.cpp:126 msgid "Max amount" @@ -3317,29 +4611,76 @@ msgstr "常に破壊する" msgid "Offscreen mode" msgstr "オフスクリーンモード" -#: src/editor/particle_editor.cpp:765 +#: src/editor/particle_editor.cpp:229 +msgid "Clear" +msgstr "" + +#: src/editor/particle_editor.cpp:245 +msgid "<- General settings" +msgstr "" + +#: src/editor/particle_editor.cpp:255 +msgid "Likeliness" +msgstr "" + +#: src/editor/particle_editor.cpp:266 +msgid "Color (RGBA)" +msgstr "" + +#: src/editor/particle_editor.cpp:311 +msgid "Scale (x, y)" +msgstr "" + +#: src/editor/particle_editor.cpp:332 +msgid "Hitbox scale (x, y)" +msgstr "" + +#: src/editor/particle_editor.cpp:353 +msgid "Hitbox offset relative to scale" +msgstr "" + +#: src/editor/particle_editor.cpp:372 +msgid "Change texture..." +msgstr "" + +#: src/editor/particle_editor.cpp:766 msgid "" "This particle configuration contains unsaved changes,\n" "do you want to save?" -msgstr "このパーティクル設定には保存されていない変更が含まれています。\n保存したいですか?" +msgstr "このパーティクル設定には保存されていない変更が含まれています。\n保存しますか?" -#: src/editor/particle_editor.cpp:773 +#: src/editor/particle_editor.cpp:774 msgid "Save as" msgstr "名前を付けて保存" -#: src/editor/editor.cpp:566 +#: src/editor/editor.cpp:577 +msgid "" +"This level contains deprecated tiles.\n" +"It is strongly recommended to replace all deprecated tiles\n" +"to avoid loss of compatibility in future versions." +msgstr "" + +#: src/editor/editor.cpp:579 +msgid "Tip: Turn on \"Show Deprecated Tiles\" from the level editor menu." +msgstr "ヒント: レベルエディターのメニューから、\"非推奨のタイルを表示\"をオンにしてください。" + +#: src/editor/editor.cpp:626 msgid "" "Don't forget that your levels and assets\n" "aren't saved between sessions!\n" "If you want to keep your levels, download them\n" "from the \"Manage Assets\" menu." -msgstr "レベルと資産を忘れないでください\nセッション間では保存されません。\nレベルを保持したい場合は、ダウンロードしてください\n「資産の管理」メニューから。" +msgstr "レベルと資産はセッションをまたぐと\n破棄されます!\nレベルを保持したい場合は、\"資産の管理\"\nメニューからダウンロードしてください。" -#: src/editor/editor.cpp:582 +#: src/editor/editor.cpp:661 msgid "This level contains unsaved changes, do you want to save?" msgstr "このレベルには未保存の変更があります。保存しますか?" -#: src/editor/editor.cpp:622 +#: src/editor/editor.cpp:662 +msgid "This level may contain unsaved changes, do you want to save?" +msgstr "このレベルには未保存の変更がある可能性があります。保存しますか?" + +#: src/editor/editor.cpp:797 msgid "" "Some obsolete add-ons are still active\n" "and might cause collisions with default Super Tux structure.\n" @@ -3347,103 +4688,81 @@ msgid "" "Disabling these add-ons will not delete your game progress." msgstr "一部の古いアドオンが有効になっているため、\nSuperTuxデフォルトのストラクチャーとの競合を起こしている可能性があります。\nこれらのアドオンをメニューで有効にすることができます。\nこれらのアドオンを無効にしても、ゲームはリセットされません。" -#: src/editor/editor.cpp:625 +#: src/editor/editor.cpp:800 msgid "Disable add-ons" msgstr "アドオンを無効にする" -#: src/editor/editor.cpp:630 +#: src/editor/editor.cpp:805 msgid "Ignore (not advised)" msgstr "無視 (非推奨)" -#: src/editor/editor.cpp:634 +#: src/editor/editor.cpp:809 msgid "Leave editor" msgstr "エディターを終了" -#: src/editor/editor.cpp:853 +#: src/editor/editor.cpp:1023 msgid "" "Couldn't find a \"main\" sector.\n" "Please change the name of the sector where\n" "you'd like the player to start to \"main\"" msgstr "\"main\" セクターを見つけられませんでした。\nプレイヤーが開始するセクターの名前を\n\"main\" に変更してください。" -#: src/editor/editor.cpp:857 +#: src/editor/editor.cpp:1027 msgid "" "Couldn't find a \"main\" spawnpoint.\n" " Please change the name of the spawnpoint where\n" "you'd like the player to start to \"main\"" msgstr "スタート地点 \"main\" を見つけられませんでした。\nプレイヤーのスタート地点の名前を\n\"main\" に変更してください。" -#: src/editor/worldmap_objects.cpp:128 -msgid "Outro script" -msgstr "終了時のスクリプト" - -#: src/editor/worldmap_objects.cpp:129 -msgid "Auto play" -msgstr "自動的に開始" - -#: src/editor/worldmap_objects.cpp:131 -msgid "Title colour" -msgstr "タイトルの色" - -#: src/editor/worldmap_objects.cpp:173 -msgid "Automatic" -msgstr "自動" - -#: src/editor/worldmap_objects.cpp:175 -msgid "Target worldmap" -msgstr "ターゲットのワールドマップ" - -#: src/editor/worldmap_objects.cpp:238 -msgid "Stay action" -msgstr "滞在行動" +#: src/editor/object_menu.cpp:60 +msgid "Patch Notes" +msgstr "パッチノート" -#: src/editor/worldmap_objects.cpp:239 -msgid "Initial stay action" -msgstr "初期滞在行動" - -#: src/editor/worldmap_objects.cpp:240 -msgid "Stay group" -msgstr "グループにとどまる" - -#: src/editor/worldmap_objects.cpp:241 -msgid "Change on touch" -msgstr "タッチに変更" +#: src/editor/object_menu.cpp:84 +msgid "" +"This will update the object to its latest functionality.\n" +"Check the \"Patch Notes\" for more information.\n" +"\n" +"Keep in mind this is very likely to break the proper behaviour of the object.\n" +"Make sure to re-check any behaviour, related to the object." +msgstr "" -#: src/editor/worldmap_objects.cpp:271 -msgid "Show message" -msgstr "メッセージを表示" +#: src/editor/object_menu.cpp:98 +#, c++-format +msgid "Patch notes for v{}:" +msgstr "v{}のパッチノート:" -#: src/editor/worldmap_objects.cpp:273 -msgid "Invisible" -msgstr "非表示" +#: src/editor/overlay_widget.cpp:1062 +msgid "Cannot select deprecated tiles" +msgstr "非推奨のタイルを選択できません" -#: src/editor/overlay_widget.cpp:1297 +#: src/editor/overlay_widget.cpp:1567 msgid "Autotile mode is on" msgstr "自動タイル作成モードがオン" -#: src/editor/overlay_widget.cpp:1299 +#: src/editor/overlay_widget.cpp:1571 msgid "Hold Ctrl to enable autotile" msgstr "Ctrlを押して自動的にタイルを作成" -#: src/editor/overlay_widget.cpp:1303 +#: src/editor/overlay_widget.cpp:1578 msgid "Autotile erasing mode is on" msgstr "自動タイル削除モードがオン" -#: src/editor/overlay_widget.cpp:1305 +#: src/editor/overlay_widget.cpp:1582 msgid "Selected tile isn't autotileable" msgstr "自動タイル作成モードが使えないタイルです" -#: src/editor/overlay_widget.cpp:1308 +#: src/editor/overlay_widget.cpp:1587 msgid "Hold Ctrl to enable autotile erasing" -msgstr "Ctrlを押して自動的にタイルを削除" +msgstr "Ctrlを押し続けて自動的にタイルを削除" #: data//credits.stxt:25 msgid "Current SuperTux Team" msgstr "現在のSuperTuxチーム" #: data//credits.stxt:30 -msgid "Programming, project lead ad interim" -msgstr "プログラミング、プロジェクトリーダー" +msgid "Maintainer, Programming" +msgstr "" #: data//credits.stxt:35 msgid "Graphics, Level Design, Story" @@ -3453,12 +4772,12 @@ msgstr "グラフィックス、レベルデザイン、ストーリー" msgid "Level Design, Story, Optimisation, Coordination" msgstr "レベルデザイン、ストーリー、最適化、調整" -#: data//credits.stxt:45 data//credits.stxt:105 data//credits.stxt:191 -#: data//credits.stxt:519 +#: data//credits.stxt:45 data//credits.stxt:120 data//credits.stxt:206 +#: data//credits.stxt:538 msgid "Graphics" msgstr "グラフィックス" -#: data//credits.stxt:50 data//credits.stxt:87 data//credits.stxt:93 +#: data//credits.stxt:50 data//credits.stxt:102 data//credits.stxt:108 msgid "Graphics, Programming, Level Design" msgstr "グラフィックス、プログラミング、レベルデザイン" @@ -3467,256 +4786,266 @@ msgid "Features and Programming" msgstr "機能とプログラミング" #: data//credits.stxt:60 +msgid "Minor features and programming" +msgstr "マイナーな機能とプログラミング" + +#: data//credits.stxt:65 msgid "Programming, Level Updates" msgstr "プログラミング、レベルアップデート" -#: data//credits.stxt:65 +#: data//credits.stxt:70 msgid "Graphics, Programming" msgstr "グラフィックス、プログラミング" -#: data//credits.stxt:70 data//credits.stxt:135 data//credits.stxt:140 -#: data//credits.stxt:145 data//credits.stxt:150 data//credits.stxt:165 -#: data//credits.stxt:170 data//credits.stxt:515 data//credits.stxt:527 +#: data//credits.stxt:75 data//credits.stxt:85 data//credits.stxt:150 +#: data//credits.stxt:155 data//credits.stxt:160 data//credits.stxt:165 +#: data//credits.stxt:180 data//credits.stxt:185 data//credits.stxt:534 +#: data//credits.stxt:546 msgid "Programming" msgstr "プログラミング" -#: data//credits.stxt:76 +#: data//credits.stxt:80 data//credits.stxt:266 +msgid "Level Design" +msgstr "レベルデザイン" + +#: data//credits.stxt:91 msgid "Original Developers" msgstr "オリジナルの開発者" -#: data//credits.stxt:81 +#: data//credits.stxt:96 msgid "Original Developer" msgstr "オリジナルの開発者" -#: data//credits.stxt:99 +#: data//credits.stxt:114 msgid "Music, Level Design" msgstr "音楽、レベルデザイン" -#: data//credits.stxt:111 +#: data//credits.stxt:126 msgid "Programming, Graphics, Level Design" msgstr "プログラミング、グラフィックス、レベルデザイン" -#: data//credits.stxt:117 +#: data//credits.stxt:132 msgid "Programming, Level Design" msgstr "プログラミング、レベルザイン" -#: data//credits.stxt:123 +#: data//credits.stxt:138 msgid "Graphics, Story" msgstr "グラフィックス、ストーリー" -#: data//credits.stxt:129 +#: data//credits.stxt:144 msgid "Programming, Documentation" msgstr "プログラミング、ドキュメント作成" -#: data//credits.stxt:155 +#: data//credits.stxt:170 msgid "Coordination" msgstr "調整" -#: data//credits.stxt:160 +#: data//credits.stxt:175 msgid "Programming, \"Flexlay\" Level editor" msgstr "プログラミング、 Flexlay レベルエディター" -#: data//credits.stxt:175 +#: data//credits.stxt:190 msgid "Windows build fixes" msgstr "Windows ビルドの修正" -#: data//credits.stxt:180 +#: data//credits.stxt:195 msgid "Packaging, Nightly builds" msgstr "パッケージ化、アルファ版ビルド" -#: data//credits.stxt:185 +#: data//credits.stxt:200 msgid "Translation Guru (and many details anyone else could have done)" msgstr "尊敬すべき翻訳者 (その他、たくさんの協力者の方々)" -#: data//credits.stxt:251 -msgid "Level Design" -msgstr "レベルデザイン" - -#: data//credits.stxt:431 +#: data//credits.stxt:450 msgid "Additional contributors" msgstr "貢献者" -#: data//credits.stxt:436 +#: data//credits.stxt:455 msgid "Bug fixes" msgstr "バグ修正" -#: data//credits.stxt:440 +#: data//credits.stxt:459 msgid "Scripting functions, Level fixes" msgstr "スクリプト機能、レベル修正" -#: data//credits.stxt:444 +#: data//credits.stxt:463 msgid "Code quality fixes" msgstr "コードリファクタリング" -#: data//credits.stxt:448 data//credits.stxt:452 data//credits.stxt:456 -#: data//credits.stxt:483 +#: data//credits.stxt:467 data//credits.stxt:471 data//credits.stxt:475 +#: data//credits.stxt:502 msgid "Various contributions" msgstr "様々な協力" -#: data//credits.stxt:460 +#: data//credits.stxt:479 msgid "Build issue fix" msgstr "ビルドの問題修正" -#: data//credits.stxt:464 data//credits.stxt:468 +#: data//credits.stxt:483 data//credits.stxt:487 msgid "Code contributions" msgstr "プログラミングの協力" -#: data//credits.stxt:471 +#: data//credits.stxt:490 msgid "Code contribution, AppData file" msgstr "プログラミングの協力、アプリデータファイル" -#: data//credits.stxt:475 +#: data//credits.stxt:494 msgid "Bug fix" msgstr "バグ修正" -#: data//credits.stxt:479 +#: data//credits.stxt:498 msgid "Menu reorganization" msgstr "メニューの整理" -#: data//credits.stxt:487 +#: data//credits.stxt:506 msgid "Fixing tile bugs" msgstr "タイルのバグ修正" -#: data//credits.stxt:491 +#: data//credits.stxt:510 msgid "Build error fix" msgstr "ビルドエラー修正" -#: data//credits.stxt:495 +#: data//credits.stxt:514 msgid "Scripting function fix" msgstr "スクリプト機能の修正" -#: data//credits.stxt:499 +#: data//credits.stxt:518 msgid "New features and notable updates" msgstr "新機能と注目すべきアップデート" -#: data//credits.stxt:503 +#: data//credits.stxt:522 msgid "Support for \"glbinding\" as optional OpenGL binding" msgstr "オプションでの glbinding による OpenGL バインディング対応" -#: data//credits.stxt:507 +#: data//credits.stxt:526 msgid "New menu code" msgstr "新メニューコード" -#: data//credits.stxt:511 +#: data//credits.stxt:530 msgid "Big Tux Walking Sprites improvements" msgstr "大きい Tux ウォーキング スプライトの改善" -#: data//credits.stxt:523 data//credits.stxt:531 +#: data//credits.stxt:542 data//credits.stxt:550 msgid "Contrib Programming" msgstr "プログラムの協力" -#: data//credits.stxt:535 +#: data//credits.stxt:554 msgid "Programming, Previous Maintainer" msgstr "プログラミング、以前のメンテナー" -#: data//credits.stxt:539 +#: data//credits.stxt:558 msgid "Various Contributions" msgstr "さまざまな貢献" -#: data//credits.stxt:543 -msgid "Minor features and programming" -msgstr "マイナーな機能とプログラミング" - -#: data//credits.stxt:547 data//credits.stxt:551 data//credits.stxt:555 -#: data//credits.stxt:559 data//credits.stxt:563 data//credits.stxt:567 -#: data//credits.stxt:571 data//credits.stxt:575 data//credits.stxt:579 -#: data//credits.stxt:583 data//credits.stxt:587 data//credits.stxt:591 +#: data//credits.stxt:562 data//credits.stxt:566 data//credits.stxt:570 +#: data//credits.stxt:574 data//credits.stxt:578 data//credits.stxt:582 +#: data//credits.stxt:586 data//credits.stxt:590 data//credits.stxt:594 +#: data//credits.stxt:598 data//credits.stxt:602 data//credits.stxt:606 +#: data//credits.stxt:610 data//credits.stxt:614 data//credits.stxt:618 +#: data//credits.stxt:622 data//credits.stxt:626 data//credits.stxt:630 +#: data//credits.stxt:634 data//credits.stxt:638 data//credits.stxt:642 +#: data//credits.stxt:646 data//credits.stxt:650 data//credits.stxt:654 +#: data//credits.stxt:658 data//credits.stxt:662 msgid "Contributions" msgstr "貢献" -#: data//credits.stxt:597 +#: data//credits.stxt:668 msgid "Localization" msgstr "多言語対応" -#: data//credits.stxt:1144 +#: data//credits.stxt:1231 msgid " Special Thanks to" msgstr " Special Thanks" -#: data//credits.stxt:1149 +#: data//credits.stxt:1236 msgid "Creator of Tux, the Linux penguin" msgstr "Linux のペンギンである Tux の作者" -#: data//credits.stxt:1153 +#: data//credits.stxt:1240 msgid "SDL, OpenAL and OpenGL" msgstr "SDL、OpenAL、OpenGL" -#: data//credits.stxt:1154 +#: data//credits.stxt:1241 msgid "" "For making such a great gaming experience\n" " possible on Linux" msgstr "Linux 上でこのような素晴らしいゲーム体験を\n作り出せることに" -#: data//credits.stxt:1159 +#: data//credits.stxt:1246 msgid "and you, the player" -msgstr "そして、プレーヤーであるあなた" +msgstr "そして、プレイヤーであるあなた" -#: data//credits.stxt:1160 +#: data//credits.stxt:1247 msgid "for giving this game a chance and playing it" msgstr "プレイしてくださりありがとうございます" -#: data//credits.stxt:1171 +#: data//credits.stxt:1258 msgid "Visit our webpage at" msgstr "以下で私たちの Web ページを参照してください" -#: data//credits.stxt:1180 +#: data//credits.stxt:1267 msgid "Or visit us directly at IRC:" msgstr "または、IRC で直接連絡してください:" -#: data//credits.stxt:1184 +#: data//credits.stxt:1271 msgid "#supertux at web.libera.chat" msgstr "#supertux (web.libera.chat)" -#: data//credits.stxt:1189 +#: data//credits.stxt:1276 msgid "Or at our Forum:" msgstr "フォーラムもご利用いただけます:" -#: data//credits.stxt:1198 +#: data//credits.stxt:1285 msgid "Comments, ideas and suggestions" msgstr "コメント、アイデア、提案" -#: data//credits.stxt:1202 +#: data//credits.stxt:1289 msgid "go to our mailing list" msgstr "メーリングリストに移動" #. l10n: typo contact -#: data//credits.stxt:1212 +#: data//credits.stxt:1299 msgid "Typographical errors can be" msgstr "誤字の訂正は" #. l10n: typo contact -#: data//credits.stxt:1217 +#: data//credits.stxt:1304 msgid "reported to" msgstr "以下で報告できます" #. l10n: typo contact, see -#: data//credits.stxt:1222 +#: data//credits.stxt:1309 msgid "supertux-devel@lists.lethargik.org" msgstr "supertux-devel@lists.lethargik.org" -#: data//credits.stxt:1229 +#: data//credits.stxt:1316 msgid "Want to help…" -msgstr "ヘルプが必要ですか?" +msgstr "貢献をお待ちしています" -#: data//credits.stxt:1234 +#: data//credits.stxt:1321 msgid "…with localization?" -msgstr "翻訳について" +msgstr "翻訳" -#: data//credits.stxt:1244 +#: data//credits.stxt:1331 msgid "…with something else?" -msgstr "その他について" +msgstr "その他" -#: data//credits.stxt:1255 +#: data//credits.stxt:1342 msgid "Thank you for" msgstr "プレイしてくださって" -#: data//credits.stxt:1259 +#: data//credits.stxt:1346 msgid "playing" -msgstr "ありがとうございます。" +msgstr "ありがとうございます" -#: data//credits.stxt:1269 +#: data//credits.stxt:1356 msgid "Penny awaits you in warmer temperatures!" msgstr "Penny は温かい土地であなたを待っていますよ!" +#: data//images/engine/editor/objects.stoi:4 +msgid "Enemies" +msgstr "敵" + #: data//images/engine/editor/objects.stoi:162 msgid "Bosses" msgstr "ボス" @@ -3725,15 +5054,10 @@ msgstr "ボス" msgid "Projectiles" msgstr "発射物" -#: data//images/engine/editor/objects.stoi:187 +#: data//images/engine/editor/objects.stoi:184 msgid "Environment" msgstr "環境" -#: data//images/ice_world.strf:10 data//images/tiles.strf:28 -#: data//images/worldmap.strf:41 -msgid "Snow" -msgstr "雪" - #: data//images/ice_world.strf:80 msgid "Ice Cave & Crystal" msgstr "氷洞窟と結晶" @@ -3742,11 +5066,6 @@ msgstr "氷洞窟と結晶" msgid "Embellishments" msgstr "装飾" -#: data//images/ice_world.strf:211 data//images/tiles.strf:386 -#: data//images/worldmap.strf:67 -msgid "Forest" -msgstr "森" - #: data//images/ice_world.strf:320 msgid "Underground Forest" msgstr "地下の森" @@ -3771,57 +5090,61 @@ msgstr "道" msgid "Water" msgstr "水" -#: data//images/tiles.strf:176 +#: data//images/tiles.strf:252 msgid "Snow Background" msgstr "雪の背景" -#: data//images/tiles.strf:231 -msgid "Snow Mountain" -msgstr "雪山" - -#: data//images/tiles.strf:305 +#: data//images/tiles.strf:300 msgid "Crystal" msgstr "クリスタル" -#: data//images/tiles.strf:532 +#: data//images/tiles.strf:539 msgid "Forest Background" msgstr "森の背景" -#: data//images/tiles.strf:663 +#: data//images/tiles.strf:690 +msgid "Corrupted Forest" +msgstr "腐敗した森" + +#: data//images/tiles.strf:868 +msgid "Corrupted Background" +msgstr "腐敗した背景" + +#: data//images/tiles.strf:991 msgid "Block + Bonus" msgstr "ブロックとボーナス" -#: data//images/tiles.strf:715 +#: data//images/tiles.strf:1069 msgid "Pole + Signs" msgstr "柱と看板" -#: data//images/tiles.strf:760 +#: data//images/tiles.strf:1113 msgid "Liquid" msgstr "液体" -#: data//images/tiles.strf:793 +#: data//images/tiles.strf:1131 msgid "Castle" msgstr "城" -#: data//images/tiles.strf:930 data//images/worldmap.strf:199 +#: data//images/tiles.strf:1231 data//images/worldmap.strf:199 msgid "Halloween" msgstr "ハロウィン" -#: data//images/tiles.strf:958 +#: data//images/tiles.strf:1272 msgid "Industrial" msgstr "工場" -#: data//images/tiles.strf:973 +#: data//images/tiles.strf:1287 msgid "Unisolid + Lightmap" -msgstr "ユニソリッド + ライトマップ" +msgstr "ユニソリッドとライトマップ" -#: data//images/tiles.strf:1000 +#: data//images/tiles.strf:1314 msgid "Miscellaneous" msgstr "その他" -#: data//images/tiles.strf:1043 -msgid "Retro Snow" -msgstr "旧バージョンの雪" +#: data//images/tiles.strf:1342 +msgid "Retro Tiles" +msgstr "レトロタイル" #: data//images/worldmap.strf:24 msgid "Water paths" @@ -3834,3 +5157,19 @@ msgstr "城の道" #: data//images/worldmap.strf:135 msgid "Darker Forest" msgstr "暗い森" + +#: data//images/converters/data.stcd:3 +msgid "Nightly Tiles" +msgstr "" + +#: data//images/converters/data.stcd:5 +msgid "For levels, created in previous Nightly builds." +msgstr "" + +#: data//images/converters/data.stcd:8 +msgid "Pre-0.6.3 Crystal Tiles" +msgstr "" + +#: data//images/converters/data.stcd:10 +msgid "For levels, created in pre-0.6.3 versions, which use crystal tiles." +msgstr "" diff --git a/data/locale/jbo.po b/data/locale/jbo.po index 71eb8b42882..f04851b5d71 100644 --- a/data/locale/jbo.po +++ b/data/locale/jbo.po @@ -1056,7 +1056,7 @@ msgstr "" #: src/supertux/command_line_arguments.cpp:79 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" msgstr "" #: src/supertux/command_line_arguments.cpp:80 @@ -1229,7 +1229,7 @@ msgstr "" #: src/supertux/levelintro.cpp:120 #, c-format -msgid "contributed by %s" +msgid "contributed by {}" msgstr "" #: src/supertux/levelintro.cpp:141 src/supertux/statistics.cpp:119 @@ -1270,7 +1270,7 @@ msgstr "lo munje" #: src/supertux/menu/addon_menu.cpp:83 #, c-format -msgid "%s \"%s\" by \"%s\"" +msgid "{} \"{}\" by \"{}\"" msgstr "" #: src/supertux/menu/addon_menu.cpp:139 @@ -1307,12 +1307,12 @@ msgstr "" #: src/supertux/menu/addon_menu.cpp:224 #, c-format -msgid "Install %s *NEW*" +msgid "Install {} *NEW*" msgstr "" #: src/supertux/menu/addon_menu.cpp:235 #, c-format -msgid "Install %s" +msgid "Install {}" msgstr "" #: src/supertux/menu/addon_menu.cpp:246 @@ -1352,7 +1352,7 @@ msgstr "" #: src/supertux/menu/addon_menu.cpp:361 #, c-format -msgid "Downloading %s" +msgid "Downloading {}" msgstr "" #: src/supertux/menu/addon_menu.cpp:408 @@ -2009,12 +2009,12 @@ msgstr "" #: src/supertux/menu/profile_menu.cpp:37 #, c-format -msgid "[Profile %s]" +msgid "[Profile {}]" msgstr "" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "Profile %s" +msgid "Profile {}" msgstr "" #: src/supertux/menu/world_set_menu.cpp:41 diff --git a/data/locale/km.po b/data/locale/km.po index 8660aa5a8cb..2958021623f 100644 --- a/data/locale/km.po +++ b/data/locale/km.po @@ -1048,7 +1048,7 @@ msgstr "" #: src/supertux/command_line_arguments.cpp:79 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" msgstr "" #: src/supertux/command_line_arguments.cpp:80 @@ -1221,7 +1221,7 @@ msgstr "" #: src/supertux/levelintro.cpp:120 #, c-format -msgid "contributed by %s" +msgid "contributed by {}" msgstr "" #: src/supertux/levelintro.cpp:141 src/supertux/statistics.cpp:119 @@ -1262,7 +1262,7 @@ msgstr "" #: src/supertux/menu/addon_menu.cpp:83 #, c-format -msgid "%s \"%s\" by \"%s\"" +msgid "{} \"{}\" by \"{}\"" msgstr "" #: src/supertux/menu/addon_menu.cpp:139 @@ -1299,12 +1299,12 @@ msgstr "" #: src/supertux/menu/addon_menu.cpp:224 #, c-format -msgid "Install %s *NEW*" +msgid "Install {} *NEW*" msgstr "" #: src/supertux/menu/addon_menu.cpp:235 #, c-format -msgid "Install %s" +msgid "Install {}" msgstr "" #: src/supertux/menu/addon_menu.cpp:246 @@ -1344,7 +1344,7 @@ msgstr "" #: src/supertux/menu/addon_menu.cpp:361 #, c-format -msgid "Downloading %s" +msgid "Downloading {}" msgstr "" #: src/supertux/menu/addon_menu.cpp:408 @@ -2001,12 +2001,12 @@ msgstr "" #: src/supertux/menu/profile_menu.cpp:37 #, c-format -msgid "[Profile %s]" +msgid "[Profile {}]" msgstr "" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "Profile %s" +msgid "Profile {}" msgstr "" #: src/supertux/menu/world_set_menu.cpp:41 diff --git a/data/locale/ko.po b/data/locale/ko.po index 5c57ae0ebc8..061c9835ed0 100644 --- a/data/locale/ko.po +++ b/data/locale/ko.po @@ -1771,8 +1771,8 @@ msgstr "건너뛰려면 Esc 키를 누르세요" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "사용법: %s [옵션] [레벨파일]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "사용법: {} [옵션] [레벨파일]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2494,13 +2494,13 @@ msgstr "크기 조절" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[프로필 %s]" +msgid "[Profile {}]" +msgstr "[프로필 {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "프로필 %s" +msgid "Profile {}" +msgstr "프로필 {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2548,8 +2548,8 @@ msgstr "알 수 없음" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" 기여자: \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" 기여자: \"{}\"" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2561,13 +2561,13 @@ msgstr "애드온을 찾을 수 없습니다" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "%s 설치 *신규*" +msgid "Install {} *NEW*" +msgstr "{} 설치 *신규*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "%s 설치" +msgid "Install {}" +msgstr "{} 설치" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2587,8 +2587,8 @@ msgstr "애드온 저장소 색인을 다운로드 중" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "%s 다운로드 중" +msgid "Downloading {}" +msgstr "{} 다운로드 중" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3101,8 +3101,8 @@ msgstr "편집 중인 레벨은 삭제할 수 없습니다!" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "기여자: %s" +msgid "contributed by {}" +msgstr "기여자: {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/la.po b/data/locale/la.po index aa15aa818a5..00933736184 100644 --- a/data/locale/la.po +++ b/data/locale/la.po @@ -1084,8 +1084,8 @@ msgstr "Res nescita" #: src/supertux/command_line_arguments.cpp:73 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Utilitas: %s [OPTIONS] [LEVELFILE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Utilitas: {} [OPTIONS] [LEVELFILE]" #: src/supertux/command_line_arguments.cpp:74 msgid "General Options:" @@ -1688,13 +1688,13 @@ msgstr "Magnitudinem mutare" #: src/supertux/menu/profile_menu.cpp:37 #, c-format -msgid "[Profile %s]" -msgstr "[Profile %s]" +msgid "[Profile {}]" +msgstr "[Profile {}]" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "Profile %s" -msgstr "Profile %s" +msgid "Profile {}" +msgstr "Profile {}" #: src/supertux/menu/editor_levelset_menu.cpp:59 #: src/supertux/menu/editor_new_levelset_menu.cpp:35 @@ -1721,8 +1721,8 @@ msgstr "Nescitus" #: src/supertux/menu/addon_menu.cpp:68 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" de \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" de \"{}\"" #: src/supertux/menu/addon_menu.cpp:126 msgid "No Add-ons installed" @@ -1734,13 +1734,13 @@ msgstr "Additiones invenitae non sunt" #: src/supertux/menu/addon_menu.cpp:176 #, c-format -msgid "Install %s *NEW*" -msgstr "Acquirere %s *NOVUM*" +msgid "Install {} *NEW*" +msgstr "Acquirere {} *NOVUM*" #: src/supertux/menu/addon_menu.cpp:187 #, c-format -msgid "Install %s" -msgstr "Acquirere %s" +msgid "Install {}" +msgstr "Acquirere {}" #: src/supertux/menu/addon_menu.cpp:196 msgid "No new Add-ons found" @@ -1760,8 +1760,8 @@ msgstr "Ratio depositionum additionum acquiritur" #: src/supertux/menu/addon_menu.cpp:298 #, c-format -msgid "Downloading %s" -msgstr "Acquirtur %s" +msgid "Downloading {}" +msgstr "Acquirtur {}" #: src/supertux/menu/addon_menu.cpp:345 msgid "" @@ -2167,8 +2167,8 @@ msgstr "Punctum initii \"main\" invenire non potui.\nQuaeso, muta nominem puncti #: src/supertux/levelintro.cpp:138 #, c-format -msgid "contributed by %s" -msgstr "de %s" +msgid "contributed by {}" +msgstr "de {}" #: src/supertux/levelintro.cpp:172 msgid "Badguys killed" diff --git a/data/locale/lt.po b/data/locale/lt.po index 0fac8183868..4ac58360658 100644 --- a/data/locale/lt.po +++ b/data/locale/lt.po @@ -1060,7 +1060,7 @@ msgstr "" #: src/supertux/command_line_arguments.cpp:79 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" msgstr "" #: src/supertux/command_line_arguments.cpp:80 @@ -1233,7 +1233,7 @@ msgstr "" #: src/supertux/levelintro.cpp:120 #, c-format -msgid "contributed by %s" +msgid "contributed by {}" msgstr "" #: src/supertux/levelintro.cpp:141 src/supertux/statistics.cpp:119 @@ -1274,7 +1274,7 @@ msgstr "Pasaulis" #: src/supertux/menu/addon_menu.cpp:83 #, c-format -msgid "%s \"%s\" by \"%s\"" +msgid "{} \"{}\" by \"{}\"" msgstr "" #: src/supertux/menu/addon_menu.cpp:139 @@ -1311,13 +1311,13 @@ msgstr "Papildinių nerasta" #: src/supertux/menu/addon_menu.cpp:224 #, c-format -msgid "Install %s *NEW*" -msgstr "Įdiegti %s *Naujas*" +msgid "Install {} *NEW*" +msgstr "Įdiegti {} *Naujas*" #: src/supertux/menu/addon_menu.cpp:235 #, c-format -msgid "Install %s" -msgstr "Įdiegti %s" +msgid "Install {}" +msgstr "Įdiegti {}" #: src/supertux/menu/addon_menu.cpp:246 msgid "No new Language packs found" @@ -1356,8 +1356,8 @@ msgstr "" #: src/supertux/menu/addon_menu.cpp:361 #, c-format -msgid "Downloading %s" -msgstr "Atsiunčiama %s" +msgid "Downloading {}" +msgstr "Atsiunčiama {}" #: src/supertux/menu/addon_menu.cpp:408 msgid "" @@ -2013,12 +2013,12 @@ msgstr "Kalėdinė išvaizda" #: src/supertux/menu/profile_menu.cpp:37 #, c-format -msgid "[Profile %s]" +msgid "[Profile {}]" msgstr "" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "Profile %s" +msgid "Profile {}" msgstr "" #: src/supertux/menu/world_set_menu.cpp:41 diff --git a/data/locale/messages.pot b/data/locale/messages.pot index 1c4490e1562..cbd9a642374 100644 --- a/data/locale/messages.pot +++ b/data/locale/messages.pot @@ -6,10 +6,10 @@ #, fuzzy msgid "" msgstr "" -"#-#-#-#-# main.pot (SuperTux v0.6.2-963-gb4a1b149f) #-#-#-#-#\n" -"Project-Id-Version: SuperTux v0.6.2-963-gb4a1b149f\n" +"#-#-#-#-# main.pot (SuperTux v0.6.3-1256-gc02d4f7fd) #-#-#-#-#\n" +"Project-Id-Version: SuperTux v0.6.3-1256-gc02d4f7fd\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-05-30 16:19+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,10 +18,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -"#-#-#-#-# credits.pot (SuperTux v0.6.2-963-gb4a1b149f) #-#-#-#-#\n" -"Project-Id-Version: SuperTux v0.6.2-963-gb4a1b149f\n" +"#-#-#-#-# credits.pot (SuperTux v0.6.3-1256-gc02d4f7fd) #-#-#-#-#\n" +"Project-Id-Version: SuperTux v0.6.3-1256-gc02d4f7fd\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-05-30 16:19+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,10 +29,10 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"#-#-#-#-# objects.pot (SuperTux v0.6.2-963-gb4a1b149f) #-#-#-#-#\n" -"Project-Id-Version: SuperTux v0.6.2-963-gb4a1b149f\n" +"#-#-#-#-# objects.pot (SuperTux v0.6.3-1256-gc02d4f7fd) #-#-#-#-#\n" +"Project-Id-Version: SuperTux v0.6.3-1256-gc02d4f7fd\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-05-30 16:19+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -40,10 +40,21 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"#-#-#-#-# tilesets.pot (SuperTux v0.6.2-963-gb4a1b149f) #-#-#-#-#\n" -"Project-Id-Version: SuperTux v0.6.2-963-gb4a1b149f\n" +"#-#-#-#-# tilesets.pot (SuperTux v0.6.3-1256-gc02d4f7fd) #-#-#-#-#\n" +"Project-Id-Version: SuperTux v0.6.3-1256-gc02d4f7fd\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-05-30 16:19+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"#-#-#-#-# converters.pot (SuperTux v0.6.3-1256-gc02d4f7fd) #-#-#-#-#\n" +"Project-Id-Version: SuperTux v0.6.3-1256-gc02d4f7fd\n" +"Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" +"POT-Creation-Date: 2024-05-30 16:19+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -52,123 +63,166 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/trigger/secretarea_trigger.cpp:53 src/trigger/secretarea_trigger.cpp:61 +#: src/trigger/secretarea_trigger.cpp:47 msgid "You found a secret area!" msgstr "" -#: src/trigger/secretarea_trigger.cpp:77 src/supertux/game_object.cpp:90 -#: src/supertux/menu/editor_sector_menu.cpp:34 -#: src/supertux/menu/editor_levelset_menu.cpp:58 +#: src/trigger/secretarea_trigger.cpp:55 src/supertux/game_object.cpp:115 +#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_levelset_menu.cpp:52 #: src/supertux/menu/editor_new_levelset_menu.cpp:34 +#: src/supertux/menu/profile_name_menu.cpp:39 #: src/supertux/menu/editor_level_menu.cpp:33 msgid "Name" msgstr "" -#: src/trigger/secretarea_trigger.cpp:78 +#: src/trigger/secretarea_trigger.cpp:56 msgid "Fade tilemap" msgstr "" -#: src/trigger/secretarea_trigger.cpp:79 src/trigger/climbable.cpp:81 -#: src/object/infoblock.cpp:57 src/editor/worldmap_objects.cpp:172 -#: src/editor/worldmap_objects.cpp:270 +#: src/trigger/secretarea_trigger.cpp:57 src/trigger/climbable.cpp:59 +#: src/object/infoblock.cpp:76 src/worldmap/teleporter.cpp:49 +#: src/worldmap/special_tile.cpp:74 msgid "Message" msgstr "" -#: src/trigger/secretarea_trigger.cpp:80 src/trigger/scripttrigger.cpp:75 -#: src/trigger/door.cpp:73 src/object/ispy.cpp:67 -#: src/object/bonus_block.cpp:207 src/object/bonus_block.cpp:211 -#: src/object/pushbutton.cpp:51 src/object/powerup.cpp:190 -#: src/editor/worldmap_objects.cpp:272 +#: src/trigger/secretarea_trigger.cpp:58 src/trigger/scripttrigger.cpp:51 +#: src/trigger/door.cpp:79 src/object/ispy.cpp:53 +#: src/object/bonus_block.cpp:264 src/object/bonus_block.cpp:268 +#: src/object/pushbutton.cpp:62 src/object/powerup.cpp:301 +#: src/worldmap/special_tile.cpp:76 msgid "Script" msgstr "" -#: src/trigger/scripttrigger.cpp:76 src/object/pushbutton.hpp:31 +#: src/trigger/scripttrigger.cpp:52 src/object/pushbutton.hpp:32 msgid "Button" msgstr "" -#: src/trigger/scripttrigger.cpp:77 +#: src/trigger/scripttrigger.cpp:53 msgid "Oneshot" msgstr "" -#: src/trigger/sequence_trigger.hpp:33 +#: src/trigger/sequence_trigger.hpp:31 msgid "Sequence Trigger" msgstr "" -#: src/trigger/door.cpp:74 src/badguy/willowisp.cpp:320 -#: src/supertux/menu/editor_sector_menu.cpp:32 src/editor/layers_widget.cpp:342 -#: data//images/engine/editor/objects.stoi:321 +#: src/trigger/text_area.cpp:141 +msgid "Once" +msgstr "" + +#: src/trigger/text_area.cpp:142 +msgid "Text change time" +msgstr "" + +#: src/trigger/text_area.cpp:143 +msgid "Fade time" +msgstr "" + +#: src/trigger/text_area.cpp:144 src/object/textscroller.cpp:353 +msgid "Anchor" +msgstr "" + +#: src/trigger/text_area.cpp:148 +msgid "Anchor offset X" +msgstr "" + +#: src/trigger/text_area.cpp:149 +msgid "Anchor offset Y" +msgstr "" + +#: src/trigger/text_area.cpp:150 +msgid "Texts" +msgstr "" + +#: src/trigger/door.cpp:80 src/badguy/willowisp.cpp:311 +#: src/worldmap/teleporter.cpp:47 data//images/engine/editor/objects.stoi:342 msgid "Sector" msgstr "" -#: src/trigger/door.cpp:75 src/editor/worldmap_objects.hpp:101 +#: src/trigger/door.cpp:81 src/worldmap/spawn_point.hpp:58 msgid "Spawn point" msgstr "" -#: src/trigger/switch.cpp:61 src/object/block.cpp:224 src/object/torch.cpp:102 -#: src/object/moving_sprite.cpp:156 src/object/pneumatic_platform.cpp:146 -msgid "Sprite" +#: src/trigger/door.cpp:82 +msgid "Locked?" +msgstr "" + +#: src/trigger/door.cpp:83 +msgid "Lock Color" +msgstr "" + +#: src/trigger/switch.cpp:62 src/object/ispy.cpp:54 src/object/bumper.cpp:53 +#: src/object/spotlight.cpp:106 src/object/pushbutton.cpp:61 +#: src/object/gradient.cpp:103 src/object/conveyor_belt.cpp:60 +#: src/badguy/badguy.cpp:1063 src/worldmap/spawn_point.cpp:79 +#: src/worldmap/special_tile.cpp:78 +msgid "Direction" msgstr "" -#: src/trigger/switch.cpp:62 +#: src/trigger/switch.cpp:65 msgid "Turn on script" msgstr "" -#: src/trigger/switch.cpp:63 +#: src/trigger/switch.cpp:66 msgid "Turn off script" msgstr "" -#: src/trigger/scripttrigger.hpp:32 +#: src/trigger/scripttrigger.hpp:29 msgid "Script Trigger" msgstr "" -#: src/trigger/sequence_trigger.cpp:75 +#: src/trigger/sequence_trigger.cpp:48 msgid "Sequence" msgstr "" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "end sequence" msgstr "" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "stop Tux" msgstr "" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "fireworks" msgstr "" -#: src/trigger/sequence_trigger.cpp:80 +#: src/trigger/sequence_trigger.cpp:53 msgid "New worldmap spawnpoint" msgstr "" -#: src/trigger/sequence_trigger.cpp:81 +#: src/trigger/sequence_trigger.cpp:54 msgid "Worldmap fade tilemap" msgstr "" -#: src/trigger/sequence_trigger.cpp:82 +#: src/trigger/sequence_trigger.cpp:55 #: src/object/custom_particle_system.cpp:430 #: src/object/custom_particle_system.cpp:465 msgid "Fade" msgstr "" -#: src/trigger/sequence_trigger.cpp:83 src/editor/particle_editor.cpp:161 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:161 msgid "Fade in" msgstr "" -#: src/trigger/sequence_trigger.cpp:83 src/editor/particle_editor.cpp:167 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:167 #: src/editor/particle_editor.cpp:212 msgid "Fade out" msgstr "" -#: src/trigger/climbable.hpp:37 +#: src/trigger/climbable.hpp:46 msgid "Climbable" msgstr "" -#: src/trigger/door.hpp:34 +#: src/trigger/text_area.hpp:47 +msgid "Text Area" +msgstr "" + +#: src/trigger/door.hpp:31 msgid "Door" msgstr "" -#: src/trigger/switch.hpp:33 +#: src/trigger/switch.hpp:30 msgid "Switch" msgstr "" @@ -176,117 +230,194 @@ msgstr "" msgid "Secret Area" msgstr "" -#: src/object/thunderstorm.hpp:40 +#: src/math/anchor_point.cpp:33 +msgid "Top Left" +msgstr "" + +#: src/math/anchor_point.cpp:34 +msgid "Top" +msgstr "" + +#: src/math/anchor_point.cpp:35 +msgid "Top Right" +msgstr "" + +#: src/math/anchor_point.cpp:36 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:38 +#: src/supertux/menu/joystick_menu.cpp:73 +msgid "Left" +msgstr "" + +#: src/math/anchor_point.cpp:37 +msgid "Middle" +msgstr "" + +#: src/math/anchor_point.cpp:38 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:39 +#: src/supertux/menu/joystick_menu.cpp:74 +msgid "Right" +msgstr "" + +#: src/math/anchor_point.cpp:39 +msgid "Bottom Left" +msgstr "" + +#: src/math/anchor_point.cpp:40 +msgid "Bottom" +msgstr "" + +#: src/math/anchor_point.cpp:41 +msgid "Bottom Right" +msgstr "" + +#: src/object/thunderstorm.hpp:44 msgid "Thunderstorm" msgstr "" -#: src/object/cloud_particle_system.cpp:79 +#: src/object/cloud_particle_system.cpp:77 #: src/object/rain_particle_system.cpp:100 msgid "Intensity" msgstr "" -#: src/object/custom_particle_system.hpp:45 +#: src/object/custom_particle_system.hpp:46 msgid "Custom Particles" msgstr "" -#: src/object/ispy.cpp:66 -msgid "Facing Down" +#: src/object/particle_zone.hpp:41 +msgid "Particle zone" msgstr "" -#: src/object/ispy.cpp:68 src/object/spotlight.cpp:103 -#: src/object/gradient.cpp:137 src/badguy/willowisp.cpp:319 -#: src/badguy/badguy.cpp:848 src/editor/worldmap_objects.cpp:207 -#: src/editor/worldmap_objects.cpp:274 -msgid "Direction" +#: src/object/path_gameobject.hpp:45 src/object/coin.cpp:324 +#: src/object/camera.cpp:168 src/object/platform.cpp:76 +#: src/object/path_gameobject.cpp:175 src/object/tilemap.cpp:284 +#: src/badguy/willowisp.cpp:317 +msgid "Path" msgstr "" -#: src/object/particle_zone.hpp:39 -msgid "Particle zone" +#: src/object/decal.cpp:48 src/object/scripted_object.cpp:70 +#: src/object/tilemap.cpp:266 +msgid "Solid" msgstr "" -#: src/object/path_gameobject.hpp:44 src/object/coin.cpp:301 -#: src/object/camera.cpp:224 src/object/platform.cpp:73 -#: src/object/path_gameobject.cpp:173 src/object/tilemap.cpp:246 -#: src/gui/menu_paths.cpp:52 src/badguy/willowisp.cpp:326 -msgid "Path" +#: src/object/decal.cpp:49 src/supertux/menu/keyboard_menu.cpp:41 +#: src/supertux/menu/joystick_menu.cpp:76 +msgid "Action" msgstr "" -#: src/object/decal.cpp:49 src/object/scripted_object.cpp:67 -#: src/object/particlesystem.cpp:65 src/object/background.cpp:183 -#: src/object/thunderstorm.cpp:68 src/object/tilemap.cpp:239 -#: src/object/gradient.cpp:135 -msgid "Z-pos" +#: src/object/weak_block.hpp:36 +msgid "Weak Tile" msgstr "" -#: src/object/decal.cpp:50 src/object/scripted_object.cpp:70 -#: src/object/tilemap.cpp:228 -msgid "Solid" +#: src/object/gradient.hpp:43 +msgid "Gradient" msgstr "" -#: src/object/decal.cpp:51 src/supertux/menu/keyboard_menu.cpp:37 -#: src/supertux/menu/joystick_menu.cpp:74 -msgid "Action" +#: src/object/tilemap.hpp:58 +msgid "Tilemap" msgstr "" -#: src/object/weak_block.hpp:35 -msgid "Weak Tile" +#: src/object/sound_object.cpp:69 src/object/ambient_sound.cpp:85 +#: src/object/sound_object.hpp:42 src/supertux/menu/options_menu.cpp:128 +#: data//credits.stxt:367 +msgid "Sound" msgstr "" -#: src/object/bumper.cpp:46 -msgid "Facing Left" +#: src/object/sound_object.cpp:70 src/object/ambient_sound.cpp:87 +msgid "Volume" msgstr "" -#: src/object/gradient.hpp:42 -msgid "Gradient" +#: src/object/conveyor_belt.hpp:39 +msgid "Conveyor Belt" msgstr "" -#: src/object/tilemap.hpp:57 -msgid "Tilemap" +#: src/object/unstable_tile.cpp:70 src/object/weak_block.cpp:97 +#: src/badguy/flame.cpp:86 +msgid "Ice" +msgstr "" + +#: src/object/unstable_tile.cpp:71 src/object/brick.hpp:34 +msgid "Brick" +msgstr "" + +#: src/object/unstable_tile.cpp:72 +msgid "Delayed" msgstr "" -#: src/object/circleplatform.hpp:32 +#: src/object/circleplatform.hpp:35 msgid "Circular Platform" msgstr "" -#: src/object/brick.cpp:133 +#: src/object/brick.cpp:59 src/object/coin.cpp:69 +#: src/object/invisible_block.cpp:37 src/object/background.cpp:200 +#: src/object/tilemap.cpp:279 src/object/gradient.cpp:109 +#: src/badguy/viciousivy.cpp:44 src/badguy/snail.cpp:69 +#: src/badguy/smartball.cpp:34 src/badguy/bouncing_snowball.cpp:81 +#: src/badguy/kamikazesnowball.cpp:117 src/badguy/walkingleaf.cpp:35 +#: src/badguy/mrbomb.cpp:47 src/badguy/igel.cpp:188 src/badguy/snowball.cpp:40 +#: src/badguy/mrtree.cpp:50 src/badguy/mriceblock.cpp:62 +msgid "Normal" +msgstr "" + +#: src/object/brick.cpp:60 src/object/bonus_block.cpp:175 +#: src/object/coin.cpp:70 src/object/invisible_block.cpp:38 +msgid "Retro" +msgstr "" + +#: src/object/brick.cpp:166 msgid "Breakable" msgstr "" -#: src/object/trampoline.cpp:136 src/object/rusty_trampoline.cpp:66 +#: src/object/trampoline.cpp:66 src/object/rusty_trampoline.cpp:66 msgid "Portable" msgstr "" -#: src/object/spotlight.cpp:100 src/object/rain_particle_system.cpp:101 +#: src/object/trampoline.cpp:67 +msgid "Stationary" +msgstr "" + +#: src/object/key.hpp:38 +msgid "Key" +msgstr "" + +#: src/object/spotlight.cpp:102 src/object/particlesystem.cpp:64 +#: src/object/particle_zone.cpp:50 src/badguy/darttrap.cpp:149 +#: src/supertux/menu/addon_preview_menu.cpp:189 +msgid "Enabled" +msgstr "" + +#: src/object/spotlight.cpp:103 src/object/rain_particle_system.cpp:101 msgid "Angle" msgstr "" -#: src/object/spotlight.cpp:101 src/object/magicblock.cpp:94 -#: src/object/candle.cpp:77 src/object/torch.cpp:104 src/object/rublight.cpp:54 -#: src/object/lantern.cpp:62 src/object/ambient_light.cpp:131 -#: src/badguy/willowisp.cpp:328 src/badguy/walking_candle.cpp:82 +#: src/object/spotlight.cpp:104 src/object/magicblock.cpp:95 +#: src/object/candle.cpp:75 src/object/torch.cpp:96 src/object/rublight.cpp:55 +#: src/object/lantern.cpp:62 src/object/ambient_light.cpp:122 +#: src/object/key.cpp:192 src/badguy/willowisp.cpp:319 +#: src/badguy/walking_candle.cpp:91 msgid "Color" msgstr "" -#: src/object/spotlight.cpp:102 src/object/textscroller.cpp:350 -#: src/object/rain_particle_system.cpp:102 src/object/circleplatform.cpp:55 -#: src/badguy/flame.cpp:59 src/editor/node_marker.cpp:125 +#: src/object/spotlight.cpp:105 src/object/textscroller.cpp:350 +#: src/object/rain_particle_system.cpp:102 src/object/conveyor_belt.cpp:61 +#: src/object/circleplatform.cpp:58 src/badguy/flame.cpp:110 +#: src/editor/node_marker.cpp:125 msgid "Speed" msgstr "" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Clockwise" msgstr "" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Counter-clockwise" msgstr "" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Stopped" msgstr "" -#: src/object/spotlight.cpp:107 src/object/candle.cpp:78 -#: src/object/torch.cpp:103 +#: src/object/spotlight.cpp:110 src/object/lit_object.cpp:69 +#: src/object/candle.cpp:76 src/object/torch.cpp:95 msgid "Layer" msgstr "" @@ -298,124 +429,169 @@ msgstr "" msgid "Visible" msgstr "" -#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:322 +#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:313 msgid "Hit script" msgstr "" -#: src/object/custom_particle_system_file.cpp:50 +#: src/object/custom_particle_system_file.cpp:53 #: src/object/textscroller.cpp:348 src/object/music_object.cpp:109 #: src/supertux/menu/particle_editor_open.cpp:38 msgid "File" msgstr "" -#: src/object/bonus_block.cpp:208 +#: src/object/bonus_block.cpp:154 +msgid "Only one custom object is allowed inside bonus blocks." +msgstr "" + +#: src/object/bonus_block.cpp:172 +msgid "Blue" +msgstr "" + +#: src/object/bonus_block.cpp:173 +msgid "Orange" +msgstr "" + +#: src/object/bonus_block.cpp:174 +msgid "Purple" +msgstr "" + +#: src/object/bonus_block.cpp:265 src/supertux/menu/cheat_apply_menu.cpp:54 msgid "Count" msgstr "" -#: src/object/bonus_block.cpp:209 +#: src/object/bonus_block.cpp:266 msgid "Content" msgstr "" -#: src/object/bonus_block.cpp:210 src/object/coin.hpp:43 +#: src/object/bonus_block.cpp:267 src/object/coin.hpp:44 msgid "Coin" msgstr "" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (fire flower)" msgstr "" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (ice flower)" msgstr "" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (air flower)" msgstr "" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Growth (earth flower)" msgstr "" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 +msgid "Growth (retro)" +msgstr "" + +#: src/object/bonus_block.cpp:268 src/object/powerup.cpp:66 msgid "Star" msgstr "" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 +msgid "Star (retro)" +msgstr "" + +#: src/object/bonus_block.cpp:268 msgid "Tux doll" msgstr "" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Custom" msgstr "" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Light" msgstr "" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Light (On)" msgstr "" -#: src/object/bonus_block.cpp:212 src/object/trampoline.hpp:35 +#: src/object/bonus_block.cpp:269 src/object/trampoline.hpp:37 msgid "Trampoline" msgstr "" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 +msgid "Portable trampoline" +msgstr "" + +#: src/object/bonus_block.cpp:269 msgid "Coin rain" msgstr "" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 msgid "Coin explosion" msgstr "" -#: src/object/bonus_block.cpp:216 +#: src/object/bonus_block.cpp:269 src/object/rock.hpp:43 +msgid "Rock" +msgstr "" + +#: src/object/bonus_block.cpp:269 +msgid "Potion" +msgstr "" + +#: src/object/bonus_block.cpp:275 msgid "Custom Content" msgstr "" -#: src/object/pneumatic_platform.hpp:62 +#: src/object/bonus_block.cpp:278 +msgid "Coin sprite" +msgstr "" + +#: src/object/pneumatic_platform.hpp:65 msgid "Pneumatic Platform" msgstr "" -#: src/object/coin.cpp:303 src/object/tilemap.cpp:249 +#: src/object/coin.cpp:326 src/object/tilemap.cpp:287 msgid "Following path" msgstr "" -#: src/object/coin.cpp:306 src/object/camera.cpp:227 src/object/platform.cpp:74 -#: src/object/tilemap.cpp:252 +#: src/object/coin.cpp:329 src/object/camera.cpp:171 src/object/platform.cpp:77 +#: src/object/tilemap.cpp:290 msgid "Path Mode" msgstr "" -#: src/object/coin.cpp:307 src/object/camera.cpp:228 src/object/platform.cpp:75 -#: src/object/tilemap.cpp:253 src/badguy/willowisp.cpp:331 +#: src/object/coin.cpp:330 src/object/camera.cpp:172 src/object/platform.cpp:78 +#: src/object/tilemap.cpp:291 src/badguy/willowisp.cpp:322 msgid "Adapt Speed" msgstr "" -#: src/object/coin.cpp:308 src/object/platform.cpp:77 -#: src/object/tilemap.cpp:247 src/badguy/willowisp.cpp:327 +#: src/object/coin.cpp:331 src/object/platform.cpp:81 +#: src/object/tilemap.cpp:285 src/badguy/willowisp.cpp:318 msgid "Starting Node" msgstr "" -#: src/object/coin.cpp:311 src/object/coin.cpp:339 +#: src/object/coin.cpp:332 src/object/camera.cpp:173 src/object/platform.cpp:82 +#: src/object/tilemap.cpp:293 src/badguy/willowisp.cpp:323 +msgid "Handle" +msgstr "" + +#: src/object/coin.cpp:335 src/object/coin.cpp:371 msgid "Collect script" msgstr "" -#: src/object/ghost_particle_system.hpp:36 +#: src/object/ghost_particle_system.hpp:37 msgid "Ghost Particles" msgstr "" -#: src/object/camera.cpp:219 +#: src/object/camera.cpp:163 msgid "Mode" msgstr "" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "normal" msgstr "" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "manual" msgstr "" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "autoscroll" msgstr "" @@ -431,32 +607,20 @@ msgstr "" msgid "Controllable" msgstr "" -#: src/object/textscroller.cpp:353 -msgid "Anchor" -msgstr "" - -#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 -#: src/supertux/menu/keyboard_menu.cpp:34 -#: src/supertux/menu/joystick_menu.cpp:71 -msgid "Left" -msgstr "" - #: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 msgid "Center" msgstr "" -#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 -#: src/supertux/menu/keyboard_menu.cpp:35 -#: src/supertux/menu/joystick_menu.cpp:72 -msgid "Right" -msgstr "" - #: src/object/textscroller.cpp:357 msgid "Text Alignment" msgstr "" -#: src/object/spawnpoint.hpp:46 src/badguy/willowisp.cpp:321 -#: src/editor/worldmap_objects.cpp:171 +#: src/object/lit_object.hpp:40 +msgid "Lit object" +msgstr "" + +#: src/object/spawnpoint.hpp:48 src/badguy/willowisp.cpp:312 +#: src/worldmap/teleporter.cpp:48 msgid "Spawnpoint" msgstr "" @@ -464,266 +628,339 @@ msgstr "" msgid "Counter" msgstr "" -#: src/object/candle.hpp:36 +#: src/object/candle.hpp:37 msgid "Candle" msgstr "" -#: src/object/particlesystem.cpp:64 src/object/particle_zone.cpp:79 -#: src/badguy/darttrap.cpp:127 -msgid "Enabled" +#: src/object/particlesystem.cpp:65 src/object/background.cpp:184 +#: src/object/thunderstorm.cpp:76 src/object/tilemap.cpp:277 +#: src/object/gradient.cpp:101 src/object/moving_sprite.cpp:193 +msgid "Z-pos" msgstr "" -#: src/object/invisible_block.hpp:31 +#: src/object/invisible_block.hpp:30 msgid "Invisible Block" msgstr "" -#: src/object/snow_particle_system.hpp:35 +#: src/object/snow_particle_system.hpp:37 msgid "Snow Particles" msgstr "" -#: src/object/powerup.hpp:35 +#: src/object/powerup.hpp:40 msgid "Powerup" msgstr "" -#: src/object/fallblock.hpp:39 -msgid "Falling Platform" +#: src/object/infoblock.cpp:78 +msgid "Front Color" msgstr "" -#: src/object/level_time.hpp:55 -msgid "Time Limit" +#: src/object/infoblock.cpp:80 +msgid "Back Color" msgstr "" -#: src/object/ambient_sound.cpp:119 src/supertux/menu/options_menu.cpp:391 -#: data//credits.stxt:352 -msgid "Sound" +#: src/object/infoblock.cpp:82 +msgid "Roundness" msgstr "" -#: src/object/ambient_sound.cpp:120 -msgid "Distance factor" +#: src/object/infoblock.cpp:84 +msgid "Fade Transition" msgstr "" -#: src/object/ambient_sound.cpp:121 -msgid "Distance bias" +#: src/object/fallblock.hpp:41 +msgid "Falling Platform" msgstr "" -#: src/object/ambient_sound.cpp:122 -msgid "Volume" +#: src/object/level_time.hpp:56 +msgid "Time Limit" msgstr "" -#: src/object/torch.hpp:41 -msgid "Torch" +#: src/object/ambient_sound.cpp:86 +msgid "Radius (in tiles)" msgstr "" -#: src/object/icecrusher.hpp:53 -msgid "Icecrusher" +#: src/object/torch.hpp:41 +msgid "Torch" msgstr "" -#: src/object/rublight.hpp:33 +#: src/object/rublight.hpp:34 msgid "Rublight" msgstr "" -#: src/object/background.hpp:43 +#: src/object/background.hpp:45 msgid "Background" msgstr "" -#: src/object/firefly.hpp:36 +#: src/object/text_object.hpp:44 src/gui/menu_string_array.cpp:77 +msgid "Text" +msgstr "" + +#: src/object/firefly.hpp:38 msgid "Checkpoint" msgstr "" -#: src/object/ambient_light.hpp:36 +#: src/object/ambient_light.hpp:37 msgid "Ambient Light" msgstr "" -#: src/object/lantern.hpp:37 +#: src/object/lantern.hpp:38 msgid "Lantern" msgstr "" -#: src/object/wind.hpp:40 +#: src/object/wind.hpp:43 msgid "Wind" msgstr "" -#: src/object/bicycle_platform.cpp:189 src/object/background.cpp:179 -#: src/object/pneumatic_platform.cpp:147 -#: src/supertux/menu/joystick_menu.cpp:170 src/supertux/moving_object.cpp:58 -#: src/editor/worldmap_objects.cpp:73 +#: src/object/bicycle_platform.cpp:203 src/object/background.cpp:180 +#: src/object/pneumatic_platform.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:65 +#: src/worldmap/worldmap_object.cpp:77 msgid "X" msgstr "" -#: src/object/bicycle_platform.cpp:190 src/object/background.cpp:180 -#: src/object/pneumatic_platform.cpp:148 -#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:59 -#: src/editor/worldmap_objects.cpp:74 +#: src/object/bicycle_platform.cpp:204 src/object/background.cpp:181 +#: src/object/pneumatic_platform.cpp:163 +#: src/supertux/menu/joystick_menu.cpp:174 src/supertux/moving_object.cpp:66 +#: src/worldmap/worldmap_object.cpp:78 msgid "Y" msgstr "" -#: src/object/bicycle_platform.cpp:192 +#: src/object/bicycle_platform.cpp:206 msgid "Platforms" msgstr "" -#: src/object/bicycle_platform.cpp:193 src/object/circleplatform.cpp:54 -#: src/badguy/flame.cpp:58 src/badguy/rcrystallo.cpp:50 -#: src/badguy/crystallo.cpp:35 +#: src/object/bicycle_platform.cpp:207 src/object/circleplatform.cpp:57 +#: src/badguy/fish_swimming.cpp:76 src/badguy/flame.cpp:109 +#: src/badguy/rcrystallo.cpp:83 src/badguy/crystallo.cpp:50 msgid "Radius" msgstr "" -#: src/object/bicycle_platform.cpp:194 +#: src/object/bicycle_platform.cpp:208 msgid "Momentum change rate" msgstr "" -#: src/object/rain_particle_system.hpp:40 +#: src/object/rain_particle_system.hpp:41 msgid "Rain Particles" msgstr "" -#: src/object/platform.hpp:45 +#: src/object/platform.hpp:46 msgid "Platform" msgstr "" -#: src/object/rock.hpp:42 -msgid "Rock" +#: src/object/music_object.hpp:42 src/supertux/menu/options_menu.cpp:130 +#: data//credits.stxt:309 +msgid "Music" msgstr "" -#: src/object/music_object.hpp:41 src/supertux/menu/options_menu.cpp:393 -#: data//credits.stxt:294 -msgid "Music" +#: src/object/lit_object.cpp:68 +msgid "Light sprite" +msgstr "" + +#: src/object/lit_object.cpp:71 +msgid "Sprite starting action" +msgstr "" + +#: src/object/lit_object.cpp:72 +msgid "Light sprite starting action" +msgstr "" + +#: src/object/lit_object.cpp:74 +msgid "Light sprite offset X" +msgstr "" + +#: src/object/lit_object.cpp:75 +msgid "Light sprite offset Y" msgstr "" -#: src/object/rusty_trampoline.hpp:39 +#: src/object/rusty_trampoline.hpp:40 msgid "Rusty Trampoline" msgstr "" -#: src/object/particlesystem.hpp:57 +#: src/object/particlesystem.hpp:58 msgid "Particle system" msgstr "" -#: src/object/candle.cpp:75 src/object/torch.cpp:101 +#: src/object/candle.cpp:73 src/object/torch.cpp:94 msgid "Burning" msgstr "" -#: src/object/candle.cpp:76 +#: src/object/candle.cpp:74 msgid "Flicker" msgstr "" -#: src/object/text_array_object.hpp:50 +#: src/object/snow_particle_system.cpp:104 +msgid "Epsilon" +msgstr "" + +#: src/object/snow_particle_system.cpp:105 +msgid "Spin Speed" +msgstr "" + +#: src/object/snow_particle_system.cpp:106 +msgid "State Length" +msgstr "" + +#: src/object/snow_particle_system.cpp:107 +msgid "Wind Speed" +msgstr "" + +#: src/object/text_array_object.hpp:47 msgid "Text array" msgstr "" -#: src/object/infoblock.hpp:36 +#: src/object/infoblock.hpp:37 msgid "Info Block" msgstr "" -#: src/object/powerup.cpp:191 +#: src/object/powerup.cpp:61 +msgid "Egg" +msgstr "" + +#: src/object/powerup.cpp:62 +msgid "Fire Flower" +msgstr "" + +#: src/object/powerup.cpp:63 +msgid "Ice Flower" +msgstr "" + +#: src/object/powerup.cpp:64 +msgid "Air Flower" +msgstr "" + +#: src/object/powerup.cpp:65 +msgid "Earth Flower" +msgstr "" + +#: src/object/powerup.cpp:67 +msgid "Tux Doll" +msgstr "" + +#: src/object/powerup.cpp:68 +msgid "Flip Potion" +msgstr "" + +#: src/object/powerup.cpp:69 +msgid "Mints" +msgstr "" + +#: src/object/powerup.cpp:70 +msgid "Coffee" +msgstr "" + +#: src/object/powerup.cpp:71 +msgid "Herring" +msgstr "" + +#: src/object/powerup.cpp:302 msgid "Disable gravity" msgstr "" -#: src/object/ambient_sound.hpp:62 +#: src/object/powerup.cpp:312 src/object/weak_block.cpp:266 +msgid "" +"Sprites no longer define the behaviour of the object.\n" +"Object types are used instead." +msgstr "" + +#: src/object/ambient_sound.hpp:43 msgid "Ambient Sound" msgstr "" -#: src/object/level_time.cpp:51 src/supertux/statistics.cpp:297 +#: src/object/level_time.cpp:52 src/supertux/statistics.cpp:297 #: src/editor/node_marker.cpp:124 msgid "Time" msgstr "" -#: src/object/hurting_platform.hpp:30 +#: src/object/hurting_platform.hpp:31 msgid "Hurting Platform" msgstr "" -#: src/object/icecrusher.cpp:83 -msgid "Sideways" -msgstr "" - -#: src/object/background.cpp:182 +#: src/object/background.cpp:183 msgid "Fill" msgstr "" -#: src/object/background.cpp:184 +#: src/object/background.cpp:185 msgid "Alignment" msgstr "" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 src/supertux/direction.cpp:61 msgid "none" msgstr "" -#: src/object/background.cpp:185 src/editor/object_settings.cpp:119 +#: src/object/background.cpp:186 src/supertux/direction.cpp:63 msgid "left" msgstr "" -#: src/object/background.cpp:185 src/editor/object_settings.cpp:119 +#: src/object/background.cpp:186 src/supertux/direction.cpp:65 msgid "right" msgstr "" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 msgid "top" msgstr "" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 msgid "bottom" msgstr "" -#: src/object/background.cpp:188 +#: src/object/background.cpp:189 msgid "Scroll offset x" msgstr "" -#: src/object/background.cpp:189 +#: src/object/background.cpp:190 msgid "Scroll offset y" msgstr "" -#: src/object/background.cpp:190 +#: src/object/background.cpp:191 msgid "Scroll speed x" msgstr "" -#: src/object/background.cpp:191 +#: src/object/background.cpp:192 msgid "Scroll speed y" msgstr "" -#: src/object/background.cpp:192 +#: src/object/background.cpp:193 msgid "Parallax Speed x" msgstr "" -#: src/object/background.cpp:193 +#: src/object/background.cpp:194 msgid "Parallax Speed y" msgstr "" -#: src/object/background.cpp:194 +#: src/object/background.cpp:195 msgid "Top image" msgstr "" -#: src/object/background.cpp:195 +#: src/object/background.cpp:196 msgid "Image" msgstr "" -#: src/object/background.cpp:196 +#: src/object/background.cpp:197 msgid "Bottom image" msgstr "" -#: src/object/background.cpp:197 +#: src/object/background.cpp:198 msgid "Colour" msgstr "" -#: src/object/background.cpp:198 src/object/tilemap.cpp:240 -#: src/object/gradient.cpp:142 +#: src/object/background.cpp:199 src/object/tilemap.cpp:278 +#: src/object/gradient.cpp:108 msgid "Draw target" msgstr "" -#: src/object/background.cpp:199 src/object/tilemap.cpp:241 -#: src/object/gradient.cpp:143 -msgid "Normal" -msgstr "" - -#: src/object/background.cpp:199 src/object/tilemap.cpp:241 -#: src/object/gradient.cpp:143 +#: src/object/background.cpp:200 src/object/tilemap.cpp:279 +#: src/object/gradient.cpp:109 msgid "Lightmap" msgstr "" -#: src/object/shard.hpp:34 +#: src/object/shard.hpp:35 msgid "Shard" msgstr "" -#: src/object/rublight.cpp:55 +#: src/object/rublight.cpp:56 msgid "Fading Speed" msgstr "" -#: src/object/rublight.cpp:56 +#: src/object/rublight.cpp:57 msgid "Glowing Strength" msgstr "" @@ -759,20 +996,28 @@ msgstr "" msgid "Fancy Particles" msgstr "" -#: src/object/bicycle_platform.hpp:64 +#: src/object/bicycle_platform.hpp:67 msgid "Bicycle Platform" msgstr "" -#: src/object/platform.cpp:76 src/object/thunderstorm.cpp:69 -#: src/object/tilemap.cpp:254 +#: src/object/platform.cpp:80 src/object/thunderstorm.cpp:77 +#: src/object/tilemap.cpp:292 src/object/conveyor_belt.cpp:62 msgid "Running" msgstr "" -#: src/object/rock.cpp:192 +#: src/object/rock.cpp:71 +msgid "Small" +msgstr "" + +#: src/object/rock.cpp:72 +msgid "Large" +msgstr "" + +#: src/object/rock.cpp:234 msgid "On-grab script" msgstr "" -#: src/object/rock.cpp:193 +#: src/object/rock.cpp:235 msgid "On-ungrab script" msgstr "" @@ -780,15 +1025,15 @@ msgstr "" msgid "Interactive particle system" msgstr "" -#: src/object/thunderstorm.cpp:70 +#: src/object/thunderstorm.cpp:78 msgid "Interval" msgstr "" -#: src/object/thunderstorm.cpp:71 +#: src/object/thunderstorm.cpp:79 msgid "Strike Script" msgstr "" -#: src/object/cloud_particle_system.hpp:41 +#: src/object/cloud_particle_system.hpp:42 msgid "Cloud Particles" msgstr "" @@ -800,7 +1045,7 @@ msgstr "" msgid "Amount" msgstr "" -#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:56 +#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:59 #: src/editor/particle_editor.cpp:141 msgid "Delay" msgstr "" @@ -818,10 +1063,11 @@ msgid "Birth mode" msgstr "" #: src/object/custom_particle_system.cpp:430 -#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:149 -#: src/supertux/menu/keyboard_menu.cpp:58 -#: src/supertux/menu/joystick_menu.cpp:106 -#: src/supertux/menu/joystick_menu.cpp:213 src/editor/object_settings.cpp:131 +#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:115 +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/joystick_menu.cpp:108 +#: src/supertux/menu/joystick_menu.cpp:215 src/editor/object_settings.cpp:129 #: src/editor/particle_editor.cpp:162 src/editor/particle_editor.cpp:168 msgid "None" msgstr "" @@ -1134,597 +1380,916 @@ msgstr "" msgid "Cover screen" msgstr "" -#: src/object/ispy.hpp:33 +#: src/object/ispy.hpp:35 msgid "Ispy" msgstr "" -#: src/object/skull_tile.hpp:32 -msgid "Skull Tile" -msgstr "" - -#: src/object/particle_zone.cpp:80 +#: src/object/particle_zone.cpp:51 msgid "Particle Name" msgstr "" -#: src/object/particle_zone.cpp:81 -msgid "Zone Type" -msgstr "" - -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:62 msgid "Spawn" msgstr "" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:63 msgid "Life zone" msgstr "" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:64 msgid "Life zone (clear)" msgstr "" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:65 msgid "Kill particles" msgstr "" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:66 msgid "Clear particles" msgstr "" -#: src/object/weak_block.cpp:211 -msgid "Linked" +#: src/object/weak_block.cpp:98 +msgid "Hay" msgstr "" -#: src/object/decal.hpp:40 +#: src/object/decal.hpp:41 msgid "Decal" msgstr "" -#: src/object/tilemap.cpp:229 +#: src/object/tilemap.cpp:267 msgid "Resize offset x" msgstr "" -#: src/object/tilemap.cpp:230 +#: src/object/tilemap.cpp:268 msgid "Resize offset y" msgstr "" -#: src/object/tilemap.cpp:232 src/supertux/menu/editor_sector_menu.cpp:39 -#: src/editor/object_option.cpp:173 +#: src/object/tilemap.cpp:270 src/supertux/menu/editor_sector_menu.cpp:41 +#: src/editor/object_option.cpp:178 msgid "Width" msgstr "" -#: src/object/tilemap.cpp:233 src/supertux/menu/editor_sector_menu.cpp:40 -#: src/editor/object_option.cpp:174 +#: src/object/tilemap.cpp:271 src/supertux/menu/editor_sector_menu.cpp:42 +#: src/editor/object_option.cpp:179 msgid "Height" msgstr "" -#: src/object/tilemap.cpp:235 +#: src/object/tilemap.cpp:273 msgid "Alpha" msgstr "" -#: src/object/tilemap.cpp:236 +#: src/object/tilemap.cpp:274 msgid "Speed x" msgstr "" -#: src/object/tilemap.cpp:237 +#: src/object/tilemap.cpp:275 msgid "Speed y" msgstr "" -#: src/object/tilemap.cpp:238 +#: src/object/tilemap.cpp:276 msgid "Tint" msgstr "" -#: src/object/tilemap.cpp:257 src/supertux/menu/editor_tilegroup_menu.cpp:26 -#: src/editor/toolbox_widget.cpp:90 +#: src/object/tilemap.cpp:296 src/supertux/menu/editor_tilegroup_menu.cpp:26 +#: src/editor/toolbox_widget.cpp:98 msgid "Tiles" msgstr "" -#: src/object/gradient.cpp:128 -msgid "Left Colour" -msgstr "" - -#: src/object/gradient.cpp:129 -msgid "Right Colour" -msgstr "" - -#: src/object/gradient.cpp:131 -msgid "Top Colour" +#: src/object/gradient.cpp:98 +msgid "Primary Colour" msgstr "" -#: src/object/gradient.cpp:132 -msgid "Bottom Colour" +#: src/object/gradient.cpp:99 +msgid "Secondary Colour" msgstr "" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Vertical" msgstr "" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Horizontal" msgstr "" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Vertical (whole sector)" msgstr "" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Horizontal (whole sector)" msgstr "" -#: src/object/gradient.cpp:148 +#: src/object/gradient.cpp:114 msgid "Blend mode" msgstr "" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Blend" msgstr "" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Additive" msgstr "" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Modulate" msgstr "" -#: src/object/bumper.hpp:35 +#: src/object/bumper.hpp:38 msgid "Bumper" msgstr "" -#: src/object/unstable_tile.hpp:37 +#: src/object/conveyor_belt.cpp:63 +msgid "Length" +msgstr "" + +#: src/object/moving_sprite.cpp:192 src/object/pneumatic_platform.cpp:161 +msgid "Sprite" +msgstr "" + +#: src/object/unstable_tile.hpp:42 msgid "Unstable Tile" msgstr "" -#: src/object/brick.hpp:31 -msgid "Brick" +#: src/object/brick.hpp:70 +msgid "Heavy Brick" msgstr "" -#: src/object/invisible_wall.hpp:34 +#: src/object/invisible_wall.hpp:37 msgid "Invisible Wall" msgstr "" -#: src/object/spotlight.hpp:51 +#: src/object/spotlight.hpp:52 msgid "Spotlight" msgstr "" -#: src/object/scripted_object.hpp:39 +#: src/object/scripted_object.hpp:40 msgid "Scripted Object" msgstr "" -#: src/object/custom_particle_system_file.hpp:39 +#: src/object/custom_particle_system_file.hpp:40 msgid "Custom Particles from file" msgstr "" -#: src/object/coin.hpp:78 +#: src/object/coin.hpp:97 msgid "Heavy Coin" msgstr "" -#: src/object/bonus_block.hpp:56 +#: src/object/explosion.hpp:35 +msgid "Explosion" +msgstr "" + +#: src/object/bonus_block.hpp:62 msgid "Bonus Block" msgstr "" -#: src/object/magicblock.hpp:41 +#: src/object/magicblock.hpp:42 msgid "Magic Tile" msgstr "" -#: src/object/camera.hpp:67 +#: src/object/camera.hpp:61 msgid "Camera" msgstr "" -#: src/object/textscroller.hpp:44 +#: src/object/textscroller.hpp:45 msgid "Text Scroller" msgstr "" -#: src/gui/menu_badguy_select.cpp:94 -msgid "List of enemies" +#: src/gui/notification.cpp:57 +msgid "Click for more details." +msgstr "" + +#: src/gui/notification.cpp:150 +msgid "Do not show again" +msgstr "" + +#: src/gui/notification.cpp:157 src/supertux/menu/download_dialog.cpp:124 +msgid "Close" +msgstr "" + +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#, c++-format +msgid "Selected item: {}" msgstr "" -#: src/gui/menu_badguy_select.cpp:96 -msgid "Select enemy" +#: src/gui/menu_string_array.cpp:70 +msgid "Edit string array" msgstr "" -#: src/gui/menu_badguy_select.cpp:97 +#: src/gui/menu_string_array.cpp:79 src/gui/menu_object_select.cpp:50 +#: src/supertux/menu/profile_menu.cpp:88 msgid "Add" msgstr "" -#: src/gui/menu_badguy_select.cpp:107 src/gui/menu_color.cpp:37 -#: src/gui/dialog.hpp:81 src/gui/menu_script.cpp:47 -#: src/supertux/menu/editor_sector_menu.cpp:46 -#: src/supertux/menu/editor_levelset_menu.cpp:62 -#: src/supertux/menu/addon_menu.cpp:349 +#: src/gui/menu_string_array.cpp:80 +msgid "Insert" +msgstr "" + +#: src/gui/menu_string_array.cpp:81 +#: src/supertux/menu/addon_preview_menu.cpp:177 src/editor/object_menu.cpp:61 +msgid "Update" +msgstr "" + +#: src/gui/menu_string_array.cpp:82 src/supertux/menu/profile_menu.cpp:108 +#: src/supertux/menu/profile_menu.cpp:110 +msgid "Delete" +msgstr "" + +#: src/gui/menu_string_array.cpp:84 src/gui/menu_object_select.cpp:61 +#: src/gui/menu_color.cpp:37 src/gui/dialog.hpp:87 src/gui/menu_script.cpp:46 +#: src/supertux/menu/editor_sector_menu.cpp:48 +#: src/supertux/menu/editor_levelset_menu.cpp:58 #: src/supertux/menu/editor_new_levelset_menu.cpp:37 -#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:43 +#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:71 msgid "OK" msgstr "" -#: src/gui/menu_badguy_select.cpp:136 -msgid "Do you want to delete this badguy from the list?" +#: src/gui/menu_object_select.cpp:46 +msgid "List of objects" msgstr "" -#: src/gui/menu_badguy_select.cpp:137 src/gui/dialog.hpp:90 -#: src/supertux/menu/editor_level_select_menu.cpp:164 -#: src/supertux/menu/editor_menu.cpp:164 src/editor/editor.cpp:583 -msgid "Yes" +#: src/gui/menu_object_select.cpp:48 +#, c++-format +msgid "Select object ({})" msgstr "" -#: src/gui/menu_badguy_select.cpp:140 src/gui/dialog.hpp:91 -#: src/supertux/menu/editor_level_select_menu.cpp:168 -#: src/supertux/menu/editor_menu.cpp:167 src/editor/particle_editor.cpp:780 -#: src/editor/editor.cpp:590 -msgid "No" +#: src/gui/menu_object_select.cpp:114 +msgid "Are you sure you want to remove this object from the list?" msgstr "" #: src/gui/menu_color.cpp:24 msgid "Mix the colour" msgstr "" -#: src/gui/menu_filesystem.cpp:112 src/gui/menu_paths.cpp:44 -#: src/supertux/menu/particle_editor_save_as.cpp:42 -#: src/supertux/menu/editor_sectors_menu.cpp:45 -#: src/supertux/menu/editor_sectors_menu.cpp:95 -#: src/supertux/menu/editor_sectors_menu.cpp:100 +#: src/gui/dialog.hpp:96 src/supertux/menu/editor_level_select_menu.cpp:181 +#: src/editor/editor.cpp:663 +msgid "Yes" +msgstr "" + +#: src/gui/dialog.hpp:97 src/supertux/menu/editor_level_select_menu.cpp:185 +#: src/editor/particle_editor.cpp:781 src/editor/editor.cpp:670 +msgid "No" +msgstr "" + +#: src/gui/menu_list.cpp:38 src/gui/menu_filesystem.cpp:120 +#: src/gui/menu_paths.cpp:48 src/supertux/menu/particle_editor_save_as.cpp:42 +#: src/supertux/menu/editor_sectors_menu.cpp:45 +#: src/supertux/menu/editor_sectors_menu.cpp:94 +#: src/supertux/menu/editor_sectors_menu.cpp:99 #: src/supertux/menu/editor_objectgroup_menu.cpp:42 #: src/supertux/menu/editor_tilegroup_menu.cpp:36 -#: src/supertux/menu/editor_level_select_menu.cpp:173 +#: src/supertux/menu/editor_level_select_menu.cpp:190 #: src/supertux/menu/editor_save_as.cpp:42 #: src/supertux/menu/particle_editor_open.cpp:43 -#: src/editor/particle_editor.cpp:784 src/editor/editor.cpp:594 +#: src/editor/particle_editor.cpp:785 src/editor/editor.cpp:674 msgid "Cancel" msgstr "" +#: src/gui/menu_filesystem.cpp:118 +msgid "Open Directory" +msgstr "" + #: src/gui/menu_script.cpp:28 msgid "Edit script" msgstr "" -#: src/gui/menu_paths.cpp:30 +#: src/gui/menu_paths.cpp:32 msgid "Clone" msgstr "" -#: src/gui/menu_paths.cpp:38 +#: src/gui/menu_paths.cpp:41 msgid "" -"An error occured and the game could\n" +"An error occurred and the game could\n" "not clone the path. Please contact\n" "the developers for support." msgstr "" -#: src/gui/menu_paths.cpp:41 +#: src/gui/menu_paths.cpp:44 msgid "Bind" msgstr "" -#: src/gui/menu_paths.cpp:63 src/supertux/menu/integrations_menu.cpp:60 -#: src/supertux/menu/contrib_menu.cpp:161 src/supertux/menu/debug_menu.cpp:75 -#: src/supertux/menu/editor_level_select_menu.cpp:88 -#: src/supertux/menu/worldmap_cheat_menu.cpp:55 -#: src/supertux/menu/worldmap_cheat_menu.cpp:153 +#: src/gui/menu_paths.cpp:49 +msgid "" +"Do you wish to clone the path to edit it separately,\n" +"or do you want to bind both paths together\n" +"so that any edit on one edits the other?" +msgstr "" + +#: src/gui/menu_paths.cpp:56 +#, c++-format +msgid "Path {}" +msgstr "" + +#: src/gui/menu_paths.cpp:67 src/supertux/menu/integrations_menu.cpp:60 +#: src/supertux/menu/editor_converters_menu.cpp:79 +#: src/supertux/menu/video_system_menu.cpp:45 +#: src/supertux/menu/contrib_menu.cpp:102 src/supertux/menu/debug_menu.cpp:77 +#: src/supertux/menu/multiplayer_menu.cpp:39 +#: src/supertux/menu/custom_menu_menu.cpp:65 +#: src/supertux/menu/editor_level_select_menu.cpp:98 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:63 +#: src/supertux/menu/worldmap_cheat_menu.cpp:57 +#: src/supertux/menu/worldmap_cheat_menu.cpp:196 #: src/supertux/menu/editor_levelset_select_menu.cpp:114 -#: src/supertux/menu/options_menu.cpp:442 src/supertux/menu/profile_menu.cpp:54 -#: src/supertux/menu/addon_menu.cpp:213 +#: src/supertux/menu/options_menu.cpp:223 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:69 +#: src/supertux/menu/addon_preview_menu.cpp:193 +#: src/supertux/menu/profile_menu.cpp:118 +#: src/supertux/menu/multiplayer_players_menu.cpp:91 +#: src/supertux/menu/addon_menu.cpp:153 #: src/supertux/menu/editor_new_levelset_menu.cpp:40 +#: src/supertux/menu/options_select_menu.cpp:44 #: src/supertux/menu/world_set_menu.cpp:33 +#: src/supertux/menu/addon_browse_menu.cpp:162 #: src/supertux/menu/web_asset_menu.cpp:48 -#: src/supertux/menu/keyboard_menu.cpp:49 -#: src/supertux/menu/language_menu.cpp:56 -#: src/supertux/menu/joystick_menu.cpp:97 +#: src/supertux/menu/profile_name_menu.cpp:45 +#: src/supertux/menu/keyboard_menu.cpp:71 +#: src/supertux/menu/sorted_contrib_menu.cpp:51 +#: src/supertux/menu/language_menu.cpp:63 +#: src/supertux/menu/joystick_menu.cpp:99 #: src/supertux/menu/contrib_levelset_menu.cpp:67 -#: src/supertux/menu/cheat_menu.cpp:44 -#: src/supertux/menu/editor_delete_level_menu.cpp:43 +#: src/supertux/menu/cheat_menu.cpp:58 +#: src/supertux/menu/addon_file_install_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:43 +#: src/supertux/menu/cheat_apply_menu.cpp:63 +#: src/supertux/menu/multiplayer_player_menu.cpp:205 +#: src/supertux/menu/editor_delete_level_menu.cpp:68 msgid "Back" msgstr "" -#: src/badguy/toad.hpp:37 +#: src/addon/addon_manager.cpp:562 +msgid "Only one resource pack is allowed to be enabled at a time." +msgstr "" + +#: src/addon/addon_manager.cpp:837 +#, c++-format +msgid "Add-on {} by {} is already installed." +msgstr "" + +#: src/addon/addon_manager.cpp:857 +#, c++-format +msgid "Add-on {} by {} successfully installed." +msgstr "" + +#: src/addon/addon.cpp:71 src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Levelset" +msgstr "" + +#: src/addon/addon.cpp:74 src/supertux/menu/editor_levelset_menu.cpp:54 +#: data//images/engine/editor/objects.stoi:389 +msgid "Worldmap" +msgstr "" + +#: src/addon/addon.cpp:77 +msgid "World" +msgstr "" + +#: src/addon/addon.cpp:80 +msgid "Add-on" +msgstr "" + +#: src/addon/addon.cpp:83 +msgid "Language Pack" +msgstr "" + +#: src/addon/addon.cpp:86 +msgid "Resource Pack" +msgstr "" + +#: src/addon/addon.cpp:89 +msgid "Unknown" +msgstr "" + +#: src/addon/addon.cpp:100 +#, c++-format +msgid "{} \"{}\" by \"{}\"" +msgstr "" + +#: src/addon/addon.cpp:114 +msgid "add-on" +msgstr "" + +#: src/addon/addon.cpp:114 +msgid "add-ons" +msgstr "" + +#: src/badguy/toad.hpp:38 msgid "Toad" msgstr "" -#: src/badguy/mrtree.hpp:29 -msgid "Walking Tree" +#: src/badguy/mrtree.hpp:32 +msgid "Mr. Tree" msgstr "" -#: src/badguy/plant.hpp:33 +#: src/badguy/plant.hpp:34 msgid "Plant" msgstr "" -#: src/badguy/crystallo.hpp:30 +#: src/badguy/tarantula.hpp:39 src/badguy/tarantula.cpp:353 +msgid "Tarantula" +msgstr "" + +#: src/badguy/granito_giant.cpp:71 +msgid "Awake" +msgstr "" + +#: src/badguy/granito_giant.cpp:72 +msgid "Sleeping" +msgstr "" + +#: src/badguy/granito_giant.cpp:73 +msgid "Corrupted A" +msgstr "" + +#: src/badguy/granito_giant.cpp:74 +msgid "Corrupted B" +msgstr "" + +#: src/badguy/granito_giant.cpp:75 +msgid "Corrupted C" +msgstr "" + +#: src/badguy/crystallo.hpp:33 msgid "Crystallo" msgstr "" -#: src/badguy/totem.hpp:36 +#: src/badguy/viciousivy.cpp:45 src/badguy/snail.cpp:70 +#: src/badguy/kamikazesnowball.cpp:118 src/badguy/walkingleaf.cpp:36 +#: src/badguy/jumpy.cpp:46 src/badguy/igel.cpp:189 src/badguy/mrtree.cpp:51 +msgid "Corrupted" +msgstr "" + +#: src/badguy/totem.hpp:37 msgid "Totem" msgstr "" -#: src/badguy/stalactite.hpp:38 +#: src/badguy/stalactite.hpp:42 msgid "Stalactite" msgstr "" -#: src/badguy/haywire.hpp:45 +#: src/badguy/fish_chasing.cpp:198 +msgid "Tracking Distance" +msgstr "" + +#: src/badguy/fish_chasing.cpp:199 +msgid "Losing Distance" +msgstr "" + +#: src/badguy/fish_chasing.cpp:200 +msgid "Chase Speed" +msgstr "" + +#: src/badguy/root_sapling.hpp:41 +msgid "Root Sapling" +msgstr "" + +#: src/badguy/haywire.hpp:46 msgid "Haywire" msgstr "" -#: src/badguy/dispenser.hpp:48 +#: src/badguy/dispenser.hpp:52 msgid "Dispenser" msgstr "" -#: src/badguy/short_fuse.hpp:29 +#: src/badguy/short_fuse.hpp:30 msgid "Short Fuse" msgstr "" -#: src/badguy/zeekling.hpp:36 +#: src/badguy/zeekling.hpp:39 msgid "Zeekling" msgstr "" -#: src/badguy/mriceblock.hpp:46 -msgid "Iceblock" +#: src/badguy/smartball.cpp:35 +msgid "Pumpkin" +msgstr "" + +#: src/badguy/bouncing_snowball.cpp:82 +msgid "Fatbat" +msgstr "" + +#: src/badguy/dive_mine.hpp:50 +msgid "Dive Mine" +msgstr "" + +#: src/badguy/granito_big.hpp:33 +msgid "Big Granito" +msgstr "" + +#: src/badguy/mriceblock.hpp:49 +msgid "Mr. Iceblock" +msgstr "" + +#: src/badguy/granito.hpp:39 src/badguy/darttrap.cpp:163 +#: src/badguy/corrupted_granito.cpp:175 src/badguy/dispenser.cpp:438 +msgid "Granito" +msgstr "" + +#: src/badguy/fish_swimming.cpp:54 src/badguy/jumpy.cpp:44 +#: data//images/ice_world.strf:10 data//images/tiles.strf:28 +#: data//images/worldmap.strf:41 +msgid "Snow" +msgstr "" + +#: src/badguy/fish_swimming.cpp:55 data//images/ice_world.strf:211 +#: data//images/tiles.strf:366 data//images/worldmap.strf:67 +msgid "Forest" +msgstr "" + +#: src/badguy/crusher.hpp:71 +msgid "Crusher" +msgstr "" + +#: src/badguy/flame.cpp:84 +msgid "Fire" +msgstr "" + +#: src/badguy/flame.cpp:85 +msgid "Ghost" +msgstr "" + +#: src/badguy/corrupted_granito_big.hpp:35 +msgid "Corrupted Big Granito" msgstr "" -#: src/badguy/scrystallo.cpp:52 +#: src/badguy/scrystallo.cpp:57 msgid "Walk Radius" msgstr "" -#: src/badguy/scrystallo.cpp:53 +#: src/badguy/scrystallo.cpp:58 msgid "Awakening Radius" msgstr "" -#: src/badguy/jumpy.hpp:36 +#: src/badguy/scrystallo.cpp:59 +msgid "Roof-attached" +msgstr "" + +#: src/badguy/jumpy.hpp:40 msgid "Jumpy" msgstr "" -#: src/badguy/captainsnowball.hpp:31 +#: src/badguy/captainsnowball.hpp:32 msgid "Captain Snowball" msgstr "" -#: src/badguy/ghosttree.hpp:42 +#: src/badguy/ghosttree.hpp:43 msgid "Ghost Tree" msgstr "" -#: src/badguy/willowisp.cpp:323 +#: src/badguy/willowisp.cpp:314 msgid "Track range" msgstr "" -#: src/badguy/willowisp.cpp:324 +#: src/badguy/willowisp.cpp:315 msgid "Vanish range" msgstr "" -#: src/badguy/willowisp.cpp:325 +#: src/badguy/willowisp.cpp:316 msgid "Fly speed" msgstr "" -#: src/badguy/kugelblitz.hpp:39 +#: src/badguy/kugelblitz.hpp:40 msgid "Kugelblitz" msgstr "" -#: src/badguy/mole_rock.hpp:43 +#: src/badguy/mole_rock.hpp:44 msgid "Mole's rock" msgstr "" -#: src/badguy/badguy.cpp:849 +#: src/badguy/badguy.cpp:1064 msgid "Death script" msgstr "" -#: src/badguy/sspiky.hpp:36 +#: src/badguy/sspiky.hpp:37 msgid "Sleeping Spiky" msgstr "" -#: src/badguy/yeti_stalactite.hpp:33 +#: src/badguy/yeti_stalactite.hpp:34 msgid "Yeti's Stalactite" msgstr "" -#: src/badguy/livefire.hpp:37 +#: src/badguy/fish_harmless.hpp:30 +msgid "Harmless Fish" +msgstr "" + +#: src/badguy/livefire.hpp:38 msgid "Walking Flame" msgstr "" -#: src/badguy/livefire.hpp:68 +#: src/badguy/livefire.hpp:71 msgid "Sleeping Flame" msgstr "" -#: src/badguy/livefire.hpp:84 +#: src/badguy/livefire.hpp:89 msgid "Dormant Flame" msgstr "" -#: src/badguy/owl.hpp:39 +#: src/badguy/owl.hpp:45 msgid "Owl" msgstr "" -#: src/badguy/igel.hpp:34 +#: src/badguy/igel.hpp:38 msgid "Igel" msgstr "" -#: src/badguy/darttrap.cpp:126 +#: src/badguy/darttrap.cpp:148 msgid "Initial delay" msgstr "" -#: src/badguy/darttrap.cpp:128 +#: src/badguy/darttrap.cpp:150 msgid "Fire delay" msgstr "" -#: src/badguy/darttrap.cpp:129 +#: src/badguy/darttrap.cpp:151 msgid "Ammo" msgstr "" -#: src/badguy/snowball.hpp:29 -msgid "Snowball" +#: src/badguy/darttrap.cpp:152 +msgid "Dart sprite" msgstr "" -#: src/badguy/smartblock.hpp:29 -msgid "Smartblock" +#: src/badguy/darttrap.cpp:164 +msgid "Skull" msgstr "" -#: src/badguy/yeti.cpp:369 -msgid "Fixed position" +#: src/badguy/snowball.hpp:30 +msgid "Mr. Snowball" +msgstr "" + +#: src/badguy/smartblock.hpp:30 +msgid "Mrs. Iceblock" msgstr "" #: src/badguy/yeti.cpp:370 +msgid "Fixed position" +msgstr "" + +#: src/badguy/yeti.cpp:371 msgid "Lives" msgstr "" -#: src/badguy/goldbomb.hpp:49 +#: src/badguy/goldbomb.hpp:50 msgid "Gold Bomb" msgstr "" -#: src/badguy/flyingsnowball.hpp:32 +#: src/badguy/corrupted_granito.hpp:44 +msgid "Corrupted Granito" +msgstr "" + +#: src/badguy/mrbomb.cpp:48 +msgid "Classic" +msgstr "" + +#: src/badguy/flyingsnowball.hpp:33 msgid "Flying Snowball" msgstr "" -#: src/badguy/skullyhop.hpp:37 -msgid "Skullyhop" +#: src/badguy/crusher.cpp:75 +msgid "Ice (normal)" +msgstr "" + +#: src/badguy/crusher.cpp:76 +msgid "Ice (big)" +msgstr "" + +#: src/badguy/crusher.cpp:77 +msgid "Rock (normal)" msgstr "" -#: src/badguy/kamikazesnowball.hpp:32 -msgid "Snowshot" +#: src/badguy/crusher.cpp:78 +msgid "Rock (big)" msgstr "" -#: src/badguy/kamikazesnowball.hpp:52 +#: src/badguy/crusher.cpp:79 +msgid "Corrupted (normal)" +msgstr "" + +#: src/badguy/crusher.cpp:80 +msgid "Corrupted (big)" +msgstr "" + +#: src/badguy/crusher.cpp:492 +msgid "Sideways" +msgstr "" + +#: src/badguy/kamikazesnowball.hpp:34 +msgid "Kamikaze Snowball" +msgstr "" + +#: src/badguy/kamikazesnowball.hpp:64 msgid "Leafshot" msgstr "" -#: src/badguy/flame.hpp:41 +#: src/badguy/fish_swimming.hpp:40 +msgid "Swimming Fish" +msgstr "" + +#: src/badguy/flame.hpp:47 msgid "Flame" msgstr "" -#: src/badguy/scrystallo.hpp:30 +#: src/badguy/scrystallo.hpp:31 msgid "Sleeping Crystallo" msgstr "" -#: src/badguy/poisonivy.hpp:30 -msgid "Spring Leaf" +#: src/badguy/jumpy.cpp:45 +msgid "Wooden" +msgstr "" + +#: src/badguy/jumpy.cpp:47 +msgid "Metal" +msgstr "" + +#: src/badguy/jumpy.cpp:48 +msgid "Bag" msgstr "" #: src/badguy/willowisp.hpp:57 msgid "Will o' Wisp" msgstr "" -#: src/badguy/badguy.hpp:53 -msgid "Badguy" +#: src/badguy/fish_jumping.hpp:41 +msgid "Jumping Fish" msgstr "" -#: src/badguy/ghostflame.hpp:30 -msgid "Ghost Flame" +#: src/badguy/badguy.hpp:61 +msgid "Badguy" msgstr "" -#: src/badguy/rcrystallo.hpp:30 +#: src/badguy/rcrystallo.hpp:33 msgid "Roof Crystallo" msgstr "" -#: src/badguy/spiky.hpp:30 +#: src/badguy/spiky.hpp:31 msgid "Spiky" msgstr "" -#: src/badguy/walkingleaf.hpp:30 -msgid "Autumn Leaf" +#: src/badguy/walkingleaf.hpp:33 +msgid "Walking Leaf" +msgstr "" + +#: src/badguy/root.hpp:39 +msgid "Root" msgstr "" -#: src/badguy/owl.cpp:227 +#: src/badguy/owl.cpp:241 msgid "Carry" msgstr "" -#: src/badguy/darttrap.hpp:33 +#: src/badguy/darttrap.hpp:35 msgid "Dart Trap" msgstr "" -#: src/badguy/skydive.hpp:38 +#: src/badguy/skydive.hpp:43 msgid "Skydive" msgstr "" -#: src/badguy/yeti.hpp:37 +#: src/badguy/yeti.hpp:38 msgid "Yeti" msgstr "" -#: src/badguy/mole.hpp:39 +#: src/badguy/snowball.cpp:41 +msgid "Bumpkin" +msgstr "" + +#: src/badguy/snowball.cpp:42 +msgid "BSOD" +msgstr "" + +#: src/badguy/mole.hpp:38 msgid "Mole" msgstr "" -#: src/badguy/mrbomb.hpp:42 -msgid "Bomb" +#: src/badguy/corrupted_granito.cpp:176 +msgid "Skullyhop" +msgstr "" + +#: src/badguy/mrbomb.hpp:40 +msgid "Mr. Bomb" msgstr "" -#: src/badguy/walking_candle.hpp:40 +#: src/badguy/walking_candle.hpp:41 msgid "Walking Candle" msgstr "" -#: src/badguy/angrystone.hpp:34 +#: src/badguy/angrystone.hpp:39 msgid "Angry Stone" msgstr "" -#: src/badguy/spidermite.hpp:35 -msgid "Spider" +#: src/badguy/tarantula.cpp:354 +msgid "Spidermite" +msgstr "" + +#: src/badguy/tarantula.cpp:374 +msgid "Static" msgstr "" #: src/badguy/ghoul.hpp:30 msgid "Ghoul" msgstr "" -#: src/badguy/snowman.hpp:28 +#: src/badguy/granito_giant.hpp:32 +msgid "Giant Granito" +msgstr "" + +#: src/badguy/snowman.hpp:29 msgid "Snowman" msgstr "" -#: src/badguy/stumpy.hpp:35 -msgid "Walking Stump" +#: src/badguy/viciousivy.hpp:33 +msgid "Vicious Ivy" +msgstr "" + +#: src/badguy/stalactite.cpp:156 +msgid "ice" msgstr "" -#: src/badguy/fish.hpp:40 -msgid "Fish" +#: src/badguy/stalactite.cpp:157 +msgid "rock" msgstr "" -#: src/badguy/dispenser.cpp:445 +#: src/badguy/fish_chasing.hpp:33 +msgid "Chasing Fish" +msgstr "" + +#: src/badguy/stumpy.hpp:38 +msgid "Stumpy" +msgstr "" + +#: src/badguy/dispenser.cpp:412 msgid "Interval (seconds)" msgstr "" -#: src/badguy/dispenser.cpp:446 +#: src/badguy/dispenser.cpp:413 msgid "Random" msgstr "" -#: src/badguy/dispenser.cpp:447 data//images/engine/editor/objects.stoi:4 -msgid "Enemies" +#: src/badguy/dispenser.cpp:416 +#: src/supertux/menu/editor_objectgroup_menu.cpp:30 +#: src/editor/toolbox_widget.cpp:101 +msgid "Objects" msgstr "" -#: src/badguy/dispenser.cpp:448 +#: src/badguy/dispenser.cpp:419 msgid "Limit dispensed badguys" msgstr "" -#: src/badguy/dispenser.cpp:450 +#: src/badguy/dispenser.cpp:421 msgid "Obey Gravity" msgstr "" -#: src/badguy/dispenser.cpp:452 +#: src/badguy/dispenser.cpp:423 msgid "Max concurrent badguys" msgstr "" -#: src/badguy/dispenser.cpp:454 src/supertux/menu/editor_levelset_menu.cpp:60 -msgid "Type" +#: src/badguy/dispenser.cpp:435 +msgid "Dropper" msgstr "" -#: src/badguy/dispenser.cpp:455 -msgid "dropper" +#: src/badguy/dispenser.cpp:436 +msgid "Cannon" msgstr "" -#: src/badguy/dispenser.cpp:455 -msgid "rocket launcher" +#: src/badguy/dispenser.cpp:437 src/worldmap/special_tile.cpp:77 +msgid "Invisible" msgstr "" -#: src/badguy/dispenser.cpp:455 -msgid "cannon" +#: src/badguy/snail.hpp:43 +msgid "Snail" msgstr "" -#: src/badguy/dispenser.cpp:455 -msgid "invisible" +#: src/badguy/smartball.hpp:32 +msgid "Mrs. Snowball" msgstr "" -#: src/badguy/snail.hpp:42 -msgid "Snail" +#: src/badguy/bouncing_snowball.hpp:39 +msgid "Bouncing Snowball" msgstr "" -#: src/badguy/smartball.hpp:31 -msgid "Smartball" +#: src/badguy/granito_big.cpp:52 src/badguy/granito.cpp:263 +msgid "Default" msgstr "" -#: src/badguy/bouncing_snowball.hpp:32 -msgid "Bouncing Snowball" +#: src/badguy/granito_big.cpp:53 src/badguy/granito.cpp:264 +msgid "Standing" +msgstr "" + +#: src/badguy/granito_big.cpp:54 src/badguy/granito.cpp:265 +msgid "Walking" msgstr "" -#: src/badguy/iceflame.hpp:33 -msgid "Ice Flame" +#: src/badguy/mriceblock.cpp:63 +msgid "Laptop" msgstr "" -#: src/badguy/dart.hpp:43 +#: src/badguy/dart.hpp:44 msgid "Dart" msgstr "" +#: src/badguy/granito.cpp:268 +msgid "Sitting" +msgstr "" + #: src/supertux/statistics.cpp:54 msgid "Max coins collected:" msgstr "" @@ -1745,7 +2310,7 @@ msgstr "" msgid "Level target time:" msgstr "" -#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:160 +#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:175 msgid "Best Level Statistics" msgstr "" @@ -1757,7 +2322,7 @@ msgstr "" msgid "Best" msgstr "" -#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:166 +#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:181 msgid "Coins" msgstr "" @@ -1765,202 +2330,199 @@ msgstr "" msgid "Badguys" msgstr "" -#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:172 +#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:187 msgid "Secrets" msgstr "" -#: src/supertux/game_object.hpp:78 +#: src/supertux/game_object.hpp:88 msgid "Unknown object" msgstr "" -#: src/supertux/sector.cpp:414 +#: src/supertux/sector.cpp:507 msgid "Press escape to skip" msgstr "" -#: src/supertux/command_line_arguments.cpp:94 -#, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" +#: src/supertux/command_line_arguments.cpp:92 +#, c++-format +msgid "Usage: {} [OPTIONS] [LEVELFILE]" msgstr "" -#: src/supertux/command_line_arguments.cpp:95 +#: src/supertux/command_line_arguments.cpp:93 msgid "General Options:" msgstr "" -#: src/supertux/command_line_arguments.cpp:96 +#: src/supertux/command_line_arguments.cpp:94 msgid " -h, --help Show this help message and quit" msgstr "" -#: src/supertux/command_line_arguments.cpp:97 +#: src/supertux/command_line_arguments.cpp:95 msgid " -v, --version Show SuperTux version and quit" msgstr "" -#: src/supertux/command_line_arguments.cpp:98 +#: src/supertux/command_line_arguments.cpp:96 msgid " --verbose Print verbose messages" msgstr "" -#: src/supertux/command_line_arguments.cpp:99 +#: src/supertux/command_line_arguments.cpp:97 msgid " --debug Print extra verbose messages" msgstr "" -#: src/supertux/command_line_arguments.cpp:100 +#: src/supertux/command_line_arguments.cpp:98 msgid " --print-datadir Print SuperTux's primary data directory." msgstr "" -#: src/supertux/command_line_arguments.cpp:101 +#: src/supertux/command_line_arguments.cpp:99 msgid "" " --acknowledgements Print the licenses of libraries used by " "SuperTux." msgstr "" -#: src/supertux/command_line_arguments.cpp:103 +#: src/supertux/command_line_arguments.cpp:101 msgid "Video Options:" msgstr "" -#: src/supertux/command_line_arguments.cpp:104 +#: src/supertux/command_line_arguments.cpp:102 msgid " -f, --fullscreen Run in fullscreen mode" msgstr "" -#: src/supertux/command_line_arguments.cpp:105 +#: src/supertux/command_line_arguments.cpp:103 msgid " -w, --window Run in window mode" msgstr "" -#: src/supertux/command_line_arguments.cpp:106 +#: src/supertux/command_line_arguments.cpp:104 msgid " -g, --geometry WIDTHxHEIGHT Run SuperTux in given resolution" msgstr "" -#: src/supertux/command_line_arguments.cpp:107 +#: src/supertux/command_line_arguments.cpp:105 msgid " -a, --aspect WIDTH:HEIGHT Run SuperTux with given aspect ratio" msgstr "" -#: src/supertux/command_line_arguments.cpp:108 +#: src/supertux/command_line_arguments.cpp:106 msgid " -d, --default Reset video settings to default values" msgstr "" -#: src/supertux/command_line_arguments.cpp:109 +#: src/supertux/command_line_arguments.cpp:107 msgid " --renderer RENDERER Use sdl, opengl, or auto to render" msgstr "" -#: src/supertux/command_line_arguments.cpp:111 +#: src/supertux/command_line_arguments.cpp:109 msgid "Audio Options:" msgstr "" -#: src/supertux/command_line_arguments.cpp:112 +#: src/supertux/command_line_arguments.cpp:110 msgid " --disable-sound Disable sound effects" msgstr "" -#: src/supertux/command_line_arguments.cpp:113 +#: src/supertux/command_line_arguments.cpp:111 msgid " --disable-music Disable music" msgstr "" -#: src/supertux/command_line_arguments.cpp:115 +#: src/supertux/command_line_arguments.cpp:113 msgid "Game Options:" msgstr "" -#: src/supertux/command_line_arguments.cpp:116 +#: src/supertux/command_line_arguments.cpp:114 msgid " --edit-level Open given level in editor" msgstr "" -#: src/supertux/command_line_arguments.cpp:117 +#: src/supertux/command_line_arguments.cpp:115 msgid " --resave Loads given level and saves it" msgstr "" -#: src/supertux/command_line_arguments.cpp:118 +#: src/supertux/command_line_arguments.cpp:116 msgid " --show-fps Display framerate in levels" msgstr "" -#: src/supertux/command_line_arguments.cpp:119 +#: src/supertux/command_line_arguments.cpp:117 msgid " --no-show-fps Do not display framerate in levels" msgstr "" -#: src/supertux/command_line_arguments.cpp:120 +#: src/supertux/command_line_arguments.cpp:118 msgid " --show-pos Display player's current position" msgstr "" -#: src/supertux/command_line_arguments.cpp:121 +#: src/supertux/command_line_arguments.cpp:119 msgid " --no-show-pos Do not display player's position" msgstr "" -#: src/supertux/command_line_arguments.cpp:122 +#: src/supertux/command_line_arguments.cpp:120 msgid " --developer Switch on developer feature" msgstr "" -#: src/supertux/command_line_arguments.cpp:123 +#: src/supertux/command_line_arguments.cpp:121 msgid " -s, --debug-scripts Enable script debugger." msgstr "" -#: src/supertux/command_line_arguments.cpp:124 +#: src/supertux/command_line_arguments.cpp:122 msgid "" " --spawn-pos X,Y Where in the level to spawn Tux. Only used if " "level is specified." msgstr "" -#: src/supertux/command_line_arguments.cpp:125 +#: src/supertux/command_line_arguments.cpp:123 msgid " --sector SECTOR Spawn Tux in SECTOR\n" msgstr "" -#: src/supertux/command_line_arguments.cpp:126 +#: src/supertux/command_line_arguments.cpp:124 msgid " --spawnpoint SPAWNPOINT Spawn Tux at SPAWNPOINT\n" msgstr "" -#: src/supertux/command_line_arguments.cpp:128 -msgid "Demo Recording Options:" -msgstr "" - -#: src/supertux/command_line_arguments.cpp:129 -msgid " --record-demo FILE LEVEL Record a demo to FILE" -msgstr "" - -#: src/supertux/command_line_arguments.cpp:130 -msgid " --play-demo FILE LEVEL Play a recorded demo" -msgstr "" - -#: src/supertux/command_line_arguments.cpp:132 +#: src/supertux/command_line_arguments.cpp:126 msgid "Directory Options:" msgstr "" -#: src/supertux/command_line_arguments.cpp:133 +#: src/supertux/command_line_arguments.cpp:127 msgid "" " --datadir DIR Set the directory for the games datafiles" msgstr "" -#: src/supertux/command_line_arguments.cpp:134 +#: src/supertux/command_line_arguments.cpp:128 msgid "" " --userdir DIR Set the directory for user data (savegames, " "etc.)" msgstr "" -#: src/supertux/command_line_arguments.cpp:136 +#: src/supertux/command_line_arguments.cpp:130 msgid "Add-On Options:" msgstr "" -#: src/supertux/command_line_arguments.cpp:137 +#: src/supertux/command_line_arguments.cpp:131 msgid " --repository-url URL Set the URL to the Add-On repository" msgstr "" -#: src/supertux/command_line_arguments.cpp:139 +#: src/supertux/command_line_arguments.cpp:133 msgid "Environment variables:" msgstr "" -#: src/supertux/command_line_arguments.cpp:140 +#: src/supertux/command_line_arguments.cpp:134 msgid "" " SUPERTUX2_USER_DIR Directory for user data (savegames, etc.)" msgstr "" -#: src/supertux/command_line_arguments.cpp:141 +#: src/supertux/command_line_arguments.cpp:135 msgid " SUPERTUX2_DATA_DIR Directory for the games datafiles" msgstr "" -#: src/supertux/title_screen.cpp:44 +#: src/supertux/title_screen.cpp:272 msgid "Copyright" msgstr "" -#: src/supertux/title_screen.cpp:45 +#: src/supertux/title_screen.cpp:273 msgid "" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you " "are welcome to\n" "redistribute it under certain conditions; see the license file for details.\n" msgstr "" +#: src/supertux/game_object.cpp:114 +msgid "Version" +msgstr "" + +#: src/supertux/game_object.cpp:129 +#: src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Type" +msgstr "" + #: src/supertux/menu/integrations_menu.cpp:49 msgid "Integrations" msgstr "" @@ -1969,60 +2531,144 @@ msgstr "" msgid "Do not share level names when editing" msgstr "" +#: src/supertux/menu/integrations_menu.cpp:52 +msgid "" +"Enable this if you want to work on secret levels and don't want the names to " +"be spoiled" +msgstr "" + #: src/supertux/menu/integrations_menu.cpp:54 msgid "Enable Discord integration" msgstr "" +#: src/supertux/menu/integrations_menu.cpp:55 +msgid "" +"Sends information to your Discord application about what you're doing in the " +"game." +msgstr "" + #: src/supertux/menu/integrations_menu.cpp:57 msgid "Discord (disabled; not compiled)" msgstr "" -#: src/supertux/menu/contrib_menu.cpp:80 -#: src/supertux/menu/world_set_menu.cpp:31 -msgid "Contrib Levels" +#: src/supertux/menu/editor_converters_menu.cpp:61 +#: src/supertux/menu/editor_menu.cpp:85 +msgid "Convert Tiles" msgstr "" -#: src/supertux/menu/debug_menu.cpp:32 -msgid "Debug" +#: src/supertux/menu/editor_converters_menu.cpp:64 +msgid "Select Tile Conversion File" msgstr "" -#: src/supertux/menu/debug_menu.cpp:56 -msgid "Game Speed" +#: src/supertux/menu/editor_converters_menu.cpp:72 +#, c++-format +msgid "By: {}" msgstr "" -#: src/supertux/menu/debug_menu.cpp:57 -msgid "Adjust Game Speed" +#: src/supertux/menu/editor_converters_menu.cpp:75 +msgid "Convert Tiles By File" msgstr "" -#: src/supertux/menu/debug_menu.cpp:63 -msgid "Show Collision Rects" +#: src/supertux/menu/editor_converters_menu.cpp:76 +msgid "Convert all tiles in the current level by a file, specified above." msgstr "" -#: src/supertux/menu/debug_menu.cpp:64 -msgid "Show Worldmap Path" +#: src/supertux/menu/editor_converters_menu.cpp:89 +msgid "No tile conversion file selected." msgstr "" -#: src/supertux/menu/debug_menu.cpp:65 -msgid "Show Controller" +#: src/supertux/menu/editor_converters_menu.cpp:93 +msgid "" +"This will convert all tiles in the level. Proceed?\n" +"\n" +"Note: This should not be ran more than once on a level.\n" +"Creating a separate copy of the level is highly recommended." msgstr "" -#: src/supertux/menu/debug_menu.cpp:66 -msgid "Show Framerate" +#: src/supertux/menu/video_system_menu.cpp:36 +msgid "Select Video System" msgstr "" -#: src/supertux/menu/debug_menu.cpp:67 -msgid "Draw Redundant Frames" +#: src/supertux/menu/video_system_menu.cpp:37 +#, c++-format +msgid "Used video system: {}" msgstr "" -#: src/supertux/menu/debug_menu.cpp:68 -msgid "Show Player Position" +#: src/supertux/menu/video_system_menu.cpp:54 +msgid "Restart game for the changes to take effect" msgstr "" -#: src/supertux/menu/debug_menu.cpp:69 -msgid "Use Bitmap Fonts" +#: src/supertux/menu/contrib_menu.cpp:68 +#: src/supertux/menu/world_set_menu.cpp:31 +msgid "Contrib Levels" +msgstr "" + +#: src/supertux/menu/contrib_menu.cpp:98 src/supertux/menu/contrib_menu.cpp:112 +msgid "Official Contrib Levels" +msgstr "" + +#: src/supertux/menu/contrib_menu.cpp:99 src/supertux/menu/contrib_menu.cpp:118 +msgid "Community Contrib Levels" +msgstr "" + +#: src/supertux/menu/contrib_menu.cpp:100 +#: src/supertux/menu/contrib_menu.cpp:124 +msgid "User Contrib Levels" +msgstr "" + +#: src/supertux/menu/contrib_menu.cpp:113 +msgid "How is this possible? There are no Official Contrib Levels!" +msgstr "" + +#: src/supertux/menu/contrib_menu.cpp:119 +msgid "No Community Contrib Levels yet. Download them from the Add-ons Menu." +msgstr "" + +#: src/supertux/menu/contrib_menu.cpp:125 +msgid "No User Contrib Levels yet. Create some with the Level Editor." +msgstr "" + +#: src/supertux/menu/debug_menu.cpp:34 +msgid "Debug" +msgstr "" + +#: src/supertux/menu/debug_menu.cpp:58 +msgid "Game Speed" +msgstr "" + +#: src/supertux/menu/debug_menu.cpp:59 +msgid "Adjust Game Speed" msgstr "" -#: src/supertux/menu/debug_menu.cpp:72 +#: src/supertux/menu/debug_menu.cpp:65 +msgid "Show Collision Rects" +msgstr "" + +#: src/supertux/menu/debug_menu.cpp:66 +msgid "Show Worldmap Path" +msgstr "" + +#: src/supertux/menu/debug_menu.cpp:67 +msgid "Show Controller" +msgstr "" + +#: src/supertux/menu/debug_menu.cpp:68 +msgid "Show Framerate" +msgstr "" + +#: src/supertux/menu/debug_menu.cpp:69 +msgid "Draw Redundant Frames" +msgstr "" + +#: src/supertux/menu/debug_menu.cpp:70 +msgid "Show Player Position" +msgstr "" + +#: src/supertux/menu/debug_menu.cpp:71 +msgid "Use Bitmap Fonts" +msgstr "" + +#: src/supertux/menu/debug_menu.cpp:74 msgid "Dump Texture Cache" msgstr "" @@ -2036,10 +2682,37 @@ msgid "File name" msgstr "" #: src/supertux/menu/particle_editor_save_as.cpp:38 -#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:766 +#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:767 msgid "Save" msgstr "" +#: src/supertux/menu/multiplayer_menu.cpp:27 +#: src/supertux/menu/multiplayer_players_menu.cpp:34 +msgid "Multiplayer" +msgstr "" + +#: src/supertux/menu/multiplayer_menu.cpp:30 +msgid "Auto-manage Players" +msgstr "" + +#: src/supertux/menu/multiplayer_menu.cpp:31 +msgid "" +"Automatically add and remove players when controllers are plugged or " +"unplugged" +msgstr "" + +#: src/supertux/menu/multiplayer_menu.cpp:33 +msgid "Allow Multibind" +msgstr "" + +#: src/supertux/menu/multiplayer_menu.cpp:34 +msgid "Allow binding multiple joysticks to a single player" +msgstr "" + +#: src/supertux/menu/multiplayer_menu.cpp:36 +msgid "Manage Players" +msgstr "" + #: src/supertux/menu/editor_sectors_menu.cpp:31 msgid "Choose Sector" msgstr "" @@ -2056,50 +2729,98 @@ msgstr "" msgid "Delete Sector" msgstr "" -#: src/supertux/menu/editor_sectors_menu.cpp:93 +#: src/supertux/menu/editor_sectors_menu.cpp:92 msgid "Each level must have at least one sector." msgstr "" -#: src/supertux/menu/editor_sectors_menu.cpp:98 +#: src/supertux/menu/editor_sectors_menu.cpp:97 msgid "Do you really want to delete this sector?" msgstr "" -#: src/supertux/menu/editor_sectors_menu.cpp:101 +#: src/supertux/menu/editor_sectors_menu.cpp:100 msgid "Delete sector" msgstr "" -#: src/supertux/menu/editor_objectgroup_menu.cpp:30 -#: src/editor/toolbox_widget.cpp:93 -msgid "Objects" +#: src/supertux/menu/custom_menu_menu.cpp:49 +#: src/supertux/menu/options_menu.cpp:191 +msgid "Menu Customization" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:51 +msgid "Menu Back Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:52 +msgid "Menu Front Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:53 +msgid "Menu Help Back Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:54 +msgid "Menu Help Front Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:55 +msgid "Label Text Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:56 +msgid "Active Text Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:57 +msgid "Divider Line Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:58 +msgid "Menu Roundness" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:60 +msgid "Editor Interface Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:61 +msgid "Editor Hover Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:62 +msgid "Editor Grab Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:64 +msgid "Reset to defaults" msgstr "" -#: src/supertux/menu/editor_level_select_menu.cpp:62 +#: src/supertux/menu/editor_level_select_menu.cpp:72 msgid "Empty World" msgstr "" -#: src/supertux/menu/editor_level_select_menu.cpp:77 +#: src/supertux/menu/editor_level_select_menu.cpp:87 msgid "Create Level" msgstr "" -#: src/supertux/menu/editor_level_select_menu.cpp:81 +#: src/supertux/menu/editor_level_select_menu.cpp:91 msgid "Edit Worldmap" msgstr "" -#: src/supertux/menu/editor_level_select_menu.cpp:83 +#: src/supertux/menu/editor_level_select_menu.cpp:93 msgid "Create Worldmap" msgstr "" -#: src/supertux/menu/editor_level_select_menu.cpp:85 -#: src/supertux/menu/editor_delete_level_menu.cpp:33 +#: src/supertux/menu/editor_level_select_menu.cpp:95 +#: src/supertux/menu/editor_delete_level_menu.cpp:55 msgid "Delete level" msgstr "" -#: src/supertux/menu/editor_level_select_menu.cpp:87 -#: src/supertux/menu/editor_levelset_menu.cpp:56 +#: src/supertux/menu/editor_level_select_menu.cpp:97 +#: src/supertux/menu/editor_levelset_menu.cpp:50 msgid "World Settings" msgstr "" -#: src/supertux/menu/editor_level_select_menu.cpp:127 +#: src/supertux/menu/editor_level_select_menu.cpp:141 msgid "" "Share this worldmap under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -2108,7 +2829,7 @@ msgid "" "license." msgstr "" -#: src/supertux/menu/editor_level_select_menu.cpp:134 +#: src/supertux/menu/editor_level_select_menu.cpp:148 msgid "" "Share this level under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -2117,492 +2838,810 @@ msgid "" "license." msgstr "" -#: src/supertux/menu/editor_level_select_menu.cpp:162 +#: src/supertux/menu/editor_level_select_menu.cpp:179 msgid "" "An auto-save recovery file was found. Would you like to restore the " "recovery\n" "file and resume where you were before the editor crashed?" msgstr "" -#: src/supertux/menu/editor_level_select_menu.cpp:169 +#: src/supertux/menu/editor_level_select_menu.cpp:186 msgid "This will delete the auto-save file. Are you sure?" msgstr "" -#: src/supertux/menu/worldmap_cheat_menu.cpp:34 -#: src/supertux/menu/cheat_menu.cpp:30 -msgid "Cheats" +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:35 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:52 +#: src/supertux/menu/cheat_apply_menu.cpp:33 +#: src/supertux/menu/cheat_apply_menu.cpp:51 +msgid "Apply cheat to player" +msgstr "" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:60 +#: src/supertux/menu/multiplayer_players_menu.cpp:39 +#: src/supertux/menu/keyboard_menu.cpp:63 +#: src/supertux/menu/cheat_apply_menu.cpp:39 +#: src/supertux/menu/cheat_apply_menu.cpp:59 +#: src/supertux/menu/multiplayer_player_menu.cpp:37 +#, c++-format +msgid "Player {}" +msgstr "" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:57 +#: src/supertux/menu/cheat_apply_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:56 +msgid "All Players" msgstr "" #: src/supertux/menu/worldmap_cheat_menu.cpp:36 -#: src/supertux/menu/cheat_menu.cpp:32 +#: src/supertux/menu/cheat_menu.cpp:31 +msgid "Cheats" +msgstr "" + +#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:33 msgid "Bonus: Grow" msgstr "" -#: src/supertux/menu/worldmap_cheat_menu.cpp:37 +#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:34 msgid "Bonus: Fire" msgstr "" -#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/cheat_menu.cpp:35 msgid "Bonus: Ice" msgstr "" -#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/cheat_menu.cpp:36 msgid "Bonus: Air" msgstr "" -#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:42 +#: src/supertux/menu/cheat_menu.cpp:37 msgid "Bonus: Earth" msgstr "" -#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/worldmap_cheat_menu.cpp:43 msgid "Bonus: None" msgstr "" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:51 msgid "Leave Ghost Mode" msgstr "" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:50 msgid "Activate Ghost Mode" msgstr "" -#: src/supertux/menu/worldmap_cheat_menu.cpp:46 -#: src/supertux/menu/cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:48 +#: src/supertux/menu/cheat_menu.cpp:41 msgid "Finish Level" msgstr "" -#: src/supertux/menu/worldmap_cheat_menu.cpp:47 +#: src/supertux/menu/worldmap_cheat_menu.cpp:49 msgid "Reset Level" msgstr "" -#: src/supertux/menu/worldmap_cheat_menu.cpp:49 +#: src/supertux/menu/worldmap_cheat_menu.cpp:51 msgid "Finish Worldmap" msgstr "" -#: src/supertux/menu/worldmap_cheat_menu.cpp:50 +#: src/supertux/menu/worldmap_cheat_menu.cpp:52 msgid "Reset Worldmap" msgstr "" -#: src/supertux/menu/worldmap_cheat_menu.cpp:52 +#: src/supertux/menu/worldmap_cheat_menu.cpp:54 msgid "Go to level" msgstr "" -#: src/supertux/menu/worldmap_cheat_menu.cpp:53 +#: src/supertux/menu/worldmap_cheat_menu.cpp:55 msgid "Go to main spawnpoint" msgstr "" -#: src/supertux/menu/worldmap_cheat_menu.cpp:145 +#: src/supertux/menu/worldmap_cheat_menu.cpp:188 msgid "Select level" msgstr "" -#: src/supertux/menu/editor_save_as.cpp:33 src/supertux/menu/editor_menu.cpp:49 +#: src/supertux/menu/editor_save_as.cpp:33 src/supertux/menu/editor_menu.cpp:63 msgid "Save Level as" msgstr "" -#: src/supertux/menu/editor_save_as.cpp:33 src/supertux/menu/editor_menu.cpp:50 +#: src/supertux/menu/editor_save_as.cpp:33 src/supertux/menu/editor_menu.cpp:64 msgid "Save Copy" msgstr "" -#: src/supertux/menu/editor_levelset_select_menu.cpp:72 +#: src/supertux/menu/editor_levelset_select_menu.cpp:71 msgid "Choose World" msgstr "" -#: src/supertux/menu/editor_levelset_select_menu.cpp:100 -#, c-format -msgid "%d level" -msgid_plural "%d levels" +#: src/supertux/menu/editor_levelset_select_menu.cpp:99 +#, c++-format +msgid "{} level" +msgid_plural "{} levels" msgstr[0] "" msgstr[1] "" -#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_levelset_select_menu.cpp:112 msgid "Create World" msgstr "" -#: src/supertux/menu/options_menu.cpp:98 src/supertux/menu/main_menu.cpp:64 -#: src/supertux/menu/game_menu.cpp:61 src/supertux/menu/worldmap_menu.cpp:31 -msgid "Options" +#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:41 +msgid "Delete World" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:72 +#: src/supertux/menu/options_select_menu.cpp:35 +msgid "Locale" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:76 +msgid "Select Language" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:77 +msgid "Select a different language to display text in" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:79 +msgid "Language Packs" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:80 +msgid "Language packs contain up-to-date translations" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:88 +#: src/supertux/menu/options_select_menu.cpp:37 +msgid "Video" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:91 +msgid "Window Resizable" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:92 +msgid "Allow window resizing, might require a restart to take effect" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:96 +msgid "Fullscreen" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:97 +msgid "Fill the entire screen" msgstr "" #: src/supertux/menu/options_menu.cpp:104 -#: src/supertux/menu/options_menu.cpp:142 -#: src/supertux/menu/options_menu.cpp:455 -#: src/supertux/menu/options_menu.cpp:476 src/editor/object_settings.cpp:119 -msgid "auto" +msgid "Fit to browser" msgstr "" -#: src/supertux/menu/options_menu.cpp:221 -msgid "Desktop" +#: src/supertux/menu/options_menu.cpp:105 +msgid "Fit the resolution to the size of your browser" msgstr "" -#: src/supertux/menu/options_menu.cpp:251 -msgid "on" +#: src/supertux/menu/options_menu.cpp:116 +msgid "Change Video System" msgstr "" -#: src/supertux/menu/options_menu.cpp:252 -msgid "off" +#: src/supertux/menu/options_menu.cpp:117 +msgid "Change video system used to render graphics" msgstr "" -#: src/supertux/menu/options_menu.cpp:253 -msgid "adaptive" +#: src/supertux/menu/options_menu.cpp:124 +#: src/supertux/menu/options_select_menu.cpp:38 +msgid "Audio" msgstr "" -#: src/supertux/menu/options_menu.cpp:347 -msgid "Select Language" +#: src/supertux/menu/options_menu.cpp:129 +msgid "Disable all sound effects" msgstr "" -#: src/supertux/menu/options_menu.cpp:348 -msgid "Select a different language to display text in" +#: src/supertux/menu/options_menu.cpp:131 +msgid "Disable all music" msgstr "" -#: src/supertux/menu/options_menu.cpp:350 -msgid "Language Packs" +#: src/supertux/menu/options_menu.cpp:138 +msgid "Sound (disabled)" msgstr "" -#: src/supertux/menu/options_menu.cpp:351 -msgid "Language packs contain up-to-date translations" +#: src/supertux/menu/options_menu.cpp:139 +msgid "Music (disabled)" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:147 +#: src/supertux/menu/options_select_menu.cpp:39 +msgid "Controls" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:151 +msgid "Enable Rumbling Controllers" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "Enable vibrating the game controllers." +msgstr "" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "This feature is currently only used in the multiplayer options menu." msgstr "" -#: src/supertux/menu/options_menu.cpp:353 src/supertux/menu/profile_menu.cpp:34 +#: src/supertux/menu/options_menu.cpp:154 +#: src/supertux/menu/keyboard_menu.cpp:34 +msgid "Setup Keyboard" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:155 +msgid "Configure key-action mappings" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:158 +#: src/supertux/menu/joystick_menu.cpp:54 +msgid "Setup Joystick" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:159 +msgid "Configure joystick control-action mappings" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:167 +#: src/supertux/menu/options_select_menu.cpp:40 +msgid "Extras" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:170 src/supertux/menu/profile_menu.cpp:56 msgid "Select Profile" msgstr "" -#: src/supertux/menu/options_menu.cpp:354 +#: src/supertux/menu/options_menu.cpp:171 msgid "Select a profile to play with" msgstr "" -#: src/supertux/menu/options_menu.cpp:358 -msgid "Window Resizable" +#: src/supertux/menu/options_menu.cpp:174 +msgid "Multiplayer settings" msgstr "" -#: src/supertux/menu/options_menu.cpp:359 -msgid "Allow window resizing, might require a restart to take effect" +#: src/supertux/menu/options_menu.cpp:175 +msgid "Configure settings specific to multiplayer" msgstr "" -#: src/supertux/menu/options_menu.cpp:361 -msgid "Window Resolution" +#: src/supertux/menu/options_menu.cpp:178 +msgid "Enable transitions" msgstr "" -#: src/supertux/menu/options_menu.cpp:362 -msgid "Resize the window to the given size" +#: src/supertux/menu/options_menu.cpp:179 +msgid "Enable screen transitions and smooth menu animation" msgstr "" -#: src/supertux/menu/options_menu.cpp:364 -msgid "Fullscreen" +#: src/supertux/menu/options_menu.cpp:181 +msgid "Custom title screen levels" msgstr "" -#: src/supertux/menu/options_menu.cpp:365 -msgid "Fill the entire screen" +#: src/supertux/menu/options_menu.cpp:182 +msgid "Allow overriding the title screen level, when loading certain worlds" msgstr "" -#: src/supertux/menu/options_menu.cpp:367 -msgid "Fullscreen Resolution" +#: src/supertux/menu/options_menu.cpp:185 +msgid "Christmas Mode" msgstr "" -#: src/supertux/menu/options_menu.cpp:368 +#: src/supertux/menu/options_menu.cpp:187 +msgid "Integrations and presence" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:188 msgid "" -"Determine the resolution used in fullscreen mode (you must toggle fullscreen " -"to complete the change)" +"Manage whether SuperTux should display the levels you play on your social " +"media profiles (Discord)" msgstr "" -#: src/supertux/menu/options_menu.cpp:373 -msgid "Fit to browser" +#: src/supertux/menu/options_menu.cpp:192 +msgid "Customize the appearance of the menus" msgstr "" -#: src/supertux/menu/options_menu.cpp:374 -msgid "Fit the resolution to the size of your browser" +#: src/supertux/menu/options_menu.cpp:199 +#: src/supertux/menu/options_select_menu.cpp:41 +msgid "Advanced" msgstr "" -#: src/supertux/menu/options_menu.cpp:378 -msgid "Magnification" +#: src/supertux/menu/options_menu.cpp:204 +msgid "Developer Mode" msgstr "" -#: src/supertux/menu/options_menu.cpp:379 -msgid "Change the magnification of the game area" +#: src/supertux/menu/options_menu.cpp:206 +msgid "Confirmation Dialog" msgstr "" -#: src/supertux/menu/options_menu.cpp:381 -msgid "VSync" +#: src/supertux/menu/options_menu.cpp:206 +msgid "Confirm aborting level" msgstr "" -#: src/supertux/menu/options_menu.cpp:382 -msgid "Set the VSync mode" +#: src/supertux/menu/options_menu.cpp:208 +msgid "Pause on focus loss" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:209 +msgid "Automatically pause the game when the window loses focus" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:211 +msgid "Use custom mouse cursor" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:211 +msgid "Whether the game renders its own cursor or uses the system's cursor" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:214 +msgid "Check for new releases" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:215 +msgid "" +"Allows the game to perform checks for new SuperTux releases on startup and " +"notify if any found." +msgstr "" + +#: src/supertux/menu/options_menu.cpp:245 +#: src/supertux/menu/options_menu.cpp:288 src/supertux/direction.cpp:76 +msgid "auto" msgstr "" -#: src/supertux/menu/options_menu.cpp:385 +#: src/supertux/menu/options_menu.cpp:281 +msgid "Magnification" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:282 +msgid "Change the magnification of the game area" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:318 msgid "Aspect Ratio" msgstr "" -#: src/supertux/menu/options_menu.cpp:386 +#: src/supertux/menu/options_menu.cpp:319 msgid "Adjust the aspect ratio" msgstr "" -#: src/supertux/menu/options_menu.cpp:392 -msgid "Disable all sound effects" +#: src/supertux/menu/options_menu.cpp:346 +msgid "Window Resolution" msgstr "" -#: src/supertux/menu/options_menu.cpp:394 -msgid "Disable all music" +#: src/supertux/menu/options_menu.cpp:347 +msgid "Resize the window to the given size" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:377 +msgid "Desktop" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:404 +msgid "Fullscreen Resolution" msgstr "" -#: src/supertux/menu/options_menu.cpp:396 +#: src/supertux/menu/options_menu.cpp:405 +msgid "" +"Determine the resolution used in fullscreen mode (you must toggle fullscreen " +"to complete the change)" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:411 +msgid "on" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:412 +msgid "off" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:413 +msgid "adaptive" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:431 +msgid "VSync" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:432 +msgid "Set the VSync mode" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:467 msgid "Sound Volume" msgstr "" -#: src/supertux/menu/options_menu.cpp:397 +#: src/supertux/menu/options_menu.cpp:468 msgid "Adjust sound volume" msgstr "" -#: src/supertux/menu/options_menu.cpp:399 +#: src/supertux/menu/options_menu.cpp:503 msgid "Music Volume" msgstr "" -#: src/supertux/menu/options_menu.cpp:400 +#: src/supertux/menu/options_menu.cpp:504 msgid "Adjust music volume" msgstr "" -#: src/supertux/menu/options_menu.cpp:404 -msgid "Sound (disabled)" +#: src/supertux/menu/options_menu.cpp:517 +msgid "On-screen controls scale" msgstr "" -#: src/supertux/menu/options_menu.cpp:405 -msgid "Music (disabled)" +#: src/supertux/menu/options_menu.cpp:638 +msgid "" +"The game couldn't detect your browser resolution.\n" +"This most likely happens because it is not embedded\n" +"in the SuperTux custom HTML template.\n" msgstr "" -#: src/supertux/menu/options_menu.cpp:408 -#: src/supertux/menu/keyboard_menu.cpp:30 -msgid "Setup Keyboard" +#: src/supertux/menu/editor_delete_levelset_menu.cpp:80 +msgid "You cannot delete the world that you are editing" msgstr "" -#: src/supertux/menu/options_menu.cpp:409 -msgid "Configure key-action mappings" +#: src/supertux/menu/editor_delete_levelset_menu.cpp:83 +#, c++-format +msgid "You are about to delete world \"{}\". Are you sure?" msgstr "" -#: src/supertux/menu/options_menu.cpp:412 -#: src/supertux/menu/joystick_menu.cpp:52 -msgid "Setup Joystick" +#: src/supertux/menu/addon_preview_menu.cpp:82 +#, c++-format +msgid "{} \"{}\"" msgstr "" -#: src/supertux/menu/options_menu.cpp:413 -msgid "Configure joystick control-action mappings" +#: src/supertux/menu/addon_preview_menu.cpp:87 +msgid "Some information about this add-on is not available." msgstr "" -#: src/supertux/menu/options_menu.cpp:417 -msgid "On-screen controls" +#: src/supertux/menu/addon_preview_menu.cpp:88 +msgid "Perform a \"Check Online\" to try retrieving it." msgstr "" -#: src/supertux/menu/options_menu.cpp:418 -msgid "Toggle on-screen controls for mobile devices" +#: src/supertux/menu/addon_preview_menu.cpp:92 +msgid "No author specified." msgstr "" -#: src/supertux/menu/options_menu.cpp:420 -msgid "Enable transitions" +#: src/supertux/menu/addon_preview_menu.cpp:92 +#, c++-format +msgid "Author: {}" msgstr "" -#: src/supertux/menu/options_menu.cpp:421 -msgid "Enable screen transitions and smooth menu animation" +#: src/supertux/menu/addon_preview_menu.cpp:93 +#, c++-format +msgid "Type: {}" msgstr "" -#: src/supertux/menu/options_menu.cpp:425 -msgid "Developer Mode" +#: src/supertux/menu/addon_preview_menu.cpp:94 +msgid "No license specified." msgstr "" -#: src/supertux/menu/options_menu.cpp:430 -msgid "Christmas Mode" +#: src/supertux/menu/addon_preview_menu.cpp:94 +#, c++-format +msgid "License: {}" msgstr "" -#: src/supertux/menu/options_menu.cpp:433 -msgid "Confirmation Dialog" +#: src/supertux/menu/addon_preview_menu.cpp:99 +msgid "Dependencies:" msgstr "" -#: src/supertux/menu/options_menu.cpp:433 -msgid "Confirm aborting level" +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Installed" msgstr "" -#: src/supertux/menu/options_menu.cpp:434 -msgid "Pause on focus loss" +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Not installed" msgstr "" -#: src/supertux/menu/options_menu.cpp:435 -msgid "Automatically pause the game when the window loses focus" +#: src/supertux/menu/addon_preview_menu.cpp:113 +msgid "Not available!" msgstr "" -#: src/supertux/menu/options_menu.cpp:436 -msgid "Use custom mouse cursor" +#: src/supertux/menu/addon_preview_menu.cpp:120 +msgid "Description:" msgstr "" -#: src/supertux/menu/options_menu.cpp:436 -msgid "Whether the game renders its own cursor or uses the system's cursor" +#: src/supertux/menu/addon_preview_menu.cpp:123 +msgid "No description available." msgstr "" -#: src/supertux/menu/options_menu.cpp:438 -msgid "Integrations and presence" +#: src/supertux/menu/addon_preview_menu.cpp:147 +msgid "Failed to load all available screenshot previews." +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:152 +msgid "Show screenshots" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:165 +msgid "Screenshot previews are disabled for automatic installs." +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:169 +msgid "No screenshot previews available." +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:177 +msgid "Install" msgstr "" -#: src/supertux/menu/options_menu.cpp:439 +#: src/supertux/menu/addon_preview_menu.cpp:190 +msgid "Uninstall" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:214 +#, c++-format +msgid "Are you sure you want to uninstall \"{}\"?" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:215 msgid "" -"Manage whether SuperTux should display the levels you play on your social " -"media profiles (Discord)" +"\n" +"Your progress won't be lost." msgstr "" -#: src/supertux/menu/options_menu.cpp:559 +#: src/supertux/menu/addon_preview_menu.cpp:227 +#, c++-format msgid "" -"The game couldn't detect your browser resolution.\n" -"This most likely happens because it is not embedded\n" -"in the SuperTux custom HTML template.\n" +"NOTE: The add-on \"{}\" is a dependency of {} other installed {}.\n" +"Are you sure you wish to uninstall?" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:246 +#, c++-format +msgid "" +"Cannot toggle add-on \"{}\":\n" +"{}" msgstr "" -#: src/supertux/menu/main_menu.cpp:56 src/supertux/menu/world_set_menu.cpp:28 +#: src/supertux/menu/addon_preview_menu.cpp:279 +msgid "Fetching screenshot previews..." +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Updating" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Downloading" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:328 +msgid "Add-on uninstalled successfully." +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:333 +#, c++-format +msgid "" +"Error uninstalling add-on:\n" +"{}" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:361 +msgid "" +"Please restart SuperTux\n" +"for these changes to take effect." +msgstr "" + +#: src/supertux/menu/main_menu.cpp:51 src/supertux/menu/world_set_menu.cpp:28 msgid "Start Game" msgstr "" -#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/addon_menu.cpp:122 +#: src/supertux/menu/main_menu.cpp:55 msgid "Add-ons" msgstr "" -#: src/supertux/menu/main_menu.cpp:62 src/supertux/menu/web_asset_menu.cpp:38 +#: src/supertux/menu/main_menu.cpp:57 src/supertux/menu/web_asset_menu.cpp:38 msgid "Manage Assets" msgstr "" -#: src/supertux/menu/main_menu.cpp:65 src/supertux/menu/editor_menu.cpp:43 +#: src/supertux/menu/main_menu.cpp:59 +#: src/supertux/menu/options_select_menu.cpp:29 +#: src/supertux/menu/game_menu.cpp:58 src/supertux/menu/worldmap_menu.cpp:31 +#: src/supertux/menu/editor_menu.cpp:70 +msgid "Options" +msgstr "" + +#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/editor_menu.cpp:58 msgid "Level Editor" msgstr "" -#: src/supertux/menu/main_menu.cpp:66 +#: src/supertux/menu/main_menu.cpp:61 msgid "Credits" msgstr "" -#: src/supertux/menu/main_menu.cpp:67 +#: src/supertux/menu/main_menu.cpp:64 msgid "Donate" msgstr "" -#: src/supertux/menu/main_menu.cpp:69 +#: src/supertux/menu/main_menu.cpp:67 msgid "Quit" msgstr "" -#: src/supertux/menu/editor_sector_menu.cpp:35 +#: src/supertux/menu/main_menu.cpp:106 +msgid "" +"This will take you to the SuperTux donation page. Are you sure you want to " +"continue?" +msgstr "" + +#: src/supertux/menu/editor_sector_menu.cpp:34 +#, c++-format +msgid "Sector {}" +msgstr "" + +#: src/supertux/menu/editor_sector_menu.cpp:37 msgid "Initialization script" msgstr "" -#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_sector_menu.cpp:38 msgid "Gravity" msgstr "" -#: src/supertux/menu/editor_sector_menu.cpp:41 +#: src/supertux/menu/editor_sector_menu.cpp:43 msgid "Resize offset X" msgstr "" -#: src/supertux/menu/editor_sector_menu.cpp:42 +#: src/supertux/menu/editor_sector_menu.cpp:44 msgid "Resize offset Y" msgstr "" -#: src/supertux/menu/editor_sector_menu.cpp:43 +#: src/supertux/menu/editor_sector_menu.cpp:45 msgid "Resize" msgstr "" -#: src/supertux/menu/profile_menu.cpp:41 -#, c-format -msgid "[Profile %s]" +#: src/supertux/menu/profile_menu.cpp:60 +msgid "No profiles found." +msgstr "" + +#: src/supertux/menu/profile_menu.cpp:68 src/supertux/menu/profile_menu.cpp:149 +#: src/supertux/menu/profile_menu.cpp:168 +#, c++-format +msgid "Profile {}" +msgstr "" + +#: src/supertux/menu/profile_menu.cpp:69 +#, c++-format +msgid "{} (Profile {})" +msgstr "" + +#: src/supertux/menu/profile_menu.cpp:84 +msgid "No profile selected." +msgstr "" + +#: src/supertux/menu/profile_menu.cpp:91 src/supertux/menu/profile_menu.cpp:93 +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Rename" msgstr "" -#: src/supertux/menu/profile_menu.cpp:45 -#, c-format -msgid "Profile %s" +#: src/supertux/menu/profile_menu.cpp:98 src/supertux/menu/profile_menu.cpp:100 +msgid "Reset" msgstr "" -#: src/supertux/menu/profile_menu.cpp:50 -msgid "Reset profile" +#: src/supertux/menu/profile_menu.cpp:103 +#: src/supertux/menu/profile_menu.cpp:105 +msgid "Reset all" msgstr "" -#: src/supertux/menu/profile_menu.cpp:51 -msgid "Reset all profiles" +#: src/supertux/menu/profile_menu.cpp:113 +#: src/supertux/menu/profile_menu.cpp:115 +msgid "Delete all" msgstr "" -#: src/supertux/menu/profile_menu.cpp:67 -msgid "Deleting your profile will reset your game progress. Are you sure?" +#: src/supertux/menu/profile_menu.cpp:148 +#, c++-format +msgid "" +"This will reset all game progress on the profile \"{}\".\n" +"Are you sure?" msgstr "" -#: src/supertux/menu/profile_menu.cpp:73 +#: src/supertux/menu/profile_menu.cpp:157 msgid "This will reset your game progress on all profiles. Are you sure?" msgstr "" -#: src/supertux/menu/editor_levelset_menu.cpp:59 +#: src/supertux/menu/profile_menu.cpp:167 +#, c++-format +msgid "" +"This will delete the profile \"{}\",\n" +"including all game progress on it. Are you sure?" +msgstr "" + +#: src/supertux/menu/profile_menu.cpp:178 +msgid "" +"This will delete all profiles, including all game progress on them.\n" +"Are you sure?" +msgstr "" + +#: src/supertux/menu/editor_levelset_menu.cpp:53 #: src/supertux/menu/editor_new_levelset_menu.cpp:35 msgid "Description" msgstr "" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:48 -#: data//images/engine/editor/objects.stoi:371 -msgid "Worldmap" +#: src/supertux/menu/editor_levelset_menu.cpp:55 +msgid "Title Screen Level" msgstr "" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:45 -msgid "Levelset" +#: src/supertux/menu/editor_levelset_menu.cpp:56 +msgid "A level to be used for the title screen, after exiting the world." msgstr "" -#: src/supertux/menu/addon_menu.cpp:51 -msgid "World" +#: src/supertux/menu/multiplayer_players_menu.cpp:46 +msgid "Add Player" msgstr "" -#: src/supertux/menu/addon_menu.cpp:54 -msgid "Add-on" +#: src/supertux/menu/multiplayer_players_menu.cpp:59 +msgid "Remove Last Player" msgstr "" -#: src/supertux/menu/addon_menu.cpp:60 -msgid "Unknown" +#: src/supertux/menu/multiplayer_players_menu.cpp:62 +msgid "" +"Warning: The player you are trying to\n" +"remove is currently in-game.\n" +"\n" +"Do you wish to remove them anyways?" +msgstr "" + +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Language Packs" msgstr "" -#: src/supertux/menu/addon_menu.cpp:71 -#, c-format -msgid "%s \"%s\" by \"%s\"" +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Add-ons" msgstr "" -#: src/supertux/menu/addon_menu.cpp:129 +#: src/supertux/menu/addon_menu.cpp:76 src/supertux/menu/addon_menu.cpp:117 +msgid "No language packs installed" +msgstr "" + +#: src/supertux/menu/addon_menu.cpp:76 msgid "No Add-ons installed" msgstr "" -#: src/supertux/menu/addon_menu.cpp:133 -msgid "No Add-ons found" +#: src/supertux/menu/addon_menu.cpp:124 +#, c++-format +msgid "{} {}*UPDATE*" msgstr "" -#: src/supertux/menu/addon_menu.cpp:179 -#, c-format -msgid "Install %s *NEW*" +#: src/supertux/menu/addon_menu.cpp:130 +#, c++-format +msgid "{}{}" msgstr "" -#: src/supertux/menu/addon_menu.cpp:190 -#, c-format -msgid "Install %s" +#: src/supertux/menu/addon_menu.cpp:140 +msgid "No updates available." msgstr "" -#: src/supertux/menu/addon_menu.cpp:199 -msgid "No new Add-ons found" +#: src/supertux/menu/addon_menu.cpp:144 +#, c++-format +msgid "{} {} available" msgstr "" -#: src/supertux/menu/addon_menu.cpp:205 -msgid "Check Online (disabled)" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "update" msgstr "" -#: src/supertux/menu/addon_menu.cpp:209 -msgid "Check Online" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "updates" msgstr "" -#: src/supertux/menu/addon_menu.cpp:286 -msgid "Downloading Add-On Repository Index" +#: src/supertux/menu/addon_menu.cpp:146 +msgid "Check for updates" msgstr "" -#: src/supertux/menu/addon_menu.cpp:301 -#, c-format -msgid "Downloading %s" +#: src/supertux/menu/addon_menu.cpp:150 +msgid "Browse language packs" msgstr "" -#: src/supertux/menu/addon_menu.cpp:348 -msgid "" -"Please restart SuperTux\n" -"for these changes to take effect." +#: src/supertux/menu/addon_menu.cpp:150 +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Add-ons" +msgstr "" + +#: src/supertux/menu/addon_menu.cpp:151 +msgid "Install from file" +msgstr "" + +#: src/supertux/menu/addon_menu.cpp:208 +msgid "Checking for updates..." msgstr "" #: src/supertux/menu/editor_new_levelset_menu.cpp:31 @@ -2617,6 +3656,53 @@ msgstr "" msgid "Story Mode" msgstr "" +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Language Packs" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:112 +#, c++-format +msgid "Page {}/{}" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new language packs available" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new Add-ons available" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No language packs available" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No Add-ons available" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:135 +#: src/supertux/menu/addon_browse_menu.cpp:139 +msgid "Previous page" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:143 +#: src/supertux/menu/addon_browse_menu.cpp:147 +msgid "Next page" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:154 +msgid "Check Online (disabled)" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:158 +msgid "Check Online" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:195 +msgid "Downloading Add-On Repository Index" +msgstr "" + #: src/supertux/menu/web_asset_menu.cpp:42 msgid "New files location" msgstr "" @@ -2637,207 +3723,235 @@ msgstr "" msgid "Open" msgstr "" -#: src/supertux/menu/game_menu.cpp:31 -msgid "Are you sure?" -msgstr "" - -#: src/supertux/menu/game_menu.cpp:54 src/supertux/menu/worldmap_menu.cpp:30 +#: src/supertux/menu/game_menu.cpp:51 src/supertux/menu/worldmap_menu.cpp:30 msgid "Continue" msgstr "" -#: src/supertux/menu/game_menu.cpp:55 +#: src/supertux/menu/game_menu.cpp:52 msgid "Restart Level" msgstr "" -#: src/supertux/menu/game_menu.cpp:58 +#: src/supertux/menu/game_menu.cpp:55 msgid "Restart from Checkpoint" msgstr "" -#: src/supertux/menu/game_menu.cpp:63 +#: src/supertux/menu/game_menu.cpp:60 msgid "Abort Level" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:32 -#: src/supertux/menu/joystick_menu.cpp:69 +#: src/supertux/menu/game_menu.cpp:76 src/supertux/menu/game_menu.cpp:87 +#: src/supertux/menu/game_menu.cpp:99 +msgid "Are you sure?" +msgstr "" + +#: src/supertux/menu/profile_name_menu.cpp:36 +#, c++-format +msgid "Rename \"{}\"" +msgstr "" + +#: src/supertux/menu/profile_name_menu.cpp:36 +msgid "Add profile" +msgstr "" + +#: src/supertux/menu/profile_name_menu.cpp:40 +msgid "Profile names must have a maximum of 20 characters." +msgstr "" + +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Create" +msgstr "" + +#: src/supertux/menu/profile_name_menu.cpp:56 +msgid "" +"Profile names must have a maximum of 20 characters.\n" +"Please choose a different name." +msgstr "" + +#: src/supertux/menu/profile_name_menu.cpp:77 +msgid "An error occurred while creating the profile." +msgstr "" + +#: src/supertux/menu/keyboard_menu.cpp:36 +#: src/supertux/menu/joystick_menu.cpp:71 msgid "Up" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:33 -#: src/supertux/menu/joystick_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:37 +#: src/supertux/menu/joystick_menu.cpp:72 msgid "Down" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:36 -#: src/supertux/menu/joystick_menu.cpp:73 +#: src/supertux/menu/keyboard_menu.cpp:40 +#: src/supertux/menu/joystick_menu.cpp:75 msgid "Jump" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:38 -#: src/supertux/menu/joystick_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:43 +#: src/supertux/menu/joystick_menu.cpp:78 msgid "Peek Left" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:39 -#: src/supertux/menu/joystick_menu.cpp:77 +#: src/supertux/menu/keyboard_menu.cpp:44 +#: src/supertux/menu/joystick_menu.cpp:79 msgid "Peek Right" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:40 -#: src/supertux/menu/joystick_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:45 +#: src/supertux/menu/joystick_menu.cpp:80 msgid "Peek Up" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:41 -#: src/supertux/menu/joystick_menu.cpp:79 +#: src/supertux/menu/keyboard_menu.cpp:46 +#: src/supertux/menu/joystick_menu.cpp:81 msgid "Peek Down" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:43 -#: src/supertux/menu/joystick_menu.cpp:81 +#: src/supertux/menu/keyboard_menu.cpp:51 +#: src/supertux/menu/joystick_menu.cpp:83 msgid "Console" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:44 -#: src/supertux/menu/joystick_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:52 +#: src/supertux/menu/joystick_menu.cpp:84 msgid "Cheat Menu" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:45 -#: src/supertux/menu/joystick_menu.cpp:83 +#: src/supertux/menu/keyboard_menu.cpp:53 +#: src/supertux/menu/joystick_menu.cpp:85 msgid "Debug Menu" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:47 -#: src/supertux/menu/joystick_menu.cpp:85 +#: src/supertux/menu/keyboard_menu.cpp:56 +#: src/supertux/menu/joystick_menu.cpp:87 msgid "Jump with Up" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:60 +#: src/supertux/menu/keyboard_menu.cpp:82 msgid "Up cursor" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:62 +#: src/supertux/menu/keyboard_menu.cpp:84 msgid "Down cursor" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:64 +#: src/supertux/menu/keyboard_menu.cpp:86 msgid "Left cursor" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:66 +#: src/supertux/menu/keyboard_menu.cpp:88 msgid "Right cursor" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:68 +#: src/supertux/menu/keyboard_menu.cpp:90 msgid "Return" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:92 msgid "Space" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:72 +#: src/supertux/menu/keyboard_menu.cpp:94 msgid "Right Shift" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:74 +#: src/supertux/menu/keyboard_menu.cpp:96 msgid "Left Shift" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:98 msgid "Right Control" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:100 msgid "Left Control" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/keyboard_menu.cpp:102 msgid "Right Alt" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:104 msgid "Left Alt" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:84 +#: src/supertux/menu/keyboard_menu.cpp:106 msgid "Right Command" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:86 +#: src/supertux/menu/keyboard_menu.cpp:108 msgid "Left Command" msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:100 +#: src/supertux/menu/keyboard_menu.cpp:122 msgid "Press Key" msgstr "" -#: src/supertux/menu/language_menu.cpp:40 +#: src/supertux/menu/language_menu.cpp:43 msgid "Language" msgstr "" -#: src/supertux/menu/language_menu.cpp:42 +#: src/supertux/menu/language_menu.cpp:45 msgid "" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:55 +#: src/supertux/menu/joystick_menu.cpp:57 msgid "Manual Configuration" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:57 +#: src/supertux/menu/joystick_menu.cpp:59 msgid "" "Use manual configuration instead of SDL2's automatic GameController support" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:75 +#: src/supertux/menu/joystick_menu.cpp:77 msgid "Pause/Menu" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:91 +#: src/supertux/menu/joystick_menu.cpp:93 msgid "No Joysticks found" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:92 +#: src/supertux/menu/joystick_menu.cpp:94 msgid "Scan for Joysticks" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:125 +#: src/supertux/menu/joystick_menu.cpp:127 msgid "Press Button" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:164 msgid "Axis " msgstr "" -#: src/supertux/menu/joystick_menu.cpp:165 +#: src/supertux/menu/joystick_menu.cpp:167 msgid "-" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:167 +#: src/supertux/menu/joystick_menu.cpp:169 msgid "+" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:174 +#: src/supertux/menu/joystick_menu.cpp:176 msgid "X2" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:176 +#: src/supertux/menu/joystick_menu.cpp:178 msgid "Y2" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:189 +#: src/supertux/menu/joystick_menu.cpp:191 msgid "Hat Up" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:193 +#: src/supertux/menu/joystick_menu.cpp:195 msgid "Hat Down" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:197 +#: src/supertux/menu/joystick_menu.cpp:199 msgid "Hat Left" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:201 +#: src/supertux/menu/joystick_menu.cpp:203 msgid "Hat Right" msgstr "" @@ -2849,44 +3963,39 @@ msgstr "" msgid "Leave World" msgstr "" -#: src/supertux/menu/download_dialog.cpp:27 -msgid "Abort Download" -msgstr "" - #: src/supertux/menu/download_dialog.cpp:42 -msgid "Error:\n" -msgstr "" - -#: src/supertux/menu/download_dialog.cpp:96 -msgid "Close" +msgid "Abort Download" msgstr "" -#: src/supertux/menu/cheat_menu.cpp:33 -msgid "Bonus: Fire x 64" +#: src/supertux/menu/download_dialog.cpp:59 +#, c++-format +msgid "" +"Error:\n" +"{}" msgstr "" -#: src/supertux/menu/cheat_menu.cpp:34 -msgid "Bonus: Ice x 64" +#: src/supertux/menu/cheat_menu.cpp:38 +msgid "Bonus: Star" msgstr "" -#: src/supertux/menu/cheat_menu.cpp:35 -msgid "Bonus: Air x 64" +#: src/supertux/menu/cheat_menu.cpp:39 +msgid "Shrink Tux" msgstr "" -#: src/supertux/menu/cheat_menu.cpp:36 -msgid "Bonus: Earth x 64" +#: src/supertux/menu/cheat_menu.cpp:40 +msgid "Kill Tux" msgstr "" -#: src/supertux/menu/cheat_menu.cpp:37 -msgid "Bonus: Star" +#: src/supertux/menu/cheat_menu.cpp:55 +msgid "Prevent Death" msgstr "" -#: src/supertux/menu/cheat_menu.cpp:38 -msgid "Shrink Tux" +#: src/supertux/menu/addon_file_install_menu.cpp:32 +msgid "Install Add-on from file" msgstr "" -#: src/supertux/menu/cheat_menu.cpp:39 -msgid "Kill Tux" +#: src/supertux/menu/addon_file_install_menu.cpp:34 +msgid "Drag and drop add-on ZIP archive" msgstr "" #: src/supertux/menu/particle_editor_menu.cpp:32 @@ -2894,7 +4003,7 @@ msgid "Particle Editor" msgstr "" #: src/supertux/menu/particle_editor_menu.cpp:36 -#: src/supertux/menu/editor_menu.cpp:45 +#: src/supertux/menu/editor_menu.cpp:60 msgid "Return to Editor" msgstr "" @@ -2919,7 +4028,7 @@ msgid "Open Particle Directory" msgstr "" #: src/supertux/menu/particle_editor_menu.cpp:45 -#: src/supertux/menu/editor_menu.cpp:88 +#: src/supertux/menu/editor_menu.cpp:118 msgid "Keyboard Shortcuts" msgstr "" @@ -2927,7 +4036,7 @@ msgstr "" msgid "Exit Particle Editor" msgstr "" -#: src/supertux/menu/particle_editor_menu.cpp:120 +#: src/supertux/menu/particle_editor_menu.cpp:121 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -2939,18 +4048,18 @@ msgid "" "Ctrl+Y = Redo" msgstr "" -#: src/supertux/menu/particle_editor_menu.cpp:121 -#: src/supertux/menu/editor_menu.cpp:176 +#: src/supertux/menu/particle_editor_menu.cpp:122 +#: src/supertux/menu/editor_menu.cpp:206 msgid "Got it!" msgstr "" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:86 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Worldmap Settings" msgstr "" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:86 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Level Settings" msgstr "" @@ -2958,7 +4067,7 @@ msgstr "" msgid "Author" msgstr "" -#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1166 +#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1253 msgid "Contact" msgstr "" @@ -2990,99 +4099,129 @@ msgstr "" msgid "Please enter a license for this level." msgstr "" -#: src/supertux/menu/editor_menu.cpp:38 +#: src/supertux/menu/editor_menu.cpp:53 msgid "tiny tile (4px)" msgstr "" -#: src/supertux/menu/editor_menu.cpp:39 +#: src/supertux/menu/editor_menu.cpp:54 msgid "small tile (8px)" msgstr "" -#: src/supertux/menu/editor_menu.cpp:40 +#: src/supertux/menu/editor_menu.cpp:55 msgid "medium tile (16px)" msgstr "" -#: src/supertux/menu/editor_menu.cpp:41 +#: src/supertux/menu/editor_menu.cpp:56 msgid "big tile (32px)" msgstr "" -#: src/supertux/menu/editor_menu.cpp:46 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Worldmap" msgstr "" -#: src/supertux/menu/editor_menu.cpp:46 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Level" msgstr "" -#: src/supertux/menu/editor_menu.cpp:55 +#: src/supertux/menu/editor_menu.cpp:65 msgid "Test Level" msgstr "" -#: src/supertux/menu/editor_menu.cpp:59 +#: src/supertux/menu/editor_menu.cpp:67 msgid "Test Worldmap" msgstr "" -#: src/supertux/menu/editor_menu.cpp:62 +#: src/supertux/menu/editor_menu.cpp:72 msgid "Share Level" msgstr "" -#: src/supertux/menu/editor_menu.cpp:64 +#: src/supertux/menu/editor_menu.cpp:74 msgid "Package Add-On" msgstr "" -#: src/supertux/menu/editor_menu.cpp:66 +#: src/supertux/menu/editor_menu.cpp:76 msgid "Open Level Directory" msgstr "" -#: src/supertux/menu/editor_menu.cpp:70 +#: src/supertux/menu/editor_menu.cpp:79 msgid "Edit Another Level" msgstr "" -#: src/supertux/menu/editor_menu.cpp:73 +#: src/supertux/menu/editor_menu.cpp:81 msgid "Edit Another World" msgstr "" -#: src/supertux/menu/editor_menu.cpp:77 +#: src/supertux/menu/editor_menu.cpp:86 +msgid "Convert all tiles in the level using converters." +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:90 msgid "Grid Size" msgstr "" -#: src/supertux/menu/editor_menu.cpp:78 +#: src/supertux/menu/editor_menu.cpp:91 msgid "Show Grid" msgstr "" -#: src/supertux/menu/editor_menu.cpp:79 +#: src/supertux/menu/editor_menu.cpp:92 msgid "Grid Snapping" msgstr "" -#: src/supertux/menu/editor_menu.cpp:80 +#: src/supertux/menu/editor_menu.cpp:93 msgid "Render Background" msgstr "" -#: src/supertux/menu/editor_menu.cpp:81 +#: src/supertux/menu/editor_menu.cpp:94 msgid "Render Light" msgstr "" -#: src/supertux/menu/editor_menu.cpp:82 +#: src/supertux/menu/editor_menu.cpp:95 msgid "Autotile Mode" msgstr "" -#: src/supertux/menu/editor_menu.cpp:83 +#: src/supertux/menu/editor_menu.cpp:96 msgid "Enable Autotile Help" msgstr "" -#: src/supertux/menu/editor_menu.cpp:84 +#: src/supertux/menu/editor_menu.cpp:97 +msgid "Enable Object Undo Tracking" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:100 +msgid "Undo Stack Size" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:102 msgid "Autosave Frequency" msgstr "" -#: src/supertux/menu/editor_menu.cpp:91 +#: src/supertux/menu/editor_menu.cpp:108 +msgid "Check for Deprecated Tiles" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:109 +msgid "Check if any deprecated tiles are currently present in the level." +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:110 +msgid "Show Deprecated Tiles" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:111 +msgid "" +"Indicate all deprecated tiles on the active tilemap, without the need of " +"hovering over." +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:121 msgid "Exit Level Editor" msgstr "" -#: src/supertux/menu/editor_menu.cpp:140 +#: src/supertux/menu/editor_menu.cpp:170 msgid "Do you want to package this world as an add-on?" msgstr "" -#: src/supertux/menu/editor_menu.cpp:163 +#: src/supertux/menu/editor_menu.cpp:196 msgid "" "We encourage you to share your levels in the SuperTux forum.\n" "To find your level, click the\n" @@ -3090,7 +4229,7 @@ msgid "" "Do you want to go to the forum now?" msgstr "" -#: src/supertux/menu/editor_menu.cpp:175 +#: src/supertux/menu/editor_menu.cpp:205 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -3101,54 +4240,217 @@ msgid "" "Ctrl+Y = Redo\n" "F6 = Render Light\n" "F7 = Grid Snapping\n" -"F8 = Show Grid" +"F8 = Show Grid\n" +"Ctrl++ or Ctrl+Scroll Up = Zoom In\n" +"Ctrl+- or Ctrl+Scroll Down = Zoom Out\n" +"Ctrl+D = Reset Zoom\n" +"\n" +"Scripting Shortcuts:\n" +" ------------- \n" +"Home = Go to beginning of line\n" +"End = Go to end of line\n" +"Left arrow = Go back in text\n" +"Right arrow = Go forward in text\n" +"Backspace = Delete in front of text cursor\n" +"Delete = Delete behind text cursor\n" +"Ctrl+X = Cut whole line\n" +"Ctrl+C = Copy whole line\n" +"Ctrl+V = Paste\n" +"Ctrl+D = Duplicate line\n" +"Ctrl+Z = Undo\n" +"Ctrl+Y = Redo" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:232 +msgid "Deprecated tiles are still present in the level." +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:239 +msgid "Do you want to show all deprecated tiles on active tilemaps?" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:246 +msgid "There are no more deprecated tiles in the level!" +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:40 +msgid "Play with the keyboard" +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:58 +msgid "Remove Player" +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:82 +msgid "Respawn Player" +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:108 +msgid "Spawn Player" +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:136 +msgid "Controllers" +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:152 +msgid "" +"This controller does not support rumbling;\n" +"please check the controllers manually." msgstr "" -#: src/supertux/menu/editor_delete_level_menu.cpp:53 -msgid "You cannot delete level that you are editing!" +#: src/supertux/menu/multiplayer_player_menu.cpp:157 +msgid "" +"This SuperTux build does not support rumbling\n" +"controllers; please check the controllers manually." +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:184 +msgid "" +"This joystick does not support rumbling;\n" +"please check the joysticks manually." +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:189 +msgid "" +"This SuperTux build does not support rumbling\n" +"joysticks; please check the joysticks manually." +msgstr "" + +#: src/supertux/menu/editor_delete_level_menu.cpp:59 +msgid "No levels available" +msgstr "" + +#: src/supertux/menu/editor_delete_level_menu.cpp:79 +msgid "You cannot delete the level that you are editing!" +msgstr "" + +#: src/supertux/menu/editor_delete_level_menu.cpp:82 +#, c++-format +msgid "You are about to delete level \"{}\". Are you sure?" msgstr "" -#: src/supertux/levelintro.cpp:136 -#, c-format -msgid "contributed by %s" +#: src/supertux/levelintro.cpp:137 +#, c++-format +msgid "contributed by {}" msgstr "" -#: src/supertux/levelintro.cpp:169 +#: src/supertux/levelintro.cpp:184 msgid "Badguys killed" msgstr "" -#: src/supertux/levelintro.cpp:177 +#: src/supertux/levelintro.cpp:192 msgid "Best time" msgstr "" -#: src/supertux/levelintro.cpp:181 +#: src/supertux/levelintro.cpp:196 msgid "Level target time" msgstr "" -#: src/supertux/tile_set.cpp:118 +#: src/supertux/tile_set.cpp:113 msgid "Others" msgstr "" -#: src/supertux/moving_object.cpp:55 +#: src/supertux/direction.cpp:67 +msgid "up" +msgstr "" + +#: src/supertux/direction.cpp:69 +msgid "down" +msgstr "" + +#: src/supertux/moving_object.cpp:63 msgid "Region" msgstr "" -#: src/supertux/main.cpp:563 +#: src/supertux/main.cpp:801 +#, c++-format +msgid "New release: SuperTux v{}!" +msgstr "" + +#: src/supertux/main.cpp:804 +#, c++-format msgid "" -"The UBports version is under heavy development!\n" -"If you encounter issues, PLEASE contact the maintainter\n" -"at https://github.com/supertux/supertux/issues or on the\n" -"Open Store's Telegram at https://open-store.io/telegram" +"A new release of SuperTux (v{}) is available!\n" +"For more information, you can visit the SuperTux website.\n" +"\n" +"Do you want to visit the website now?" +msgstr "" + +#: src/supertux/main.cpp:815 +msgid "Checking for new releases..." msgstr "" #: src/control/joystick_config.cpp:85 msgid "Joystick Mappings" msgstr "" -#: src/worldmap/worldmap_parser.cpp:167 +#: src/worldmap/sprite_change.cpp:91 +msgid "Stay action" +msgstr "" + +#: src/worldmap/sprite_change.cpp:92 +msgid "Initial stay action" +msgstr "" + +#: src/worldmap/sprite_change.cpp:93 +msgid "Stay group" +msgstr "" + +#: src/worldmap/sprite_change.cpp:94 +msgid "Change on touch" +msgstr "" + +#: src/worldmap/special_tile.hpp:36 +msgid "Special Tile" +msgstr "" + +#: src/worldmap/level_tile.hpp:36 src/worldmap/level_tile.cpp:161 +msgid "Level" +msgstr "" + +#: src/worldmap/teleporter.cpp:50 +msgid "Automatic" +msgstr "" + +#: src/worldmap/teleporter.cpp:51 +msgid "Target worldmap" +msgstr "" + +#: src/worldmap/sprite_change.hpp:35 +msgid "Sprite Change" +msgstr "" + +#: src/worldmap/special_tile.cpp:75 +msgid "Show message" +msgstr "" + +#: src/worldmap/level_tile.cpp:84 msgid "" msgstr "" +#: src/worldmap/level_tile.cpp:162 +msgid "Outro script" +msgstr "" + +#: src/worldmap/level_tile.cpp:163 +msgid "Auto play" +msgstr "" + +#: src/worldmap/level_tile.cpp:164 +msgid "Title colour" +msgstr "" + +#: src/worldmap/teleporter.hpp:34 +msgid "Teleporter" +msgstr "" + +#: src/editor/tip.cpp:80 +msgid "" +"This object's current functionality is deprecated.\n" +"Updating to get its latest functionality is recommended." +msgstr "" + #: src/editor/node_marker.cpp:122 msgid "Path Node" msgstr "" @@ -3161,84 +4463,81 @@ msgstr "" msgid "Easing" msgstr "" -#: src/editor/object_settings.cpp:119 -msgid "up" -msgstr "" - -#: src/editor/object_settings.cpp:119 -msgid "down" -msgstr "" - -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "West" msgstr "" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "East" msgstr "" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "North" msgstr "" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "South" msgstr "" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "One shot" msgstr "" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "Ping-pong" msgstr "" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "Circular" msgstr "" -#: src/editor/object_settings.cpp:144 -msgid "Unordered" +#: src/editor/layers_widget.cpp:331 +#, c++-format +msgid "Sector: {}" msgstr "" -#: src/editor/object_option.cpp:85 +#: src/editor/object_option.cpp:92 msgid "true" msgstr "" -#: src/editor/object_option.cpp:85 +#: src/editor/object_option.cpp:92 msgid "false" msgstr "" -#: src/editor/object_option.cpp:271 src/editor/object_option.cpp:320 +#: src/editor/object_option.cpp:308 src/editor/object_option.cpp:356 msgid "invalid" msgstr "" -#: src/editor/object_option.cpp:580 -msgid "Remove" +#: src/editor/object_option.cpp:665 +msgid "Scale X" msgstr "" -#: src/editor/object_option.cpp:597 -msgid "Test from here" +#: src/editor/object_option.cpp:666 +msgid "Scale Y" msgstr "" -#: src/editor/object_option.cpp:614 -msgid "Open Particle Editor" +#: src/editor/object_option.cpp:667 +msgid "Offset X" msgstr "" -#: src/editor/worldmap_objects.hpp:56 src/editor/worldmap_objects.cpp:127 -msgid "Level" +#: src/editor/object_option.cpp:668 +msgid "Offset Y" msgstr "" -#: src/editor/worldmap_objects.hpp:79 -msgid "Teleporter" +#: src/editor/object_option.cpp:672 src/editor/object_menu.cpp:67 +msgid "Remove" msgstr "" -#: src/editor/worldmap_objects.hpp:119 -msgid "Sprite Change" +#: src/editor/object_option.cpp:689 +msgid "Test from here" +msgstr "" + +#: src/editor/object_option.cpp:706 +msgid "Open Particle Editor" msgstr "" -#: src/editor/worldmap_objects.hpp:140 -msgid "Special tile" +#: src/editor/particle_editor.cpp:114 +msgid "Change texture... ->" msgstr "" #: src/editor/particle_editor.cpp:126 @@ -3321,17 +4620,60 @@ msgstr "" msgid "Offscreen mode" msgstr "" -#: src/editor/particle_editor.cpp:765 +#: src/editor/particle_editor.cpp:229 +msgid "Clear" +msgstr "" + +#: src/editor/particle_editor.cpp:245 +msgid "<- General settings" +msgstr "" + +#: src/editor/particle_editor.cpp:255 +msgid "Likeliness" +msgstr "" + +#: src/editor/particle_editor.cpp:266 +msgid "Color (RGBA)" +msgstr "" + +#: src/editor/particle_editor.cpp:311 +msgid "Scale (x, y)" +msgstr "" + +#: src/editor/particle_editor.cpp:332 +msgid "Hitbox scale (x, y)" +msgstr "" + +#: src/editor/particle_editor.cpp:353 +msgid "Hitbox offset relative to scale" +msgstr "" + +#: src/editor/particle_editor.cpp:372 +msgid "Change texture..." +msgstr "" + +#: src/editor/particle_editor.cpp:766 msgid "" "This particle configuration contains unsaved changes,\n" "do you want to save?" msgstr "" -#: src/editor/particle_editor.cpp:773 +#: src/editor/particle_editor.cpp:774 msgid "Save as" msgstr "" -#: src/editor/editor.cpp:566 +#: src/editor/editor.cpp:577 +msgid "" +"This level contains deprecated tiles.\n" +"It is strongly recommended to replace all deprecated tiles\n" +"to avoid loss of compatibility in future versions." +msgstr "" + +#: src/editor/editor.cpp:579 +msgid "Tip: Turn on \"Show Deprecated Tiles\" from the level editor menu." +msgstr "" + +#: src/editor/editor.cpp:626 msgid "" "Don't forget that your levels and assets\n" "aren't saved between sessions!\n" @@ -3339,11 +4681,15 @@ msgid "" "from the \"Manage Assets\" menu." msgstr "" -#: src/editor/editor.cpp:582 +#: src/editor/editor.cpp:661 msgid "This level contains unsaved changes, do you want to save?" msgstr "" -#: src/editor/editor.cpp:622 +#: src/editor/editor.cpp:662 +msgid "This level may contain unsaved changes, do you want to save?" +msgstr "" + +#: src/editor/editor.cpp:797 msgid "" "Some obsolete add-ons are still active\n" "and might cause collisions with default Super Tux structure.\n" @@ -3351,93 +4697,72 @@ msgid "" "Disabling these add-ons will not delete your game progress." msgstr "" -#: src/editor/editor.cpp:625 +#: src/editor/editor.cpp:800 msgid "Disable add-ons" msgstr "" -#: src/editor/editor.cpp:630 +#: src/editor/editor.cpp:805 msgid "Ignore (not advised)" msgstr "" -#: src/editor/editor.cpp:634 +#: src/editor/editor.cpp:809 msgid "Leave editor" msgstr "" -#: src/editor/editor.cpp:853 +#: src/editor/editor.cpp:1023 msgid "" "Couldn't find a \"main\" sector.\n" "Please change the name of the sector where\n" "you'd like the player to start to \"main\"" msgstr "" -#: src/editor/editor.cpp:857 +#: src/editor/editor.cpp:1027 msgid "" "Couldn't find a \"main\" spawnpoint.\n" " Please change the name of the spawnpoint where\n" "you'd like the player to start to \"main\"" msgstr "" -#: src/editor/worldmap_objects.cpp:128 -msgid "Outro script" -msgstr "" - -#: src/editor/worldmap_objects.cpp:129 -msgid "Auto play" -msgstr "" - -#: src/editor/worldmap_objects.cpp:131 -msgid "Title colour" -msgstr "" - -#: src/editor/worldmap_objects.cpp:173 -msgid "Automatic" -msgstr "" - -#: src/editor/worldmap_objects.cpp:175 -msgid "Target worldmap" -msgstr "" - -#: src/editor/worldmap_objects.cpp:238 -msgid "Stay action" -msgstr "" - -#: src/editor/worldmap_objects.cpp:239 -msgid "Initial stay action" -msgstr "" - -#: src/editor/worldmap_objects.cpp:240 -msgid "Stay group" +#: src/editor/object_menu.cpp:60 +msgid "Patch Notes" msgstr "" -#: src/editor/worldmap_objects.cpp:241 -msgid "Change on touch" +#: src/editor/object_menu.cpp:84 +msgid "" +"This will update the object to its latest functionality.\n" +"Check the \"Patch Notes\" for more information.\n" +"\n" +"Keep in mind this is very likely to break the proper behaviour of the " +"object.\n" +"Make sure to re-check any behaviour, related to the object." msgstr "" -#: src/editor/worldmap_objects.cpp:271 -msgid "Show message" +#: src/editor/object_menu.cpp:98 +#, c++-format +msgid "Patch notes for v{}:" msgstr "" -#: src/editor/worldmap_objects.cpp:273 -msgid "Invisible" +#: src/editor/overlay_widget.cpp:1062 +msgid "Cannot select deprecated tiles" msgstr "" -#: src/editor/overlay_widget.cpp:1297 +#: src/editor/overlay_widget.cpp:1567 msgid "Autotile mode is on" msgstr "" -#: src/editor/overlay_widget.cpp:1299 +#: src/editor/overlay_widget.cpp:1571 msgid "Hold Ctrl to enable autotile" msgstr "" -#: src/editor/overlay_widget.cpp:1303 +#: src/editor/overlay_widget.cpp:1578 msgid "Autotile erasing mode is on" msgstr "" -#: src/editor/overlay_widget.cpp:1305 +#: src/editor/overlay_widget.cpp:1582 msgid "Selected tile isn't autotileable" msgstr "" -#: src/editor/overlay_widget.cpp:1308 +#: src/editor/overlay_widget.cpp:1587 msgid "Hold Ctrl to enable autotile erasing" msgstr "" @@ -3446,7 +4771,7 @@ msgid "Current SuperTux Team" msgstr "" #: data//credits.stxt:30 -msgid "Programming, project lead ad interim" +msgid "Maintainer, Programming" msgstr "" #: data//credits.stxt:35 @@ -3457,12 +4782,12 @@ msgstr "" msgid "Level Design, Story, Optimisation, Coordination" msgstr "" -#: data//credits.stxt:45 data//credits.stxt:105 data//credits.stxt:191 -#: data//credits.stxt:519 +#: data//credits.stxt:45 data//credits.stxt:120 data//credits.stxt:206 +#: data//credits.stxt:538 msgid "Graphics" msgstr "" -#: data//credits.stxt:50 data//credits.stxt:87 data//credits.stxt:93 +#: data//credits.stxt:50 data//credits.stxt:102 data//credits.stxt:108 msgid "Graphics, Programming, Level Design" msgstr "" @@ -3471,256 +4796,266 @@ msgid "Features and Programming" msgstr "" #: data//credits.stxt:60 -msgid "Programming, Level Updates" +msgid "Minor features and programming" msgstr "" #: data//credits.stxt:65 +msgid "Programming, Level Updates" +msgstr "" + +#: data//credits.stxt:70 msgid "Graphics, Programming" msgstr "" -#: data//credits.stxt:70 data//credits.stxt:135 data//credits.stxt:140 -#: data//credits.stxt:145 data//credits.stxt:150 data//credits.stxt:165 -#: data//credits.stxt:170 data//credits.stxt:515 data//credits.stxt:527 +#: data//credits.stxt:75 data//credits.stxt:85 data//credits.stxt:150 +#: data//credits.stxt:155 data//credits.stxt:160 data//credits.stxt:165 +#: data//credits.stxt:180 data//credits.stxt:185 data//credits.stxt:534 +#: data//credits.stxt:546 msgid "Programming" msgstr "" -#: data//credits.stxt:76 +#: data//credits.stxt:80 data//credits.stxt:266 +msgid "Level Design" +msgstr "" + +#: data//credits.stxt:91 msgid "Original Developers" msgstr "" -#: data//credits.stxt:81 +#: data//credits.stxt:96 msgid "Original Developer" msgstr "" -#: data//credits.stxt:99 +#: data//credits.stxt:114 msgid "Music, Level Design" msgstr "" -#: data//credits.stxt:111 +#: data//credits.stxt:126 msgid "Programming, Graphics, Level Design" msgstr "" -#: data//credits.stxt:117 +#: data//credits.stxt:132 msgid "Programming, Level Design" msgstr "" -#: data//credits.stxt:123 +#: data//credits.stxt:138 msgid "Graphics, Story" msgstr "" -#: data//credits.stxt:129 +#: data//credits.stxt:144 msgid "Programming, Documentation" msgstr "" -#: data//credits.stxt:155 +#: data//credits.stxt:170 msgid "Coordination" msgstr "" -#: data//credits.stxt:160 +#: data//credits.stxt:175 msgid "Programming, \"Flexlay\" Level editor" msgstr "" -#: data//credits.stxt:175 +#: data//credits.stxt:190 msgid "Windows build fixes" msgstr "" -#: data//credits.stxt:180 +#: data//credits.stxt:195 msgid "Packaging, Nightly builds" msgstr "" -#: data//credits.stxt:185 +#: data//credits.stxt:200 msgid "Translation Guru (and many details anyone else could have done)" msgstr "" -#: data//credits.stxt:251 -msgid "Level Design" -msgstr "" - -#: data//credits.stxt:431 +#: data//credits.stxt:450 msgid "Additional contributors" msgstr "" -#: data//credits.stxt:436 +#: data//credits.stxt:455 msgid "Bug fixes" msgstr "" -#: data//credits.stxt:440 +#: data//credits.stxt:459 msgid "Scripting functions, Level fixes" msgstr "" -#: data//credits.stxt:444 +#: data//credits.stxt:463 msgid "Code quality fixes" msgstr "" -#: data//credits.stxt:448 data//credits.stxt:452 data//credits.stxt:456 -#: data//credits.stxt:483 +#: data//credits.stxt:467 data//credits.stxt:471 data//credits.stxt:475 +#: data//credits.stxt:502 msgid "Various contributions" msgstr "" -#: data//credits.stxt:460 +#: data//credits.stxt:479 msgid "Build issue fix" msgstr "" -#: data//credits.stxt:464 data//credits.stxt:468 +#: data//credits.stxt:483 data//credits.stxt:487 msgid "Code contributions" msgstr "" -#: data//credits.stxt:471 +#: data//credits.stxt:490 msgid "Code contribution, AppData file" msgstr "" -#: data//credits.stxt:475 +#: data//credits.stxt:494 msgid "Bug fix" msgstr "" -#: data//credits.stxt:479 +#: data//credits.stxt:498 msgid "Menu reorganization" msgstr "" -#: data//credits.stxt:487 +#: data//credits.stxt:506 msgid "Fixing tile bugs" msgstr "" -#: data//credits.stxt:491 +#: data//credits.stxt:510 msgid "Build error fix" msgstr "" -#: data//credits.stxt:495 +#: data//credits.stxt:514 msgid "Scripting function fix" msgstr "" -#: data//credits.stxt:499 +#: data//credits.stxt:518 msgid "New features and notable updates" msgstr "" -#: data//credits.stxt:503 +#: data//credits.stxt:522 msgid "Support for \"glbinding\" as optional OpenGL binding" msgstr "" -#: data//credits.stxt:507 +#: data//credits.stxt:526 msgid "New menu code" msgstr "" -#: data//credits.stxt:511 +#: data//credits.stxt:530 msgid "Big Tux Walking Sprites improvements" msgstr "" -#: data//credits.stxt:523 data//credits.stxt:531 +#: data//credits.stxt:542 data//credits.stxt:550 msgid "Contrib Programming" msgstr "" -#: data//credits.stxt:535 +#: data//credits.stxt:554 msgid "Programming, Previous Maintainer" msgstr "" -#: data//credits.stxt:539 +#: data//credits.stxt:558 msgid "Various Contributions" msgstr "" -#: data//credits.stxt:543 -msgid "Minor features and programming" -msgstr "" - -#: data//credits.stxt:547 data//credits.stxt:551 data//credits.stxt:555 -#: data//credits.stxt:559 data//credits.stxt:563 data//credits.stxt:567 -#: data//credits.stxt:571 data//credits.stxt:575 data//credits.stxt:579 -#: data//credits.stxt:583 data//credits.stxt:587 data//credits.stxt:591 +#: data//credits.stxt:562 data//credits.stxt:566 data//credits.stxt:570 +#: data//credits.stxt:574 data//credits.stxt:578 data//credits.stxt:582 +#: data//credits.stxt:586 data//credits.stxt:590 data//credits.stxt:594 +#: data//credits.stxt:598 data//credits.stxt:602 data//credits.stxt:606 +#: data//credits.stxt:610 data//credits.stxt:614 data//credits.stxt:618 +#: data//credits.stxt:622 data//credits.stxt:626 data//credits.stxt:630 +#: data//credits.stxt:634 data//credits.stxt:638 data//credits.stxt:642 +#: data//credits.stxt:646 data//credits.stxt:650 data//credits.stxt:654 +#: data//credits.stxt:658 data//credits.stxt:662 msgid "Contributions" msgstr "" -#: data//credits.stxt:597 +#: data//credits.stxt:668 msgid "Localization" msgstr "" -#: data//credits.stxt:1144 +#: data//credits.stxt:1231 msgid " Special Thanks to" msgstr "" -#: data//credits.stxt:1149 +#: data//credits.stxt:1236 msgid "Creator of Tux, the Linux penguin" msgstr "" -#: data//credits.stxt:1153 +#: data//credits.stxt:1240 msgid "SDL, OpenAL and OpenGL" msgstr "" -#: data//credits.stxt:1154 +#: data//credits.stxt:1241 msgid "" "For making such a great gaming experience\n" " possible on Linux" msgstr "" -#: data//credits.stxt:1159 +#: data//credits.stxt:1246 msgid "and you, the player" msgstr "" -#: data//credits.stxt:1160 +#: data//credits.stxt:1247 msgid "for giving this game a chance and playing it" msgstr "" -#: data//credits.stxt:1171 +#: data//credits.stxt:1258 msgid "Visit our webpage at" msgstr "" -#: data//credits.stxt:1180 +#: data//credits.stxt:1267 msgid "Or visit us directly at IRC:" msgstr "" -#: data//credits.stxt:1184 +#: data//credits.stxt:1271 msgid "#supertux at web.libera.chat" msgstr "" -#: data//credits.stxt:1189 +#: data//credits.stxt:1276 msgid "Or at our Forum:" msgstr "" -#: data//credits.stxt:1198 +#: data//credits.stxt:1285 msgid "Comments, ideas and suggestions" msgstr "" -#: data//credits.stxt:1202 +#: data//credits.stxt:1289 msgid "go to our mailing list" msgstr "" #. l10n: typo contact -#: data//credits.stxt:1212 +#: data//credits.stxt:1299 msgid "Typographical errors can be" msgstr "" #. l10n: typo contact -#: data//credits.stxt:1217 +#: data//credits.stxt:1304 msgid "reported to" msgstr "" #. l10n: typo contact, see -#: data//credits.stxt:1222 +#: data//credits.stxt:1309 msgid "supertux-devel@lists.lethargik.org" msgstr "" -#: data//credits.stxt:1229 +#: data//credits.stxt:1316 msgid "Want to help…" msgstr "" -#: data//credits.stxt:1234 +#: data//credits.stxt:1321 msgid "…with localization?" msgstr "" -#: data//credits.stxt:1244 +#: data//credits.stxt:1331 msgid "…with something else?" msgstr "" -#: data//credits.stxt:1255 +#: data//credits.stxt:1342 msgid "Thank you for" msgstr "" -#: data//credits.stxt:1259 +#: data//credits.stxt:1346 msgid "playing" msgstr "" -#: data//credits.stxt:1269 +#: data//credits.stxt:1356 msgid "Penny awaits you in warmer temperatures!" msgstr "" +#: data//images/engine/editor/objects.stoi:4 +msgid "Enemies" +msgstr "" + #: data//images/engine/editor/objects.stoi:162 msgid "Bosses" msgstr "" @@ -3729,15 +5064,10 @@ msgstr "" msgid "Projectiles" msgstr "" -#: data//images/engine/editor/objects.stoi:187 +#: data//images/engine/editor/objects.stoi:184 msgid "Environment" msgstr "" -#: data//images/ice_world.strf:10 data//images/tiles.strf:28 -#: data//images/worldmap.strf:41 -msgid "Snow" -msgstr "" - #: data//images/ice_world.strf:80 msgid "Ice Cave & Crystal" msgstr "" @@ -3746,11 +5076,6 @@ msgstr "" msgid "Embellishments" msgstr "" -#: data//images/ice_world.strf:211 data//images/tiles.strf:386 -#: data//images/worldmap.strf:67 -msgid "Forest" -msgstr "" - #: data//images/ice_world.strf:320 msgid "Underground Forest" msgstr "" @@ -3775,56 +5100,60 @@ msgstr "" msgid "Water" msgstr "" -#: data//images/tiles.strf:176 +#: data//images/tiles.strf:252 msgid "Snow Background" msgstr "" -#: data//images/tiles.strf:231 -msgid "Snow Mountain" -msgstr "" - -#: data//images/tiles.strf:305 +#: data//images/tiles.strf:300 msgid "Crystal" msgstr "" -#: data//images/tiles.strf:532 +#: data//images/tiles.strf:539 msgid "Forest Background" msgstr "" -#: data//images/tiles.strf:663 +#: data//images/tiles.strf:690 +msgid "Corrupted Forest" +msgstr "" + +#: data//images/tiles.strf:868 +msgid "Corrupted Background" +msgstr "" + +#: data//images/tiles.strf:991 msgid "Block + Bonus" msgstr "" -#: data//images/tiles.strf:715 +#: data//images/tiles.strf:1069 msgid "Pole + Signs" msgstr "" -#: data//images/tiles.strf:760 +#: data//images/tiles.strf:1113 msgid "Liquid" msgstr "" -#: data//images/tiles.strf:793 +#: data//images/tiles.strf:1131 msgid "Castle" msgstr "" -#: data//images/tiles.strf:930 data//images/worldmap.strf:199 +#: data//images/tiles.strf:1231 data//images/worldmap.strf:199 msgid "Halloween" msgstr "" -#: data//images/tiles.strf:958 +#: data//images/tiles.strf:1272 msgid "Industrial" msgstr "" -#: data//images/tiles.strf:973 +#: data//images/tiles.strf:1287 msgid "Unisolid + Lightmap" msgstr "" -#: data//images/tiles.strf:1000 +#: data//images/tiles.strf:1314 msgid "Miscellaneous" msgstr "" -#: data//images/tiles.strf:1043 -msgid "Retro Snow" +#: data//images/tiles.strf:1342 +msgid "Retro Tiles" msgstr "" #: data//images/worldmap.strf:24 @@ -3838,3 +5167,19 @@ msgstr "" #: data//images/worldmap.strf:135 msgid "Darker Forest" msgstr "" + +#: data//images/converters/data.stcd:3 +msgid "Nightly Tiles" +msgstr "" + +#: data//images/converters/data.stcd:5 +msgid "For levels, created in previous Nightly builds." +msgstr "" + +#: data//images/converters/data.stcd:8 +msgid "Pre-0.6.3 Crystal Tiles" +msgstr "" + +#: data//images/converters/data.stcd:10 +msgid "For levels, created in pre-0.6.3 versions, which use crystal tiles." +msgstr "" diff --git a/data/locale/ml.po b/data/locale/ml.po index cad0d6c835c..13a47b87a35 100644 --- a/data/locale/ml.po +++ b/data/locale/ml.po @@ -1048,7 +1048,7 @@ msgstr "" #: src/supertux/command_line_arguments.cpp:79 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" msgstr "" #: src/supertux/command_line_arguments.cpp:80 @@ -1221,7 +1221,7 @@ msgstr "" #: src/supertux/levelintro.cpp:120 #, c-format -msgid "contributed by %s" +msgid "contributed by {}" msgstr "" #: src/supertux/levelintro.cpp:141 src/supertux/statistics.cpp:119 @@ -1262,7 +1262,7 @@ msgstr "" #: src/supertux/menu/addon_menu.cpp:83 #, c-format -msgid "%s \"%s\" by \"%s\"" +msgid "{} \"{}\" by \"{}\"" msgstr "" #: src/supertux/menu/addon_menu.cpp:139 @@ -1299,12 +1299,12 @@ msgstr "" #: src/supertux/menu/addon_menu.cpp:224 #, c-format -msgid "Install %s *NEW*" +msgid "Install {} *NEW*" msgstr "" #: src/supertux/menu/addon_menu.cpp:235 #, c-format -msgid "Install %s" +msgid "Install {}" msgstr "" #: src/supertux/menu/addon_menu.cpp:246 @@ -1344,7 +1344,7 @@ msgstr "" #: src/supertux/menu/addon_menu.cpp:361 #, c-format -msgid "Downloading %s" +msgid "Downloading {}" msgstr "" #: src/supertux/menu/addon_menu.cpp:408 @@ -2001,12 +2001,12 @@ msgstr "" #: src/supertux/menu/profile_menu.cpp:37 #, c-format -msgid "[Profile %s]" +msgid "[Profile {}]" msgstr "" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "Profile %s" +msgid "Profile {}" msgstr "" #: src/supertux/menu/world_set_menu.cpp:41 diff --git a/data/locale/ms_MY.po b/data/locale/ms_MY.po index 24c1cd041ef..23545eb38a4 100644 --- a/data/locale/ms_MY.po +++ b/data/locale/ms_MY.po @@ -1176,8 +1176,8 @@ msgstr "Objek tidak diketahui" #: src/supertux/command_line_arguments.cpp:74 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Penggunaan: %s [OPTIONS] [LEVELFILE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Penggunaan: {} [OPTIONS] [LEVELFILE]" #: src/supertux/command_line_arguments.cpp:75 msgid "General Options:" @@ -1803,13 +1803,13 @@ msgstr "Saiz semula" #: src/supertux/menu/profile_menu.cpp:37 #, c-format -msgid "[Profile %s]" -msgstr "[Profil %s]" +msgid "[Profile {}]" +msgstr "[Profil {}]" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "Profile %s" -msgstr "Profil %s" +msgid "Profile {}" +msgstr "Profil {}" #: src/supertux/menu/editor_levelset_menu.cpp:59 #: src/supertux/menu/editor_new_levelset_menu.cpp:35 @@ -1841,8 +1841,8 @@ msgstr "Tidak diketahui" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" oleh \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" oleh \"{}\"" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -1854,13 +1854,13 @@ msgstr "Tiada Tambahan ditemui" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "Pasang %s *BAHARU*" +msgid "Install {} *NEW*" +msgstr "Pasang {} *BAHARU*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Pasang %s" +msgid "Install {}" +msgstr "Pasang {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -1880,8 +1880,8 @@ msgstr "Memuat Turun Indeks Repositori Tambahan" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "Memuat turun %s" +msgid "Downloading {}" +msgstr "Memuat turun {}" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -2297,8 +2297,8 @@ msgstr "Faham!" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "disumbang oleh %s" +msgid "contributed by {}" +msgstr "disumbang oleh {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/nb.po b/data/locale/nb.po index de1ff5babd2..b100e7f0fc3 100644 --- a/data/locale/nb.po +++ b/data/locale/nb.po @@ -1768,8 +1768,8 @@ msgstr "Trykk escape for å hoppe over" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Bruk: %s [VALG] [BRETTFIL]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Bruk: {} [VALG] [BRETTFIL]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2492,13 +2492,13 @@ msgstr "Endre størrelse" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[Profil %s]" +msgid "[Profile {}]" +msgstr "[Profil {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "Profil %s" +msgid "Profile {}" +msgstr "Profil {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2546,8 +2546,8 @@ msgstr "Ukjent" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s «%s» av «%s»" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} «{}» av «{}»" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2559,13 +2559,13 @@ msgstr "Fant ingen tilleggkart" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "Installer %s *NY*" +msgid "Install {} *NEW*" +msgstr "Installer {} *NY*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Installer %s" +msgid "Install {}" +msgstr "Installer {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2585,8 +2585,8 @@ msgstr "Laster ned indeks over tilleggskart" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "Laster ned %s" +msgid "Downloading {}" +msgstr "Laster ned {}" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3099,8 +3099,8 @@ msgstr "Du kan ikke slette nivåer du redigerer for øyeblikket!" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "Laget av %s" +msgid "contributed by {}" +msgstr "Laget av {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/nds.po b/data/locale/nds.po index ffae8ba2827..40a52427db3 100644 --- a/data/locale/nds.po +++ b/data/locale/nds.po @@ -1176,8 +1176,8 @@ msgstr "Unbekanntes Ding" #: src/supertux/command_line_arguments.cpp:74 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Gebruuk: %s [INSTELLENS][UPGAVEN-DATEI]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Gebruuk: {} [INSTELLENS][UPGAVEN-DATEI]" #: src/supertux/command_line_arguments.cpp:75 msgid "General Options:" @@ -1804,13 +1804,13 @@ msgstr "Grött ännern" #: src/supertux/menu/profile_menu.cpp:37 #, c-format -msgid "[Profile %s]" -msgstr "[Benutzer %s]" +msgid "[Profile {}]" +msgstr "[Benutzer {}]" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "Profile %s" -msgstr "Benutzer %s" +msgid "Profile {}" +msgstr "Benutzer {}" #: src/supertux/menu/editor_levelset_menu.cpp:59 #: src/supertux/menu/editor_new_levelset_menu.cpp:35 @@ -1842,8 +1842,8 @@ msgstr "Unbekannt" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s »%s« vun %s" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} »{}« vun {}" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -1855,13 +1855,13 @@ msgstr "Keene neien Welten funnen" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "»%s« installeren *NEEI*" +msgid "Install {} *NEW*" +msgstr "»{}« installeren *NEEI*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "»%s« installeren" +msgid "Install {}" +msgstr "»{}« installeren" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -1881,8 +1881,8 @@ msgstr "List vun Welten word laden" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "»%s« word runnerladen" +msgid "Downloading {}" +msgstr "»{}« word runnerladen" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -2298,8 +2298,8 @@ msgstr "Good so!" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "Bidragen vun %s" +msgid "contributed by {}" +msgstr "Bidragen vun {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/ne.po b/data/locale/ne.po index 96e2a468b0a..87e9bbf4945 100644 --- a/data/locale/ne.po +++ b/data/locale/ne.po @@ -1059,7 +1059,7 @@ msgstr "" #: src/supertux/command_line_arguments.cpp:79 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" msgstr "" #: src/supertux/command_line_arguments.cpp:80 @@ -1232,8 +1232,8 @@ msgstr "" #: src/supertux/levelintro.cpp:120 #, c-format -msgid "contributed by %s" -msgstr "%s ले योगदान गर्नुभएको" +msgid "contributed by {}" +msgstr "{} ले योगदान गर्नुभएको" #: src/supertux/levelintro.cpp:141 src/supertux/statistics.cpp:119 msgid "Best Level Statistics" @@ -1273,8 +1273,8 @@ msgstr "विश्व" #: src/supertux/menu/addon_menu.cpp:83 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" \"%s\"द्वारा" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" \"{}\"द्वारा" #: src/supertux/menu/addon_menu.cpp:139 msgid "Language packs" @@ -1310,12 +1310,12 @@ msgstr "" #: src/supertux/menu/addon_menu.cpp:224 #, c-format -msgid "Install %s *NEW*" +msgid "Install {} *NEW*" msgstr "" #: src/supertux/menu/addon_menu.cpp:235 #, c-format -msgid "Install %s" +msgid "Install {}" msgstr "" #: src/supertux/menu/addon_menu.cpp:246 @@ -1355,7 +1355,7 @@ msgstr "" #: src/supertux/menu/addon_menu.cpp:361 #, c-format -msgid "Downloading %s" +msgid "Downloading {}" msgstr "" #: src/supertux/menu/addon_menu.cpp:408 @@ -2014,12 +2014,12 @@ msgstr "" #: src/supertux/menu/profile_menu.cpp:37 #, c-format -msgid "[Profile %s]" +msgid "[Profile {}]" msgstr "" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "Profile %s" +msgid "Profile {}" msgstr "" #: src/supertux/menu/world_set_menu.cpp:41 diff --git a/data/locale/nl.po b/data/locale/nl.po index 5d25c98dc1a..918fdf5803a 100644 --- a/data/locale/nl.po +++ b/data/locale/nl.po @@ -5,143 +5,188 @@ # Translators: # Frank van der Loo , 2004 # Frank van der Loo , 2014-2015 -# Heimen Stoffels , 2021 +# Heimen Stoffels , 2021-2022,2024 # Heimen Stoffels , 2015-2016,2018-2020 +# IAN RODRÍGUEZ Lorenzo, 2022 +# thetuxgirl, 2024 # Pieter De Decker , 2007,2013 -# Toon van Gerwen , 2015 -# Toon van Gerwen , 2018 +# 62bd5b1da39b746abffbed10afdf3f48_dd9a6d2 , 2015 +# 62bd5b1da39b746abffbed10afdf3f48_dd9a6d2 , 2018 +# thetuxgirl, 2024 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-13 13:45+0000\n" -"Last-Translator: Heimen Stoffels \n" -"Language-Team: Dutch (http://www.transifex.com/arctic-games/supertux/language/nl/)\n" +"POT-Creation-Date: 2024-05-30 16:19+0200\n" +"PO-Revision-Date: 2013-08-10 22:56+0000\n" +"Last-Translator: thetuxgirl, 2024\n" +"Language-Team: Dutch (http://app.transifex.com/arctic-games/supertux/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/trigger/secretarea_trigger.cpp:53 src/trigger/secretarea_trigger.cpp:61 +#: src/trigger/secretarea_trigger.cpp:47 msgid "You found a secret area!" msgstr "Je hebt een geheim gebied gevonden!" -#: src/trigger/secretarea_trigger.cpp:77 src/supertux/game_object.cpp:90 -#: src/supertux/menu/editor_sector_menu.cpp:34 -#: src/supertux/menu/editor_levelset_menu.cpp:58 +#: src/trigger/secretarea_trigger.cpp:55 src/supertux/game_object.cpp:115 +#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_levelset_menu.cpp:52 #: src/supertux/menu/editor_new_levelset_menu.cpp:34 +#: src/supertux/menu/profile_name_menu.cpp:39 #: src/supertux/menu/editor_level_menu.cpp:33 msgid "Name" msgstr "Naam" -#: src/trigger/secretarea_trigger.cpp:78 +#: src/trigger/secretarea_trigger.cpp:56 msgid "Fade tilemap" msgstr "Vervagingstegelkaart" -#: src/trigger/secretarea_trigger.cpp:79 src/trigger/climbable.cpp:81 -#: src/object/infoblock.cpp:57 src/editor/worldmap_objects.cpp:172 -#: src/editor/worldmap_objects.cpp:270 +#: src/trigger/secretarea_trigger.cpp:57 src/trigger/climbable.cpp:59 +#: src/object/infoblock.cpp:76 src/worldmap/teleporter.cpp:49 +#: src/worldmap/special_tile.cpp:74 msgid "Message" msgstr "Bericht" -#: src/trigger/secretarea_trigger.cpp:80 src/trigger/scripttrigger.cpp:75 -#: src/trigger/door.cpp:73 src/object/ispy.cpp:67 -#: src/object/bonus_block.cpp:207 src/object/bonus_block.cpp:211 -#: src/object/pushbutton.cpp:51 src/object/powerup.cpp:190 -#: src/editor/worldmap_objects.cpp:272 +#: src/trigger/secretarea_trigger.cpp:58 src/trigger/scripttrigger.cpp:51 +#: src/trigger/door.cpp:79 src/object/ispy.cpp:53 +#: src/object/bonus_block.cpp:264 src/object/bonus_block.cpp:268 +#: src/object/pushbutton.cpp:62 src/object/powerup.cpp:301 +#: src/worldmap/special_tile.cpp:76 msgid "Script" msgstr "Script" -#: src/trigger/scripttrigger.cpp:76 src/object/pushbutton.hpp:31 +#: src/trigger/scripttrigger.cpp:52 src/object/pushbutton.hpp:32 msgid "Button" msgstr "Knop" -#: src/trigger/scripttrigger.cpp:77 +#: src/trigger/scripttrigger.cpp:53 msgid "Oneshot" msgstr "Eén schot" -#: src/trigger/sequence_trigger.hpp:33 +#: src/trigger/sequence_trigger.hpp:31 msgid "Sequence Trigger" msgstr "Reeks-trigger" -#: src/trigger/door.cpp:74 src/badguy/willowisp.cpp:320 -#: src/supertux/menu/editor_sector_menu.cpp:32 -#: src/editor/layers_widget.cpp:342 -#: data//images/engine/editor/objects.stoi:321 +#: src/trigger/text_area.cpp:141 +msgid "Once" +msgstr "Eenmalig" + +#: src/trigger/text_area.cpp:142 +msgid "Text change time" +msgstr "Tekst veranderen gedurende" + +#: src/trigger/text_area.cpp:143 +msgid "Fade time" +msgstr "Vervaagduur" + +#: src/trigger/text_area.cpp:144 src/object/textscroller.cpp:353 +msgid "Anchor" +msgstr "Anker" + +#: src/trigger/text_area.cpp:148 +msgid "Anchor offset X" +msgstr "Ankerafstand X" + +#: src/trigger/text_area.cpp:149 +msgid "Anchor offset Y" +msgstr "Ankerafstand Y" + +#: src/trigger/text_area.cpp:150 +msgid "Texts" +msgstr "Teksten" + +#: src/trigger/door.cpp:80 src/badguy/willowisp.cpp:311 +#: src/worldmap/teleporter.cpp:47 data//images/engine/editor/objects.stoi:342 msgid "Sector" msgstr "Onderdeel" -#: src/trigger/door.cpp:75 src/editor/worldmap_objects.hpp:101 +#: src/trigger/door.cpp:81 src/worldmap/spawn_point.hpp:58 msgid "Spawn point" msgstr "Herstelpunt" -#: src/trigger/switch.cpp:61 src/object/block.cpp:224 src/object/torch.cpp:102 -#: src/object/moving_sprite.cpp:156 src/object/pneumatic_platform.cpp:146 -msgid "Sprite" -msgstr "Sprite" +#: src/trigger/door.cpp:82 +msgid "Locked?" +msgstr "Vergrendeld?" + +#: src/trigger/door.cpp:83 +msgid "Lock Color" +msgstr "Vergrendelkleur" + +#: src/trigger/switch.cpp:62 src/object/ispy.cpp:54 src/object/bumper.cpp:53 +#: src/object/spotlight.cpp:106 src/object/pushbutton.cpp:61 +#: src/object/gradient.cpp:103 src/object/conveyor_belt.cpp:60 +#: src/badguy/badguy.cpp:1063 src/worldmap/spawn_point.cpp:79 +#: src/worldmap/special_tile.cpp:78 +msgid "Direction" +msgstr "Richting" -#: src/trigger/switch.cpp:62 +#: src/trigger/switch.cpp:65 msgid "Turn on script" msgstr "Script inschakelen" -#: src/trigger/switch.cpp:63 +#: src/trigger/switch.cpp:66 msgid "Turn off script" msgstr "Script uitschakelen" -#: src/trigger/scripttrigger.hpp:32 +#: src/trigger/scripttrigger.hpp:29 msgid "Script Trigger" msgstr "Scripttrigger" -#: src/trigger/sequence_trigger.cpp:75 +#: src/trigger/sequence_trigger.cpp:48 msgid "Sequence" msgstr "Reeks" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "end sequence" msgstr "eindreeks" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "stop Tux" msgstr "Tux stoppen" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "fireworks" msgstr "vuurwerk" -#: src/trigger/sequence_trigger.cpp:80 +#: src/trigger/sequence_trigger.cpp:53 msgid "New worldmap spawnpoint" -msgstr "Nieuw opduikpunt op wereldkaart" +msgstr "Nieuw herstelpunt op wereldkaart" -#: src/trigger/sequence_trigger.cpp:81 +#: src/trigger/sequence_trigger.cpp:54 msgid "Worldmap fade tilemap" msgstr "Wereldkaart vervagen" -#: src/trigger/sequence_trigger.cpp:82 +#: src/trigger/sequence_trigger.cpp:55 #: src/object/custom_particle_system.cpp:430 #: src/object/custom_particle_system.cpp:465 msgid "Fade" msgstr "Vervagen" -#: src/trigger/sequence_trigger.cpp:83 src/editor/particle_editor.cpp:161 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:161 msgid "Fade in" msgstr "Invagen" -#: src/trigger/sequence_trigger.cpp:83 src/editor/particle_editor.cpp:167 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:167 #: src/editor/particle_editor.cpp:212 msgid "Fade out" msgstr "Uitvagen" -#: src/trigger/climbable.hpp:37 +#: src/trigger/climbable.hpp:46 msgid "Climbable" msgstr "Beklimbaar" -#: src/trigger/door.hpp:34 +#: src/trigger/text_area.hpp:47 +msgid "Text Area" +msgstr "Tekstgebied" + +#: src/trigger/door.hpp:31 msgid "Door" msgstr "Deur" -#: src/trigger/switch.hpp:33 +#: src/trigger/switch.hpp:30 msgid "Switch" msgstr "Schakelaar" @@ -149,118 +194,194 @@ msgstr "Schakelaar" msgid "Secret Area" msgstr "Geheim gebied" -#: src/object/thunderstorm.hpp:40 +#: src/math/anchor_point.cpp:33 +msgid "Top Left" +msgstr "Linksboven" + +#: src/math/anchor_point.cpp:34 +msgid "Top" +msgstr "Bovenaan" + +#: src/math/anchor_point.cpp:35 +msgid "Top Right" +msgstr "Rechtsboven" + +#: src/math/anchor_point.cpp:36 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:38 +#: src/supertux/menu/joystick_menu.cpp:73 +msgid "Left" +msgstr "Links" + +#: src/math/anchor_point.cpp:37 +msgid "Middle" +msgstr "Midden" + +#: src/math/anchor_point.cpp:38 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:39 +#: src/supertux/menu/joystick_menu.cpp:74 +msgid "Right" +msgstr "Rechts" + +#: src/math/anchor_point.cpp:39 +msgid "Bottom Left" +msgstr "Linksonder" + +#: src/math/anchor_point.cpp:40 +msgid "Bottom" +msgstr "Onderaan" + +#: src/math/anchor_point.cpp:41 +msgid "Bottom Right" +msgstr "Rechtsonder" + +#: src/object/thunderstorm.hpp:44 msgid "Thunderstorm" msgstr "Onweersstorm" -#: src/object/cloud_particle_system.cpp:79 +#: src/object/cloud_particle_system.cpp:77 #: src/object/rain_particle_system.cpp:100 msgid "Intensity" msgstr "Intensiteit" -#: src/object/custom_particle_system.hpp:45 +#: src/object/custom_particle_system.hpp:46 msgid "Custom Particles" msgstr "Eigen deeltjes" -#: src/object/ispy.cpp:66 -msgid "Facing Down" -msgstr "Kijkend naar beneden" - -#: src/object/ispy.cpp:68 src/object/spotlight.cpp:103 -#: src/object/gradient.cpp:137 src/badguy/willowisp.cpp:319 -#: src/badguy/badguy.cpp:848 src/editor/worldmap_objects.cpp:207 -#: src/editor/worldmap_objects.cpp:274 -msgid "Direction" -msgstr "Richting" - -#: src/object/particle_zone.hpp:39 +#: src/object/particle_zone.hpp:41 msgid "Particle zone" msgstr "Deeltjeszone" -#: src/object/path_gameobject.hpp:44 src/object/coin.cpp:301 -#: src/object/camera.cpp:224 src/object/platform.cpp:73 -#: src/object/path_gameobject.cpp:173 src/object/tilemap.cpp:246 -#: src/gui/menu_paths.cpp:52 src/badguy/willowisp.cpp:326 +#: src/object/path_gameobject.hpp:45 src/object/coin.cpp:324 +#: src/object/camera.cpp:168 src/object/platform.cpp:76 +#: src/object/path_gameobject.cpp:175 src/object/tilemap.cpp:284 +#: src/badguy/willowisp.cpp:317 msgid "Path" msgstr "Pad" -#: src/object/decal.cpp:49 src/object/scripted_object.cpp:67 -#: src/object/particlesystem.cpp:65 src/object/background.cpp:183 -#: src/object/thunderstorm.cpp:68 src/object/tilemap.cpp:239 -#: src/object/gradient.cpp:135 -msgid "Z-pos" -msgstr "Z-positie" - -#: src/object/decal.cpp:50 src/object/scripted_object.cpp:70 -#: src/object/tilemap.cpp:228 +#: src/object/decal.cpp:48 src/object/scripted_object.cpp:70 +#: src/object/tilemap.cpp:266 msgid "Solid" msgstr "Glad" -#: src/object/decal.cpp:51 src/supertux/menu/keyboard_menu.cpp:37 -#: src/supertux/menu/joystick_menu.cpp:74 +#: src/object/decal.cpp:49 src/supertux/menu/keyboard_menu.cpp:41 +#: src/supertux/menu/joystick_menu.cpp:76 msgid "Action" msgstr "Actie" -#: src/object/weak_block.hpp:35 +#: src/object/weak_block.hpp:36 msgid "Weak Tile" msgstr "Zwakke tegel" -#: src/object/bumper.cpp:46 -msgid "Facing Left" -msgstr "Kijkend naar links" - -#: src/object/gradient.hpp:42 +#: src/object/gradient.hpp:43 msgid "Gradient" msgstr "Verloop" -#: src/object/tilemap.hpp:57 +#: src/object/tilemap.hpp:58 msgid "Tilemap" msgstr "Tegelkaart" -#: src/object/circleplatform.hpp:32 +#: src/object/sound_object.cpp:69 src/object/ambient_sound.cpp:85 +#: src/object/sound_object.hpp:42 src/supertux/menu/options_menu.cpp:128 +#: data//credits.stxt:367 +msgid "Sound" +msgstr "Geluid" + +#: src/object/sound_object.cpp:70 src/object/ambient_sound.cpp:87 +msgid "Volume" +msgstr "Volume" + +#: src/object/conveyor_belt.hpp:39 +msgid "Conveyor Belt" +msgstr "Bagageband" + +#: src/object/unstable_tile.cpp:70 src/object/weak_block.cpp:97 +#: src/badguy/flame.cpp:86 +msgid "Ice" +msgstr "IJs" + +#: src/object/unstable_tile.cpp:71 src/object/brick.hpp:34 +msgid "Brick" +msgstr "Baksteen" + +#: src/object/unstable_tile.cpp:72 +msgid "Delayed" +msgstr "Vertraagd" + +#: src/object/circleplatform.hpp:35 msgid "Circular Platform" msgstr "Cirkelvormig platform" -#: src/object/brick.cpp:133 +#: src/object/brick.cpp:59 src/object/coin.cpp:69 +#: src/object/invisible_block.cpp:37 src/object/background.cpp:200 +#: src/object/tilemap.cpp:279 src/object/gradient.cpp:109 +#: src/badguy/viciousivy.cpp:44 src/badguy/snail.cpp:69 +#: src/badguy/smartball.cpp:34 src/badguy/bouncing_snowball.cpp:81 +#: src/badguy/kamikazesnowball.cpp:117 src/badguy/walkingleaf.cpp:35 +#: src/badguy/mrbomb.cpp:47 src/badguy/igel.cpp:188 src/badguy/snowball.cpp:40 +#: src/badguy/mrtree.cpp:50 src/badguy/mriceblock.cpp:62 +msgid "Normal" +msgstr "Normaal" + +#: src/object/brick.cpp:60 src/object/bonus_block.cpp:175 +#: src/object/coin.cpp:70 src/object/invisible_block.cpp:38 +msgid "Retro" +msgstr "Retro" + +#: src/object/brick.cpp:166 msgid "Breakable" msgstr "Breekbaar" -#: src/object/trampoline.cpp:136 src/object/rusty_trampoline.cpp:66 +#: src/object/trampoline.cpp:66 src/object/rusty_trampoline.cpp:66 msgid "Portable" msgstr "Draagbaar" -#: src/object/spotlight.cpp:100 src/object/rain_particle_system.cpp:101 +#: src/object/trampoline.cpp:67 +msgid "Stationary" +msgstr "Stationair" + +#: src/object/key.hpp:38 +msgid "Key" +msgstr "Sleutel" + +#: src/object/spotlight.cpp:102 src/object/particlesystem.cpp:64 +#: src/object/particle_zone.cpp:50 src/badguy/darttrap.cpp:149 +#: src/supertux/menu/addon_preview_menu.cpp:189 +msgid "Enabled" +msgstr "Inschakelen" + +#: src/object/spotlight.cpp:103 src/object/rain_particle_system.cpp:101 msgid "Angle" msgstr "Hoek" -#: src/object/spotlight.cpp:101 src/object/magicblock.cpp:94 -#: src/object/candle.cpp:77 src/object/torch.cpp:104 -#: src/object/rublight.cpp:54 src/object/lantern.cpp:62 -#: src/object/ambient_light.cpp:131 src/badguy/willowisp.cpp:328 -#: src/badguy/walking_candle.cpp:82 +#: src/object/spotlight.cpp:104 src/object/magicblock.cpp:95 +#: src/object/candle.cpp:75 src/object/torch.cpp:96 src/object/rublight.cpp:55 +#: src/object/lantern.cpp:62 src/object/ambient_light.cpp:122 +#: src/object/key.cpp:192 src/badguy/willowisp.cpp:319 +#: src/badguy/walking_candle.cpp:91 msgid "Color" msgstr "Kleur" -#: src/object/spotlight.cpp:102 src/object/textscroller.cpp:350 -#: src/object/rain_particle_system.cpp:102 src/object/circleplatform.cpp:55 -#: src/badguy/flame.cpp:59 src/editor/node_marker.cpp:125 +#: src/object/spotlight.cpp:105 src/object/textscroller.cpp:350 +#: src/object/rain_particle_system.cpp:102 src/object/conveyor_belt.cpp:61 +#: src/object/circleplatform.cpp:58 src/badguy/flame.cpp:110 +#: src/editor/node_marker.cpp:125 msgid "Speed" msgstr "Snelheid" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Clockwise" msgstr "Met de klok mee" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Counter-clockwise" msgstr "Tegen de klok in" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Stopped" msgstr "Gestopt" -#: src/object/spotlight.cpp:107 src/object/candle.cpp:78 -#: src/object/torch.cpp:103 +#: src/object/spotlight.cpp:110 src/object/lit_object.cpp:69 +#: src/object/candle.cpp:76 src/object/torch.cpp:95 msgid "Layer" msgstr "Laag" @@ -272,125 +393,171 @@ msgstr "Bewegingen ingeschakeld" msgid "Visible" msgstr "Zichtbaar" -#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:322 +#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:313 msgid "Hit script" msgstr "Raakscript" -#: src/object/custom_particle_system_file.cpp:50 +#: src/object/custom_particle_system_file.cpp:53 #: src/object/textscroller.cpp:348 src/object/music_object.cpp:109 #: src/supertux/menu/particle_editor_open.cpp:38 msgid "File" msgstr "Bestand" -#: src/object/bonus_block.cpp:208 +#: src/object/bonus_block.cpp:154 +msgid "Only one custom object is allowed inside bonus blocks." +msgstr "Er is slechts één object per bonusblok toegestaan." + +#: src/object/bonus_block.cpp:172 +msgid "Blue" +msgstr "Blauw" + +#: src/object/bonus_block.cpp:173 +msgid "Orange" +msgstr "Oranje" + +#: src/object/bonus_block.cpp:174 +msgid "Purple" +msgstr "Paars" + +#: src/object/bonus_block.cpp:265 src/supertux/menu/cheat_apply_menu.cpp:54 msgid "Count" msgstr "Teller" -#: src/object/bonus_block.cpp:209 +#: src/object/bonus_block.cpp:266 msgid "Content" msgstr "Inhoud" -#: src/object/bonus_block.cpp:210 src/object/coin.hpp:43 +#: src/object/bonus_block.cpp:267 src/object/coin.hpp:44 msgid "Coin" msgstr "Muntjes" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (fire flower)" msgstr "Groei (vuurbloem)" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (ice flower)" msgstr "Groei (ijsbloem)" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (air flower)" msgstr "Groei (luchtbloem)" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Growth (earth flower)" msgstr "Groei (aardbloem)" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 +msgid "Growth (retro)" +msgstr "Groei (retro)" + +#: src/object/bonus_block.cpp:268 src/object/powerup.cpp:66 msgid "Star" msgstr "Ster" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 +msgid "Star (retro)" +msgstr "Ster (retro)" + +#: src/object/bonus_block.cpp:268 msgid "Tux doll" msgstr "Tux-poppetje" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Custom" msgstr "Aangepast" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Light" msgstr "Licht" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Light (On)" msgstr "Licht (aan)" -#: src/object/bonus_block.cpp:212 src/object/trampoline.hpp:35 +#: src/object/bonus_block.cpp:269 src/object/trampoline.hpp:37 msgid "Trampoline" msgstr "Trampoline" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 +msgid "Portable trampoline" +msgstr "Draagbare trampoline" + +#: src/object/bonus_block.cpp:269 msgid "Coin rain" msgstr "Muntjesregen" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 msgid "Coin explosion" msgstr "Muntjesexplosie" -#: src/object/bonus_block.cpp:216 +#: src/object/bonus_block.cpp:269 src/object/rock.hpp:43 +msgid "Rock" +msgstr "Steen" + +#: src/object/bonus_block.cpp:269 +msgid "Potion" +msgstr "Drankje" + +#: src/object/bonus_block.cpp:275 msgid "Custom Content" msgstr "Aangepaste inhoud" -#: src/object/pneumatic_platform.hpp:62 +#: src/object/bonus_block.cpp:278 +msgid "Coin sprite" +msgstr "Munt" + +#: src/object/pneumatic_platform.hpp:65 msgid "Pneumatic Platform" msgstr "Pneumatisch platform" -#: src/object/coin.cpp:303 src/object/tilemap.cpp:249 +#: src/object/coin.cpp:326 src/object/tilemap.cpp:287 msgid "Following path" msgstr "Volgpad" -#: src/object/coin.cpp:306 src/object/camera.cpp:227 -#: src/object/platform.cpp:74 src/object/tilemap.cpp:252 +#: src/object/coin.cpp:329 src/object/camera.cpp:171 +#: src/object/platform.cpp:77 src/object/tilemap.cpp:290 msgid "Path Mode" msgstr "Padmodus" -#: src/object/coin.cpp:307 src/object/camera.cpp:228 -#: src/object/platform.cpp:75 src/object/tilemap.cpp:253 -#: src/badguy/willowisp.cpp:331 +#: src/object/coin.cpp:330 src/object/camera.cpp:172 +#: src/object/platform.cpp:78 src/object/tilemap.cpp:291 +#: src/badguy/willowisp.cpp:322 msgid "Adapt Speed" msgstr "Aanpassen aan snelheid" -#: src/object/coin.cpp:308 src/object/platform.cpp:77 -#: src/object/tilemap.cpp:247 src/badguy/willowisp.cpp:327 +#: src/object/coin.cpp:331 src/object/platform.cpp:81 +#: src/object/tilemap.cpp:285 src/badguy/willowisp.cpp:318 msgid "Starting Node" msgstr "Startpositie" -#: src/object/coin.cpp:311 src/object/coin.cpp:339 +#: src/object/coin.cpp:332 src/object/camera.cpp:173 +#: src/object/platform.cpp:82 src/object/tilemap.cpp:293 +#: src/badguy/willowisp.cpp:323 +msgid "Handle" +msgstr "Handvat" + +#: src/object/coin.cpp:335 src/object/coin.cpp:371 msgid "Collect script" msgstr "Verzamelscript" -#: src/object/ghost_particle_system.hpp:36 +#: src/object/ghost_particle_system.hpp:37 msgid "Ghost Particles" msgstr "Geestdeeltjes" -#: src/object/camera.cpp:219 +#: src/object/camera.cpp:163 msgid "Mode" msgstr "Modus" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "normal" msgstr "normaal" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "manual" msgstr "handmatig" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "autoscroll" msgstr "autoscroll" @@ -406,32 +573,20 @@ msgstr "X-verschuiving" msgid "Controllable" msgstr "Beheersbaar" -#: src/object/textscroller.cpp:353 -msgid "Anchor" -msgstr "Anker" - -#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 -#: src/supertux/menu/keyboard_menu.cpp:34 -#: src/supertux/menu/joystick_menu.cpp:71 -msgid "Left" -msgstr "Links" - #: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 msgid "Center" msgstr "Centreren" -#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 -#: src/supertux/menu/keyboard_menu.cpp:35 -#: src/supertux/menu/joystick_menu.cpp:72 -msgid "Right" -msgstr "Rechts" - #: src/object/textscroller.cpp:357 msgid "Text Alignment" msgstr "Tekstuitlijning" -#: src/object/spawnpoint.hpp:46 src/badguy/willowisp.cpp:321 -#: src/editor/worldmap_objects.cpp:171 +#: src/object/lit_object.hpp:40 +msgid "Lit object" +msgstr "Verlicht object" + +#: src/object/spawnpoint.hpp:48 src/badguy/willowisp.cpp:312 +#: src/worldmap/teleporter.cpp:48 msgid "Spawnpoint" msgstr "Herstelpunt" @@ -439,266 +594,339 @@ msgstr "Herstelpunt" msgid "Counter" msgstr "Teller" -#: src/object/candle.hpp:36 +#: src/object/candle.hpp:37 msgid "Candle" msgstr "Kaars" -#: src/object/particlesystem.cpp:64 src/object/particle_zone.cpp:79 -#: src/badguy/darttrap.cpp:127 -msgid "Enabled" -msgstr "Inschakelen" +#: src/object/particlesystem.cpp:65 src/object/background.cpp:184 +#: src/object/thunderstorm.cpp:76 src/object/tilemap.cpp:277 +#: src/object/gradient.cpp:101 src/object/moving_sprite.cpp:193 +msgid "Z-pos" +msgstr "Z-positie" -#: src/object/invisible_block.hpp:31 +#: src/object/invisible_block.hpp:30 msgid "Invisible Block" msgstr "Onzichtbaar blok" -#: src/object/snow_particle_system.hpp:35 +#: src/object/snow_particle_system.hpp:37 msgid "Snow Particles" msgstr "Sneeuwdeeltjes" -#: src/object/powerup.hpp:35 +#: src/object/powerup.hpp:40 msgid "Powerup" msgstr "Bonusitem" -#: src/object/fallblock.hpp:39 +#: src/object/infoblock.cpp:78 +msgid "Front Color" +msgstr "Voorgrondkleur" + +#: src/object/infoblock.cpp:80 +msgid "Back Color" +msgstr "Achtergrondkleur" + +#: src/object/infoblock.cpp:82 +msgid "Roundness" +msgstr "Afronding" + +#: src/object/infoblock.cpp:84 +msgid "Fade Transition" +msgstr "Vervaagovergang" + +#: src/object/fallblock.hpp:41 msgid "Falling Platform" msgstr "Vallend platform" -#: src/object/level_time.hpp:55 +#: src/object/level_time.hpp:56 msgid "Time Limit" msgstr "Tijdslimiet" -#: src/object/ambient_sound.cpp:119 src/supertux/menu/options_menu.cpp:391 -#: data//credits.stxt:352 -msgid "Sound" -msgstr "Geluid" - -#: src/object/ambient_sound.cpp:120 -msgid "Distance factor" -msgstr "Afstandsfactor" - -#: src/object/ambient_sound.cpp:121 -msgid "Distance bias" -msgstr "Afstandbias" - -#: src/object/ambient_sound.cpp:122 -msgid "Volume" -msgstr "Volume" +#: src/object/ambient_sound.cpp:86 +msgid "Radius (in tiles)" +msgstr "Straal (in tegels)" #: src/object/torch.hpp:41 msgid "Torch" msgstr "Fakkel" -#: src/object/icecrusher.hpp:53 -msgid "Icecrusher" -msgstr "IJsbreker" - -#: src/object/rublight.hpp:33 +#: src/object/rublight.hpp:34 msgid "Rublight" -msgstr "" +msgstr "Lichte contactpersoon" -#: src/object/background.hpp:43 +#: src/object/background.hpp:45 msgid "Background" msgstr "Achtergrond" -#: src/object/firefly.hpp:36 +#: src/object/text_object.hpp:44 src/gui/menu_string_array.cpp:77 +msgid "Text" +msgstr "Tekst" + +#: src/object/firefly.hpp:38 msgid "Checkpoint" msgstr "Controlepunt" -#: src/object/ambient_light.hpp:36 +#: src/object/ambient_light.hpp:37 msgid "Ambient Light" msgstr "Sfeerlicht" -#: src/object/lantern.hpp:37 +#: src/object/lantern.hpp:38 msgid "Lantern" msgstr "Lantaarn" -#: src/object/wind.hpp:40 +#: src/object/wind.hpp:43 msgid "Wind" msgstr "Wind" -#: src/object/bicycle_platform.cpp:189 src/object/background.cpp:179 -#: src/object/pneumatic_platform.cpp:147 -#: src/supertux/menu/joystick_menu.cpp:170 src/supertux/moving_object.cpp:58 -#: src/editor/worldmap_objects.cpp:73 +#: src/object/bicycle_platform.cpp:203 src/object/background.cpp:180 +#: src/object/pneumatic_platform.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:65 +#: src/worldmap/worldmap_object.cpp:77 msgid "X" msgstr "X" -#: src/object/bicycle_platform.cpp:190 src/object/background.cpp:180 -#: src/object/pneumatic_platform.cpp:148 -#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:59 -#: src/editor/worldmap_objects.cpp:74 +#: src/object/bicycle_platform.cpp:204 src/object/background.cpp:181 +#: src/object/pneumatic_platform.cpp:163 +#: src/supertux/menu/joystick_menu.cpp:174 src/supertux/moving_object.cpp:66 +#: src/worldmap/worldmap_object.cpp:78 msgid "Y" msgstr "Y" -#: src/object/bicycle_platform.cpp:192 +#: src/object/bicycle_platform.cpp:206 msgid "Platforms" msgstr "Platforms" -#: src/object/bicycle_platform.cpp:193 src/object/circleplatform.cpp:54 -#: src/badguy/flame.cpp:58 src/badguy/rcrystallo.cpp:50 -#: src/badguy/crystallo.cpp:35 +#: src/object/bicycle_platform.cpp:207 src/object/circleplatform.cpp:57 +#: src/badguy/fish_swimming.cpp:76 src/badguy/flame.cpp:109 +#: src/badguy/rcrystallo.cpp:83 src/badguy/crystallo.cpp:50 msgid "Radius" msgstr "Omtrek" -#: src/object/bicycle_platform.cpp:194 +#: src/object/bicycle_platform.cpp:208 msgid "Momentum change rate" msgstr "Momentumsnelheid wijzigen" -#: src/object/rain_particle_system.hpp:40 +#: src/object/rain_particle_system.hpp:41 msgid "Rain Particles" msgstr "Regendeeltjes" -#: src/object/platform.hpp:45 +#: src/object/platform.hpp:46 msgid "Platform" msgstr "Platform" -#: src/object/rock.hpp:42 -msgid "Rock" -msgstr "Steen" - -#: src/object/music_object.hpp:41 src/supertux/menu/options_menu.cpp:393 -#: data//credits.stxt:294 +#: src/object/music_object.hpp:42 src/supertux/menu/options_menu.cpp:130 +#: data//credits.stxt:309 msgid "Music" msgstr "Muziek" -#: src/object/rusty_trampoline.hpp:39 +#: src/object/lit_object.cpp:68 +msgid "Light sprite" +msgstr "" + +#: src/object/lit_object.cpp:71 +msgid "Sprite starting action" +msgstr "" + +#: src/object/lit_object.cpp:72 +msgid "Light sprite starting action" +msgstr "" + +#: src/object/lit_object.cpp:74 +msgid "Light sprite offset X" +msgstr "" + +#: src/object/lit_object.cpp:75 +msgid "Light sprite offset Y" +msgstr "" + +#: src/object/rusty_trampoline.hpp:40 msgid "Rusty Trampoline" msgstr "Roestige trampoline" -#: src/object/particlesystem.hpp:57 +#: src/object/particlesystem.hpp:58 msgid "Particle system" msgstr "Deeltjessysteem" -#: src/object/candle.cpp:75 src/object/torch.cpp:101 +#: src/object/candle.cpp:73 src/object/torch.cpp:94 msgid "Burning" msgstr "Brandend" -#: src/object/candle.cpp:76 +#: src/object/candle.cpp:74 msgid "Flicker" msgstr "Flitser" -#: src/object/text_array_object.hpp:50 +#: src/object/snow_particle_system.cpp:104 +msgid "Epsilon" +msgstr "" + +#: src/object/snow_particle_system.cpp:105 +msgid "Spin Speed" +msgstr "" + +#: src/object/snow_particle_system.cpp:106 +msgid "State Length" +msgstr "" + +#: src/object/snow_particle_system.cpp:107 +msgid "Wind Speed" +msgstr "" + +#: src/object/text_array_object.hpp:47 msgid "Text array" msgstr "Tekstreeks" -#: src/object/infoblock.hpp:36 +#: src/object/infoblock.hpp:37 msgid "Info Block" msgstr "Informatieblok" -#: src/object/powerup.cpp:191 +#: src/object/powerup.cpp:61 +msgid "Egg" +msgstr "" + +#: src/object/powerup.cpp:62 +msgid "Fire Flower" +msgstr "" + +#: src/object/powerup.cpp:63 +msgid "Ice Flower" +msgstr "" + +#: src/object/powerup.cpp:64 +msgid "Air Flower" +msgstr "" + +#: src/object/powerup.cpp:65 +msgid "Earth Flower" +msgstr "" + +#: src/object/powerup.cpp:67 +msgid "Tux Doll" +msgstr "" + +#: src/object/powerup.cpp:68 +msgid "Flip Potion" +msgstr "" + +#: src/object/powerup.cpp:69 +msgid "Mints" +msgstr "" + +#: src/object/powerup.cpp:70 +msgid "Coffee" +msgstr "" + +#: src/object/powerup.cpp:71 +msgid "Herring" +msgstr "" + +#: src/object/powerup.cpp:302 msgid "Disable gravity" msgstr "Zwaartekracht uitschakelen" -#: src/object/ambient_sound.hpp:62 +#: src/object/powerup.cpp:312 src/object/weak_block.cpp:266 +msgid "" +"Sprites no longer define the behaviour of the object.\n" +"Object types are used instead." +msgstr "" + +#: src/object/ambient_sound.hpp:43 msgid "Ambient Sound" msgstr "Sfeergeluid" -#: src/object/level_time.cpp:51 src/supertux/statistics.cpp:297 +#: src/object/level_time.cpp:52 src/supertux/statistics.cpp:297 #: src/editor/node_marker.cpp:124 msgid "Time" msgstr "Tijd" -#: src/object/hurting_platform.hpp:30 +#: src/object/hurting_platform.hpp:31 msgid "Hurting Platform" msgstr "Pijnlijk platform" -#: src/object/icecrusher.cpp:83 -msgid "Sideways" -msgstr "Zijwaarts" - -#: src/object/background.cpp:182 +#: src/object/background.cpp:183 msgid "Fill" msgstr "Opvulling" -#: src/object/background.cpp:184 +#: src/object/background.cpp:185 msgid "Alignment" msgstr "Uitlijning" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 src/supertux/direction.cpp:61 msgid "none" msgstr "geen" -#: src/object/background.cpp:185 src/editor/object_settings.cpp:119 +#: src/object/background.cpp:186 src/supertux/direction.cpp:63 msgid "left" msgstr "links" -#: src/object/background.cpp:185 src/editor/object_settings.cpp:119 +#: src/object/background.cpp:186 src/supertux/direction.cpp:65 msgid "right" msgstr "rechts" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 msgid "top" msgstr "bovenkant" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 msgid "bottom" msgstr "onderkant" -#: src/object/background.cpp:188 +#: src/object/background.cpp:189 msgid "Scroll offset x" msgstr "Scrollafstand x" -#: src/object/background.cpp:189 +#: src/object/background.cpp:190 msgid "Scroll offset y" msgstr "Scrollafstand y" -#: src/object/background.cpp:190 +#: src/object/background.cpp:191 msgid "Scroll speed x" msgstr "Scrollsnelheid x" -#: src/object/background.cpp:191 +#: src/object/background.cpp:192 msgid "Scroll speed y" msgstr "Scrollsnelheid y" -#: src/object/background.cpp:192 +#: src/object/background.cpp:193 msgid "Parallax Speed x" msgstr "Parallax-snelheid x" -#: src/object/background.cpp:193 +#: src/object/background.cpp:194 msgid "Parallax Speed y" msgstr "Parallax-snelheid y" -#: src/object/background.cpp:194 +#: src/object/background.cpp:195 msgid "Top image" msgstr "Afbeelding aan de bovenkant" -#: src/object/background.cpp:195 +#: src/object/background.cpp:196 msgid "Image" msgstr "Afbeelding" -#: src/object/background.cpp:196 +#: src/object/background.cpp:197 msgid "Bottom image" msgstr "Afbeelding aan de onderkant" -#: src/object/background.cpp:197 +#: src/object/background.cpp:198 msgid "Colour" msgstr "Kleur" -#: src/object/background.cpp:198 src/object/tilemap.cpp:240 -#: src/object/gradient.cpp:142 +#: src/object/background.cpp:199 src/object/tilemap.cpp:278 +#: src/object/gradient.cpp:108 msgid "Draw target" msgstr "Doelwit tekenen" -#: src/object/background.cpp:199 src/object/tilemap.cpp:241 -#: src/object/gradient.cpp:143 -msgid "Normal" -msgstr "Normaal" - -#: src/object/background.cpp:199 src/object/tilemap.cpp:241 -#: src/object/gradient.cpp:143 +#: src/object/background.cpp:200 src/object/tilemap.cpp:279 +#: src/object/gradient.cpp:109 msgid "Lightmap" msgstr "Lichtkaart" -#: src/object/shard.hpp:34 +#: src/object/shard.hpp:35 msgid "Shard" -msgstr "" +msgstr "Scherf" -#: src/object/rublight.cpp:55 +#: src/object/rublight.cpp:56 msgid "Fading Speed" msgstr "Uitvaagsnelheid" -#: src/object/rublight.cpp:56 +#: src/object/rublight.cpp:57 msgid "Glowing Strength" msgstr "Gloeiingsintensiteit" @@ -734,20 +962,28 @@ msgstr "Van toepassing op speler" msgid "Fancy Particles" msgstr "Extra mooie deeltjes" -#: src/object/bicycle_platform.hpp:64 +#: src/object/bicycle_platform.hpp:67 msgid "Bicycle Platform" msgstr "Fietsplatform" -#: src/object/platform.cpp:76 src/object/thunderstorm.cpp:69 -#: src/object/tilemap.cpp:254 +#: src/object/platform.cpp:80 src/object/thunderstorm.cpp:77 +#: src/object/tilemap.cpp:292 src/object/conveyor_belt.cpp:62 msgid "Running" msgstr "Rennen" -#: src/object/rock.cpp:192 +#: src/object/rock.cpp:71 +msgid "Small" +msgstr "Klein" + +#: src/object/rock.cpp:72 +msgid "Large" +msgstr "Groot" + +#: src/object/rock.cpp:234 msgid "On-grab script" msgstr "Bij pakken van script" -#: src/object/rock.cpp:193 +#: src/object/rock.cpp:235 msgid "On-ungrab script" msgstr "Bij neerleggen van script" @@ -755,15 +991,15 @@ msgstr "Bij neerleggen van script" msgid "Interactive particle system" msgstr "Interactief deeltjessysteem" -#: src/object/thunderstorm.cpp:70 +#: src/object/thunderstorm.cpp:78 msgid "Interval" msgstr "Tussenpose" -#: src/object/thunderstorm.cpp:71 +#: src/object/thunderstorm.cpp:79 msgid "Strike Script" msgstr "Strike-script" -#: src/object/cloud_particle_system.hpp:41 +#: src/object/cloud_particle_system.hpp:42 msgid "Cloud Particles" msgstr "Luchtdeeltjes" @@ -775,7 +1011,7 @@ msgstr "Textuur" msgid "Amount" msgstr "Hoeveelheid" -#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:56 +#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:59 #: src/editor/particle_editor.cpp:141 msgid "Delay" msgstr "Wachttijd" @@ -794,10 +1030,11 @@ msgid "Birth mode" msgstr "Oproepmodus" #: src/object/custom_particle_system.cpp:430 -#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:149 -#: src/supertux/menu/keyboard_menu.cpp:58 -#: src/supertux/menu/joystick_menu.cpp:106 -#: src/supertux/menu/joystick_menu.cpp:213 src/editor/object_settings.cpp:131 +#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:115 +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/joystick_menu.cpp:108 +#: src/supertux/menu/joystick_menu.cpp:215 src/editor/object_settings.cpp:129 #: src/editor/particle_editor.cpp:162 src/editor/particle_editor.cpp:168 msgid "None" msgstr "Geen" @@ -821,902 +1058,1221 @@ msgstr "Geen vereenvoudiging" #: src/object/custom_particle_system.cpp:437 #: src/object/custom_particle_system.cpp:472 src/editor/node_marker.cpp:130 msgid "Quad in" -msgstr "" +msgstr "Kwart binnen" #: src/object/custom_particle_system.cpp:437 #: src/object/custom_particle_system.cpp:472 src/editor/node_marker.cpp:130 msgid "Quad out" -msgstr "" +msgstr "Quad uit" #: src/object/custom_particle_system.cpp:437 #: src/object/custom_particle_system.cpp:472 src/editor/node_marker.cpp:130 msgid "Quad in/out" -msgstr "" +msgstr "Quad in/uit" #: src/object/custom_particle_system.cpp:438 #: src/object/custom_particle_system.cpp:473 src/editor/node_marker.cpp:131 msgid "Cubic in" -msgstr "" +msgstr "Kubiek binnen" #: src/object/custom_particle_system.cpp:438 #: src/object/custom_particle_system.cpp:473 src/editor/node_marker.cpp:131 msgid "Cubic out" -msgstr "" +msgstr "Kubiek uit" #: src/object/custom_particle_system.cpp:438 #: src/object/custom_particle_system.cpp:473 src/editor/node_marker.cpp:131 msgid "Cubic in/out" -msgstr "" +msgstr "Kubiek in/uit" #: src/object/custom_particle_system.cpp:439 #: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 msgid "Quart in" -msgstr "" +msgstr "Kwart binnen" #: src/object/custom_particle_system.cpp:439 #: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 msgid "Quart out" -msgstr "" +msgstr "Kwart uit" #: src/object/custom_particle_system.cpp:439 #: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 msgid "Quart in/out" -msgstr "" +msgstr "Kwart in/uit" #: src/object/custom_particle_system.cpp:440 #: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 msgid "Quint in" -msgstr "" +msgstr "Quint binnen" #: src/object/custom_particle_system.cpp:440 #: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 msgid "Quint out" -msgstr "" +msgstr "Quint uit" #: src/object/custom_particle_system.cpp:440 #: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 msgid "Quint in/out" -msgstr "" +msgstr "Quint in/uit" #: src/object/custom_particle_system.cpp:441 #: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 msgid "Sine in" -msgstr "" +msgstr "Sinus erin" #: src/object/custom_particle_system.cpp:441 #: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 msgid "Sine out" -msgstr "" +msgstr "Sinus uit" #: src/object/custom_particle_system.cpp:441 #: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 msgid "Sine in/out" -msgstr "" +msgstr "Sinus in/uit" #: src/object/custom_particle_system.cpp:442 #: src/object/custom_particle_system.cpp:477 src/editor/node_marker.cpp:135 msgid "Circular in" -msgstr "" +msgstr "Circulair in" #: src/object/custom_particle_system.cpp:442 #: src/object/custom_particle_system.cpp:477 src/editor/node_marker.cpp:135 msgid "Circular out" -msgstr "" +msgstr "Circulair uit" #: src/object/custom_particle_system.cpp:442 #: src/object/custom_particle_system.cpp:477 src/editor/node_marker.cpp:135 msgid "Circular in/out" -msgstr "" +msgstr "Circulair in/uit" #: src/object/custom_particle_system.cpp:443 #: src/object/custom_particle_system.cpp:478 src/editor/node_marker.cpp:136 msgid "Exponential in" -msgstr "" +msgstr "Exponentieel in" #: src/object/custom_particle_system.cpp:443 #: src/object/custom_particle_system.cpp:478 src/editor/node_marker.cpp:136 msgid "Exponential out" -msgstr "" +msgstr "Exponentieel uit" #: src/object/custom_particle_system.cpp:443 #: src/object/custom_particle_system.cpp:478 src/editor/node_marker.cpp:136 msgid "Exponential in/out" -msgstr "" +msgstr "Exponentieel in/uit" #: src/object/custom_particle_system.cpp:444 #: src/object/custom_particle_system.cpp:479 src/editor/node_marker.cpp:137 msgid "Elastic in" -msgstr "" +msgstr "Elastiek erin" #: src/object/custom_particle_system.cpp:444 #: src/object/custom_particle_system.cpp:479 src/editor/node_marker.cpp:137 msgid "Elastic out" -msgstr "" +msgstr "Elastiek eruit" #: src/object/custom_particle_system.cpp:444 #: src/object/custom_particle_system.cpp:479 src/editor/node_marker.cpp:137 msgid "Elastic in/out" -msgstr "" +msgstr "Elastiek in/uit" #: src/object/custom_particle_system.cpp:445 #: src/object/custom_particle_system.cpp:480 src/editor/node_marker.cpp:138 msgid "Back in" -msgstr "" +msgstr "Terug in" #: src/object/custom_particle_system.cpp:445 #: src/object/custom_particle_system.cpp:480 src/editor/node_marker.cpp:138 msgid "Back out" -msgstr "" +msgstr "Terug naar buiten" #: src/object/custom_particle_system.cpp:445 #: src/object/custom_particle_system.cpp:480 src/editor/node_marker.cpp:138 msgid "Back in/out" -msgstr "" +msgstr "Terug in/uit" #: src/object/custom_particle_system.cpp:446 #: src/object/custom_particle_system.cpp:481 src/editor/node_marker.cpp:139 msgid "Bounce in" -msgstr "" +msgstr "Spring erin" #: src/object/custom_particle_system.cpp:446 #: src/object/custom_particle_system.cpp:481 src/editor/node_marker.cpp:139 msgid "Bounce out" -msgstr "" +msgstr "Spring eruit" #: src/object/custom_particle_system.cpp:446 #: src/object/custom_particle_system.cpp:481 src/editor/node_marker.cpp:139 msgid "Bounce in/out" -msgstr "" +msgstr "Spring in/uit" #: src/object/custom_particle_system.cpp:462 msgid "Birth time" -msgstr "" +msgstr "Geboorte tijd" #: src/object/custom_particle_system.cpp:463 msgid "Birth time variation" -msgstr "" +msgstr "Geboortetijd variatie" #: src/object/custom_particle_system.cpp:464 #: src/editor/particle_editor.cpp:170 msgid "Death mode" -msgstr "" +msgstr "Doodsmodus" #: src/object/custom_particle_system.cpp:469 #: src/editor/particle_editor.cpp:173 msgid "Death easing" -msgstr "" +msgstr "Versoepeling van de dood" #: src/object/custom_particle_system.cpp:497 msgid "Death time" -msgstr "" +msgstr "Dood tijd" #: src/object/custom_particle_system.cpp:498 msgid "Death time variation" -msgstr "" +msgstr "Variatie in de tijd van overlijden" #: src/object/custom_particle_system.cpp:501 msgid "Speed X (variation)" -msgstr "" +msgstr "Snelheid X (variatie)" #: src/object/custom_particle_system.cpp:502 msgid "Speed Y (variation)" -msgstr "" +msgstr "Snelheid Y (variatie)" #: src/object/custom_particle_system.cpp:503 msgid "Acceleration X" -msgstr "" +msgstr "Versnelling X" #: src/object/custom_particle_system.cpp:504 msgid "Acceleration Y" -msgstr "" +msgstr "Versnelling Y" #: src/object/custom_particle_system.cpp:505 msgid "Friction X" -msgstr "" +msgstr "Wrijving X" #: src/object/custom_particle_system.cpp:506 msgid "Friction Y" -msgstr "" +msgstr "Wrijving Y" #: src/object/custom_particle_system.cpp:507 #: src/editor/particle_editor.cpp:189 msgid "Feather factor" -msgstr "" +msgstr "Feather-factor" #: src/object/custom_particle_system.cpp:508 msgid "Rotation" -msgstr "" +msgstr "Rotatie" #: src/object/custom_particle_system.cpp:509 msgid "Rotation (variation)" -msgstr "" +msgstr "Rotatie (variatie)" #: src/object/custom_particle_system.cpp:510 #: src/editor/particle_editor.cpp:195 msgid "Rotation speed" -msgstr "" +msgstr "Rotatiesnelheid" #: src/object/custom_particle_system.cpp:511 msgid "Rotation speed (variation)" -msgstr "" +msgstr "Rotatiesnelheid (variatie)" #: src/object/custom_particle_system.cpp:512 #: src/editor/particle_editor.cpp:200 msgid "Rotation acceleration" -msgstr "" +msgstr "Rotatie versnelling" #: src/object/custom_particle_system.cpp:513 msgid "Rotation friction" -msgstr "" +msgstr "Rotatie wrijving" #: src/object/custom_particle_system.cpp:514 #: src/editor/particle_editor.cpp:208 msgid "Rotation mode" -msgstr "" +msgstr "Rotatie modus" #: src/object/custom_particle_system.cpp:515 #: src/editor/particle_editor.cpp:206 msgid "Fixed" -msgstr "" +msgstr "Gemaakt" #: src/object/custom_particle_system.cpp:515 #: src/editor/particle_editor.cpp:205 msgid "Facing" -msgstr "" +msgstr "Geconfronteerd" #: src/object/custom_particle_system.cpp:515 #: src/editor/particle_editor.cpp:204 msgid "Wiggling" -msgstr "" +msgstr "Wiebelen" #: src/object/custom_particle_system.cpp:519 #: src/editor/particle_editor.cpp:219 msgid "Collision mode" -msgstr "" +msgstr "Botsingsmodus" #: src/object/custom_particle_system.cpp:520 msgid "None (pass through)" -msgstr "" +msgstr "Geen (passeren)" #: src/object/custom_particle_system.cpp:520 msgid "Stick" -msgstr "" +msgstr "Stok" #: src/object/custom_particle_system.cpp:520 msgid "Stick Forever" -msgstr "" +msgstr "Blijf voor altijd plakken" #: src/object/custom_particle_system.cpp:520 #: src/editor/particle_editor.cpp:214 msgid "Bounce (heavy)" -msgstr "" +msgstr "Stuiteren (zwaar)" #: src/object/custom_particle_system.cpp:520 #: src/editor/particle_editor.cpp:213 msgid "Bounce (light)" -msgstr "" +msgstr "Stuiteren (licht)" #: src/object/custom_particle_system.cpp:520 msgid "Kill particle" -msgstr "" +msgstr "Dood deeltje" #: src/object/custom_particle_system.cpp:520 msgid "Fade out particle" -msgstr "" +msgstr "Fade-out deeltje" #: src/object/custom_particle_system.cpp:524 msgid "Delete if off-screen" -msgstr "" +msgstr "Verwijder indien buiten beeld" #: src/object/custom_particle_system.cpp:525 #: src/editor/particle_editor.cpp:224 msgid "Never" -msgstr "" +msgstr "Nooit" #: src/object/custom_particle_system.cpp:525 #: src/editor/particle_editor.cpp:223 msgid "Only on exit" -msgstr "" +msgstr "Alleen bij uitstappen" #: src/object/custom_particle_system.cpp:525 msgid "Always" -msgstr "" +msgstr "Altijd" #: src/object/custom_particle_system.cpp:529 msgid "Cover screen" -msgstr "" +msgstr "Afdekscherm" -#: src/object/ispy.hpp:33 +#: src/object/ispy.hpp:35 msgid "Ispy" msgstr "Spion" -#: src/object/skull_tile.hpp:32 -msgid "Skull Tile" -msgstr "Schedeltegel" - -#: src/object/particle_zone.cpp:80 +#: src/object/particle_zone.cpp:51 msgid "Particle Name" -msgstr "" - -#: src/object/particle_zone.cpp:81 -msgid "Zone Type" -msgstr "" +msgstr "Naam van het deeltje" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:62 msgid "Spawn" -msgstr "" +msgstr "Herstellen" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:63 msgid "Life zone" -msgstr "" +msgstr "Levenszone" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:64 msgid "Life zone (clear)" -msgstr "" +msgstr "Levenszone (helder)" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:65 msgid "Kill particles" -msgstr "" +msgstr "Dood deeltjes" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:66 msgid "Clear particles" -msgstr "" +msgstr "Heldere deeltjes" -#: src/object/weak_block.cpp:211 -msgid "Linked" -msgstr "Verbonden" +#: src/object/weak_block.cpp:98 +msgid "Hay" +msgstr "" -#: src/object/decal.hpp:40 +#: src/object/decal.hpp:41 msgid "Decal" msgstr "Sticker" -#: src/object/tilemap.cpp:229 +#: src/object/tilemap.cpp:267 msgid "Resize offset x" msgstr "Schaalafstand x" -#: src/object/tilemap.cpp:230 +#: src/object/tilemap.cpp:268 msgid "Resize offset y" msgstr "Schaalafstand y" -#: src/object/tilemap.cpp:232 src/supertux/menu/editor_sector_menu.cpp:39 -#: src/editor/object_option.cpp:173 +#: src/object/tilemap.cpp:270 src/supertux/menu/editor_sector_menu.cpp:41 +#: src/editor/object_option.cpp:178 msgid "Width" msgstr "Breedte" -#: src/object/tilemap.cpp:233 src/supertux/menu/editor_sector_menu.cpp:40 -#: src/editor/object_option.cpp:174 +#: src/object/tilemap.cpp:271 src/supertux/menu/editor_sector_menu.cpp:42 +#: src/editor/object_option.cpp:179 msgid "Height" msgstr "Hoogte" -#: src/object/tilemap.cpp:235 +#: src/object/tilemap.cpp:273 msgid "Alpha" msgstr "Alpha" -#: src/object/tilemap.cpp:236 +#: src/object/tilemap.cpp:274 msgid "Speed x" msgstr "Snelheid x" -#: src/object/tilemap.cpp:237 +#: src/object/tilemap.cpp:275 msgid "Speed y" msgstr "Snelheid y" -#: src/object/tilemap.cpp:238 +#: src/object/tilemap.cpp:276 msgid "Tint" msgstr "Tint" -#: src/object/tilemap.cpp:257 src/supertux/menu/editor_tilegroup_menu.cpp:26 -#: src/editor/toolbox_widget.cpp:90 +#: src/object/tilemap.cpp:296 src/supertux/menu/editor_tilegroup_menu.cpp:26 +#: src/editor/toolbox_widget.cpp:98 msgid "Tiles" msgstr "Tegels" -#: src/object/gradient.cpp:128 -msgid "Left Colour" -msgstr "Linkerkleur" - -#: src/object/gradient.cpp:129 -msgid "Right Colour" -msgstr "Rechterkleur" - -#: src/object/gradient.cpp:131 -msgid "Top Colour" -msgstr "Bovenste kleur" +#: src/object/gradient.cpp:98 +msgid "Primary Colour" +msgstr "Primaire Kleur" -#: src/object/gradient.cpp:132 -msgid "Bottom Colour" -msgstr "Onderste kleur" +#: src/object/gradient.cpp:99 +msgid "Secondary Colour" +msgstr "Secundaire Kleur" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Vertical" msgstr "Verticaal" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Horizontal" msgstr "Horizontaal" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Vertical (whole sector)" msgstr "Verticaal (gehele onderdeel)" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Horizontal (whole sector)" msgstr "Horizontaal (gehele onderdeel)" -#: src/object/gradient.cpp:148 +#: src/object/gradient.cpp:114 msgid "Blend mode" msgstr "Mengmodus" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Blend" msgstr "Mengen" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Additive" msgstr "Toevoegen" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Modulate" msgstr "Moduleren" -#: src/object/bumper.hpp:35 +#: src/object/bumper.hpp:38 msgid "Bumper" -msgstr "" +msgstr "Bumper" + +#: src/object/conveyor_belt.cpp:63 +msgid "Length" +msgstr "Lengte" + +#: src/object/moving_sprite.cpp:192 src/object/pneumatic_platform.cpp:161 +msgid "Sprite" +msgstr "Sprite" -#: src/object/unstable_tile.hpp:37 +#: src/object/unstable_tile.hpp:42 msgid "Unstable Tile" msgstr "Loshangende tegel" -#: src/object/brick.hpp:31 -msgid "Brick" -msgstr "Baksteen" +#: src/object/brick.hpp:70 +msgid "Heavy Brick" +msgstr "" -#: src/object/invisible_wall.hpp:34 +#: src/object/invisible_wall.hpp:37 msgid "Invisible Wall" msgstr "Onzichtbare muur" -#: src/object/spotlight.hpp:51 +#: src/object/spotlight.hpp:52 msgid "Spotlight" msgstr "Schijnwerper" -#: src/object/scripted_object.hpp:39 +#: src/object/scripted_object.hpp:40 msgid "Scripted Object" msgstr "Gescript object" -#: src/object/custom_particle_system_file.hpp:39 +#: src/object/custom_particle_system_file.hpp:40 msgid "Custom Particles from file" -msgstr "" +msgstr "Aangepaste deeltjes uit bestand" -#: src/object/coin.hpp:78 +#: src/object/coin.hpp:97 msgid "Heavy Coin" msgstr "Zware munt" -#: src/object/bonus_block.hpp:56 +#: src/object/explosion.hpp:35 +msgid "Explosion" +msgstr "Explosie" + +#: src/object/bonus_block.hpp:62 msgid "Bonus Block" msgstr "Bonusblok" -#: src/object/magicblock.hpp:41 +#: src/object/magicblock.hpp:42 msgid "Magic Tile" msgstr "Magische tegel" -#: src/object/camera.hpp:67 +#: src/object/camera.hpp:61 msgid "Camera" msgstr "Camera" -#: src/object/textscroller.hpp:44 +#: src/object/textscroller.hpp:45 msgid "Text Scroller" -msgstr "" +msgstr "Tekstscroller" + +#: src/gui/notification.cpp:57 +msgid "Click for more details." +msgstr "Klik voor meer details." -#: src/gui/menu_badguy_select.cpp:94 -msgid "List of enemies" -msgstr "Vijandenlijst" +#: src/gui/notification.cpp:150 +msgid "Do not show again" +msgstr "Niet opnieuw tonen" -#: src/gui/menu_badguy_select.cpp:96 -msgid "Select enemy" +#: src/gui/notification.cpp:157 src/supertux/menu/download_dialog.cpp:124 +msgid "Close" +msgstr "Sluiten" + +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#, c++-format +msgid "Selected item: {}" +msgstr "" + +#: src/gui/menu_string_array.cpp:70 +msgid "Edit string array" msgstr "" -#: src/gui/menu_badguy_select.cpp:97 +#: src/gui/menu_string_array.cpp:79 src/gui/menu_object_select.cpp:50 +#: src/supertux/menu/profile_menu.cpp:88 msgid "Add" msgstr "Toevoegen" -#: src/gui/menu_badguy_select.cpp:107 src/gui/menu_color.cpp:37 -#: src/gui/dialog.hpp:81 src/gui/menu_script.cpp:47 -#: src/supertux/menu/editor_sector_menu.cpp:46 -#: src/supertux/menu/editor_levelset_menu.cpp:62 -#: src/supertux/menu/addon_menu.cpp:349 +#: src/gui/menu_string_array.cpp:80 +msgid "Insert" +msgstr "" + +#: src/gui/menu_string_array.cpp:81 +#: src/supertux/menu/addon_preview_menu.cpp:177 src/editor/object_menu.cpp:61 +msgid "Update" +msgstr "" + +#: src/gui/menu_string_array.cpp:82 src/supertux/menu/profile_menu.cpp:108 +#: src/supertux/menu/profile_menu.cpp:110 +msgid "Delete" +msgstr "Wis" + +#: src/gui/menu_string_array.cpp:84 src/gui/menu_object_select.cpp:61 +#: src/gui/menu_color.cpp:37 src/gui/dialog.hpp:87 src/gui/menu_script.cpp:46 +#: src/supertux/menu/editor_sector_menu.cpp:48 +#: src/supertux/menu/editor_levelset_menu.cpp:58 #: src/supertux/menu/editor_new_levelset_menu.cpp:37 -#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:43 +#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:71 msgid "OK" msgstr "Oké" -#: src/gui/menu_badguy_select.cpp:136 -msgid "Do you want to delete this badguy from the list?" -msgstr "Weet je zeker dat je deze slechterik uit de lijst wilt verwijderen?" +#: src/gui/menu_object_select.cpp:46 +msgid "List of objects" +msgstr "" -#: src/gui/menu_badguy_select.cpp:137 src/gui/dialog.hpp:90 -#: src/supertux/menu/editor_level_select_menu.cpp:164 -#: src/supertux/menu/editor_menu.cpp:164 src/editor/editor.cpp:583 -msgid "Yes" -msgstr "Ja" +#: src/gui/menu_object_select.cpp:48 +#, c++-format +msgid "Select object ({})" +msgstr "" -#: src/gui/menu_badguy_select.cpp:140 src/gui/dialog.hpp:91 -#: src/supertux/menu/editor_level_select_menu.cpp:168 -#: src/supertux/menu/editor_menu.cpp:167 src/editor/particle_editor.cpp:780 -#: src/editor/editor.cpp:590 -msgid "No" -msgstr "Nee" +#: src/gui/menu_object_select.cpp:114 +msgid "Are you sure you want to remove this object from the list?" +msgstr "" #: src/gui/menu_color.cpp:24 msgid "Mix the colour" msgstr "Kleur mengen" -#: src/gui/menu_filesystem.cpp:112 src/gui/menu_paths.cpp:44 -#: src/supertux/menu/particle_editor_save_as.cpp:42 +#: src/gui/dialog.hpp:96 src/supertux/menu/editor_level_select_menu.cpp:181 +#: src/editor/editor.cpp:663 +msgid "Yes" +msgstr "Ja" + +#: src/gui/dialog.hpp:97 src/supertux/menu/editor_level_select_menu.cpp:185 +#: src/editor/particle_editor.cpp:781 src/editor/editor.cpp:670 +msgid "No" +msgstr "Nee" + +#: src/gui/menu_list.cpp:38 src/gui/menu_filesystem.cpp:120 +#: src/gui/menu_paths.cpp:48 src/supertux/menu/particle_editor_save_as.cpp:42 #: src/supertux/menu/editor_sectors_menu.cpp:45 -#: src/supertux/menu/editor_sectors_menu.cpp:95 -#: src/supertux/menu/editor_sectors_menu.cpp:100 +#: src/supertux/menu/editor_sectors_menu.cpp:94 +#: src/supertux/menu/editor_sectors_menu.cpp:99 #: src/supertux/menu/editor_objectgroup_menu.cpp:42 #: src/supertux/menu/editor_tilegroup_menu.cpp:36 -#: src/supertux/menu/editor_level_select_menu.cpp:173 +#: src/supertux/menu/editor_level_select_menu.cpp:190 #: src/supertux/menu/editor_save_as.cpp:42 #: src/supertux/menu/particle_editor_open.cpp:43 -#: src/editor/particle_editor.cpp:784 src/editor/editor.cpp:594 +#: src/editor/particle_editor.cpp:785 src/editor/editor.cpp:674 msgid "Cancel" msgstr "Annuleren" +#: src/gui/menu_filesystem.cpp:118 +msgid "Open Directory" +msgstr "Map Openen" + #: src/gui/menu_script.cpp:28 msgid "Edit script" msgstr "Script bewerken" -#: src/gui/menu_paths.cpp:30 +#: src/gui/menu_paths.cpp:32 msgid "Clone" -msgstr "" +msgstr "Kloon" -#: src/gui/menu_paths.cpp:38 +#: src/gui/menu_paths.cpp:41 msgid "" -"An error occured and the game could\n" +"An error occurred and the game could\n" "not clone the path. Please contact\n" "the developers for support." msgstr "" -#: src/gui/menu_paths.cpp:41 +#: src/gui/menu_paths.cpp:44 msgid "Bind" -msgstr "" +msgstr "Binden" -#: src/gui/menu_paths.cpp:63 src/supertux/menu/integrations_menu.cpp:60 -#: src/supertux/menu/contrib_menu.cpp:161 src/supertux/menu/debug_menu.cpp:75 -#: src/supertux/menu/editor_level_select_menu.cpp:88 -#: src/supertux/menu/worldmap_cheat_menu.cpp:55 -#: src/supertux/menu/worldmap_cheat_menu.cpp:153 +#: src/gui/menu_paths.cpp:49 +msgid "" +"Do you wish to clone the path to edit it separately,\n" +"or do you want to bind both paths together\n" +"so that any edit on one edits the other?" +msgstr "" + +#: src/gui/menu_paths.cpp:56 +#, c++-format +msgid "Path {}" +msgstr "" + +#: src/gui/menu_paths.cpp:67 src/supertux/menu/integrations_menu.cpp:60 +#: src/supertux/menu/editor_converters_menu.cpp:79 +#: src/supertux/menu/video_system_menu.cpp:45 +#: src/supertux/menu/contrib_menu.cpp:102 src/supertux/menu/debug_menu.cpp:77 +#: src/supertux/menu/multiplayer_menu.cpp:39 +#: src/supertux/menu/custom_menu_menu.cpp:65 +#: src/supertux/menu/editor_level_select_menu.cpp:98 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:63 +#: src/supertux/menu/worldmap_cheat_menu.cpp:57 +#: src/supertux/menu/worldmap_cheat_menu.cpp:196 #: src/supertux/menu/editor_levelset_select_menu.cpp:114 -#: src/supertux/menu/options_menu.cpp:442 -#: src/supertux/menu/profile_menu.cpp:54 src/supertux/menu/addon_menu.cpp:213 +#: src/supertux/menu/options_menu.cpp:223 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:69 +#: src/supertux/menu/addon_preview_menu.cpp:193 +#: src/supertux/menu/profile_menu.cpp:118 +#: src/supertux/menu/multiplayer_players_menu.cpp:91 +#: src/supertux/menu/addon_menu.cpp:153 #: src/supertux/menu/editor_new_levelset_menu.cpp:40 +#: src/supertux/menu/options_select_menu.cpp:44 #: src/supertux/menu/world_set_menu.cpp:33 +#: src/supertux/menu/addon_browse_menu.cpp:162 #: src/supertux/menu/web_asset_menu.cpp:48 -#: src/supertux/menu/keyboard_menu.cpp:49 -#: src/supertux/menu/language_menu.cpp:56 -#: src/supertux/menu/joystick_menu.cpp:97 +#: src/supertux/menu/profile_name_menu.cpp:45 +#: src/supertux/menu/keyboard_menu.cpp:71 +#: src/supertux/menu/sorted_contrib_menu.cpp:51 +#: src/supertux/menu/language_menu.cpp:63 +#: src/supertux/menu/joystick_menu.cpp:99 #: src/supertux/menu/contrib_levelset_menu.cpp:67 -#: src/supertux/menu/cheat_menu.cpp:44 -#: src/supertux/menu/editor_delete_level_menu.cpp:43 +#: src/supertux/menu/cheat_menu.cpp:58 +#: src/supertux/menu/addon_file_install_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:43 +#: src/supertux/menu/cheat_apply_menu.cpp:63 +#: src/supertux/menu/multiplayer_player_menu.cpp:205 +#: src/supertux/menu/editor_delete_level_menu.cpp:68 msgid "Back" msgstr "Terug" -#: src/badguy/toad.hpp:37 +#: src/addon/addon_manager.cpp:562 +msgid "Only one resource pack is allowed to be enabled at a time." +msgstr "" + +#: src/addon/addon_manager.cpp:837 +#, c++-format +msgid "Add-on {} by {} is already installed." +msgstr "Add-on {} van {} is al geïnstalleerd." + +#: src/addon/addon_manager.cpp:857 +#, c++-format +msgid "Add-on {} by {} successfully installed." +msgstr "Add-on {} van {} succesvol geïnstalleerd." + +#: src/addon/addon.cpp:71 src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Levelset" +msgstr "Levelset" + +#: src/addon/addon.cpp:74 src/supertux/menu/editor_levelset_menu.cpp:54 +#: data//images/engine/editor/objects.stoi:389 +msgid "Worldmap" +msgstr "Wereldkaart" + +#: src/addon/addon.cpp:77 +msgid "World" +msgstr "Wereld" + +#: src/addon/addon.cpp:80 +msgid "Add-on" +msgstr "Uitbreiding" + +#: src/addon/addon.cpp:83 +msgid "Language Pack" +msgstr "Talen Pakket" + +#: src/addon/addon.cpp:86 +msgid "Resource Pack" +msgstr "" + +#: src/addon/addon.cpp:89 +msgid "Unknown" +msgstr "Onbekend" + +#: src/addon/addon.cpp:100 +#, c++-format +msgid "{} \"{}\" by \"{}\"" +msgstr "" + +#: src/addon/addon.cpp:114 +msgid "add-on" +msgstr "add-on" + +#: src/addon/addon.cpp:114 +msgid "add-ons" +msgstr "add-ons" + +#: src/badguy/toad.hpp:38 msgid "Toad" msgstr "Pad" -#: src/badguy/mrtree.hpp:29 -msgid "Walking Tree" -msgstr "Wandelende boom" +#: src/badguy/mrtree.hpp:32 +msgid "Mr. Tree" +msgstr "Meneer Boom" -#: src/badguy/plant.hpp:33 +#: src/badguy/plant.hpp:34 msgid "Plant" msgstr "Plant" -#: src/badguy/crystallo.hpp:30 +#: src/badguy/tarantula.hpp:39 src/badguy/tarantula.cpp:353 +msgid "Tarantula" +msgstr "" + +#: src/badguy/granito_giant.cpp:71 +msgid "Awake" +msgstr "" + +#: src/badguy/granito_giant.cpp:72 +msgid "Sleeping" +msgstr "" + +#: src/badguy/granito_giant.cpp:73 +msgid "Corrupted A" +msgstr "" + +#: src/badguy/granito_giant.cpp:74 +msgid "Corrupted B" +msgstr "" + +#: src/badguy/granito_giant.cpp:75 +msgid "Corrupted C" +msgstr "" + +#: src/badguy/crystallo.hpp:33 msgid "Crystallo" msgstr "Kristallo" -#: src/badguy/totem.hpp:36 +#: src/badguy/viciousivy.cpp:45 src/badguy/snail.cpp:70 +#: src/badguy/kamikazesnowball.cpp:118 src/badguy/walkingleaf.cpp:36 +#: src/badguy/jumpy.cpp:46 src/badguy/igel.cpp:189 src/badguy/mrtree.cpp:51 +msgid "Corrupted" +msgstr "" + +#: src/badguy/totem.hpp:37 msgid "Totem" msgstr "Totem" -#: src/badguy/stalactite.hpp:38 +#: src/badguy/stalactite.hpp:42 msgid "Stalactite" msgstr "Stalagmiet" -#: src/badguy/haywire.hpp:45 +#: src/badguy/fish_chasing.cpp:198 +msgid "Tracking Distance" +msgstr "" + +#: src/badguy/fish_chasing.cpp:199 +msgid "Losing Distance" +msgstr "" + +#: src/badguy/fish_chasing.cpp:200 +msgid "Chase Speed" +msgstr "" + +#: src/badguy/root_sapling.hpp:41 +msgid "Root Sapling" +msgstr "" + +#: src/badguy/haywire.hpp:46 msgid "Haywire" msgstr "Storing" -#: src/badguy/dispenser.hpp:48 +#: src/badguy/dispenser.hpp:52 msgid "Dispenser" msgstr "Dispenser" -#: src/badguy/short_fuse.hpp:29 +#: src/badguy/short_fuse.hpp:30 msgid "Short Fuse" msgstr "Kort lontje" -#: src/badguy/zeekling.hpp:36 +#: src/badguy/zeekling.hpp:39 msgid "Zeekling" msgstr "Zeekling" -#: src/badguy/mriceblock.hpp:46 -msgid "Iceblock" -msgstr "IJsblok" +#: src/badguy/smartball.cpp:35 +msgid "Pumpkin" +msgstr "" -#: src/badguy/scrystallo.cpp:52 -msgid "Walk Radius" +#: src/badguy/bouncing_snowball.cpp:82 +msgid "Fatbat" +msgstr "" + +#: src/badguy/dive_mine.hpp:50 +msgid "Dive Mine" +msgstr "" + +#: src/badguy/granito_big.hpp:33 +msgid "Big Granito" +msgstr "" + +#: src/badguy/mriceblock.hpp:49 +msgid "Mr. Iceblock" +msgstr "" + +#: src/badguy/granito.hpp:39 src/badguy/darttrap.cpp:163 +#: src/badguy/corrupted_granito.cpp:175 src/badguy/dispenser.cpp:438 +msgid "Granito" +msgstr "" + +#: src/badguy/fish_swimming.cpp:54 src/badguy/jumpy.cpp:44 +#: data//images/ice_world.strf:10 data//images/tiles.strf:28 +#: data//images/worldmap.strf:41 +msgid "Snow" +msgstr "Sneeuw" + +#: src/badguy/fish_swimming.cpp:55 data//images/ice_world.strf:211 +#: data//images/tiles.strf:366 data//images/worldmap.strf:67 +msgid "Forest" +msgstr "Bos" + +#: src/badguy/crusher.hpp:71 +msgid "Crusher" +msgstr "" + +#: src/badguy/flame.cpp:84 +msgid "Fire" +msgstr "" + +#: src/badguy/flame.cpp:85 +msgid "Ghost" msgstr "" -#: src/badguy/scrystallo.cpp:53 +#: src/badguy/corrupted_granito_big.hpp:35 +msgid "Corrupted Big Granito" +msgstr "" + +#: src/badguy/scrystallo.cpp:57 +msgid "Walk Radius" +msgstr "Loop straal" + +#: src/badguy/scrystallo.cpp:58 msgid "Awakening Radius" +msgstr "Ontwakende straal" + +#: src/badguy/scrystallo.cpp:59 +msgid "Roof-attached" msgstr "" -#: src/badguy/jumpy.hpp:36 +#: src/badguy/jumpy.hpp:40 msgid "Jumpy" msgstr "Springend" -#: src/badguy/captainsnowball.hpp:31 +#: src/badguy/captainsnowball.hpp:32 msgid "Captain Snowball" msgstr "Kapitein Sneeuwbal" -#: src/badguy/ghosttree.hpp:42 +#: src/badguy/ghosttree.hpp:43 msgid "Ghost Tree" msgstr "Geestboom" -#: src/badguy/willowisp.cpp:323 +#: src/badguy/willowisp.cpp:314 msgid "Track range" msgstr "Baanomtrek" -#: src/badguy/willowisp.cpp:324 +#: src/badguy/willowisp.cpp:315 msgid "Vanish range" msgstr "Verdwijnomtrek" -#: src/badguy/willowisp.cpp:325 +#: src/badguy/willowisp.cpp:316 msgid "Fly speed" msgstr "Vliegende snelheid" -#: src/badguy/kugelblitz.hpp:39 +#: src/badguy/kugelblitz.hpp:40 msgid "Kugelblitz" msgstr "Kugelblitz" -#: src/badguy/mole_rock.hpp:43 +#: src/badguy/mole_rock.hpp:44 msgid "Mole's rock" msgstr "Steen van de mol" -#: src/badguy/badguy.cpp:849 +#: src/badguy/badguy.cpp:1064 msgid "Death script" msgstr "Doodsvonnis" -#: src/badguy/sspiky.hpp:36 +#: src/badguy/sspiky.hpp:37 msgid "Sleeping Spiky" msgstr "Slapende punt" -#: src/badguy/yeti_stalactite.hpp:33 +#: src/badguy/yeti_stalactite.hpp:34 msgid "Yeti's Stalactite" msgstr "Stalagmiet van de Yeti" -#: src/badguy/livefire.hpp:37 +#: src/badguy/fish_harmless.hpp:30 +msgid "Harmless Fish" +msgstr "" + +#: src/badguy/livefire.hpp:38 msgid "Walking Flame" msgstr "Wandelend vuurtje" -#: src/badguy/livefire.hpp:68 +#: src/badguy/livefire.hpp:71 msgid "Sleeping Flame" msgstr "Slapend vuurtje" -#: src/badguy/livefire.hpp:84 +#: src/badguy/livefire.hpp:89 msgid "Dormant Flame" msgstr "Stil vuur" -#: src/badguy/owl.hpp:39 +#: src/badguy/owl.hpp:45 msgid "Owl" msgstr "Uil" -#: src/badguy/igel.hpp:34 +#: src/badguy/igel.hpp:38 msgid "Igel" msgstr "Igel" -#: src/badguy/darttrap.cpp:126 +#: src/badguy/darttrap.cpp:148 msgid "Initial delay" msgstr "Initiële vertraging" -#: src/badguy/darttrap.cpp:128 +#: src/badguy/darttrap.cpp:150 msgid "Fire delay" msgstr "Vuurvertraging" -#: src/badguy/darttrap.cpp:129 +#: src/badguy/darttrap.cpp:151 msgid "Ammo" msgstr "Ammunitie" -#: src/badguy/snowball.hpp:29 -msgid "Snowball" -msgstr "Sneeuwbal" +#: src/badguy/darttrap.cpp:152 +msgid "Dart sprite" +msgstr "" + +#: src/badguy/darttrap.cpp:164 +msgid "Skull" +msgstr "" + +#: src/badguy/snowball.hpp:30 +msgid "Mr. Snowball" +msgstr "" -#: src/badguy/smartblock.hpp:29 -msgid "Smartblock" -msgstr "Slim blok" +#: src/badguy/smartblock.hpp:30 +msgid "Mrs. Iceblock" +msgstr "" -#: src/badguy/yeti.cpp:369 +#: src/badguy/yeti.cpp:370 msgid "Fixed position" msgstr "Vastgezette positie" -#: src/badguy/yeti.cpp:370 +#: src/badguy/yeti.cpp:371 msgid "Lives" msgstr "Levens" -#: src/badguy/goldbomb.hpp:49 +#: src/badguy/goldbomb.hpp:50 msgid "Gold Bomb" msgstr "Gouden bom" -#: src/badguy/flyingsnowball.hpp:32 +#: src/badguy/corrupted_granito.hpp:44 +msgid "Corrupted Granito" +msgstr "" + +#: src/badguy/mrbomb.cpp:48 +msgid "Classic" +msgstr "" + +#: src/badguy/flyingsnowball.hpp:33 msgid "Flying Snowball" msgstr "Vliegende sneeuwbal" -#: src/badguy/skullyhop.hpp:37 -msgid "Skullyhop" -msgstr "Skullyhop" +#: src/badguy/crusher.cpp:75 +msgid "Ice (normal)" +msgstr "" + +#: src/badguy/crusher.cpp:76 +msgid "Ice (big)" +msgstr "" + +#: src/badguy/crusher.cpp:77 +msgid "Rock (normal)" +msgstr "" + +#: src/badguy/crusher.cpp:78 +msgid "Rock (big)" +msgstr "" + +#: src/badguy/crusher.cpp:79 +msgid "Corrupted (normal)" +msgstr "" + +#: src/badguy/crusher.cpp:80 +msgid "Corrupted (big)" +msgstr "" + +#: src/badguy/crusher.cpp:492 +msgid "Sideways" +msgstr "Zijwaarts" -#: src/badguy/kamikazesnowball.hpp:32 -msgid "Snowshot" -msgstr "Sneeuwschot" +#: src/badguy/kamikazesnowball.hpp:34 +msgid "Kamikaze Snowball" +msgstr "" -#: src/badguy/kamikazesnowball.hpp:52 +#: src/badguy/kamikazesnowball.hpp:64 msgid "Leafshot" msgstr "Bladschot" -#: src/badguy/flame.hpp:41 +#: src/badguy/fish_swimming.hpp:40 +msgid "Swimming Fish" +msgstr "" + +#: src/badguy/flame.hpp:47 msgid "Flame" msgstr "Vlam" -#: src/badguy/scrystallo.hpp:30 +#: src/badguy/scrystallo.hpp:31 msgid "Sleeping Crystallo" +msgstr "Crystallo slapen" + +#: src/badguy/jumpy.cpp:45 +msgid "Wooden" msgstr "" -#: src/badguy/poisonivy.hpp:30 -msgid "Spring Leaf" -msgstr "Lenteblad" +#: src/badguy/jumpy.cpp:47 +msgid "Metal" +msgstr "" + +#: src/badguy/jumpy.cpp:48 +msgid "Bag" +msgstr "" #: src/badguy/willowisp.hpp:57 msgid "Will o' Wisp" msgstr "Will 'o' wisp" -#: src/badguy/badguy.hpp:53 +#: src/badguy/fish_jumping.hpp:41 +msgid "Jumping Fish" +msgstr "" + +#: src/badguy/badguy.hpp:61 msgid "Badguy" msgstr "Slechterik" -#: src/badguy/ghostflame.hpp:30 -msgid "Ghost Flame" -msgstr "Geestvlam" - -#: src/badguy/rcrystallo.hpp:30 +#: src/badguy/rcrystallo.hpp:33 msgid "Roof Crystallo" -msgstr "" +msgstr "Dak Crystallo" -#: src/badguy/spiky.hpp:30 +#: src/badguy/spiky.hpp:31 msgid "Spiky" msgstr "Puntig" -#: src/badguy/walkingleaf.hpp:30 -msgid "Autumn Leaf" -msgstr "Herfstblad" +#: src/badguy/walkingleaf.hpp:33 +msgid "Walking Leaf" +msgstr "" + +#: src/badguy/root.hpp:39 +msgid "Root" +msgstr "" -#: src/badguy/owl.cpp:227 +#: src/badguy/owl.cpp:241 msgid "Carry" msgstr "Dragen" -#: src/badguy/darttrap.hpp:33 +#: src/badguy/darttrap.hpp:35 msgid "Dart Trap" msgstr "Dartval" -#: src/badguy/skydive.hpp:38 +#: src/badguy/skydive.hpp:43 msgid "Skydive" msgstr "Skydive" -#: src/badguy/yeti.hpp:37 +#: src/badguy/yeti.hpp:38 msgid "Yeti" msgstr "Yeti" -#: src/badguy/mole.hpp:39 +#: src/badguy/snowball.cpp:41 +msgid "Bumpkin" +msgstr "" + +#: src/badguy/snowball.cpp:42 +msgid "BSOD" +msgstr "" + +#: src/badguy/mole.hpp:38 msgid "Mole" msgstr "Mol" -#: src/badguy/mrbomb.hpp:42 -msgid "Bomb" -msgstr "Bom" +#: src/badguy/corrupted_granito.cpp:176 +msgid "Skullyhop" +msgstr "Skullyhop" + +#: src/badguy/mrbomb.hpp:40 +msgid "Mr. Bomb" +msgstr "Meneer Bom" -#: src/badguy/walking_candle.hpp:40 +#: src/badguy/walking_candle.hpp:41 msgid "Walking Candle" msgstr "Wandelende kaars" -#: src/badguy/angrystone.hpp:34 +#: src/badguy/angrystone.hpp:39 msgid "Angry Stone" msgstr "Boze steen" -#: src/badguy/spidermite.hpp:35 -msgid "Spider" -msgstr "Spin" +#: src/badguy/tarantula.cpp:354 +msgid "Spidermite" +msgstr "" + +#: src/badguy/tarantula.cpp:374 +msgid "Static" +msgstr "" #: src/badguy/ghoul.hpp:30 msgid "Ghoul" msgstr "Grafschender" -#: src/badguy/snowman.hpp:28 +#: src/badguy/granito_giant.hpp:32 +msgid "Giant Granito" +msgstr "" + +#: src/badguy/snowman.hpp:29 msgid "Snowman" msgstr "Sneeuwman" -#: src/badguy/stumpy.hpp:35 -msgid "Walking Stump" -msgstr "Wandelende boomstronk" +#: src/badguy/viciousivy.hpp:33 +msgid "Vicious Ivy" +msgstr "" + +#: src/badguy/stalactite.cpp:156 +msgid "ice" +msgstr "" + +#: src/badguy/stalactite.cpp:157 +msgid "rock" +msgstr "" + +#: src/badguy/fish_chasing.hpp:33 +msgid "Chasing Fish" +msgstr "" -#: src/badguy/fish.hpp:40 -msgid "Fish" -msgstr "Vis" +#: src/badguy/stumpy.hpp:38 +msgid "Stumpy" +msgstr "Stomp" -#: src/badguy/dispenser.cpp:445 +#: src/badguy/dispenser.cpp:412 msgid "Interval (seconds)" msgstr "Tussenpose (seconden)" -#: src/badguy/dispenser.cpp:446 +#: src/badguy/dispenser.cpp:413 msgid "Random" msgstr "Willekeurig" -#: src/badguy/dispenser.cpp:447 data//images/engine/editor/objects.stoi:4 -msgid "Enemies" -msgstr "Vijanden" +#: src/badguy/dispenser.cpp:416 +#: src/supertux/menu/editor_objectgroup_menu.cpp:30 +#: src/editor/toolbox_widget.cpp:101 +msgid "Objects" +msgstr "Objecten" -#: src/badguy/dispenser.cpp:448 +#: src/badguy/dispenser.cpp:419 msgid "Limit dispensed badguys" msgstr "Aantal slechteriken beperken" -#: src/badguy/dispenser.cpp:450 +#: src/badguy/dispenser.cpp:421 msgid "Obey Gravity" -msgstr "" +msgstr "Gehoorzaam de zwaartekracht" -#: src/badguy/dispenser.cpp:452 +#: src/badguy/dispenser.cpp:423 msgid "Max concurrent badguys" msgstr "Max. aantal gelijktijdige slechteriken" -#: src/badguy/dispenser.cpp:454 src/supertux/menu/editor_levelset_menu.cpp:60 -msgid "Type" -msgstr "Type" - -#: src/badguy/dispenser.cpp:455 -msgid "dropper" -msgstr "valler" - -#: src/badguy/dispenser.cpp:455 -msgid "rocket launcher" -msgstr "raketlanceerder" +#: src/badguy/dispenser.cpp:435 +msgid "Dropper" +msgstr "" -#: src/badguy/dispenser.cpp:455 -msgid "cannon" -msgstr "kanon" +#: src/badguy/dispenser.cpp:436 +msgid "Cannon" +msgstr "" -#: src/badguy/dispenser.cpp:455 -msgid "invisible" -msgstr "onzichtbaar" +#: src/badguy/dispenser.cpp:437 src/worldmap/special_tile.cpp:77 +msgid "Invisible" +msgstr "Onzichtbaar" -#: src/badguy/snail.hpp:42 +#: src/badguy/snail.hpp:43 msgid "Snail" msgstr "Slak" -#: src/badguy/smartball.hpp:31 -msgid "Smartball" -msgstr "Slimme bal" +#: src/badguy/smartball.hpp:32 +msgid "Mrs. Snowball" +msgstr "" -#: src/badguy/bouncing_snowball.hpp:32 +#: src/badguy/bouncing_snowball.hpp:39 msgid "Bouncing Snowball" msgstr "Stuiterende sneeuwbal" -#: src/badguy/iceflame.hpp:33 -msgid "Ice Flame" -msgstr "IJsvlam" +#: src/badguy/granito_big.cpp:52 src/badguy/granito.cpp:263 +msgid "Default" +msgstr "" + +#: src/badguy/granito_big.cpp:53 src/badguy/granito.cpp:264 +msgid "Standing" +msgstr "" + +#: src/badguy/granito_big.cpp:54 src/badguy/granito.cpp:265 +msgid "Walking" +msgstr "" + +#: src/badguy/mriceblock.cpp:63 +msgid "Laptop" +msgstr "" -#: src/badguy/dart.hpp:43 +#: src/badguy/dart.hpp:44 msgid "Dart" msgstr "Dart" +#: src/badguy/granito.cpp:268 +msgid "Sitting" +msgstr "" + #: src/supertux/statistics.cpp:54 msgid "Max coins collected:" msgstr "Aantal verzamelde muntjes:" @@ -1737,7 +2293,7 @@ msgstr "Beste afgeronde tijd:" msgid "Level target time:" msgstr "Doeltijd van het level:" -#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:160 +#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:175 msgid "Best Level Statistics" msgstr "Beste Level - Statistieken" @@ -1749,7 +2305,7 @@ msgstr "Jij" msgid "Best" msgstr "Beste" -#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:166 +#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:181 msgid "Coins" msgstr "Muntjes" @@ -1757,281 +2313,391 @@ msgstr "Muntjes" msgid "Badguys" msgstr "Slechteriken" -#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:172 +#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:187 msgid "Secrets" msgstr "Geheimen" -#: src/supertux/game_object.hpp:78 +#: src/supertux/game_object.hpp:88 msgid "Unknown object" msgstr "Onbekend object" -#: src/supertux/sector.cpp:414 +#: src/supertux/sector.cpp:507 msgid "Press escape to skip" -msgstr "" +msgstr "Druk op escape om over te slaan" -#: src/supertux/command_line_arguments.cpp:94 -#, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Gebruik: %s [OPTIES] [LEVELBESTAND]" +#: src/supertux/command_line_arguments.cpp:92 +#, c++-format +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "" -#: src/supertux/command_line_arguments.cpp:95 +#: src/supertux/command_line_arguments.cpp:93 msgid "General Options:" msgstr "Algemene instellingen:" -#: src/supertux/command_line_arguments.cpp:96 +#: src/supertux/command_line_arguments.cpp:94 msgid " -h, --help Show this help message and quit" msgstr "-h, --help Deze hulptekst tonen en afsluiten" -#: src/supertux/command_line_arguments.cpp:97 +#: src/supertux/command_line_arguments.cpp:95 msgid " -v, --version Show SuperTux version and quit" msgstr "-v, --version Toon de versie van SuperTux en sluit af" -#: src/supertux/command_line_arguments.cpp:98 +#: src/supertux/command_line_arguments.cpp:96 msgid " --verbose Print verbose messages" msgstr "--verbose Toon uitgebreide berichten" -#: src/supertux/command_line_arguments.cpp:99 +#: src/supertux/command_line_arguments.cpp:97 msgid " --debug Print extra verbose messages" msgstr "--debug Print extra uitgebreide berichten" -#: src/supertux/command_line_arguments.cpp:100 +#: src/supertux/command_line_arguments.cpp:98 msgid "" " --print-datadir Print SuperTux's primary data directory." msgstr " --print-datadir Print supertux's primaire gegevensmap." -#: src/supertux/command_line_arguments.cpp:101 +#: src/supertux/command_line_arguments.cpp:99 msgid "" " --acknowledgements Print the licenses of libraries used by " "SuperTux." -msgstr "" +msgstr " --acknowledgements Druk de licenties af van bibliotheken die door SuperTux worden gebruikt." -#: src/supertux/command_line_arguments.cpp:103 +#: src/supertux/command_line_arguments.cpp:101 msgid "Video Options:" msgstr "Videokaart-opties:" -#: src/supertux/command_line_arguments.cpp:104 +#: src/supertux/command_line_arguments.cpp:102 msgid " -f, --fullscreen Run in fullscreen mode" msgstr " -f, --fullscreen Speel in de beeldvullende modus" -#: src/supertux/command_line_arguments.cpp:105 +#: src/supertux/command_line_arguments.cpp:103 msgid " -w, --window Run in window mode" msgstr " -w, --window Speel in de venstermodus" -#: src/supertux/command_line_arguments.cpp:106 +#: src/supertux/command_line_arguments.cpp:104 msgid " -g, --geometry WIDTHxHEIGHT Run SuperTux in given resolution" msgstr "-g, --geometry BREEDTExHOOGTE Speel SuperTux in de opgegeven resolutie" -#: src/supertux/command_line_arguments.cpp:107 +#: src/supertux/command_line_arguments.cpp:105 msgid " -a, --aspect WIDTH:HEIGHT Run SuperTux with given aspect ratio" msgstr "-a, --aspect BREEDTE:HOOGTE Speel SuperTux met de opgegeven beeldverhouding" -#: src/supertux/command_line_arguments.cpp:108 +#: src/supertux/command_line_arguments.cpp:106 msgid " -d, --default Reset video settings to default values" msgstr "-d, --default Zet de videokaart-instellingen terug naar de standaardwaarden" -#: src/supertux/command_line_arguments.cpp:109 +#: src/supertux/command_line_arguments.cpp:107 msgid " --renderer RENDERER Use sdl, opengl, or auto to render" msgstr "--renderer RENDERER Gebruik sdl, opengl of auto om het spel op het scherm te tonen" -#: src/supertux/command_line_arguments.cpp:111 +#: src/supertux/command_line_arguments.cpp:109 msgid "Audio Options:" msgstr "Audio-opties:" -#: src/supertux/command_line_arguments.cpp:112 +#: src/supertux/command_line_arguments.cpp:110 msgid " --disable-sound Disable sound effects" msgstr "--disable-sound Geluidseffecten uitschakelen" -#: src/supertux/command_line_arguments.cpp:113 +#: src/supertux/command_line_arguments.cpp:111 msgid " --disable-music Disable music" msgstr "--disable-music Muziek uitschakelen" -#: src/supertux/command_line_arguments.cpp:115 +#: src/supertux/command_line_arguments.cpp:113 msgid "Game Options:" msgstr "Spelopties:" -#: src/supertux/command_line_arguments.cpp:116 +#: src/supertux/command_line_arguments.cpp:114 msgid " --edit-level Open given level in editor" msgstr "--edit-lever Open het opgegeven level in de bewerker" -#: src/supertux/command_line_arguments.cpp:117 +#: src/supertux/command_line_arguments.cpp:115 msgid " --resave Loads given level and saves it" msgstr " --resave Laad het opgegeven level en slaat het op" -#: src/supertux/command_line_arguments.cpp:118 +#: src/supertux/command_line_arguments.cpp:116 msgid " --show-fps Display framerate in levels" msgstr "--show-fps Framerate tonen in levels" -#: src/supertux/command_line_arguments.cpp:119 +#: src/supertux/command_line_arguments.cpp:117 msgid " --no-show-fps Do not display framerate in levels" msgstr "--no-show-fps Framerate niet tonen in levels" -#: src/supertux/command_line_arguments.cpp:120 +#: src/supertux/command_line_arguments.cpp:118 msgid " --show-pos Display player's current position" msgstr "--show-pos Huidige positie van speler tonen" -#: src/supertux/command_line_arguments.cpp:121 +#: src/supertux/command_line_arguments.cpp:119 msgid " --no-show-pos Do not display player's position" msgstr "--no-show-pos Huidige positie van speler niet tonen" -#: src/supertux/command_line_arguments.cpp:122 +#: src/supertux/command_line_arguments.cpp:120 msgid " --developer Switch on developer feature" msgstr " --ontwikkelaar Schakel de ontwikkelaarsmodus in" -#: src/supertux/command_line_arguments.cpp:123 +#: src/supertux/command_line_arguments.cpp:121 msgid " -s, --debug-scripts Enable script debugger." msgstr "-s, --debug-scripts Schakel de script-foutopsporing in." -#: src/supertux/command_line_arguments.cpp:124 +#: src/supertux/command_line_arguments.cpp:122 msgid "" " --spawn-pos X,Y Where in the level to spawn Tux. Only used if" " level is specified." -msgstr "--spawn-pos X,Y De positie in het level waar u wilt dat Tux verschijnt. Alleen gebruiken als u een level specificeert." +msgstr "--spawn-pos X,Y De positie in het level waar je wilt dat Tux verschijnt. Alleen gebruiken als je een level opgeeft." -#: src/supertux/command_line_arguments.cpp:125 +#: src/supertux/command_line_arguments.cpp:123 msgid " --sector SECTOR Spawn Tux in SECTOR\n" msgstr " --sector SECTOR Tux op laten duiken in SECTOR\n" -#: src/supertux/command_line_arguments.cpp:126 +#: src/supertux/command_line_arguments.cpp:124 msgid " --spawnpoint SPAWNPOINT Spawn Tux at SPAWNPOINT\n" msgstr " --spawnpoint SPAWNPOINT Tux op laten duiken op SPAWNPOINT\n" -#: src/supertux/command_line_arguments.cpp:128 -msgid "Demo Recording Options:" -msgstr "Demo-opname-opties:" - -#: src/supertux/command_line_arguments.cpp:129 -msgid " --record-demo FILE LEVEL Record a demo to FILE" -msgstr "--record-demo BESTAND LEVEL Neem een demo op naar een bestand" - -#: src/supertux/command_line_arguments.cpp:130 -msgid " --play-demo FILE LEVEL Play a recorded demo" -msgstr "--play-demo BESTAND LEVEL Speel een opgenomen demo af" - -#: src/supertux/command_line_arguments.cpp:132 +#: src/supertux/command_line_arguments.cpp:126 msgid "Directory Options:" msgstr "Mapopties:" -#: src/supertux/command_line_arguments.cpp:133 +#: src/supertux/command_line_arguments.cpp:127 msgid "" " --datadir DIR Set the directory for the games datafiles" msgstr "--datadir DIR Stel de map in voor de gegevensbestanden van het spel" -#: src/supertux/command_line_arguments.cpp:134 +#: src/supertux/command_line_arguments.cpp:128 msgid "" " --userdir DIR Set the directory for user data (savegames, " "etc.)" msgstr "--userdir DIR Stel de map in voor de gebruikersgegevens (opgeslagen spellen, etc.)" -#: src/supertux/command_line_arguments.cpp:136 +#: src/supertux/command_line_arguments.cpp:130 msgid "Add-On Options:" msgstr "Uitbreidingsinstellingen:" -#: src/supertux/command_line_arguments.cpp:137 +#: src/supertux/command_line_arguments.cpp:131 msgid " --repository-url URL Set the URL to the Add-On repository" msgstr "--repository-url URL Stel de url in van de uitbreidingspakketbron" -#: src/supertux/command_line_arguments.cpp:139 +#: src/supertux/command_line_arguments.cpp:133 msgid "Environment variables:" msgstr "Omgevingsvariabelen:" -#: src/supertux/command_line_arguments.cpp:140 +#: src/supertux/command_line_arguments.cpp:134 msgid "" " SUPERTUX2_USER_DIR Directory for user data (savegames, etc.)" msgstr "SUPERTUX2_USER_DIR Map voor gebruikersgegevens (opgeslagen spellen, etc.)" -#: src/supertux/command_line_arguments.cpp:141 +#: src/supertux/command_line_arguments.cpp:135 msgid " SUPERTUX2_DATA_DIR Directory for the games datafiles" msgstr "SUPERTUX2_DATA_DIR Map voor de gegevensbestanden van het spel" -#: src/supertux/title_screen.cpp:44 +#: src/supertux/title_screen.cpp:272 msgid "Copyright" msgstr "Copyright" -#: src/supertux/title_screen.cpp:45 +#: src/supertux/title_screen.cpp:273 msgid "" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to\n" "redistribute it under certain conditions; see the license file for details.\n" msgstr "Dit spel kent TOTAAL GEEN GARANTIE. Het is vrije software en u wordt aangemoedigd om\nhet spel opnieuw te verspreiden onder bepaalde voorwaarden; zie het Licentiebestand voor meer informatie.\n" +#: src/supertux/game_object.cpp:114 +msgid "Version" +msgstr "Versie" + +#: src/supertux/game_object.cpp:129 +#: src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Type" +msgstr "Type" + #: src/supertux/menu/integrations_menu.cpp:49 msgid "Integrations" -msgstr "" +msgstr "Integraties" #: src/supertux/menu/integrations_menu.cpp:51 msgid "Do not share level names when editing" +msgstr "Deel geen niveaunamen tijdens het bewerken" + +#: src/supertux/menu/integrations_menu.cpp:52 +msgid "" +"Enable this if you want to work on secret levels and don't want the names to" +" be spoiled" msgstr "" #: src/supertux/menu/integrations_menu.cpp:54 msgid "Enable Discord integration" +msgstr "Schakel Discord-integratie in" + +#: src/supertux/menu/integrations_menu.cpp:55 +msgid "" +"Sends information to your Discord application about what you're doing in the" +" game." msgstr "" #: src/supertux/menu/integrations_menu.cpp:57 msgid "Discord (disabled; not compiled)" +msgstr "Discord (uitgeschakeld; niet gecompileerd)" + +#: src/supertux/menu/editor_converters_menu.cpp:61 +#: src/supertux/menu/editor_menu.cpp:85 +msgid "Convert Tiles" +msgstr "Tegels Converteren" + +#: src/supertux/menu/editor_converters_menu.cpp:64 +msgid "Select Tile Conversion File" +msgstr "Selecteer Tegel Conversie Bestand" + +#: src/supertux/menu/editor_converters_menu.cpp:72 +#, c++-format +msgid "By: {}" +msgstr "Door: {}" + +#: src/supertux/menu/editor_converters_menu.cpp:75 +msgid "Convert Tiles By File" +msgstr "Converteer Tegels Met Bestand" + +#: src/supertux/menu/editor_converters_menu.cpp:76 +msgid "Convert all tiles in the current level by a file, specified above." +msgstr "Converteer alle tegels in het huidige level met een bestand, hierboven gespecificeerd." + +#: src/supertux/menu/editor_converters_menu.cpp:89 +msgid "No tile conversion file selected." +msgstr "Geen tegel conversie bestand geselecteerd" + +#: src/supertux/menu/editor_converters_menu.cpp:93 +msgid "" +"This will convert all tiles in the level. Proceed?\n" +"\n" +"Note: This should not be ran more than once on a level.\n" +"Creating a separate copy of the level is highly recommended." msgstr "" -#: src/supertux/menu/contrib_menu.cpp:80 +#: src/supertux/menu/video_system_menu.cpp:36 +msgid "Select Video System" +msgstr "Selecteer Video Systeem" + +#: src/supertux/menu/video_system_menu.cpp:37 +#, c++-format +msgid "Used video system: {}" +msgstr "Gebruikte video systeem: {}" + +#: src/supertux/menu/video_system_menu.cpp:54 +msgid "Restart game for the changes to take effect" +msgstr "Start het spel opnieuw om de wijzigingen door te voeren" + +#: src/supertux/menu/contrib_menu.cpp:68 #: src/supertux/menu/world_set_menu.cpp:31 msgid "Contrib Levels" msgstr "Extra levels" -#: src/supertux/menu/debug_menu.cpp:32 +#: src/supertux/menu/contrib_menu.cpp:98 +#: src/supertux/menu/contrib_menu.cpp:112 +msgid "Official Contrib Levels" +msgstr "" + +#: src/supertux/menu/contrib_menu.cpp:99 +#: src/supertux/menu/contrib_menu.cpp:118 +msgid "Community Contrib Levels" +msgstr "" + +#: src/supertux/menu/contrib_menu.cpp:100 +#: src/supertux/menu/contrib_menu.cpp:124 +msgid "User Contrib Levels" +msgstr "" + +#: src/supertux/menu/contrib_menu.cpp:113 +msgid "How is this possible? There are no Official Contrib Levels!" +msgstr "" + +#: src/supertux/menu/contrib_menu.cpp:119 +msgid "No Community Contrib Levels yet. Download them from the Add-ons Menu." +msgstr "" + +#: src/supertux/menu/contrib_menu.cpp:125 +msgid "No User Contrib Levels yet. Create some with the Level Editor." +msgstr "" + +#: src/supertux/menu/debug_menu.cpp:34 msgid "Debug" msgstr "Foutopsporing" -#: src/supertux/menu/debug_menu.cpp:56 +#: src/supertux/menu/debug_menu.cpp:58 msgid "Game Speed" msgstr "Spelsnelheid" -#: src/supertux/menu/debug_menu.cpp:57 +#: src/supertux/menu/debug_menu.cpp:59 msgid "Adjust Game Speed" msgstr "Spelsnelheid aanpassen" -#: src/supertux/menu/debug_menu.cpp:63 +#: src/supertux/menu/debug_menu.cpp:65 msgid "Show Collision Rects" msgstr "Botsingsrechthoeken tonen" -#: src/supertux/menu/debug_menu.cpp:64 +#: src/supertux/menu/debug_menu.cpp:66 msgid "Show Worldmap Path" msgstr "Wereldkaartpad tonen" -#: src/supertux/menu/debug_menu.cpp:65 +#: src/supertux/menu/debug_menu.cpp:67 msgid "Show Controller" msgstr "Controller tonen" -#: src/supertux/menu/debug_menu.cpp:66 +#: src/supertux/menu/debug_menu.cpp:68 msgid "Show Framerate" msgstr "Framerate tonen" -#: src/supertux/menu/debug_menu.cpp:67 +#: src/supertux/menu/debug_menu.cpp:69 msgid "Draw Redundant Frames" msgstr "Redundante frames tekenen" -#: src/supertux/menu/debug_menu.cpp:68 +#: src/supertux/menu/debug_menu.cpp:70 msgid "Show Player Position" msgstr "Spelerpositie tonen" -#: src/supertux/menu/debug_menu.cpp:69 +#: src/supertux/menu/debug_menu.cpp:71 msgid "Use Bitmap Fonts" msgstr "Bitmap-lettertypen gebruiken" -#: src/supertux/menu/debug_menu.cpp:72 +#: src/supertux/menu/debug_menu.cpp:74 msgid "Dump Texture Cache" msgstr "Textuurcache weggooien" #: src/supertux/menu/particle_editor_save_as.cpp:33 msgid "Save particle as" -msgstr "" +msgstr "Bewaar deeltje als" #: src/supertux/menu/particle_editor_save_as.cpp:37 #: src/supertux/menu/editor_save_as.cpp:37 msgid "File name" -msgstr "" +msgstr "Bestandsnaam" #: src/supertux/menu/particle_editor_save_as.cpp:38 -#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:766 +#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:767 msgid "Save" +msgstr "Sparen" + +#: src/supertux/menu/multiplayer_menu.cpp:27 +#: src/supertux/menu/multiplayer_players_menu.cpp:34 +msgid "Multiplayer" +msgstr "" + +#: src/supertux/menu/multiplayer_menu.cpp:30 +msgid "Auto-manage Players" msgstr "" +#: src/supertux/menu/multiplayer_menu.cpp:31 +msgid "" +"Automatically add and remove players when controllers are plugged or " +"unplugged" +msgstr "" + +#: src/supertux/menu/multiplayer_menu.cpp:33 +msgid "Allow Multibind" +msgstr "" + +#: src/supertux/menu/multiplayer_menu.cpp:34 +msgid "Allow binding multiple joysticks to a single player" +msgstr "" + +#: src/supertux/menu/multiplayer_menu.cpp:36 +msgid "Manage Players" +msgstr "Spelers Beheren" + #: src/supertux/menu/editor_sectors_menu.cpp:31 msgid "Choose Sector" msgstr "Onderdeel kiezen" @@ -2048,50 +2714,98 @@ msgstr "Onderdeel creëren" msgid "Delete Sector" msgstr "Onderdeel verwijderen" -#: src/supertux/menu/editor_sectors_menu.cpp:93 +#: src/supertux/menu/editor_sectors_menu.cpp:92 msgid "Each level must have at least one sector." msgstr "Elk level moet minstens één onderdeel bevatten." -#: src/supertux/menu/editor_sectors_menu.cpp:98 +#: src/supertux/menu/editor_sectors_menu.cpp:97 msgid "Do you really want to delete this sector?" msgstr "Weet je zeker dat je dit onderdeel wilt verwijderen?" -#: src/supertux/menu/editor_sectors_menu.cpp:101 +#: src/supertux/menu/editor_sectors_menu.cpp:100 msgid "Delete sector" msgstr "Onderdeel verwijderen" -#: src/supertux/menu/editor_objectgroup_menu.cpp:30 -#: src/editor/toolbox_widget.cpp:93 -msgid "Objects" -msgstr "Objecten" +#: src/supertux/menu/custom_menu_menu.cpp:49 +#: src/supertux/menu/options_menu.cpp:191 +msgid "Menu Customization" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:51 +msgid "Menu Back Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:52 +msgid "Menu Front Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:53 +msgid "Menu Help Back Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:54 +msgid "Menu Help Front Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:55 +msgid "Label Text Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:56 +msgid "Active Text Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:57 +msgid "Divider Line Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:58 +msgid "Menu Roundness" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:60 +msgid "Editor Interface Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:61 +msgid "Editor Hover Color" +msgstr "" -#: src/supertux/menu/editor_level_select_menu.cpp:62 +#: src/supertux/menu/custom_menu_menu.cpp:62 +msgid "Editor Grab Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:64 +msgid "Reset to defaults" +msgstr "" + +#: src/supertux/menu/editor_level_select_menu.cpp:72 msgid "Empty World" msgstr "Blanco wereld" -#: src/supertux/menu/editor_level_select_menu.cpp:77 +#: src/supertux/menu/editor_level_select_menu.cpp:87 msgid "Create Level" msgstr "Level creëren" -#: src/supertux/menu/editor_level_select_menu.cpp:81 +#: src/supertux/menu/editor_level_select_menu.cpp:91 msgid "Edit Worldmap" msgstr "Wereldkaart bewerken" -#: src/supertux/menu/editor_level_select_menu.cpp:83 +#: src/supertux/menu/editor_level_select_menu.cpp:93 msgid "Create Worldmap" msgstr "Wereldkaart creëren" -#: src/supertux/menu/editor_level_select_menu.cpp:85 -#: src/supertux/menu/editor_delete_level_menu.cpp:33 +#: src/supertux/menu/editor_level_select_menu.cpp:95 +#: src/supertux/menu/editor_delete_level_menu.cpp:55 msgid "Delete level" -msgstr "" +msgstr "Niveau verwijderen" -#: src/supertux/menu/editor_level_select_menu.cpp:87 -#: src/supertux/menu/editor_levelset_menu.cpp:56 +#: src/supertux/menu/editor_level_select_menu.cpp:97 +#: src/supertux/menu/editor_levelset_menu.cpp:50 msgid "World Settings" msgstr "Wereldinstellingen" -#: src/supertux/menu/editor_level_select_menu.cpp:127 +#: src/supertux/menu/editor_level_select_menu.cpp:141 msgid "" "Share this worldmap under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -2099,7 +2813,7 @@ msgid "" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." msgstr "Deel deze wereldkaart onder de CC-BY-SA 4.0 International-licentie (aanbevolen).\nDit staat wijzingen en heruitgave toe door derde partijen.\nAls je het oneens bent met deze licentie, dan kun je dit aanpassen in de wereldkaarteigenschappen.\nLET OP: De Supertux-auteurs nemen geen verantwoordelijkheid voor jouw licentiekeuze." -#: src/supertux/menu/editor_level_select_menu.cpp:134 +#: src/supertux/menu/editor_level_select_menu.cpp:148 msgid "" "Share this level under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -2107,495 +2821,815 @@ msgid "" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." msgstr "Deel dit level onder de CC-BY-SA 4.0 International-licentie (aanbevolen).\nDit staat wijzingen en heruitgave toe door derde partijen.\nAls je het oneens bent met deze licentie, dan kun je dit aanpassen in de leveleigenschappen.\nLET OP: De Supertux-auteurs nemen geen verantwoordelijkheid voor jouw licentiekeuze." -#: src/supertux/menu/editor_level_select_menu.cpp:162 +#: src/supertux/menu/editor_level_select_menu.cpp:179 msgid "" "An auto-save recovery file was found. Would you like to restore the recovery\n" "file and resume where you were before the editor crashed?" -msgstr "" +msgstr "Er is een automatisch opgeslagen herstelbestand gevonden. Wilt u het herstel herstellen\nbestand en hervatten waar u was voordat de editor crashte?" -#: src/supertux/menu/editor_level_select_menu.cpp:169 +#: src/supertux/menu/editor_level_select_menu.cpp:186 msgid "This will delete the auto-save file. Are you sure?" -msgstr "" +msgstr "Hiermee wordt het automatisch opgeslagen bestand verwijderd. Weet je het zeker?" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:35 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:52 +#: src/supertux/menu/cheat_apply_menu.cpp:33 +#: src/supertux/menu/cheat_apply_menu.cpp:51 +msgid "Apply cheat to player" +msgstr "" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:60 +#: src/supertux/menu/multiplayer_players_menu.cpp:39 +#: src/supertux/menu/keyboard_menu.cpp:63 +#: src/supertux/menu/cheat_apply_menu.cpp:39 +#: src/supertux/menu/cheat_apply_menu.cpp:59 +#: src/supertux/menu/multiplayer_player_menu.cpp:37 +#, c++-format +msgid "Player {}" +msgstr "Speler {}" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:57 +#: src/supertux/menu/cheat_apply_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:56 +msgid "All Players" +msgstr "Alle Spelers" -#: src/supertux/menu/worldmap_cheat_menu.cpp:34 -#: src/supertux/menu/cheat_menu.cpp:30 +#: src/supertux/menu/worldmap_cheat_menu.cpp:36 +#: src/supertux/menu/cheat_menu.cpp:31 msgid "Cheats" msgstr "Cheats" -#: src/supertux/menu/worldmap_cheat_menu.cpp:36 -#: src/supertux/menu/cheat_menu.cpp:32 +#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:33 msgid "Bonus: Grow" msgstr "Bonus: Groeien" -#: src/supertux/menu/worldmap_cheat_menu.cpp:37 +#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:34 msgid "Bonus: Fire" msgstr "Bonus: Vuur" -#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/cheat_menu.cpp:35 msgid "Bonus: Ice" msgstr "Bonus: IJs" -#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/cheat_menu.cpp:36 msgid "Bonus: Air" msgstr "Bonus: Lucht" -#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:42 +#: src/supertux/menu/cheat_menu.cpp:37 msgid "Bonus: Earth" msgstr "Bonus: Aarde" -#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/worldmap_cheat_menu.cpp:43 msgid "Bonus: None" msgstr "Bonus: Geen" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:51 msgid "Leave Ghost Mode" msgstr "Geestmodus verlaten" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:50 msgid "Activate Ghost Mode" msgstr "Geestmodus activeren" -#: src/supertux/menu/worldmap_cheat_menu.cpp:46 -#: src/supertux/menu/cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:48 +#: src/supertux/menu/cheat_menu.cpp:41 msgid "Finish Level" msgstr "Level afronden" -#: src/supertux/menu/worldmap_cheat_menu.cpp:47 +#: src/supertux/menu/worldmap_cheat_menu.cpp:49 msgid "Reset Level" msgstr "Level herstarten" -#: src/supertux/menu/worldmap_cheat_menu.cpp:49 +#: src/supertux/menu/worldmap_cheat_menu.cpp:51 msgid "Finish Worldmap" msgstr "Wereldkaart afronden" -#: src/supertux/menu/worldmap_cheat_menu.cpp:50 +#: src/supertux/menu/worldmap_cheat_menu.cpp:52 msgid "Reset Worldmap" msgstr "Wereldkaart herstarten" -#: src/supertux/menu/worldmap_cheat_menu.cpp:52 +#: src/supertux/menu/worldmap_cheat_menu.cpp:54 msgid "Go to level" msgstr "Ga naar level" -#: src/supertux/menu/worldmap_cheat_menu.cpp:53 +#: src/supertux/menu/worldmap_cheat_menu.cpp:55 msgid "Go to main spawnpoint" -msgstr "Ga naar algemeen opduikpunt" +msgstr "Ga naar algemeen herstelpunt" -#: src/supertux/menu/worldmap_cheat_menu.cpp:145 +#: src/supertux/menu/worldmap_cheat_menu.cpp:188 msgid "Select level" msgstr "Level kiezen" #: src/supertux/menu/editor_save_as.cpp:33 -#: src/supertux/menu/editor_menu.cpp:49 +#: src/supertux/menu/editor_menu.cpp:63 msgid "Save Level as" -msgstr "" +msgstr "Level Opslaan als" #: src/supertux/menu/editor_save_as.cpp:33 -#: src/supertux/menu/editor_menu.cpp:50 +#: src/supertux/menu/editor_menu.cpp:64 msgid "Save Copy" -msgstr "" +msgstr "Kopie opslaan" -#: src/supertux/menu/editor_levelset_select_menu.cpp:72 +#: src/supertux/menu/editor_levelset_select_menu.cpp:71 msgid "Choose World" msgstr "Wereld kiezen" -#: src/supertux/menu/editor_levelset_select_menu.cpp:100 -#, c-format -msgid "%d level" -msgid_plural "%d levels" -msgstr[0] "%d level" -msgstr[1] "%d levels" +#: src/supertux/menu/editor_levelset_select_menu.cpp:99 +#, c++-format +msgid "{} level" +msgid_plural "{} levels" +msgstr[0] "" +msgstr[1] "" -#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_levelset_select_menu.cpp:112 msgid "Create World" msgstr "Wereld creëren" -#: src/supertux/menu/options_menu.cpp:98 src/supertux/menu/main_menu.cpp:64 -#: src/supertux/menu/game_menu.cpp:61 src/supertux/menu/worldmap_menu.cpp:31 -msgid "Options" -msgstr "Instellingen" - -#: src/supertux/menu/options_menu.cpp:104 -#: src/supertux/menu/options_menu.cpp:142 -#: src/supertux/menu/options_menu.cpp:455 -#: src/supertux/menu/options_menu.cpp:476 src/editor/object_settings.cpp:119 -msgid "auto" -msgstr "automatisch" - -#: src/supertux/menu/options_menu.cpp:221 -msgid "Desktop" -msgstr "Bureaublad" - -#: src/supertux/menu/options_menu.cpp:251 -msgid "on" -msgstr "" - -#: src/supertux/menu/options_menu.cpp:252 -msgid "off" -msgstr "" +#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:41 +msgid "Delete World" +msgstr "Wereld Wissen" -#: src/supertux/menu/options_menu.cpp:253 -msgid "adaptive" +#: src/supertux/menu/options_menu.cpp:72 +#: src/supertux/menu/options_select_menu.cpp:35 +msgid "Locale" msgstr "" -#: src/supertux/menu/options_menu.cpp:347 +#: src/supertux/menu/options_menu.cpp:76 msgid "Select Language" msgstr "Taal selecteren" -#: src/supertux/menu/options_menu.cpp:348 +#: src/supertux/menu/options_menu.cpp:77 msgid "Select a different language to display text in" msgstr "Selecteer een andere taal voor de tekstweergave" -#: src/supertux/menu/options_menu.cpp:350 +#: src/supertux/menu/options_menu.cpp:79 msgid "Language Packs" msgstr "Taalpakketten" -#: src/supertux/menu/options_menu.cpp:351 +#: src/supertux/menu/options_menu.cpp:80 msgid "Language packs contain up-to-date translations" msgstr "Taalpakketten bevatten bijgewerkte vertalingen" -#: src/supertux/menu/options_menu.cpp:353 -#: src/supertux/menu/profile_menu.cpp:34 -msgid "Select Profile" -msgstr "Profiel selecteren" - -#: src/supertux/menu/options_menu.cpp:354 -msgid "Select a profile to play with" -msgstr "Kies een profiel om mee te spelen" +#: src/supertux/menu/options_menu.cpp:88 +#: src/supertux/menu/options_select_menu.cpp:37 +msgid "Video" +msgstr "Video" -#: src/supertux/menu/options_menu.cpp:358 +#: src/supertux/menu/options_menu.cpp:91 msgid "Window Resizable" msgstr "Aanpasbare venstergrootte" -#: src/supertux/menu/options_menu.cpp:359 +#: src/supertux/menu/options_menu.cpp:92 msgid "Allow window resizing, might require a restart to take effect" msgstr "Aanpassen van venstergrootte toestaan; het spel moet mogelijk worden herstart" -#: src/supertux/menu/options_menu.cpp:361 -msgid "Window Resolution" -msgstr "Vensterresolutie" - -#: src/supertux/menu/options_menu.cpp:362 -msgid "Resize the window to the given size" -msgstr "Pas het venster aan naar de opgegeven afmetingen" - -#: src/supertux/menu/options_menu.cpp:364 +#: src/supertux/menu/options_menu.cpp:96 msgid "Fullscreen" msgstr "Beeldvullende modus" -#: src/supertux/menu/options_menu.cpp:365 +#: src/supertux/menu/options_menu.cpp:97 msgid "Fill the entire screen" msgstr "Gebruik het volledige scherm" -#: src/supertux/menu/options_menu.cpp:367 -msgid "Fullscreen Resolution" -msgstr "Beeldvullende resolutie" +#: src/supertux/menu/options_menu.cpp:104 +msgid "Fit to browser" +msgstr "Aanpassen aan browser" + +#: src/supertux/menu/options_menu.cpp:105 +msgid "Fit the resolution to the size of your browser" +msgstr "Pas de resolutie aan de grootte van uw browser aan" + +#: src/supertux/menu/options_menu.cpp:116 +msgid "Change Video System" +msgstr "Wijzig Video Systeem" + +#: src/supertux/menu/options_menu.cpp:117 +msgid "Change video system used to render graphics" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:124 +#: src/supertux/menu/options_select_menu.cpp:38 +msgid "Audio" +msgstr "Audio" + +#: src/supertux/menu/options_menu.cpp:129 +msgid "Disable all sound effects" +msgstr "Alle geluidseffecten uitschakelen" + +#: src/supertux/menu/options_menu.cpp:131 +msgid "Disable all music" +msgstr "Alle muziek uitschakelen" + +#: src/supertux/menu/options_menu.cpp:138 +msgid "Sound (disabled)" +msgstr "Geluid (uitgeschakeld)" + +#: src/supertux/menu/options_menu.cpp:139 +msgid "Music (disabled)" +msgstr "Muziek (uitgeschakeld)" -#: src/supertux/menu/options_menu.cpp:368 +#: src/supertux/menu/options_menu.cpp:147 +#: src/supertux/menu/options_select_menu.cpp:39 +msgid "Controls" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:151 +msgid "Enable Rumbling Controllers" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "Enable vibrating the game controllers." +msgstr "" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "This feature is currently only used in the multiplayer options menu." +msgstr "" + +#: src/supertux/menu/options_menu.cpp:154 +#: src/supertux/menu/keyboard_menu.cpp:34 +msgid "Setup Keyboard" +msgstr "Toetsenbord configureren" + +#: src/supertux/menu/options_menu.cpp:155 +msgid "Configure key-action mappings" +msgstr "Toetstoewijzingen configureren" + +#: src/supertux/menu/options_menu.cpp:158 +#: src/supertux/menu/joystick_menu.cpp:54 +msgid "Setup Joystick" +msgstr "Joystick configureren" + +#: src/supertux/menu/options_menu.cpp:159 +msgid "Configure joystick control-action mappings" +msgstr "Joystick-knoptoewijzingen configureren" + +#: src/supertux/menu/options_menu.cpp:167 +#: src/supertux/menu/options_select_menu.cpp:40 +msgid "Extras" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:170 +#: src/supertux/menu/profile_menu.cpp:56 +msgid "Select Profile" +msgstr "Profiel selecteren" + +#: src/supertux/menu/options_menu.cpp:171 +msgid "Select a profile to play with" +msgstr "Kies een profiel om mee te spelen" + +#: src/supertux/menu/options_menu.cpp:174 +msgid "Multiplayer settings" +msgstr "Multi-speler instellingen" + +#: src/supertux/menu/options_menu.cpp:175 +msgid "Configure settings specific to multiplayer" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:178 +msgid "Enable transitions" +msgstr "Overgangen inschakelen" + +#: src/supertux/menu/options_menu.cpp:179 +msgid "Enable screen transitions and smooth menu animation" +msgstr "Schermovergangen en vloeiend effect voor het menu inschakelen" + +#: src/supertux/menu/options_menu.cpp:181 +msgid "Custom title screen levels" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:182 +msgid "Allow overriding the title screen level, when loading certain worlds" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:185 +msgid "Christmas Mode" +msgstr "Kerstmodus" + +#: src/supertux/menu/options_menu.cpp:187 +msgid "Integrations and presence" +msgstr "Integraties en aanwezigheid" + +#: src/supertux/menu/options_menu.cpp:188 msgid "" -"Determine the resolution used in fullscreen mode (you must toggle fullscreen" -" to complete the change)" -msgstr "Bepaal de resolutie voor de beeldvullende modus (schakel over naar de beeldvullende modus om de wijziging toe te passen)" +"Manage whether SuperTux should display the levels you play on your social " +"media profiles (Discord)" +msgstr "Beheer of SuperTux de levels die je speelt op je sociale media-profielen moet weergeven (Discord)" -#: src/supertux/menu/options_menu.cpp:373 -msgid "Fit to browser" +#: src/supertux/menu/options_menu.cpp:192 +msgid "Customize the appearance of the menus" msgstr "" -#: src/supertux/menu/options_menu.cpp:374 -msgid "Fit the resolution to the size of your browser" +#: src/supertux/menu/options_menu.cpp:199 +#: src/supertux/menu/options_select_menu.cpp:41 +msgid "Advanced" +msgstr "Geavanceerd" + +#: src/supertux/menu/options_menu.cpp:204 +msgid "Developer Mode" +msgstr "Ontwikkelaarsmodus" + +#: src/supertux/menu/options_menu.cpp:206 +msgid "Confirmation Dialog" +msgstr "Bevestigingsvenster" + +#: src/supertux/menu/options_menu.cpp:206 +msgid "Confirm aborting level" +msgstr "Afbreken bevestigen" + +#: src/supertux/menu/options_menu.cpp:208 +msgid "Pause on focus loss" +msgstr "Pauzeren bij verliezen van focus" + +#: src/supertux/menu/options_menu.cpp:209 +msgid "Automatically pause the game when the window loses focus" +msgstr "Pauzeer het spel automatisch wanneer het venster de focus verliest" + +#: src/supertux/menu/options_menu.cpp:211 +msgid "Use custom mouse cursor" +msgstr "Gebruik een aangepaste muiscursor" + +#: src/supertux/menu/options_menu.cpp:211 +msgid "Whether the game renders its own cursor or uses the system's cursor" +msgstr "Of de game zijn eigen cursor weergeeft of de cursor van het systeem gebruikt" + +#: src/supertux/menu/options_menu.cpp:214 +msgid "Check for new releases" +msgstr "Controleer op nieuwe releases" + +#: src/supertux/menu/options_menu.cpp:215 +msgid "" +"Allows the game to perform checks for new SuperTux releases on startup and " +"notify if any found." msgstr "" -#: src/supertux/menu/options_menu.cpp:378 +#: src/supertux/menu/options_menu.cpp:245 +#: src/supertux/menu/options_menu.cpp:288 src/supertux/direction.cpp:76 +msgid "auto" +msgstr "automatisch" + +#: src/supertux/menu/options_menu.cpp:281 msgid "Magnification" msgstr "Vergrotingsfactor" -#: src/supertux/menu/options_menu.cpp:379 +#: src/supertux/menu/options_menu.cpp:282 msgid "Change the magnification of the game area" msgstr "Wijzig de vergrotingsfactor van het spelgebied" -#: src/supertux/menu/options_menu.cpp:381 -msgid "VSync" -msgstr "VSync" - -#: src/supertux/menu/options_menu.cpp:382 -msgid "Set the VSync mode" -msgstr "Stel de VSync-modus in" - -#: src/supertux/menu/options_menu.cpp:385 +#: src/supertux/menu/options_menu.cpp:318 msgid "Aspect Ratio" msgstr "Beeldverhouding" -#: src/supertux/menu/options_menu.cpp:386 +#: src/supertux/menu/options_menu.cpp:319 msgid "Adjust the aspect ratio" msgstr "De beeldverhouding aanpassen" -#: src/supertux/menu/options_menu.cpp:392 -msgid "Disable all sound effects" -msgstr "Alle geluidseffecten uitschakelen" +#: src/supertux/menu/options_menu.cpp:346 +msgid "Window Resolution" +msgstr "Vensterresolutie" -#: src/supertux/menu/options_menu.cpp:394 -msgid "Disable all music" -msgstr "Alle muziek uitschakelen" +#: src/supertux/menu/options_menu.cpp:347 +msgid "Resize the window to the given size" +msgstr "Pas het venster aan naar de opgegeven afmetingen" + +#: src/supertux/menu/options_menu.cpp:377 +msgid "Desktop" +msgstr "Bureaublad" + +#: src/supertux/menu/options_menu.cpp:404 +msgid "Fullscreen Resolution" +msgstr "Beeldvullende resolutie" + +#: src/supertux/menu/options_menu.cpp:405 +msgid "" +"Determine the resolution used in fullscreen mode (you must toggle fullscreen" +" to complete the change)" +msgstr "Bepaal de resolutie voor de beeldvullende modus (schakel over naar de beeldvullende modus om de wijziging toe te passen)" + +#: src/supertux/menu/options_menu.cpp:411 +msgid "on" +msgstr "aan" + +#: src/supertux/menu/options_menu.cpp:412 +msgid "off" +msgstr "uit" + +#: src/supertux/menu/options_menu.cpp:413 +msgid "adaptive" +msgstr "aangepaste" -#: src/supertux/menu/options_menu.cpp:396 +#: src/supertux/menu/options_menu.cpp:431 +msgid "VSync" +msgstr "VSync" + +#: src/supertux/menu/options_menu.cpp:432 +msgid "Set the VSync mode" +msgstr "Stel de VSync-modus in" + +#: src/supertux/menu/options_menu.cpp:467 msgid "Sound Volume" msgstr "Volume van geluidseffecten" -#: src/supertux/menu/options_menu.cpp:397 +#: src/supertux/menu/options_menu.cpp:468 msgid "Adjust sound volume" msgstr "Volume van geluidseffecten aanpassen" -#: src/supertux/menu/options_menu.cpp:399 +#: src/supertux/menu/options_menu.cpp:503 msgid "Music Volume" msgstr "Muziekvolume" -#: src/supertux/menu/options_menu.cpp:400 +#: src/supertux/menu/options_menu.cpp:504 msgid "Adjust music volume" msgstr "Muziekvolume aanpassen" -#: src/supertux/menu/options_menu.cpp:404 -msgid "Sound (disabled)" -msgstr "Geluid (uitgeschakeld)" +#: src/supertux/menu/options_menu.cpp:517 +msgid "On-screen controls scale" +msgstr "" -#: src/supertux/menu/options_menu.cpp:405 -msgid "Music (disabled)" -msgstr "Muziek (uitgeschakeld)" +#: src/supertux/menu/options_menu.cpp:638 +msgid "" +"The game couldn't detect your browser resolution.\n" +"This most likely happens because it is not embedded\n" +"in the SuperTux custom HTML template.\n" +msgstr "De game kan de resolutie van je browser niet detecteren.\nDit gebeurt hoogstwaarschijnlijk omdat het niet is ingebed\nin de aangepaste HTML-sjabloon van SuperTux.\n" -#: src/supertux/menu/options_menu.cpp:408 -#: src/supertux/menu/keyboard_menu.cpp:30 -msgid "Setup Keyboard" -msgstr "Toetsenbord configureren" +#: src/supertux/menu/editor_delete_levelset_menu.cpp:80 +msgid "You cannot delete the world that you are editing" +msgstr "Je kan de wereld die je aan het bewerken bent niet wissen" -#: src/supertux/menu/options_menu.cpp:409 -msgid "Configure key-action mappings" -msgstr "Toetstoewijzingen configureren" +#: src/supertux/menu/editor_delete_levelset_menu.cpp:83 +#, c++-format +msgid "You are about to delete world \"{}\". Are you sure?" +msgstr "U staat op het punt wereld \"{}\" te verwijderen. Weet je het zeker?" -#: src/supertux/menu/options_menu.cpp:412 -#: src/supertux/menu/joystick_menu.cpp:52 -msgid "Setup Joystick" -msgstr "Joystick configureren" +#: src/supertux/menu/addon_preview_menu.cpp:82 +#, c++-format +msgid "{} \"{}\"" +msgstr "{} \"{}\"" -#: src/supertux/menu/options_menu.cpp:413 -msgid "Configure joystick control-action mappings" -msgstr "Joystick-knoptoewijzingen configureren" +#: src/supertux/menu/addon_preview_menu.cpp:87 +msgid "Some information about this add-on is not available." +msgstr "Sommige informatie over deze add-on is niet beschikbaar." -#: src/supertux/menu/options_menu.cpp:417 -msgid "On-screen controls" +#: src/supertux/menu/addon_preview_menu.cpp:88 +msgid "Perform a \"Check Online\" to try retrieving it." msgstr "" -#: src/supertux/menu/options_menu.cpp:418 -msgid "Toggle on-screen controls for mobile devices" -msgstr "" +#: src/supertux/menu/addon_preview_menu.cpp:92 +msgid "No author specified." +msgstr "Geen auteur opgegeven." + +#: src/supertux/menu/addon_preview_menu.cpp:92 +#, c++-format +msgid "Author: {}" +msgstr "Auteur: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:93 +#, c++-format +msgid "Type: {}" +msgstr "Type: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:94 +msgid "No license specified." +msgstr "Geen licentie opgegeven." + +#: src/supertux/menu/addon_preview_menu.cpp:94 +#, c++-format +msgid "License: {}" +msgstr "Licentie: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:99 +msgid "Dependencies:" +msgstr "Afhankelijkheden:" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Installed" +msgstr "Geïnstalleerd" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Not installed" +msgstr "Niet geïnstalleerd" + +#: src/supertux/menu/addon_preview_menu.cpp:113 +msgid "Not available!" +msgstr "Niet beschikbaar!" + +#: src/supertux/menu/addon_preview_menu.cpp:120 +msgid "Description:" +msgstr "Beschrijving:" + +#: src/supertux/menu/addon_preview_menu.cpp:123 +msgid "No description available." +msgstr "Geen beschrijving beschikbaar." + +#: src/supertux/menu/addon_preview_menu.cpp:147 +msgid "Failed to load all available screenshot previews." +msgstr "Het laden van alle beschikbare schermafbeelding voorbeelden is niet gelukt." + +#: src/supertux/menu/addon_preview_menu.cpp:152 +msgid "Show screenshots" +msgstr "Schermafbeeldingen tonen" + +#: src/supertux/menu/addon_preview_menu.cpp:165 +msgid "Screenshot previews are disabled for automatic installs." +msgstr "Voorvertoningen van schermafbeeldingen zijn uitgeschakeld voor automatische installaties." -#: src/supertux/menu/options_menu.cpp:420 -msgid "Enable transitions" -msgstr "Overgangen inschakelen" +#: src/supertux/menu/addon_preview_menu.cpp:169 +msgid "No screenshot previews available." +msgstr "Er zijn geen schermafbeelding voorbeelden beschikbaar." -#: src/supertux/menu/options_menu.cpp:421 -msgid "Enable screen transitions and smooth menu animation" -msgstr "Schermovergangen en vloeiend effect voor het menu inschakelen" +#: src/supertux/menu/addon_preview_menu.cpp:177 +msgid "Install" +msgstr "Installeren" -#: src/supertux/menu/options_menu.cpp:425 -msgid "Developer Mode" -msgstr "Ontwikkelaarsmodus" +#: src/supertux/menu/addon_preview_menu.cpp:190 +msgid "Uninstall" +msgstr "Verwijderen" -#: src/supertux/menu/options_menu.cpp:430 -msgid "Christmas Mode" -msgstr "Kerstmodus" +#: src/supertux/menu/addon_preview_menu.cpp:214 +#, c++-format +msgid "Are you sure you want to uninstall \"{}\"?" +msgstr "Weet u zeker dat u \"{}\" wilt verwijderen?" -#: src/supertux/menu/options_menu.cpp:433 -msgid "Confirmation Dialog" -msgstr "Bevestigingsvenster" +#: src/supertux/menu/addon_preview_menu.cpp:215 +msgid "" +"\n" +"Your progress won't be lost." +msgstr "\nJe voortgang gaat niet verloren." -#: src/supertux/menu/options_menu.cpp:433 -msgid "Confirm aborting level" -msgstr "Afbreken bevestigen" +#: src/supertux/menu/addon_preview_menu.cpp:227 +#, c++-format +msgid "" +"NOTE: The add-on \"{}\" is a dependency of {} other installed {}.\n" +"Are you sure you wish to uninstall?" +msgstr "OPMERKING: De add-on \"{}\" is afhankelijk van {} andere geïnstalleerde {}.\nWeet u zeker dat u wilt verwijderen?" -#: src/supertux/menu/options_menu.cpp:434 -msgid "Pause on focus loss" -msgstr "Pauzeren bij verliezen van focus" +#: src/supertux/menu/addon_preview_menu.cpp:246 +#, c++-format +msgid "" +"Cannot toggle add-on \"{}\":\n" +"{}" +msgstr "Kan add-on \"{}\" niet inschakelen:\n{}" -#: src/supertux/menu/options_menu.cpp:435 -msgid "Automatically pause the game when the window loses focus" +#: src/supertux/menu/addon_preview_menu.cpp:279 +msgid "Fetching screenshot previews..." msgstr "" -#: src/supertux/menu/options_menu.cpp:436 -msgid "Use custom mouse cursor" -msgstr "" +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Updating" +msgstr "Updaten" -#: src/supertux/menu/options_menu.cpp:436 -msgid "Whether the game renders its own cursor or uses the system's cursor" -msgstr "" +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Downloading" +msgstr "Downloaden" -#: src/supertux/menu/options_menu.cpp:438 -msgid "Integrations and presence" -msgstr "" +#: src/supertux/menu/addon_preview_menu.cpp:328 +msgid "Add-on uninstalled successfully." +msgstr "Add-on succesvol verwijderd." -#: src/supertux/menu/options_menu.cpp:439 +#: src/supertux/menu/addon_preview_menu.cpp:333 +#, c++-format msgid "" -"Manage whether SuperTux should display the levels you play on your social " -"media profiles (Discord)" -msgstr "" +"Error uninstalling add-on:\n" +"{}" +msgstr "Fout bij het verwijderen van de add-on:\n{}" -#: src/supertux/menu/options_menu.cpp:559 +#: src/supertux/menu/addon_preview_menu.cpp:361 msgid "" -"The game couldn't detect your browser resolution.\n" -"This most likely happens because it is not embedded\n" -"in the SuperTux custom HTML template.\n" -msgstr "" +"Please restart SuperTux\n" +"for these changes to take effect." +msgstr "Herstart Supertux\nom deze wijzigingen toe te passen." -#: src/supertux/menu/main_menu.cpp:56 src/supertux/menu/world_set_menu.cpp:28 +#: src/supertux/menu/main_menu.cpp:51 src/supertux/menu/world_set_menu.cpp:28 msgid "Start Game" msgstr "Spel starten" -#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/addon_menu.cpp:122 +#: src/supertux/menu/main_menu.cpp:55 msgid "Add-ons" msgstr "Uitbreidingen" -#: src/supertux/menu/main_menu.cpp:62 src/supertux/menu/web_asset_menu.cpp:38 +#: src/supertux/menu/main_menu.cpp:57 src/supertux/menu/web_asset_menu.cpp:38 msgid "Manage Assets" -msgstr "" +msgstr "Activa beheren" + +#: src/supertux/menu/main_menu.cpp:59 +#: src/supertux/menu/options_select_menu.cpp:29 +#: src/supertux/menu/game_menu.cpp:58 src/supertux/menu/worldmap_menu.cpp:31 +#: src/supertux/menu/editor_menu.cpp:70 +msgid "Options" +msgstr "Instellingen" -#: src/supertux/menu/main_menu.cpp:65 src/supertux/menu/editor_menu.cpp:43 +#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/editor_menu.cpp:58 msgid "Level Editor" msgstr "Levelbewerker" -#: src/supertux/menu/main_menu.cpp:66 +#: src/supertux/menu/main_menu.cpp:61 msgid "Credits" msgstr "Over SuperTux" -#: src/supertux/menu/main_menu.cpp:67 +#: src/supertux/menu/main_menu.cpp:64 msgid "Donate" msgstr "Doneren" -#: src/supertux/menu/main_menu.cpp:69 +#: src/supertux/menu/main_menu.cpp:67 msgid "Quit" msgstr "Afsluiten" -#: src/supertux/menu/editor_sector_menu.cpp:35 +#: src/supertux/menu/main_menu.cpp:106 +msgid "" +"This will take you to the SuperTux donation page. Are you sure you want to " +"continue?" +msgstr "Hiermee gaat u naar de donatiepagina van SuperTux. Weet je zeker dat je door wilt gaan?" + +#: src/supertux/menu/editor_sector_menu.cpp:34 +#, c++-format +msgid "Sector {}" +msgstr "" + +#: src/supertux/menu/editor_sector_menu.cpp:37 msgid "Initialization script" msgstr "Initialisatie-script" -#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_sector_menu.cpp:38 msgid "Gravity" msgstr "Zwaartekracht" -#: src/supertux/menu/editor_sector_menu.cpp:41 +#: src/supertux/menu/editor_sector_menu.cpp:43 msgid "Resize offset X" msgstr "Schaalafstand X" -#: src/supertux/menu/editor_sector_menu.cpp:42 +#: src/supertux/menu/editor_sector_menu.cpp:44 msgid "Resize offset Y" msgstr "Schaalafstand Y" -#: src/supertux/menu/editor_sector_menu.cpp:43 +#: src/supertux/menu/editor_sector_menu.cpp:45 msgid "Resize" msgstr "Herschalen" -#: src/supertux/menu/profile_menu.cpp:41 -#, c-format -msgid "[Profile %s]" -msgstr "[Profiel %s]" +#: src/supertux/menu/profile_menu.cpp:60 +msgid "No profiles found." +msgstr "Geen profielen gevonden." + +#: src/supertux/menu/profile_menu.cpp:68 +#: src/supertux/menu/profile_menu.cpp:149 +#: src/supertux/menu/profile_menu.cpp:168 +#, c++-format +msgid "Profile {}" +msgstr "Profiel {}" -#: src/supertux/menu/profile_menu.cpp:45 -#, c-format -msgid "Profile %s" -msgstr "Profiel %s" +#: src/supertux/menu/profile_menu.cpp:69 +#, c++-format +msgid "{} (Profile {})" +msgstr "{} (Profiel {})" -#: src/supertux/menu/profile_menu.cpp:50 -msgid "Reset profile" +#: src/supertux/menu/profile_menu.cpp:84 +msgid "No profile selected." +msgstr "Geen profiel geselecteerd." + +#: src/supertux/menu/profile_menu.cpp:91 src/supertux/menu/profile_menu.cpp:93 +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Rename" +msgstr "Hernoemen" + +#: src/supertux/menu/profile_menu.cpp:98 +#: src/supertux/menu/profile_menu.cpp:100 +msgid "Reset" msgstr "" -#: src/supertux/menu/profile_menu.cpp:51 -msgid "Reset all profiles" +#: src/supertux/menu/profile_menu.cpp:103 +#: src/supertux/menu/profile_menu.cpp:105 +msgid "Reset all" msgstr "" -#: src/supertux/menu/profile_menu.cpp:67 -msgid "Deleting your profile will reset your game progress. Are you sure?" +#: src/supertux/menu/profile_menu.cpp:113 +#: src/supertux/menu/profile_menu.cpp:115 +msgid "Delete all" +msgstr "Alles wissen" + +#: src/supertux/menu/profile_menu.cpp:148 +#, c++-format +msgid "" +"This will reset all game progress on the profile \"{}\".\n" +"Are you sure?" msgstr "" -#: src/supertux/menu/profile_menu.cpp:73 +#: src/supertux/menu/profile_menu.cpp:157 msgid "This will reset your game progress on all profiles. Are you sure?" +msgstr "Hiermee wordt je spelvoortgang op alle profielen gereset. Weet je het zeker?" + +#: src/supertux/menu/profile_menu.cpp:167 +#, c++-format +msgid "" +"This will delete the profile \"{}\",\n" +"including all game progress on it. Are you sure?" +msgstr "" + +#: src/supertux/menu/profile_menu.cpp:178 +msgid "" +"This will delete all profiles, including all game progress on them.\n" +"Are you sure?" msgstr "" -#: src/supertux/menu/editor_levelset_menu.cpp:59 +#: src/supertux/menu/editor_levelset_menu.cpp:53 #: src/supertux/menu/editor_new_levelset_menu.cpp:35 msgid "Description" msgstr "Omschrijving" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:48 -#: data//images/engine/editor/objects.stoi:371 -msgid "Worldmap" -msgstr "Wereldkaart" +#: src/supertux/menu/editor_levelset_menu.cpp:55 +msgid "Title Screen Level" +msgstr "" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:45 -msgid "Levelset" -msgstr "Levelset" +#: src/supertux/menu/editor_levelset_menu.cpp:56 +msgid "A level to be used for the title screen, after exiting the world." +msgstr "" -#: src/supertux/menu/addon_menu.cpp:51 -msgid "World" -msgstr "Wereld" +#: src/supertux/menu/multiplayer_players_menu.cpp:46 +msgid "Add Player" +msgstr "Speler Toevoegen" -#: src/supertux/menu/addon_menu.cpp:54 -msgid "Add-on" -msgstr "Uitbreiding" +#: src/supertux/menu/multiplayer_players_menu.cpp:59 +msgid "Remove Last Player" +msgstr "Laatste Speler Verwijderen" -#: src/supertux/menu/addon_menu.cpp:60 -msgid "Unknown" -msgstr "Onbekend" +#: src/supertux/menu/multiplayer_players_menu.cpp:62 +msgid "" +"Warning: The player you are trying to\n" +"remove is currently in-game.\n" +"\n" +"Do you wish to remove them anyways?" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:71 -#, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" door \"%s\"" +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Language Packs" +msgstr "Geïnstalleerde taalpakketten" -#: src/supertux/menu/addon_menu.cpp:129 +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Add-ons" +msgstr "Geïnstalleerde add-ons" + +#: src/supertux/menu/addon_menu.cpp:76 src/supertux/menu/addon_menu.cpp:117 +msgid "No language packs installed" +msgstr "Geen taalpakketten geïnstalleerd" + +#: src/supertux/menu/addon_menu.cpp:76 msgid "No Add-ons installed" msgstr "Er zijn geen uitbreidingen geïnstalleerd" -#: src/supertux/menu/addon_menu.cpp:133 -msgid "No Add-ons found" -msgstr "Er zijn geen uitbreidingen aangetroffen" +#: src/supertux/menu/addon_menu.cpp:124 +#, c++-format +msgid "{} {}*UPDATE*" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:179 -#, c-format -msgid "Install %s *NEW*" -msgstr "%s installeren *NIEUW*" +#: src/supertux/menu/addon_menu.cpp:130 +#, c++-format +msgid "{}{}" +msgstr "{}{}" -#: src/supertux/menu/addon_menu.cpp:190 -#, c-format -msgid "Install %s" -msgstr "%s installeren" +#: src/supertux/menu/addon_menu.cpp:140 +msgid "No updates available." +msgstr "Geen updates beschikbaar." -#: src/supertux/menu/addon_menu.cpp:199 -msgid "No new Add-ons found" -msgstr "Er zijn geen nieuwe uitbreidingen aangetroffen" +#: src/supertux/menu/addon_menu.cpp:144 +#, c++-format +msgid "{} {} available" +msgstr "{} {} beschikbaar" -#: src/supertux/menu/addon_menu.cpp:205 -msgid "Check Online (disabled)" -msgstr "Online-controle (uitgeschakeld)" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "update" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:209 -msgid "Check Online" -msgstr "Online controleren" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "updates" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:286 -msgid "Downloading Add-On Repository Index" -msgstr "Bezig met downloaden van de pakketbronindex" +#: src/supertux/menu/addon_menu.cpp:146 +msgid "Check for updates" +msgstr "Controleren voor updates" -#: src/supertux/menu/addon_menu.cpp:301 -#, c-format -msgid "Downloading %s" -msgstr "Bezig met downloaden van %s" +#: src/supertux/menu/addon_menu.cpp:150 +msgid "Browse language packs" +msgstr "Blader door taalpakketten" -#: src/supertux/menu/addon_menu.cpp:348 -msgid "" -"Please restart SuperTux\n" -"for these changes to take effect." -msgstr "Herstart Supertux\nom deze wijzigingen toe te passen." +#: src/supertux/menu/addon_menu.cpp:150 +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Add-ons" +msgstr "Blader door add-ons" + +#: src/supertux/menu/addon_menu.cpp:151 +msgid "Install from file" +msgstr "Installeren vanuit bestand" + +#: src/supertux/menu/addon_menu.cpp:208 +msgid "Checking for updates..." +msgstr "Controleren op updates..." #: src/supertux/menu/editor_new_levelset_menu.cpp:31 msgid "New World" @@ -2609,227 +3643,302 @@ msgstr "Voer een naam in voor deze level-subset." msgid "Story Mode" msgstr "Verhaalmodus" +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Language Packs" +msgstr "Blader Door Taalpakketten" + +#: src/supertux/menu/addon_browse_menu.cpp:112 +#, c++-format +msgid "Page {}/{}" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new language packs available" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new Add-ons available" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No language packs available" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No Add-ons available" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:135 +#: src/supertux/menu/addon_browse_menu.cpp:139 +msgid "Previous page" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:143 +#: src/supertux/menu/addon_browse_menu.cpp:147 +msgid "Next page" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:154 +msgid "Check Online (disabled)" +msgstr "Online-controle (uitgeschakeld)" + +#: src/supertux/menu/addon_browse_menu.cpp:158 +msgid "Check Online" +msgstr "Online controleren" + +#: src/supertux/menu/addon_browse_menu.cpp:195 +msgid "Downloading Add-On Repository Index" +msgstr "Bezig met downloaden van de pakketbronindex" + #: src/supertux/menu/web_asset_menu.cpp:42 msgid "New files location" -msgstr "" +msgstr "Nieuwe bestandslocatie" #: src/supertux/menu/web_asset_menu.cpp:43 msgid "Add Files" -msgstr "" +msgstr "Bestanden toevoegen" #: src/supertux/menu/web_asset_menu.cpp:44 msgid "Download Files" -msgstr "" +msgstr "Bestanden downloaden" #: src/supertux/menu/particle_editor_open.cpp:32 msgid "Load particle file" -msgstr "" +msgstr "Particle-bestand laden" #: src/supertux/menu/particle_editor_open.cpp:39 msgid "Open" -msgstr "" - -#: src/supertux/menu/game_menu.cpp:31 -msgid "Are you sure?" -msgstr "Weet je het zeker?" +msgstr "Open" -#: src/supertux/menu/game_menu.cpp:54 src/supertux/menu/worldmap_menu.cpp:30 +#: src/supertux/menu/game_menu.cpp:51 src/supertux/menu/worldmap_menu.cpp:30 msgid "Continue" msgstr "Hervatten" -#: src/supertux/menu/game_menu.cpp:55 +#: src/supertux/menu/game_menu.cpp:52 msgid "Restart Level" msgstr "Level herstarten" -#: src/supertux/menu/game_menu.cpp:58 +#: src/supertux/menu/game_menu.cpp:55 msgid "Restart from Checkpoint" msgstr "Herstarten vanaf controlepunt" -#: src/supertux/menu/game_menu.cpp:63 +#: src/supertux/menu/game_menu.cpp:60 msgid "Abort Level" msgstr "Level afbreken" -#: src/supertux/menu/keyboard_menu.cpp:32 -#: src/supertux/menu/joystick_menu.cpp:69 +#: src/supertux/menu/game_menu.cpp:76 src/supertux/menu/game_menu.cpp:87 +#: src/supertux/menu/game_menu.cpp:99 +msgid "Are you sure?" +msgstr "Weet je het zeker?" + +#: src/supertux/menu/profile_name_menu.cpp:36 +#, c++-format +msgid "Rename \"{}\"" +msgstr "" + +#: src/supertux/menu/profile_name_menu.cpp:36 +msgid "Add profile" +msgstr "" + +#: src/supertux/menu/profile_name_menu.cpp:40 +msgid "Profile names must have a maximum of 20 characters." +msgstr "" + +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Create" +msgstr "" + +#: src/supertux/menu/profile_name_menu.cpp:56 +msgid "" +"Profile names must have a maximum of 20 characters.\n" +"Please choose a different name." +msgstr "" + +#: src/supertux/menu/profile_name_menu.cpp:77 +msgid "An error occurred while creating the profile." +msgstr "" + +#: src/supertux/menu/keyboard_menu.cpp:36 +#: src/supertux/menu/joystick_menu.cpp:71 msgid "Up" msgstr "Omhoog" -#: src/supertux/menu/keyboard_menu.cpp:33 -#: src/supertux/menu/joystick_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:37 +#: src/supertux/menu/joystick_menu.cpp:72 msgid "Down" msgstr "Omlaag" -#: src/supertux/menu/keyboard_menu.cpp:36 -#: src/supertux/menu/joystick_menu.cpp:73 +#: src/supertux/menu/keyboard_menu.cpp:40 +#: src/supertux/menu/joystick_menu.cpp:75 msgid "Jump" msgstr "Springen" -#: src/supertux/menu/keyboard_menu.cpp:38 -#: src/supertux/menu/joystick_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:43 +#: src/supertux/menu/joystick_menu.cpp:78 msgid "Peek Left" msgstr "Naar links kijken" -#: src/supertux/menu/keyboard_menu.cpp:39 -#: src/supertux/menu/joystick_menu.cpp:77 +#: src/supertux/menu/keyboard_menu.cpp:44 +#: src/supertux/menu/joystick_menu.cpp:79 msgid "Peek Right" msgstr "Naar rechts kijken" -#: src/supertux/menu/keyboard_menu.cpp:40 -#: src/supertux/menu/joystick_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:45 +#: src/supertux/menu/joystick_menu.cpp:80 msgid "Peek Up" msgstr "Omhoog kijken" -#: src/supertux/menu/keyboard_menu.cpp:41 -#: src/supertux/menu/joystick_menu.cpp:79 +#: src/supertux/menu/keyboard_menu.cpp:46 +#: src/supertux/menu/joystick_menu.cpp:81 msgid "Peek Down" msgstr "Omlaag kijken" -#: src/supertux/menu/keyboard_menu.cpp:43 -#: src/supertux/menu/joystick_menu.cpp:81 +#: src/supertux/menu/keyboard_menu.cpp:51 +#: src/supertux/menu/joystick_menu.cpp:83 msgid "Console" msgstr "Console" -#: src/supertux/menu/keyboard_menu.cpp:44 -#: src/supertux/menu/joystick_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:52 +#: src/supertux/menu/joystick_menu.cpp:84 msgid "Cheat Menu" msgstr "Cheats-menu" -#: src/supertux/menu/keyboard_menu.cpp:45 -#: src/supertux/menu/joystick_menu.cpp:83 +#: src/supertux/menu/keyboard_menu.cpp:53 +#: src/supertux/menu/joystick_menu.cpp:85 msgid "Debug Menu" msgstr "Foutopsporingsmenu" -#: src/supertux/menu/keyboard_menu.cpp:47 -#: src/supertux/menu/joystick_menu.cpp:85 +#: src/supertux/menu/keyboard_menu.cpp:56 +#: src/supertux/menu/joystick_menu.cpp:87 msgid "Jump with Up" msgstr "Springen met Omhoog" -#: src/supertux/menu/keyboard_menu.cpp:60 +#: src/supertux/menu/keyboard_menu.cpp:82 msgid "Up cursor" msgstr "Pijltje omhoog" -#: src/supertux/menu/keyboard_menu.cpp:62 +#: src/supertux/menu/keyboard_menu.cpp:84 msgid "Down cursor" msgstr "Pijltje omlaag" -#: src/supertux/menu/keyboard_menu.cpp:64 +#: src/supertux/menu/keyboard_menu.cpp:86 msgid "Left cursor" msgstr "Pijltje links" -#: src/supertux/menu/keyboard_menu.cpp:66 +#: src/supertux/menu/keyboard_menu.cpp:88 msgid "Right cursor" msgstr "Pijltje rechts" -#: src/supertux/menu/keyboard_menu.cpp:68 +#: src/supertux/menu/keyboard_menu.cpp:90 msgid "Return" msgstr "Enter-toets" -#: src/supertux/menu/keyboard_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:92 msgid "Space" msgstr "Spatiebalk" -#: src/supertux/menu/keyboard_menu.cpp:72 +#: src/supertux/menu/keyboard_menu.cpp:94 msgid "Right Shift" msgstr "Shift rechts" -#: src/supertux/menu/keyboard_menu.cpp:74 +#: src/supertux/menu/keyboard_menu.cpp:96 msgid "Left Shift" msgstr "Shift links" -#: src/supertux/menu/keyboard_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:98 msgid "Right Control" msgstr "Ctrl rechts" -#: src/supertux/menu/keyboard_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:100 msgid "Left Control" msgstr "Ctrl links" -#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/keyboard_menu.cpp:102 msgid "Right Alt" msgstr "Alt rechts" -#: src/supertux/menu/keyboard_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:104 msgid "Left Alt" msgstr "Alt links" -#: src/supertux/menu/keyboard_menu.cpp:84 +#: src/supertux/menu/keyboard_menu.cpp:106 msgid "Right Command" msgstr "Rechter commando-toets" -#: src/supertux/menu/keyboard_menu.cpp:86 +#: src/supertux/menu/keyboard_menu.cpp:108 msgid "Left Command" msgstr "Linker commando-toets" -#: src/supertux/menu/keyboard_menu.cpp:100 +#: src/supertux/menu/keyboard_menu.cpp:122 msgid "Press Key" msgstr "Druk op een toets" -#: src/supertux/menu/language_menu.cpp:40 +#: src/supertux/menu/language_menu.cpp:43 msgid "Language" msgstr "Taal" -#: src/supertux/menu/language_menu.cpp:42 +#: src/supertux/menu/language_menu.cpp:45 msgid "" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:55 +#: src/supertux/menu/joystick_menu.cpp:57 msgid "Manual Configuration" msgstr "Handmatige configuratie" -#: src/supertux/menu/joystick_menu.cpp:57 +#: src/supertux/menu/joystick_menu.cpp:59 msgid "" "Use manual configuration instead of SDL2's automatic GameController support" msgstr "Handmatige configuratie gebruiken i.p.v. SDL2's automatische GameController-ondersteuning" -#: src/supertux/menu/joystick_menu.cpp:75 +#: src/supertux/menu/joystick_menu.cpp:77 msgid "Pause/Menu" msgstr "Pauze/Menu" -#: src/supertux/menu/joystick_menu.cpp:91 +#: src/supertux/menu/joystick_menu.cpp:93 msgid "No Joysticks found" msgstr "Er zijn geen Joysticks gevonden" -#: src/supertux/menu/joystick_menu.cpp:92 +#: src/supertux/menu/joystick_menu.cpp:94 msgid "Scan for Joysticks" msgstr "Naar Joysticks zoeken" -#: src/supertux/menu/joystick_menu.cpp:125 +#: src/supertux/menu/joystick_menu.cpp:127 msgid "Press Button" msgstr "Druk op een toets" -#: src/supertux/menu/joystick_menu.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:164 msgid "Axis " msgstr "As" -#: src/supertux/menu/joystick_menu.cpp:165 +#: src/supertux/menu/joystick_menu.cpp:167 msgid "-" msgstr "-" -#: src/supertux/menu/joystick_menu.cpp:167 +#: src/supertux/menu/joystick_menu.cpp:169 msgid "+" msgstr "+" -#: src/supertux/menu/joystick_menu.cpp:174 +#: src/supertux/menu/joystick_menu.cpp:176 msgid "X2" msgstr "X2" -#: src/supertux/menu/joystick_menu.cpp:176 +#: src/supertux/menu/joystick_menu.cpp:178 msgid "Y2" msgstr "Y2" -#: src/supertux/menu/joystick_menu.cpp:189 +#: src/supertux/menu/joystick_menu.cpp:191 msgid "Hat Up" msgstr "Hat omhoog" -#: src/supertux/menu/joystick_menu.cpp:193 +#: src/supertux/menu/joystick_menu.cpp:195 msgid "Hat Down" msgstr "Hat omlaag" -#: src/supertux/menu/joystick_menu.cpp:197 +#: src/supertux/menu/joystick_menu.cpp:199 msgid "Hat Left" msgstr "Hat links" -#: src/supertux/menu/joystick_menu.cpp:201 +#: src/supertux/menu/joystick_menu.cpp:203 msgid "Hat Right" msgstr "Hat rechts" @@ -2841,85 +3950,80 @@ msgstr "Pauzeren" msgid "Leave World" msgstr "Wereld verlaten" -#: src/supertux/menu/download_dialog.cpp:27 +#: src/supertux/menu/download_dialog.cpp:42 msgid "Abort Download" msgstr "Downloaden afbreken" -#: src/supertux/menu/download_dialog.cpp:42 -msgid "Error:\n" -msgstr "Fout:\n" - -#: src/supertux/menu/download_dialog.cpp:96 -msgid "Close" -msgstr "Sluiten" - -#: src/supertux/menu/cheat_menu.cpp:33 -msgid "Bonus: Fire x 64" -msgstr "" - -#: src/supertux/menu/cheat_menu.cpp:34 -msgid "Bonus: Ice x 64" -msgstr "" - -#: src/supertux/menu/cheat_menu.cpp:35 -msgid "Bonus: Air x 64" -msgstr "" - -#: src/supertux/menu/cheat_menu.cpp:36 -msgid "Bonus: Earth x 64" +#: src/supertux/menu/download_dialog.cpp:59 +#, c++-format +msgid "" +"Error:\n" +"{}" msgstr "" -#: src/supertux/menu/cheat_menu.cpp:37 +#: src/supertux/menu/cheat_menu.cpp:38 msgid "Bonus: Star" msgstr "Bonus: Ster" -#: src/supertux/menu/cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:39 msgid "Shrink Tux" msgstr "Tux krimpen" -#: src/supertux/menu/cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:40 msgid "Kill Tux" msgstr "Tux vermoorden" +#: src/supertux/menu/cheat_menu.cpp:55 +msgid "Prevent Death" +msgstr "" + +#: src/supertux/menu/addon_file_install_menu.cpp:32 +msgid "Install Add-on from file" +msgstr "Installeer Add-on van bestand" + +#: src/supertux/menu/addon_file_install_menu.cpp:34 +msgid "Drag and drop add-on ZIP archive" +msgstr "" + #: src/supertux/menu/particle_editor_menu.cpp:32 msgid "Particle Editor" -msgstr "" +msgstr "Deeltjes-editor" #: src/supertux/menu/particle_editor_menu.cpp:36 -#: src/supertux/menu/editor_menu.cpp:45 +#: src/supertux/menu/editor_menu.cpp:60 msgid "Return to Editor" msgstr "Terugkeren naar bewerker" #: src/supertux/menu/particle_editor_menu.cpp:37 msgid "New Particle Config" -msgstr "" +msgstr "Nieuwe deeltjesconfiguratie" #: src/supertux/menu/particle_editor_menu.cpp:38 msgid "Save Particle Config" -msgstr "" +msgstr "Bewaar Particle-configuratie" #: src/supertux/menu/particle_editor_menu.cpp:39 msgid "Save Particle Config as..." -msgstr "" +msgstr "Bewaar Particle Config als..." #: src/supertux/menu/particle_editor_menu.cpp:40 msgid "Load Another Particle Config" -msgstr "" +msgstr "Laad een andere Particle Config" #: src/supertux/menu/particle_editor_menu.cpp:44 msgid "Open Particle Directory" -msgstr "" +msgstr "Open de deeltjesmap" #: src/supertux/menu/particle_editor_menu.cpp:45 -#: src/supertux/menu/editor_menu.cpp:88 +#: src/supertux/menu/editor_menu.cpp:118 msgid "Keyboard Shortcuts" msgstr "Sneltoetsen" #: src/supertux/menu/particle_editor_menu.cpp:49 msgid "Exit Particle Editor" -msgstr "" +msgstr "Sluit de deeltjeseditor af" -#: src/supertux/menu/particle_editor_menu.cpp:120 +#: src/supertux/menu/particle_editor_menu.cpp:121 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -2929,20 +4033,20 @@ msgid "" "Ctrl+O = Open\n" "Ctrl+Z = Undo\n" "Ctrl+Y = Redo" -msgstr "" +msgstr "Toetsenbord sneltoetsen:\n---------------------\nEsc = Menu openen\nCtrl+S = Opslaan\nCtrl+Shift+S = Opslaan als\nCtrl+O = Openen\nCtrl+Z = Ongedaan maken\nCtrl+Y = Opnieuw" -#: src/supertux/menu/particle_editor_menu.cpp:121 -#: src/supertux/menu/editor_menu.cpp:176 +#: src/supertux/menu/particle_editor_menu.cpp:122 +#: src/supertux/menu/editor_menu.cpp:206 msgid "Got it!" msgstr "Ik begrijp het!" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:86 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Worldmap Settings" msgstr "Wereldkaartinstellingen" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:86 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Level Settings" msgstr "Levelinstellingen" @@ -2950,7 +4054,7 @@ msgstr "Levelinstellingen" msgid "Author" msgstr "Auteur" -#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1166 +#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1253 msgid "Contact" msgstr "Contact" @@ -2960,7 +4064,7 @@ msgstr "Licentie" #: src/supertux/menu/editor_level_menu.cpp:37 msgid "Level Note" -msgstr "" +msgstr "Niveau opmerking" #: src/supertux/menu/editor_level_menu.cpp:38 msgid "Tileset" @@ -2982,99 +4086,129 @@ msgstr "Voer een auteursnaam in voor dit level." msgid "Please enter a license for this level." msgstr "Voer een licentie in voor dit level." -#: src/supertux/menu/editor_menu.cpp:38 +#: src/supertux/menu/editor_menu.cpp:53 msgid "tiny tile (4px)" -msgstr "" +msgstr "kleine tegel (4px)" -#: src/supertux/menu/editor_menu.cpp:39 +#: src/supertux/menu/editor_menu.cpp:54 msgid "small tile (8px)" -msgstr "" +msgstr "kleine tegel (8px)" -#: src/supertux/menu/editor_menu.cpp:40 +#: src/supertux/menu/editor_menu.cpp:55 msgid "medium tile (16px)" -msgstr "" +msgstr "middelgrote tegel (16px)" -#: src/supertux/menu/editor_menu.cpp:41 +#: src/supertux/menu/editor_menu.cpp:56 msgid "big tile (32px)" -msgstr "" +msgstr "grote tegel (32px)" -#: src/supertux/menu/editor_menu.cpp:46 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Worldmap" msgstr "Wereldkaart opslaan" -#: src/supertux/menu/editor_menu.cpp:46 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Level" msgstr "Level opslaan" -#: src/supertux/menu/editor_menu.cpp:55 +#: src/supertux/menu/editor_menu.cpp:65 msgid "Test Level" msgstr "Level testen" -#: src/supertux/menu/editor_menu.cpp:59 +#: src/supertux/menu/editor_menu.cpp:67 msgid "Test Worldmap" msgstr "Wereldkaart testen" -#: src/supertux/menu/editor_menu.cpp:62 +#: src/supertux/menu/editor_menu.cpp:72 msgid "Share Level" msgstr "Level delen" -#: src/supertux/menu/editor_menu.cpp:64 +#: src/supertux/menu/editor_menu.cpp:74 msgid "Package Add-On" -msgstr "" +msgstr "Pakket-add-on" -#: src/supertux/menu/editor_menu.cpp:66 +#: src/supertux/menu/editor_menu.cpp:76 msgid "Open Level Directory" msgstr "Levelmap openen" -#: src/supertux/menu/editor_menu.cpp:70 +#: src/supertux/menu/editor_menu.cpp:79 msgid "Edit Another Level" msgstr "Ander level bewerken" -#: src/supertux/menu/editor_menu.cpp:73 +#: src/supertux/menu/editor_menu.cpp:81 msgid "Edit Another World" msgstr "Andere wereld bewerken" -#: src/supertux/menu/editor_menu.cpp:77 +#: src/supertux/menu/editor_menu.cpp:86 +msgid "Convert all tiles in the level using converters." +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:90 msgid "Grid Size" msgstr "Rasterafmeting" -#: src/supertux/menu/editor_menu.cpp:78 +#: src/supertux/menu/editor_menu.cpp:91 msgid "Show Grid" msgstr "Raster tonen" -#: src/supertux/menu/editor_menu.cpp:79 +#: src/supertux/menu/editor_menu.cpp:92 msgid "Grid Snapping" msgstr "Rasteruitlijning" -#: src/supertux/menu/editor_menu.cpp:80 +#: src/supertux/menu/editor_menu.cpp:93 msgid "Render Background" msgstr "Achtergrond renderen" -#: src/supertux/menu/editor_menu.cpp:81 -msgid "Render Light" -msgstr "Lichtval renderen" +#: src/supertux/menu/editor_menu.cpp:94 +msgid "Render Light" +msgstr "Lichtval renderen" + +#: src/supertux/menu/editor_menu.cpp:95 +msgid "Autotile Mode" +msgstr "Autotile-modus" + +#: src/supertux/menu/editor_menu.cpp:96 +msgid "Enable Autotile Help" +msgstr "Schakel Autotile Help in" + +#: src/supertux/menu/editor_menu.cpp:97 +msgid "Enable Object Undo Tracking" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:100 +msgid "Undo Stack Size" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:102 +msgid "Autosave Frequency" +msgstr "Frequentie automatisch opslaan" + +#: src/supertux/menu/editor_menu.cpp:108 +msgid "Check for Deprecated Tiles" +msgstr "" -#: src/supertux/menu/editor_menu.cpp:82 -msgid "Autotile Mode" +#: src/supertux/menu/editor_menu.cpp:109 +msgid "Check if any deprecated tiles are currently present in the level." msgstr "" -#: src/supertux/menu/editor_menu.cpp:83 -msgid "Enable Autotile Help" +#: src/supertux/menu/editor_menu.cpp:110 +msgid "Show Deprecated Tiles" msgstr "" -#: src/supertux/menu/editor_menu.cpp:84 -msgid "Autosave Frequency" +#: src/supertux/menu/editor_menu.cpp:111 +msgid "" +"Indicate all deprecated tiles on the active tilemap, without the need of " +"hovering over." msgstr "" -#: src/supertux/menu/editor_menu.cpp:91 +#: src/supertux/menu/editor_menu.cpp:121 msgid "Exit Level Editor" msgstr "Levelbewerker afsluiten" -#: src/supertux/menu/editor_menu.cpp:140 +#: src/supertux/menu/editor_menu.cpp:170 msgid "Do you want to package this world as an add-on?" -msgstr "" +msgstr "Wil je deze wereld als add-on verpakken?" -#: src/supertux/menu/editor_menu.cpp:163 +#: src/supertux/menu/editor_menu.cpp:196 msgid "" "We encourage you to share your levels in the SuperTux forum.\n" "To find your level, click the\n" @@ -3082,7 +4216,7 @@ msgid "" "Do you want to go to the forum now?" msgstr "We moedigen aan je levels te delen op het SuperTux-forum.\nKlik op 'Uitvoermap openen' in het menu om\nje level te vinden.\nWil je nu naar het forum gaan?" -#: src/supertux/menu/editor_menu.cpp:175 +#: src/supertux/menu/editor_menu.cpp:205 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -3093,249 +4227,456 @@ msgid "" "Ctrl+Y = Redo\n" "F6 = Render Light\n" "F7 = Grid Snapping\n" -"F8 = Show Grid" -msgstr "Sneltoetsen:\n---------------------\nEsc = Menu openen\nCtrl+S = Opslaan\nCtrl+T = Testen\nCtrl+Z = Ongedaan maken\nCtrl+Y = Opnieuw uitvoeren\nF6 = Licht renderen\nF7 = Rasteruitlijning\nF8 = Raster tonen" +"F8 = Show Grid\n" +"Ctrl++ or Ctrl+Scroll Up = Zoom In\n" +"Ctrl+- or Ctrl+Scroll Down = Zoom Out\n" +"Ctrl+D = Reset Zoom\n" +"\n" +"Scripting Shortcuts:\n" +" ------------- \n" +"Home = Go to beginning of line\n" +"End = Go to end of line\n" +"Left arrow = Go back in text\n" +"Right arrow = Go forward in text\n" +"Backspace = Delete in front of text cursor\n" +"Delete = Delete behind text cursor\n" +"Ctrl+X = Cut whole line\n" +"Ctrl+C = Copy whole line\n" +"Ctrl+V = Paste\n" +"Ctrl+D = Duplicate line\n" +"Ctrl+Z = Undo\n" +"Ctrl+Y = Redo" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:232 +msgid "Deprecated tiles are still present in the level." +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:239 +msgid "Do you want to show all deprecated tiles on active tilemaps?" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:246 +msgid "There are no more deprecated tiles in the level!" +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:40 +msgid "Play with the keyboard" +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:58 +msgid "Remove Player" +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:82 +msgid "Respawn Player" +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:108 +msgid "Spawn Player" +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:136 +msgid "Controllers" +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:152 +msgid "" +"This controller does not support rumbling;\n" +"please check the controllers manually." +msgstr "" -#: src/supertux/menu/editor_delete_level_menu.cpp:53 -msgid "You cannot delete level that you are editing!" +#: src/supertux/menu/multiplayer_player_menu.cpp:157 +msgid "" +"This SuperTux build does not support rumbling\n" +"controllers; please check the controllers manually." +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:184 +msgid "" +"This joystick does not support rumbling;\n" +"please check the joysticks manually." +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:189 +msgid "" +"This SuperTux build does not support rumbling\n" +"joysticks; please check the joysticks manually." +msgstr "" + +#: src/supertux/menu/editor_delete_level_menu.cpp:59 +msgid "No levels available" +msgstr "" + +#: src/supertux/menu/editor_delete_level_menu.cpp:79 +msgid "You cannot delete the level that you are editing!" +msgstr "" + +#: src/supertux/menu/editor_delete_level_menu.cpp:82 +#, c++-format +msgid "You are about to delete level \"{}\". Are you sure?" msgstr "" -#: src/supertux/levelintro.cpp:136 -#, c-format -msgid "contributed by %s" -msgstr "bijgedragen door %s" +#: src/supertux/levelintro.cpp:137 +#, c++-format +msgid "contributed by {}" +msgstr "" -#: src/supertux/levelintro.cpp:169 +#: src/supertux/levelintro.cpp:184 msgid "Badguys killed" msgstr "Slechteriken vermoord" -#: src/supertux/levelintro.cpp:177 +#: src/supertux/levelintro.cpp:192 msgid "Best time" msgstr "Beste tijd" -#: src/supertux/levelintro.cpp:181 +#: src/supertux/levelintro.cpp:196 msgid "Level target time" msgstr "Doeltijd van het level" -#: src/supertux/tile_set.cpp:118 +#: src/supertux/tile_set.cpp:113 msgid "Others" msgstr "Anderen" -#: src/supertux/moving_object.cpp:55 +#: src/supertux/direction.cpp:67 +msgid "up" +msgstr "omhoog" + +#: src/supertux/direction.cpp:69 +msgid "down" +msgstr "omlaag" + +#: src/supertux/moving_object.cpp:63 msgid "Region" msgstr "Regio" -#: src/supertux/main.cpp:563 +#: src/supertux/main.cpp:801 +#, c++-format +msgid "New release: SuperTux v{}!" +msgstr "" + +#: src/supertux/main.cpp:804 +#, c++-format msgid "" -"The UBports version is under heavy development!\n" -"If you encounter issues, PLEASE contact the maintainter\n" -"at https://github.com/supertux/supertux/issues or on the\n" -"Open Store's Telegram at https://open-store.io/telegram" +"A new release of SuperTux (v{}) is available!\n" +"For more information, you can visit the SuperTux website.\n" +"\n" +"Do you want to visit the website now?" +msgstr "" + +#: src/supertux/main.cpp:815 +msgid "Checking for new releases..." msgstr "" #: src/control/joystick_config.cpp:85 msgid "Joystick Mappings" msgstr "Joystick-toewijzingen" -#: src/worldmap/worldmap_parser.cpp:167 +#: src/worldmap/sprite_change.cpp:91 +msgid "Stay action" +msgstr "Blijfactie" + +#: src/worldmap/sprite_change.cpp:92 +msgid "Initial stay action" +msgstr "Initiële blijfactie" + +#: src/worldmap/sprite_change.cpp:93 +msgid "Stay group" +msgstr "Blijfgroep" + +#: src/worldmap/sprite_change.cpp:94 +msgid "Change on touch" +msgstr "Wijzigen bij aanraken" + +#: src/worldmap/special_tile.hpp:36 +msgid "Special Tile" +msgstr "" + +#: src/worldmap/level_tile.hpp:36 src/worldmap/level_tile.cpp:161 +msgid "Level" +msgstr "Level" + +#: src/worldmap/teleporter.cpp:50 +msgid "Automatic" +msgstr "Automatisch" + +#: src/worldmap/teleporter.cpp:51 +msgid "Target worldmap" +msgstr "Wereldkaart-doel" + +#: src/worldmap/sprite_change.hpp:35 +msgid "Sprite Change" +msgstr "Sprite aanpassen" + +#: src/worldmap/special_tile.cpp:75 +msgid "Show message" +msgstr "Bericht tonen" + +#: src/worldmap/level_tile.cpp:84 msgid "" msgstr "" +#: src/worldmap/level_tile.cpp:162 +msgid "Outro script" +msgstr "Outro-script" + +#: src/worldmap/level_tile.cpp:163 +msgid "Auto play" +msgstr "Automatisch spelen" + +#: src/worldmap/level_tile.cpp:164 +msgid "Title colour" +msgstr "Titelkleur" + +#: src/worldmap/teleporter.hpp:34 +msgid "Teleporter" +msgstr "Teleporteerder" + +#: src/editor/tip.cpp:80 +msgid "" +"This object's current functionality is deprecated.\n" +"Updating to get its latest functionality is recommended." +msgstr "" + #: src/editor/node_marker.cpp:122 msgid "Path Node" msgstr "Padknooppunt" #: src/editor/node_marker.cpp:123 msgid "Press CTRL to move Bezier handles" -msgstr "" +msgstr "Druk op CTRL om Bezier-grepen te verplaatsen" #: src/editor/node_marker.cpp:127 msgid "Easing" -msgstr "" - -#: src/editor/object_settings.cpp:119 -msgid "up" -msgstr "omhoog" - -#: src/editor/object_settings.cpp:119 -msgid "down" -msgstr "omlaag" +msgstr "Versoepeling" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "West" msgstr "West" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "East" msgstr "Oost" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "North" msgstr "Noord" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "South" msgstr "Zuid" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "One shot" msgstr "Eén schot" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "Ping-pong" msgstr "Ping-pong" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "Circular" msgstr "Rond" -#: src/editor/object_settings.cpp:144 -msgid "Unordered" -msgstr "Ongeordend" +#: src/editor/layers_widget.cpp:331 +#, c++-format +msgid "Sector: {}" +msgstr "" -#: src/editor/object_option.cpp:85 +#: src/editor/object_option.cpp:92 msgid "true" msgstr "waar" -#: src/editor/object_option.cpp:85 +#: src/editor/object_option.cpp:92 msgid "false" msgstr "vals" -#: src/editor/object_option.cpp:271 src/editor/object_option.cpp:320 +#: src/editor/object_option.cpp:308 src/editor/object_option.cpp:356 msgid "invalid" msgstr "ongeldig" -#: src/editor/object_option.cpp:580 -msgid "Remove" -msgstr "Verwijderen" +#: src/editor/object_option.cpp:665 +msgid "Scale X" +msgstr "" -#: src/editor/object_option.cpp:597 -msgid "Test from here" +#: src/editor/object_option.cpp:666 +msgid "Scale Y" msgstr "" -#: src/editor/object_option.cpp:614 -msgid "Open Particle Editor" +#: src/editor/object_option.cpp:667 +msgid "Offset X" msgstr "" -#: src/editor/worldmap_objects.hpp:56 src/editor/worldmap_objects.cpp:127 -msgid "Level" -msgstr "Level" +#: src/editor/object_option.cpp:668 +msgid "Offset Y" +msgstr "" -#: src/editor/worldmap_objects.hpp:79 -msgid "Teleporter" -msgstr "Teleporteerder" +#: src/editor/object_option.cpp:672 src/editor/object_menu.cpp:67 +msgid "Remove" +msgstr "Verwijderen" -#: src/editor/worldmap_objects.hpp:119 -msgid "Sprite Change" -msgstr "Sprite aanpassen" +#: src/editor/object_option.cpp:689 +msgid "Test from here" +msgstr "Test vanaf hier" -#: src/editor/worldmap_objects.hpp:140 -msgid "Special tile" -msgstr "Speciale tegel" +#: src/editor/object_option.cpp:706 +msgid "Open Particle Editor" +msgstr "Open de deeltjeseditor" + +#: src/editor/particle_editor.cpp:114 +msgid "Change texture... ->" +msgstr "Verander textuur... ->" #: src/editor/particle_editor.cpp:126 msgid "Max amount" -msgstr "" +msgstr "Maximaal bedrag" #: src/editor/particle_editor.cpp:142 msgid "Spawn anywhere" -msgstr "" +msgstr "Willekeurige herstellocatie" #: src/editor/particle_editor.cpp:143 msgid "Life duration" -msgstr "" +msgstr "Levensduur" #: src/editor/particle_editor.cpp:148 msgid "Birth duration" -msgstr "" +msgstr "Geboorte duur" #: src/editor/particle_editor.cpp:153 msgid "Death duration" -msgstr "" +msgstr "Duur van overlijden" #: src/editor/particle_editor.cpp:160 msgid "Grow" -msgstr "" +msgstr "Toenemen" #: src/editor/particle_editor.cpp:175 msgid "Horizontal speed" -msgstr "" +msgstr "Horizontale snelheid" #: src/editor/particle_editor.cpp:180 msgid "Vertical speed" -msgstr "" +msgstr "Verticale snelheid" #: src/editor/particle_editor.cpp:185 msgid "Horizontal acceleration" -msgstr "" +msgstr "Horizontale versnelling" #: src/editor/particle_editor.cpp:186 msgid "Vertical acceleration" -msgstr "" +msgstr "Verticale versnelling" #: src/editor/particle_editor.cpp:187 msgid "Horizontal friction" -msgstr "" +msgstr "Horizontale wrijving" #: src/editor/particle_editor.cpp:188 msgid "Vertical friction" -msgstr "" +msgstr "Verticale wrijving" #: src/editor/particle_editor.cpp:190 msgid "Initial rotation" -msgstr "" +msgstr "Eerste rotatie" #: src/editor/particle_editor.cpp:201 msgid "Rotation friction/decceleration" -msgstr "" +msgstr "Rotatie wrijving/vertraging" #: src/editor/particle_editor.cpp:211 msgid "Destroy" -msgstr "" +msgstr "Kapot maken" #: src/editor/particle_editor.cpp:215 msgid "Stick to surface" -msgstr "" +msgstr "Blijf aan de oppervlakte" #: src/editor/particle_editor.cpp:216 msgid "Stick and stay" -msgstr "" +msgstr "Vasthouden en blijven" #: src/editor/particle_editor.cpp:217 msgid "No collision" -msgstr "" +msgstr "Geen botsing" #: src/editor/particle_editor.cpp:222 msgid "Always destroy" -msgstr "" +msgstr "Altijd vernietigen" #: src/editor/particle_editor.cpp:226 msgid "Offscreen mode" +msgstr "Offscreen-modus" + +#: src/editor/particle_editor.cpp:229 +msgid "Clear" +msgstr "" + +#: src/editor/particle_editor.cpp:245 +msgid "<- General settings" +msgstr "<- Algemene instellingen" + +#: src/editor/particle_editor.cpp:255 +msgid "Likeliness" +msgstr "" + +#: src/editor/particle_editor.cpp:266 +msgid "Color (RGBA)" +msgstr "" + +#: src/editor/particle_editor.cpp:311 +msgid "Scale (x, y)" +msgstr "" + +#: src/editor/particle_editor.cpp:332 +msgid "Hitbox scale (x, y)" +msgstr "" + +#: src/editor/particle_editor.cpp:353 +msgid "Hitbox offset relative to scale" msgstr "" -#: src/editor/particle_editor.cpp:765 +#: src/editor/particle_editor.cpp:372 +msgid "Change texture..." +msgstr "Verander textuur..." + +#: src/editor/particle_editor.cpp:766 msgid "" "This particle configuration contains unsaved changes,\n" "do you want to save?" -msgstr "" +msgstr "Deze partikelconfiguratie bevat niet-opgeslagen wijzigingen,\nwil je bewaren?" -#: src/editor/particle_editor.cpp:773 +#: src/editor/particle_editor.cpp:774 msgid "Save as" +msgstr "Opslaan als" + +#: src/editor/editor.cpp:577 +msgid "" +"This level contains deprecated tiles.\n" +"It is strongly recommended to replace all deprecated tiles\n" +"to avoid loss of compatibility in future versions." +msgstr "" + +#: src/editor/editor.cpp:579 +msgid "Tip: Turn on \"Show Deprecated Tiles\" from the level editor menu." msgstr "" -#: src/editor/editor.cpp:566 +#: src/editor/editor.cpp:626 msgid "" "Don't forget that your levels and assets\n" "aren't saved between sessions!\n" "If you want to keep your levels, download them\n" "from the \"Manage Assets\" menu." -msgstr "" +msgstr "Vergeet niet dat uw niveaus en activa\nworden niet opgeslagen tussen sessies!\nAls je je levels wilt behouden, download ze dan\nin het menu \"Activa beheren\"." -#: src/editor/editor.cpp:582 +#: src/editor/editor.cpp:661 msgid "This level contains unsaved changes, do you want to save?" msgstr "Dit level bevat niet-opgeslagen aanpassingen. Wil je het opslaan?" -#: src/editor/editor.cpp:622 +#: src/editor/editor.cpp:662 +msgid "This level may contain unsaved changes, do you want to save?" +msgstr "" + +#: src/editor/editor.cpp:797 msgid "" "Some obsolete add-ons are still active\n" "and might cause collisions with default Super Tux structure.\n" @@ -3343,103 +4684,81 @@ msgid "" "Disabling these add-ons will not delete your game progress." msgstr "Enkele verouderde uitbreidingen zijn nog in gebruik\nen kunnen storingen veroorzaken.\nJe kunt deze uitbreidingen inschakelen via het 'Uitbreidingen' in het hoofdmenu.\nHet uitschakelen van deze uitbreidingen beïnvloedt de spelvoortgang niet." -#: src/editor/editor.cpp:625 +#: src/editor/editor.cpp:800 msgid "Disable add-ons" msgstr "Uitbreidingen uitschakelen" -#: src/editor/editor.cpp:630 +#: src/editor/editor.cpp:805 msgid "Ignore (not advised)" msgstr "Negeren (niet aan te raden)" -#: src/editor/editor.cpp:634 +#: src/editor/editor.cpp:809 msgid "Leave editor" msgstr "Bewerker afsluiten" -#: src/editor/editor.cpp:853 +#: src/editor/editor.cpp:1023 msgid "" "Couldn't find a \"main\" sector.\n" "Please change the name of the sector where\n" "you'd like the player to start to \"main\"" msgstr "De \"main\"-sector kan niet worden gevonden.\nWijzig de naam van de sector waar\nTux moet starten in \"main\"" -#: src/editor/editor.cpp:857 +#: src/editor/editor.cpp:1027 msgid "" "Couldn't find a \"main\" spawnpoint.\n" " Please change the name of the spawnpoint where\n" "you'd like the player to start to \"main\"" -msgstr "Het \"main\"-opduikpunt kan niet worden gevonden.\nWijzig de naam van het opduikpunt waar\nTux moet starten in \"main\"." - -#: src/editor/worldmap_objects.cpp:128 -msgid "Outro script" -msgstr "Outro-script" - -#: src/editor/worldmap_objects.cpp:129 -msgid "Auto play" -msgstr "Automatisch spelen" - -#: src/editor/worldmap_objects.cpp:131 -msgid "Title colour" -msgstr "Titelkleur" - -#: src/editor/worldmap_objects.cpp:173 -msgid "Automatic" -msgstr "Automatisch" - -#: src/editor/worldmap_objects.cpp:175 -msgid "Target worldmap" -msgstr "Wereldkaart-doel" - -#: src/editor/worldmap_objects.cpp:238 -msgid "Stay action" -msgstr "Blijfactie" +msgstr "Het hoofd-herstelpunt kan niet worden gevonden.\nWijzig de naam van het opduikpunt waar\nTux moet starten in ‘main’." -#: src/editor/worldmap_objects.cpp:239 -msgid "Initial stay action" -msgstr "Initiële blijfactie" - -#: src/editor/worldmap_objects.cpp:240 -msgid "Stay group" -msgstr "Blijfgroep" +#: src/editor/object_menu.cpp:60 +msgid "Patch Notes" +msgstr "" -#: src/editor/worldmap_objects.cpp:241 -msgid "Change on touch" -msgstr "Wijzigen bij aanraken" +#: src/editor/object_menu.cpp:84 +msgid "" +"This will update the object to its latest functionality.\n" +"Check the \"Patch Notes\" for more information.\n" +"\n" +"Keep in mind this is very likely to break the proper behaviour of the object.\n" +"Make sure to re-check any behaviour, related to the object." +msgstr "" -#: src/editor/worldmap_objects.cpp:271 -msgid "Show message" -msgstr "Bericht tonen" +#: src/editor/object_menu.cpp:98 +#, c++-format +msgid "Patch notes for v{}:" +msgstr "" -#: src/editor/worldmap_objects.cpp:273 -msgid "Invisible" -msgstr "Onzichtbaar" +#: src/editor/overlay_widget.cpp:1062 +msgid "Cannot select deprecated tiles" +msgstr "" -#: src/editor/overlay_widget.cpp:1297 +#: src/editor/overlay_widget.cpp:1567 msgid "Autotile mode is on" -msgstr "" +msgstr "Autotile-modus is ingeschakeld" -#: src/editor/overlay_widget.cpp:1299 +#: src/editor/overlay_widget.cpp:1571 msgid "Hold Ctrl to enable autotile" -msgstr "" +msgstr "Houd Ctrl ingedrukt om autotile in te schakelen" -#: src/editor/overlay_widget.cpp:1303 +#: src/editor/overlay_widget.cpp:1578 msgid "Autotile erasing mode is on" -msgstr "" +msgstr "Autotile-wismodus is ingeschakeld" -#: src/editor/overlay_widget.cpp:1305 +#: src/editor/overlay_widget.cpp:1582 msgid "Selected tile isn't autotileable" -msgstr "" +msgstr "De geselecteerde tegel kan niet automatisch worden ingevuld" -#: src/editor/overlay_widget.cpp:1308 +#: src/editor/overlay_widget.cpp:1587 msgid "Hold Ctrl to enable autotile erasing" -msgstr "" +msgstr "Houd Ctrl ingedrukt om automatisch wissen in te schakelen" #: data//credits.stxt:25 msgid "Current SuperTux Team" msgstr "Huidige SuperTux-team" #: data//credits.stxt:30 -msgid "Programming, project lead ad interim" -msgstr "Programmering, projectleider ad interim" +msgid "Maintainer, Programming" +msgstr "" #: data//credits.stxt:35 msgid "Graphics, Level Design, Story" @@ -3447,272 +4766,282 @@ msgstr "Grafische elementen, verhaal, level-ontwerp" #: data//credits.stxt:40 msgid "Level Design, Story, Optimisation, Coordination" -msgstr "" +msgstr "Level Design, Verhaal, Optimalisatie, Coördinatie" -#: data//credits.stxt:45 data//credits.stxt:105 data//credits.stxt:191 -#: data//credits.stxt:519 +#: data//credits.stxt:45 data//credits.stxt:120 data//credits.stxt:206 +#: data//credits.stxt:538 msgid "Graphics" msgstr "Grafische elementen" -#: data//credits.stxt:50 data//credits.stxt:87 data//credits.stxt:93 +#: data//credits.stxt:50 data//credits.stxt:102 data//credits.stxt:108 msgid "Graphics, Programming, Level Design" msgstr "Grafische elementen, programmering, level-ontwerp" #: data//credits.stxt:55 msgid "Features and Programming" -msgstr "" +msgstr "Functies en programmering" #: data//credits.stxt:60 -msgid "Programming, Level Updates" -msgstr "" +msgid "Minor features and programming" +msgstr "Kleine functies en programmering" #: data//credits.stxt:65 +msgid "Programming, Level Updates" +msgstr "Programmering, niveau-updates" + +#: data//credits.stxt:70 msgid "Graphics, Programming" msgstr "Grafische elementen, programmering" -#: data//credits.stxt:70 data//credits.stxt:135 data//credits.stxt:140 -#: data//credits.stxt:145 data//credits.stxt:150 data//credits.stxt:165 -#: data//credits.stxt:170 data//credits.stxt:515 data//credits.stxt:527 +#: data//credits.stxt:75 data//credits.stxt:85 data//credits.stxt:150 +#: data//credits.stxt:155 data//credits.stxt:160 data//credits.stxt:165 +#: data//credits.stxt:180 data//credits.stxt:185 data//credits.stxt:534 +#: data//credits.stxt:546 msgid "Programming" msgstr "Programmering" -#: data//credits.stxt:76 +#: data//credits.stxt:80 data//credits.stxt:266 +msgid "Level Design" +msgstr "Level-ontwerp" + +#: data//credits.stxt:91 msgid "Original Developers" msgstr "Oorspronkelijke ontwikkelaars" -#: data//credits.stxt:81 +#: data//credits.stxt:96 msgid "Original Developer" msgstr "Originele ontwikkelaar" -#: data//credits.stxt:99 +#: data//credits.stxt:114 msgid "Music, Level Design" msgstr "Muziek, level-ontwerp" -#: data//credits.stxt:111 +#: data//credits.stxt:126 msgid "Programming, Graphics, Level Design" msgstr "Programmering, grafische elementen, level-ontwerp" -#: data//credits.stxt:117 +#: data//credits.stxt:132 msgid "Programming, Level Design" msgstr "Programmering, level-ontwerp" -#: data//credits.stxt:123 +#: data//credits.stxt:138 msgid "Graphics, Story" msgstr "Grafische elementen, verhaal" -#: data//credits.stxt:129 +#: data//credits.stxt:144 msgid "Programming, Documentation" msgstr "Programmering, documentatie" -#: data//credits.stxt:155 +#: data//credits.stxt:170 msgid "Coordination" msgstr "Coördinatie" -#: data//credits.stxt:160 +#: data//credits.stxt:175 msgid "Programming, \"Flexlay\" Level editor" msgstr "Programmering, \"Flexlay\"-level-bewerker" -#: data//credits.stxt:175 +#: data//credits.stxt:190 msgid "Windows build fixes" msgstr "Verbeteringen aan de bouw van de Windows-versie" -#: data//credits.stxt:180 +#: data//credits.stxt:195 msgid "Packaging, Nightly builds" msgstr "Pakkettenbouw, testbouwsels" -#: data//credits.stxt:185 +#: data//credits.stxt:200 msgid "Translation Guru (and many details anyone else could have done)" msgstr "Vertalingenguru (en vele details die iedereen gedaan had kunnen hebben)" -#: data//credits.stxt:251 -msgid "Level Design" -msgstr "Level-ontwerp" - -#: data//credits.stxt:431 +#: data//credits.stxt:450 msgid "Additional contributors" msgstr "Extra bijdragers" -#: data//credits.stxt:436 +#: data//credits.stxt:455 msgid "Bug fixes" msgstr "Bugs opgelost" -#: data//credits.stxt:440 +#: data//credits.stxt:459 msgid "Scripting functions, Level fixes" msgstr "Scriptfuncties, level-verbeteringen" -#: data//credits.stxt:444 +#: data//credits.stxt:463 msgid "Code quality fixes" msgstr "Verbeteringen aan de kwaliteit van de code" -#: data//credits.stxt:448 data//credits.stxt:452 data//credits.stxt:456 -#: data//credits.stxt:483 +#: data//credits.stxt:467 data//credits.stxt:471 data//credits.stxt:475 +#: data//credits.stxt:502 msgid "Various contributions" msgstr "Diverse bijdragers" -#: data//credits.stxt:460 +#: data//credits.stxt:479 msgid "Build issue fix" msgstr "Bouwselverbeteringen" -#: data//credits.stxt:464 data//credits.stxt:468 +#: data//credits.stxt:483 data//credits.stxt:487 msgid "Code contributions" msgstr "Code-bijdragers" -#: data//credits.stxt:471 +#: data//credits.stxt:490 msgid "Code contribution, AppData file" msgstr "Code-bijdraging, AppData-bestand" -#: data//credits.stxt:475 +#: data//credits.stxt:494 msgid "Bug fix" msgstr "Bug opgelost" -#: data//credits.stxt:479 +#: data//credits.stxt:498 msgid "Menu reorganization" msgstr "Menu-reorganisatie" -#: data//credits.stxt:487 +#: data//credits.stxt:506 msgid "Fixing tile bugs" msgstr "Tegelbugs opgelost" -#: data//credits.stxt:491 +#: data//credits.stxt:510 msgid "Build error fix" msgstr "Verbetering voor bouwselfout" -#: data//credits.stxt:495 +#: data//credits.stxt:514 msgid "Scripting function fix" msgstr "Scriptfunctiefout opgelost" -#: data//credits.stxt:499 +#: data//credits.stxt:518 msgid "New features and notable updates" -msgstr "" +msgstr "Nieuwe functies en opmerkelijke updates" -#: data//credits.stxt:503 +#: data//credits.stxt:522 msgid "Support for \"glbinding\" as optional OpenGL binding" msgstr "Ondersteuning voor \"glbinding\" als optionele OpenGL binding" -#: data//credits.stxt:507 +#: data//credits.stxt:526 msgid "New menu code" msgstr "Nieuwe menu code" -#: data//credits.stxt:511 +#: data//credits.stxt:530 msgid "Big Tux Walking Sprites improvements" msgstr "Grote verbeteringen tijdens lopen met Tux" -#: data//credits.stxt:523 data//credits.stxt:531 +#: data//credits.stxt:542 data//credits.stxt:550 msgid "Contrib Programming" msgstr "Contrib Programmering" -#: data//credits.stxt:535 +#: data//credits.stxt:554 msgid "Programming, Previous Maintainer" msgstr "Programeer werk van de oude beheerder" -#: data//credits.stxt:539 +#: data//credits.stxt:558 msgid "Various Contributions" msgstr "Diverse bijdragen" -#: data//credits.stxt:543 -msgid "Minor features and programming" -msgstr "" - -#: data//credits.stxt:547 data//credits.stxt:551 data//credits.stxt:555 -#: data//credits.stxt:559 data//credits.stxt:563 data//credits.stxt:567 -#: data//credits.stxt:571 data//credits.stxt:575 data//credits.stxt:579 -#: data//credits.stxt:583 data//credits.stxt:587 data//credits.stxt:591 +#: data//credits.stxt:562 data//credits.stxt:566 data//credits.stxt:570 +#: data//credits.stxt:574 data//credits.stxt:578 data//credits.stxt:582 +#: data//credits.stxt:586 data//credits.stxt:590 data//credits.stxt:594 +#: data//credits.stxt:598 data//credits.stxt:602 data//credits.stxt:606 +#: data//credits.stxt:610 data//credits.stxt:614 data//credits.stxt:618 +#: data//credits.stxt:622 data//credits.stxt:626 data//credits.stxt:630 +#: data//credits.stxt:634 data//credits.stxt:638 data//credits.stxt:642 +#: data//credits.stxt:646 data//credits.stxt:650 data//credits.stxt:654 +#: data//credits.stxt:658 data//credits.stxt:662 msgid "Contributions" msgstr "Bijdragers" -#: data//credits.stxt:597 +#: data//credits.stxt:668 msgid "Localization" msgstr "Localisatie" -#: data//credits.stxt:1144 +#: data//credits.stxt:1231 msgid " Special Thanks to" msgstr " Dank in het bijzonder aan" -#: data//credits.stxt:1149 +#: data//credits.stxt:1236 msgid "Creator of Tux, the Linux penguin" msgstr "Bedenker van Tux, de Linux pinguïn" -#: data//credits.stxt:1153 +#: data//credits.stxt:1240 msgid "SDL, OpenAL and OpenGL" msgstr "SDL, OpenAL en OpenGL" -#: data//credits.stxt:1154 +#: data//credits.stxt:1241 msgid "" "For making such a great gaming experience\n" " possible on Linux" msgstr "Voor het mogelijk maken van zo'n geweldige game-ervaring op Linux" -#: data//credits.stxt:1159 +#: data//credits.stxt:1246 msgid "and you, the player" msgstr "en jij, de speler" -#: data//credits.stxt:1160 +#: data//credits.stxt:1247 msgid "for giving this game a chance and playing it" msgstr "voor het proberen en spelen van dit spel" -#: data//credits.stxt:1171 +#: data//credits.stxt:1258 msgid "Visit our webpage at" msgstr "Bezoek onze webpagina op" -#: data//credits.stxt:1180 +#: data//credits.stxt:1267 msgid "Or visit us directly at IRC:" msgstr "Of bezoek ons direct op IRC:" -#: data//credits.stxt:1184 +#: data//credits.stxt:1271 msgid "#supertux at web.libera.chat" -msgstr "" +msgstr "#supertux op web.libera.chat" -#: data//credits.stxt:1189 +#: data//credits.stxt:1276 msgid "Or at our Forum:" msgstr "Of bij ons forum:" -#: data//credits.stxt:1198 +#: data//credits.stxt:1285 msgid "Comments, ideas and suggestions" msgstr "Commentaar, ideeen en suggesties" -#: data//credits.stxt:1202 +#: data//credits.stxt:1289 msgid "go to our mailing list" msgstr "ga naar onze mailinglijst" #. l10n: typo contact -#: data//credits.stxt:1212 +#: data//credits.stxt:1299 msgid "Typographical errors can be" msgstr "Spelling- en grammaticafouten kunnen worden" #. l10n: typo contact -#: data//credits.stxt:1217 +#: data//credits.stxt:1304 msgid "reported to" msgstr "gerapporteerd aan" #. l10n: typo contact, see -#: data//credits.stxt:1222 +#: data//credits.stxt:1309 msgid "supertux-devel@lists.lethargik.org" msgstr "supertux-devel@lists.lethargik.org" -#: data//credits.stxt:1229 +#: data//credits.stxt:1316 msgid "Want to help…" msgstr "Wil je ook helpen..." -#: data//credits.stxt:1234 +#: data//credits.stxt:1321 msgid "…with localization?" msgstr "...met vertalen?" -#: data//credits.stxt:1244 +#: data//credits.stxt:1331 msgid "…with something else?" msgstr "...met iets anders?" -#: data//credits.stxt:1255 +#: data//credits.stxt:1342 msgid "Thank you for" msgstr "Dank je wel voor het" -#: data//credits.stxt:1259 +#: data//credits.stxt:1346 msgid "playing" msgstr "spelen" -#: data//credits.stxt:1269 +#: data//credits.stxt:1356 msgid "Penny awaits you in warmer temperatures!" msgstr "Penny wacht op je in een warmer klimaat!" +#: data//images/engine/editor/objects.stoi:4 +msgid "Enemies" +msgstr "Vijanden" + #: data//images/engine/editor/objects.stoi:162 msgid "Bosses" msgstr "Eindbazen" @@ -3721,15 +5050,10 @@ msgstr "Eindbazen" msgid "Projectiles" msgstr "Projectielen" -#: data//images/engine/editor/objects.stoi:187 +#: data//images/engine/editor/objects.stoi:184 msgid "Environment" msgstr "Omgeving" -#: data//images/ice_world.strf:10 data//images/tiles.strf:28 -#: data//images/worldmap.strf:41 -msgid "Snow" -msgstr "Sneeuw" - #: data//images/ice_world.strf:80 msgid "Ice Cave & Crystal" msgstr "IJsgrot en -kristal" @@ -3738,26 +5062,21 @@ msgstr "IJsgrot en -kristal" msgid "Embellishments" msgstr "Versieringen" -#: data//images/ice_world.strf:211 data//images/tiles.strf:386 -#: data//images/worldmap.strf:67 -msgid "Forest" -msgstr "Bos" - #: data//images/ice_world.strf:320 msgid "Underground Forest" -msgstr "" +msgstr "Ondergronds bos" #: data//images/ice_world.strf:375 msgid "Trees & Bushes" -msgstr "" +msgstr "Bomen & Struiken" #: data//images/ice_world.strf:406 msgid "Seasonal" -msgstr "" +msgstr "Seizoensgebonden" #: data//images/ice_world.strf:496 msgid "Structure" -msgstr "" +msgstr "Structuur" #: data//images/ice_world.strf:557 msgid "Pathing" @@ -3767,56 +5086,60 @@ msgstr "Bepading" msgid "Water" msgstr "Water" -#: data//images/tiles.strf:176 +#: data//images/tiles.strf:252 msgid "Snow Background" msgstr "Sneeuwachtergrond" -#: data//images/tiles.strf:231 -msgid "Snow Mountain" -msgstr "Sneeuwberg" - -#: data//images/tiles.strf:305 +#: data//images/tiles.strf:300 msgid "Crystal" msgstr "Kristal" -#: data//images/tiles.strf:532 +#: data//images/tiles.strf:539 msgid "Forest Background" msgstr "Bosachtergrond" -#: data//images/tiles.strf:663 +#: data//images/tiles.strf:690 +msgid "Corrupted Forest" +msgstr "" + +#: data//images/tiles.strf:868 +msgid "Corrupted Background" +msgstr "" + +#: data//images/tiles.strf:991 msgid "Block + Bonus" msgstr "Blok + bonus" -#: data//images/tiles.strf:715 +#: data//images/tiles.strf:1069 msgid "Pole + Signs" msgstr "Paal + bebording" -#: data//images/tiles.strf:760 +#: data//images/tiles.strf:1113 msgid "Liquid" msgstr "Vloeibaar" -#: data//images/tiles.strf:793 +#: data//images/tiles.strf:1131 msgid "Castle" msgstr "Kasteel" -#: data//images/tiles.strf:930 data//images/worldmap.strf:199 +#: data//images/tiles.strf:1231 data//images/worldmap.strf:199 msgid "Halloween" msgstr "Halloween" -#: data//images/tiles.strf:958 +#: data//images/tiles.strf:1272 msgid "Industrial" msgstr "Industrieel" -#: data//images/tiles.strf:973 +#: data//images/tiles.strf:1287 msgid "Unisolid + Lightmap" msgstr "Vast + lichtkaart" -#: data//images/tiles.strf:1000 +#: data//images/tiles.strf:1314 msgid "Miscellaneous" msgstr "Diversen" -#: data//images/tiles.strf:1043 -msgid "Retro Snow" +#: data//images/tiles.strf:1342 +msgid "Retro Tiles" msgstr "" #: data//images/worldmap.strf:24 @@ -3830,3 +5153,19 @@ msgstr "Kasteelpaden" #: data//images/worldmap.strf:135 msgid "Darker Forest" msgstr "Donker bos" + +#: data//images/converters/data.stcd:3 +msgid "Nightly Tiles" +msgstr "" + +#: data//images/converters/data.stcd:5 +msgid "For levels, created in previous Nightly builds." +msgstr "" + +#: data//images/converters/data.stcd:8 +msgid "Pre-0.6.3 Crystal Tiles" +msgstr "" + +#: data//images/converters/data.stcd:10 +msgid "For levels, created in pre-0.6.3 versions, which use crystal tiles." +msgstr "" diff --git a/data/locale/nn.po b/data/locale/nn.po index b623f47a72d..5bd827e7178 100644 --- a/data/locale/nn.po +++ b/data/locale/nn.po @@ -1766,8 +1766,8 @@ msgstr "Trykk escape for å hoppa over" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Bruk: %s [VAL] [BRETTFIL]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Bruk: {} [VAL] [BRETTFIL]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2490,13 +2490,13 @@ msgstr "Endra storleik" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[Profil %s]" +msgid "[Profile {}]" +msgstr "[Profil {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "Profil %s" +msgid "Profile {}" +msgstr "Profil {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2544,8 +2544,8 @@ msgstr "Ukjend" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s «%s» av «%s»" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} «{}» av «{}»" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2557,13 +2557,13 @@ msgstr "Fann ingen tilleggskart" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "Installer %s *NY*" +msgid "Install {} *NEW*" +msgstr "Installer {} *NY*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Installer %s" +msgid "Install {}" +msgstr "Installer {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2583,8 +2583,8 @@ msgstr "Lastar ned indeks over tilleggskart" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "Lastar ned %s" +msgid "Downloading {}" +msgstr "Lastar ned {}" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3097,8 +3097,8 @@ msgstr "Du kan ikkje sletta nivået dersom du redigerer den!" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "Laga av %s" +msgid "contributed by {}" +msgstr "Laga av {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/pl.po b/data/locale/pl.po index 0d6f01aa614..71f18fb10ac 100644 --- a/data/locale/pl.po +++ b/data/locale/pl.po @@ -3,154 +3,200 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: +# Alina Gobarov, 2024 # Arkadiusz Chojnicki , 2018-2019 # Benjamin Leduc , 2015 # Krzysztof Szeląg, 2016,2018 +# Krzysztof Szeląg, 2016,2018-2019 # Krzysztof Szeląg, 2019 # mkkot , 2013 # Marcin Kralka , 2014 # Marcin S , 2016,2019 -# mkkot , 2013-2014 +# mkkot , 2013-2015 # mkkot , 2015 # Paweł Talar , 2013 # Paweł Talar , 2013 # Rob PlayZ, 2021 +# Alina Gobarov, 2021-2022 # Seba D. , 2020 # Simon Kornowski , 2013 # Simon Kornowski , 2013 -# Zwatotem , 2019-2021 +# Tomasz Dądela, 2022 +# Grzegorz Przybylski , 2019-2021 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" -"PO-Revision-Date: 2021-12-21 07:51+0000\n" -"Last-Translator: Rob PlayZ\n" -"Language-Team: Polish (http://www.transifex.com/arctic-games/supertux/language/pl/)\n" +"POT-Creation-Date: 2024-05-30 16:19+0200\n" +"PO-Revision-Date: 2013-08-10 22:56+0000\n" +"Last-Translator: Alina Gobarov, 2024\n" +"Language-Team: Polish (http://app.transifex.com/arctic-games/supertux/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: src/trigger/secretarea_trigger.cpp:53 src/trigger/secretarea_trigger.cpp:61 +#: src/trigger/secretarea_trigger.cpp:47 msgid "You found a secret area!" msgstr "Znalazłeś sekretne miejsce!" -#: src/trigger/secretarea_trigger.cpp:77 src/supertux/game_object.cpp:90 -#: src/supertux/menu/editor_sector_menu.cpp:34 -#: src/supertux/menu/editor_levelset_menu.cpp:58 +#: src/trigger/secretarea_trigger.cpp:55 src/supertux/game_object.cpp:115 +#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_levelset_menu.cpp:52 #: src/supertux/menu/editor_new_levelset_menu.cpp:34 +#: src/supertux/menu/profile_name_menu.cpp:39 #: src/supertux/menu/editor_level_menu.cpp:33 msgid "Name" msgstr "Nazwa" -#: src/trigger/secretarea_trigger.cpp:78 +#: src/trigger/secretarea_trigger.cpp:56 msgid "Fade tilemap" msgstr "Zanikaj warstwę bloków" -#: src/trigger/secretarea_trigger.cpp:79 src/trigger/climbable.cpp:81 -#: src/object/infoblock.cpp:57 src/editor/worldmap_objects.cpp:172 -#: src/editor/worldmap_objects.cpp:270 +#: src/trigger/secretarea_trigger.cpp:57 src/trigger/climbable.cpp:59 +#: src/object/infoblock.cpp:76 src/worldmap/teleporter.cpp:49 +#: src/worldmap/special_tile.cpp:74 msgid "Message" msgstr "Wiadomość" -#: src/trigger/secretarea_trigger.cpp:80 src/trigger/scripttrigger.cpp:75 -#: src/trigger/door.cpp:73 src/object/ispy.cpp:67 -#: src/object/bonus_block.cpp:207 src/object/bonus_block.cpp:211 -#: src/object/pushbutton.cpp:51 src/object/powerup.cpp:190 -#: src/editor/worldmap_objects.cpp:272 +#: src/trigger/secretarea_trigger.cpp:58 src/trigger/scripttrigger.cpp:51 +#: src/trigger/door.cpp:79 src/object/ispy.cpp:53 +#: src/object/bonus_block.cpp:264 src/object/bonus_block.cpp:268 +#: src/object/pushbutton.cpp:62 src/object/powerup.cpp:301 +#: src/worldmap/special_tile.cpp:76 msgid "Script" msgstr "Skrypt" -#: src/trigger/scripttrigger.cpp:76 src/object/pushbutton.hpp:31 +#: src/trigger/scripttrigger.cpp:52 src/object/pushbutton.hpp:32 msgid "Button" msgstr "Przycisk" -#: src/trigger/scripttrigger.cpp:77 +#: src/trigger/scripttrigger.cpp:53 msgid "Oneshot" msgstr "Jednokrotnie" -#: src/trigger/sequence_trigger.hpp:33 +#: src/trigger/sequence_trigger.hpp:31 msgid "Sequence Trigger" msgstr "Wyzwalacz sekwencji" -#: src/trigger/door.cpp:74 src/badguy/willowisp.cpp:320 -#: src/supertux/menu/editor_sector_menu.cpp:32 -#: src/editor/layers_widget.cpp:342 -#: data//images/engine/editor/objects.stoi:321 +#: src/trigger/text_area.cpp:141 +msgid "Once" +msgstr "" + +#: src/trigger/text_area.cpp:142 +msgid "Text change time" +msgstr "" + +#: src/trigger/text_area.cpp:143 +msgid "Fade time" +msgstr "Czas zanikania" + +#: src/trigger/text_area.cpp:144 src/object/textscroller.cpp:353 +msgid "Anchor" +msgstr "Zakotwiczenie" + +#: src/trigger/text_area.cpp:148 +msgid "Anchor offset X" +msgstr "" + +#: src/trigger/text_area.cpp:149 +msgid "Anchor offset Y" +msgstr "" + +#: src/trigger/text_area.cpp:150 +msgid "Texts" +msgstr "Teksty" + +#: src/trigger/door.cpp:80 src/badguy/willowisp.cpp:311 +#: src/worldmap/teleporter.cpp:47 data//images/engine/editor/objects.stoi:342 msgid "Sector" msgstr "Sektor" -#: src/trigger/door.cpp:75 src/editor/worldmap_objects.hpp:101 +#: src/trigger/door.cpp:81 src/worldmap/spawn_point.hpp:58 msgid "Spawn point" msgstr "Punkt odrodzenia" -#: src/trigger/switch.cpp:61 src/object/block.cpp:224 src/object/torch.cpp:102 -#: src/object/moving_sprite.cpp:156 src/object/pneumatic_platform.cpp:146 -msgid "Sprite" -msgstr "Sprite" +#: src/trigger/door.cpp:82 +msgid "Locked?" +msgstr "Zablokowane?" + +#: src/trigger/door.cpp:83 +msgid "Lock Color" +msgstr "Kolor zamka" + +#: src/trigger/switch.cpp:62 src/object/ispy.cpp:54 src/object/bumper.cpp:53 +#: src/object/spotlight.cpp:106 src/object/pushbutton.cpp:61 +#: src/object/gradient.cpp:103 src/object/conveyor_belt.cpp:60 +#: src/badguy/badguy.cpp:1063 src/worldmap/spawn_point.cpp:79 +#: src/worldmap/special_tile.cpp:78 +msgid "Direction" +msgstr "Kierunek" -#: src/trigger/switch.cpp:62 +#: src/trigger/switch.cpp:65 msgid "Turn on script" msgstr "Skrypt przy włączeniu" -#: src/trigger/switch.cpp:63 +#: src/trigger/switch.cpp:66 msgid "Turn off script" msgstr "Skrypt przy wyłączeniu" -#: src/trigger/scripttrigger.hpp:32 +#: src/trigger/scripttrigger.hpp:29 msgid "Script Trigger" msgstr "Wyzwalacz skryptu" -#: src/trigger/sequence_trigger.cpp:75 +#: src/trigger/sequence_trigger.cpp:48 msgid "Sequence" msgstr "Sekwencja" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "end sequence" msgstr "Końcowa sekwencja" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "stop Tux" -msgstr "zatrzymaj Tuksa" +msgstr "zatrzymaj Tuxa" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "fireworks" msgstr "Fajerwerki" -#: src/trigger/sequence_trigger.cpp:80 +#: src/trigger/sequence_trigger.cpp:53 msgid "New worldmap spawnpoint" msgstr "Nowy punkt odrodzenia na mapie" -#: src/trigger/sequence_trigger.cpp:81 +#: src/trigger/sequence_trigger.cpp:54 msgid "Worldmap fade tilemap" msgstr "Zanikaj warstwę bloków mapy świata" -#: src/trigger/sequence_trigger.cpp:82 +#: src/trigger/sequence_trigger.cpp:55 #: src/object/custom_particle_system.cpp:430 #: src/object/custom_particle_system.cpp:465 msgid "Fade" msgstr "Przejście" -#: src/trigger/sequence_trigger.cpp:83 src/editor/particle_editor.cpp:161 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:161 msgid "Fade in" -msgstr "Pojawniane się" +msgstr "Pojawianie się" -#: src/trigger/sequence_trigger.cpp:83 src/editor/particle_editor.cpp:167 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:167 #: src/editor/particle_editor.cpp:212 msgid "Fade out" msgstr "Zanikanie" -#: src/trigger/climbable.hpp:37 +#: src/trigger/climbable.hpp:46 msgid "Climbable" msgstr "Możliwe do wspinania się" -#: src/trigger/door.hpp:34 +#: src/trigger/text_area.hpp:47 +msgid "Text Area" +msgstr "Obszar tekstowy" + +#: src/trigger/door.hpp:31 msgid "Door" msgstr "Drzwi" -#: src/trigger/switch.hpp:33 +#: src/trigger/switch.hpp:30 msgid "Switch" msgstr "Przełącznik" @@ -158,118 +204,194 @@ msgstr "Przełącznik" msgid "Secret Area" msgstr "Sekretny obszar" -#: src/object/thunderstorm.hpp:40 +#: src/math/anchor_point.cpp:33 +msgid "Top Left" +msgstr "Górny lewy" + +#: src/math/anchor_point.cpp:34 +msgid "Top" +msgstr "Góra" + +#: src/math/anchor_point.cpp:35 +msgid "Top Right" +msgstr "Górny prawy" + +#: src/math/anchor_point.cpp:36 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:38 +#: src/supertux/menu/joystick_menu.cpp:73 +msgid "Left" +msgstr "W lewo" + +#: src/math/anchor_point.cpp:37 +msgid "Middle" +msgstr "Środek" + +#: src/math/anchor_point.cpp:38 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:39 +#: src/supertux/menu/joystick_menu.cpp:74 +msgid "Right" +msgstr "W prawo" + +#: src/math/anchor_point.cpp:39 +msgid "Bottom Left" +msgstr "Dolny lewy" + +#: src/math/anchor_point.cpp:40 +msgid "Bottom" +msgstr "Dół" + +#: src/math/anchor_point.cpp:41 +msgid "Bottom Right" +msgstr "Dolny prawy" + +#: src/object/thunderstorm.hpp:44 msgid "Thunderstorm" msgstr "Burza" -#: src/object/cloud_particle_system.cpp:79 +#: src/object/cloud_particle_system.cpp:77 #: src/object/rain_particle_system.cpp:100 msgid "Intensity" msgstr "Intensywność" -#: src/object/custom_particle_system.hpp:45 +#: src/object/custom_particle_system.hpp:46 msgid "Custom Particles" -msgstr "Własne cząsteczki" - -#: src/object/ispy.cpp:66 -msgid "Facing Down" -msgstr "Skierowany w dół" - -#: src/object/ispy.cpp:68 src/object/spotlight.cpp:103 -#: src/object/gradient.cpp:137 src/badguy/willowisp.cpp:319 -#: src/badguy/badguy.cpp:848 src/editor/worldmap_objects.cpp:207 -#: src/editor/worldmap_objects.cpp:274 -msgid "Direction" -msgstr "Kierunek" +msgstr "Niestandardowe cząsteczki" -#: src/object/particle_zone.hpp:39 +#: src/object/particle_zone.hpp:41 msgid "Particle zone" -msgstr "Obszar cząstki" +msgstr "Obszar cząsteczek" -#: src/object/path_gameobject.hpp:44 src/object/coin.cpp:301 -#: src/object/camera.cpp:224 src/object/platform.cpp:73 -#: src/object/path_gameobject.cpp:173 src/object/tilemap.cpp:246 -#: src/gui/menu_paths.cpp:52 src/badguy/willowisp.cpp:326 +#: src/object/path_gameobject.hpp:45 src/object/coin.cpp:324 +#: src/object/camera.cpp:168 src/object/platform.cpp:76 +#: src/object/path_gameobject.cpp:175 src/object/tilemap.cpp:284 +#: src/badguy/willowisp.cpp:317 msgid "Path" msgstr "Ścieżka" -#: src/object/decal.cpp:49 src/object/scripted_object.cpp:67 -#: src/object/particlesystem.cpp:65 src/object/background.cpp:183 -#: src/object/thunderstorm.cpp:68 src/object/tilemap.cpp:239 -#: src/object/gradient.cpp:135 -msgid "Z-pos" -msgstr "Pozycja w osi Z" - -#: src/object/decal.cpp:50 src/object/scripted_object.cpp:70 -#: src/object/tilemap.cpp:228 +#: src/object/decal.cpp:48 src/object/scripted_object.cpp:70 +#: src/object/tilemap.cpp:266 msgid "Solid" msgstr "Stały" -#: src/object/decal.cpp:51 src/supertux/menu/keyboard_menu.cpp:37 -#: src/supertux/menu/joystick_menu.cpp:74 +#: src/object/decal.cpp:49 src/supertux/menu/keyboard_menu.cpp:41 +#: src/supertux/menu/joystick_menu.cpp:76 msgid "Action" msgstr "Akcja" -#: src/object/weak_block.hpp:35 +#: src/object/weak_block.hpp:36 msgid "Weak Tile" msgstr "Krucha płytka" -#: src/object/bumper.cpp:46 -msgid "Facing Left" -msgstr "Skierowany w lewo" - -#: src/object/gradient.hpp:42 +#: src/object/gradient.hpp:43 msgid "Gradient" msgstr "Gradient" -#: src/object/tilemap.hpp:57 +#: src/object/tilemap.hpp:58 msgid "Tilemap" msgstr "Warstwa bloków" -#: src/object/circleplatform.hpp:32 +#: src/object/sound_object.cpp:69 src/object/ambient_sound.cpp:85 +#: src/object/sound_object.hpp:42 src/supertux/menu/options_menu.cpp:128 +#: data//credits.stxt:367 +msgid "Sound" +msgstr "Dźwięk" + +#: src/object/sound_object.cpp:70 src/object/ambient_sound.cpp:87 +msgid "Volume" +msgstr "Głośność" + +#: src/object/conveyor_belt.hpp:39 +msgid "Conveyor Belt" +msgstr "Przenośnik Taśmowy" + +#: src/object/unstable_tile.cpp:70 src/object/weak_block.cpp:97 +#: src/badguy/flame.cpp:86 +msgid "Ice" +msgstr "Lód" + +#: src/object/unstable_tile.cpp:71 src/object/brick.hpp:34 +msgid "Brick" +msgstr "Cegła" + +#: src/object/unstable_tile.cpp:72 +msgid "Delayed" +msgstr "Opóźniona" + +#: src/object/circleplatform.hpp:35 msgid "Circular Platform" msgstr "Platforma krążąca" -#: src/object/brick.cpp:133 +#: src/object/brick.cpp:59 src/object/coin.cpp:69 +#: src/object/invisible_block.cpp:37 src/object/background.cpp:200 +#: src/object/tilemap.cpp:279 src/object/gradient.cpp:109 +#: src/badguy/viciousivy.cpp:44 src/badguy/snail.cpp:69 +#: src/badguy/smartball.cpp:34 src/badguy/bouncing_snowball.cpp:81 +#: src/badguy/kamikazesnowball.cpp:117 src/badguy/walkingleaf.cpp:35 +#: src/badguy/mrbomb.cpp:47 src/badguy/igel.cpp:188 src/badguy/snowball.cpp:40 +#: src/badguy/mrtree.cpp:50 src/badguy/mriceblock.cpp:62 +msgid "Normal" +msgstr "Normalny" + +#: src/object/brick.cpp:60 src/object/bonus_block.cpp:175 +#: src/object/coin.cpp:70 src/object/invisible_block.cpp:38 +msgid "Retro" +msgstr "Retro" + +#: src/object/brick.cpp:166 msgid "Breakable" msgstr "Możliwe do zniszczenia" -#: src/object/trampoline.cpp:136 src/object/rusty_trampoline.cpp:66 +#: src/object/trampoline.cpp:66 src/object/rusty_trampoline.cpp:66 msgid "Portable" msgstr "Przenośny" -#: src/object/spotlight.cpp:100 src/object/rain_particle_system.cpp:101 +#: src/object/trampoline.cpp:67 +msgid "Stationary" +msgstr "Stacjonarny" + +#: src/object/key.hpp:38 +msgid "Key" +msgstr "Klucz" + +#: src/object/spotlight.cpp:102 src/object/particlesystem.cpp:64 +#: src/object/particle_zone.cpp:50 src/badguy/darttrap.cpp:149 +#: src/supertux/menu/addon_preview_menu.cpp:189 +msgid "Enabled" +msgstr "Włączony" + +#: src/object/spotlight.cpp:103 src/object/rain_particle_system.cpp:101 msgid "Angle" msgstr "Kąt" -#: src/object/spotlight.cpp:101 src/object/magicblock.cpp:94 -#: src/object/candle.cpp:77 src/object/torch.cpp:104 -#: src/object/rublight.cpp:54 src/object/lantern.cpp:62 -#: src/object/ambient_light.cpp:131 src/badguy/willowisp.cpp:328 -#: src/badguy/walking_candle.cpp:82 +#: src/object/spotlight.cpp:104 src/object/magicblock.cpp:95 +#: src/object/candle.cpp:75 src/object/torch.cpp:96 src/object/rublight.cpp:55 +#: src/object/lantern.cpp:62 src/object/ambient_light.cpp:122 +#: src/object/key.cpp:192 src/badguy/willowisp.cpp:319 +#: src/badguy/walking_candle.cpp:91 msgid "Color" msgstr "Kolor" -#: src/object/spotlight.cpp:102 src/object/textscroller.cpp:350 -#: src/object/rain_particle_system.cpp:102 src/object/circleplatform.cpp:55 -#: src/badguy/flame.cpp:59 src/editor/node_marker.cpp:125 +#: src/object/spotlight.cpp:105 src/object/textscroller.cpp:350 +#: src/object/rain_particle_system.cpp:102 src/object/conveyor_belt.cpp:61 +#: src/object/circleplatform.cpp:58 src/badguy/flame.cpp:110 +#: src/editor/node_marker.cpp:125 msgid "Speed" msgstr "Szybkość" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Clockwise" msgstr "Zgodnie z ruchem wskazówek zegara" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Counter-clockwise" msgstr "Przeciwnie do ruchu wskazówek zegara" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Stopped" msgstr "Zatrzymany" -#: src/object/spotlight.cpp:107 src/object/candle.cpp:78 -#: src/object/torch.cpp:103 +#: src/object/spotlight.cpp:110 src/object/lit_object.cpp:69 +#: src/object/candle.cpp:76 src/object/torch.cpp:95 msgid "Layer" msgstr "Warstwa" @@ -281,125 +403,171 @@ msgstr "Fizyka aktywna" msgid "Visible" msgstr "Widzialne" -#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:322 +#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:313 msgid "Hit script" msgstr "Skrypt zderzenia" -#: src/object/custom_particle_system_file.cpp:50 +#: src/object/custom_particle_system_file.cpp:53 #: src/object/textscroller.cpp:348 src/object/music_object.cpp:109 #: src/supertux/menu/particle_editor_open.cpp:38 msgid "File" msgstr "Plik" -#: src/object/bonus_block.cpp:208 +#: src/object/bonus_block.cpp:154 +msgid "Only one custom object is allowed inside bonus blocks." +msgstr "W blokach bonusowych dozwolony jest tylko jeden obiekt niestandardowy." + +#: src/object/bonus_block.cpp:172 +msgid "Blue" +msgstr "Niebieski" + +#: src/object/bonus_block.cpp:173 +msgid "Orange" +msgstr "Pomarańczowy" + +#: src/object/bonus_block.cpp:174 +msgid "Purple" +msgstr "Fioletowy" + +#: src/object/bonus_block.cpp:265 src/supertux/menu/cheat_apply_menu.cpp:54 msgid "Count" msgstr "Ilość" -#: src/object/bonus_block.cpp:209 +#: src/object/bonus_block.cpp:266 msgid "Content" msgstr "Zawartość" -#: src/object/bonus_block.cpp:210 src/object/coin.hpp:43 +#: src/object/bonus_block.cpp:267 src/object/coin.hpp:44 msgid "Coin" msgstr "Moneta" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (fire flower)" msgstr "Wzrost (ognisty kwiat)" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (ice flower)" msgstr "Wzrost (lodowy kwiat)" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (air flower)" msgstr "Wzrost (powietrzny kwiat)" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Growth (earth flower)" msgstr "Wzrost (ziemny kwiat)" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 +msgid "Growth (retro)" +msgstr "" + +#: src/object/bonus_block.cpp:268 src/object/powerup.cpp:66 msgid "Star" msgstr "Gwiazda" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 +msgid "Star (retro)" +msgstr "Gwiazda (retro)" + +#: src/object/bonus_block.cpp:268 msgid "Tux doll" -msgstr "Avatar Tuksa" +msgstr "Awatar Tuxa" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Custom" msgstr "Własny" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Light" msgstr "Światło" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Light (On)" msgstr "Światło (Włączone)" -#: src/object/bonus_block.cpp:212 src/object/trampoline.hpp:35 +#: src/object/bonus_block.cpp:269 src/object/trampoline.hpp:37 msgid "Trampoline" msgstr "Trampolina" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 +msgid "Portable trampoline" +msgstr "Przenośna trampolina" + +#: src/object/bonus_block.cpp:269 msgid "Coin rain" msgstr "Deszcz monet" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 msgid "Coin explosion" msgstr "Eksplozja monet" -#: src/object/bonus_block.cpp:216 +#: src/object/bonus_block.cpp:269 src/object/rock.hpp:43 +msgid "Rock" +msgstr "Skała" + +#: src/object/bonus_block.cpp:269 +msgid "Potion" +msgstr "Mikstura" + +#: src/object/bonus_block.cpp:275 msgid "Custom Content" msgstr "Niestandardowa zawartość" -#: src/object/pneumatic_platform.hpp:62 +#: src/object/bonus_block.cpp:278 +msgid "Coin sprite" +msgstr "Sprite monety" + +#: src/object/pneumatic_platform.hpp:65 msgid "Pneumatic Platform" msgstr "Platforma pneumatyczna" -#: src/object/coin.cpp:303 src/object/tilemap.cpp:249 +#: src/object/coin.cpp:326 src/object/tilemap.cpp:287 msgid "Following path" msgstr "Wzdłuż ścieżki" -#: src/object/coin.cpp:306 src/object/camera.cpp:227 -#: src/object/platform.cpp:74 src/object/tilemap.cpp:252 +#: src/object/coin.cpp:329 src/object/camera.cpp:171 +#: src/object/platform.cpp:77 src/object/tilemap.cpp:290 msgid "Path Mode" msgstr "Rodzaj ścieżki" -#: src/object/coin.cpp:307 src/object/camera.cpp:228 -#: src/object/platform.cpp:75 src/object/tilemap.cpp:253 -#: src/badguy/willowisp.cpp:331 +#: src/object/coin.cpp:330 src/object/camera.cpp:172 +#: src/object/platform.cpp:78 src/object/tilemap.cpp:291 +#: src/badguy/willowisp.cpp:322 msgid "Adapt Speed" msgstr "Dostosuj prędkość" -#: src/object/coin.cpp:308 src/object/platform.cpp:77 -#: src/object/tilemap.cpp:247 src/badguy/willowisp.cpp:327 +#: src/object/coin.cpp:331 src/object/platform.cpp:81 +#: src/object/tilemap.cpp:285 src/badguy/willowisp.cpp:318 msgid "Starting Node" msgstr "Punkt początkowy" -#: src/object/coin.cpp:311 src/object/coin.cpp:339 +#: src/object/coin.cpp:332 src/object/camera.cpp:173 +#: src/object/platform.cpp:82 src/object/tilemap.cpp:293 +#: src/badguy/willowisp.cpp:323 +msgid "Handle" +msgstr "" + +#: src/object/coin.cpp:335 src/object/coin.cpp:371 msgid "Collect script" msgstr "Skrypt zebrania" -#: src/object/ghost_particle_system.hpp:36 +#: src/object/ghost_particle_system.hpp:37 msgid "Ghost Particles" msgstr "Cząsteczki ducha" -#: src/object/camera.cpp:219 +#: src/object/camera.cpp:163 msgid "Mode" msgstr "Tryb" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "normal" msgstr "Normalny" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "manual" -msgstr "Ręczny" +msgstr "ręczny" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "autoscroll" msgstr "Automatyczne przewijanie" @@ -415,32 +583,20 @@ msgstr "Przesunięcie w poziomie X" msgid "Controllable" msgstr "Kontrolowalny" -#: src/object/textscroller.cpp:353 -msgid "Anchor" -msgstr "Zakotwiczenie" - -#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 -#: src/supertux/menu/keyboard_menu.cpp:34 -#: src/supertux/menu/joystick_menu.cpp:71 -msgid "Left" -msgstr "W lewo" - #: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 msgid "Center" msgstr "Na środku" -#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 -#: src/supertux/menu/keyboard_menu.cpp:35 -#: src/supertux/menu/joystick_menu.cpp:72 -msgid "Right" -msgstr "W prawo" - #: src/object/textscroller.cpp:357 msgid "Text Alignment" msgstr "Wyrównanie tekstu" -#: src/object/spawnpoint.hpp:46 src/badguy/willowisp.cpp:321 -#: src/editor/worldmap_objects.cpp:171 +#: src/object/lit_object.hpp:40 +msgid "Lit object" +msgstr "" + +#: src/object/spawnpoint.hpp:48 src/badguy/willowisp.cpp:312 +#: src/worldmap/teleporter.cpp:48 msgid "Spawnpoint" msgstr "Punkt odrodzenia" @@ -448,266 +604,339 @@ msgstr "Punkt odrodzenia" msgid "Counter" msgstr "Licznik" -#: src/object/candle.hpp:36 +#: src/object/candle.hpp:37 msgid "Candle" msgstr "Świeca" -#: src/object/particlesystem.cpp:64 src/object/particle_zone.cpp:79 -#: src/badguy/darttrap.cpp:127 -msgid "Enabled" -msgstr "Włączony" +#: src/object/particlesystem.cpp:65 src/object/background.cpp:184 +#: src/object/thunderstorm.cpp:76 src/object/tilemap.cpp:277 +#: src/object/gradient.cpp:101 src/object/moving_sprite.cpp:193 +msgid "Z-pos" +msgstr "Pozycja w osi Z" -#: src/object/invisible_block.hpp:31 +#: src/object/invisible_block.hpp:30 msgid "Invisible Block" msgstr "Niewidzialny blok" -#: src/object/snow_particle_system.hpp:35 +#: src/object/snow_particle_system.hpp:37 msgid "Snow Particles" msgstr "Cząsteczki śniegu" -#: src/object/powerup.hpp:35 +#: src/object/powerup.hpp:40 msgid "Powerup" msgstr "Wzmocnienie" -#: src/object/fallblock.hpp:39 +#: src/object/infoblock.cpp:78 +msgid "Front Color" +msgstr "Kolor przedni" + +#: src/object/infoblock.cpp:80 +msgid "Back Color" +msgstr "Kolor tylny" + +#: src/object/infoblock.cpp:82 +msgid "Roundness" +msgstr "Zaokrąglenie" + +#: src/object/infoblock.cpp:84 +msgid "Fade Transition" +msgstr "Przejście zanikania" + +#: src/object/fallblock.hpp:41 msgid "Falling Platform" msgstr "Spadająca platforma" -#: src/object/level_time.hpp:55 +#: src/object/level_time.hpp:56 msgid "Time Limit" msgstr "Limit czasu" -#: src/object/ambient_sound.cpp:119 src/supertux/menu/options_menu.cpp:391 -#: data//credits.stxt:352 -msgid "Sound" -msgstr "Dźwięk" - -#: src/object/ambient_sound.cpp:120 -msgid "Distance factor" -msgstr "Wpływ odległości" - -#: src/object/ambient_sound.cpp:121 -msgid "Distance bias" -msgstr "Odchylenie odległości" - -#: src/object/ambient_sound.cpp:122 -msgid "Volume" -msgstr "Głośność" +#: src/object/ambient_sound.cpp:86 +msgid "Radius (in tiles)" +msgstr "Promień (w płytkach)" #: src/object/torch.hpp:41 msgid "Torch" msgstr "Pochodnia" -#: src/object/icecrusher.hpp:53 -msgid "Icecrusher" -msgstr "Kruszek lodu" - -#: src/object/rublight.hpp:33 +#: src/object/rublight.hpp:34 msgid "Rublight" msgstr "Lampa uruchamiana dotykiem" -#: src/object/background.hpp:43 +#: src/object/background.hpp:45 msgid "Background" msgstr "Tło" -#: src/object/firefly.hpp:36 +#: src/object/text_object.hpp:44 src/gui/menu_string_array.cpp:77 +msgid "Text" +msgstr "Tekst" + +#: src/object/firefly.hpp:38 msgid "Checkpoint" msgstr "Punkt kontrolny" -#: src/object/ambient_light.hpp:36 +#: src/object/ambient_light.hpp:37 msgid "Ambient Light" msgstr "Światło otoczenia" -#: src/object/lantern.hpp:37 +#: src/object/lantern.hpp:38 msgid "Lantern" msgstr "Lampa" -#: src/object/wind.hpp:40 +#: src/object/wind.hpp:43 msgid "Wind" msgstr "Wiatr" -#: src/object/bicycle_platform.cpp:189 src/object/background.cpp:179 -#: src/object/pneumatic_platform.cpp:147 -#: src/supertux/menu/joystick_menu.cpp:170 src/supertux/moving_object.cpp:58 -#: src/editor/worldmap_objects.cpp:73 +#: src/object/bicycle_platform.cpp:203 src/object/background.cpp:180 +#: src/object/pneumatic_platform.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:65 +#: src/worldmap/worldmap_object.cpp:77 msgid "X" msgstr "X" -#: src/object/bicycle_platform.cpp:190 src/object/background.cpp:180 -#: src/object/pneumatic_platform.cpp:148 -#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:59 -#: src/editor/worldmap_objects.cpp:74 +#: src/object/bicycle_platform.cpp:204 src/object/background.cpp:181 +#: src/object/pneumatic_platform.cpp:163 +#: src/supertux/menu/joystick_menu.cpp:174 src/supertux/moving_object.cpp:66 +#: src/worldmap/worldmap_object.cpp:78 msgid "Y" msgstr "Y" -#: src/object/bicycle_platform.cpp:192 +#: src/object/bicycle_platform.cpp:206 msgid "Platforms" msgstr "Platformy" -#: src/object/bicycle_platform.cpp:193 src/object/circleplatform.cpp:54 -#: src/badguy/flame.cpp:58 src/badguy/rcrystallo.cpp:50 -#: src/badguy/crystallo.cpp:35 +#: src/object/bicycle_platform.cpp:207 src/object/circleplatform.cpp:57 +#: src/badguy/fish_swimming.cpp:76 src/badguy/flame.cpp:109 +#: src/badguy/rcrystallo.cpp:83 src/badguy/crystallo.cpp:50 msgid "Radius" msgstr "Promień" -#: src/object/bicycle_platform.cpp:194 +#: src/object/bicycle_platform.cpp:208 msgid "Momentum change rate" msgstr "Uległość" -#: src/object/rain_particle_system.hpp:40 +#: src/object/rain_particle_system.hpp:41 msgid "Rain Particles" msgstr "Cząsteczki deszczu" -#: src/object/platform.hpp:45 +#: src/object/platform.hpp:46 msgid "Platform" msgstr "Platforma" -#: src/object/rock.hpp:42 -msgid "Rock" -msgstr "Skała" - -#: src/object/music_object.hpp:41 src/supertux/menu/options_menu.cpp:393 -#: data//credits.stxt:294 +#: src/object/music_object.hpp:42 src/supertux/menu/options_menu.cpp:130 +#: data//credits.stxt:309 msgid "Music" msgstr "Muzyka" -#: src/object/rusty_trampoline.hpp:39 +#: src/object/lit_object.cpp:68 +msgid "Light sprite" +msgstr "" + +#: src/object/lit_object.cpp:71 +msgid "Sprite starting action" +msgstr "" + +#: src/object/lit_object.cpp:72 +msgid "Light sprite starting action" +msgstr "" + +#: src/object/lit_object.cpp:74 +msgid "Light sprite offset X" +msgstr "" + +#: src/object/lit_object.cpp:75 +msgid "Light sprite offset Y" +msgstr "" + +#: src/object/rusty_trampoline.hpp:40 msgid "Rusty Trampoline" msgstr "Zardzewiała trampolina" -#: src/object/particlesystem.hpp:57 +#: src/object/particlesystem.hpp:58 msgid "Particle system" msgstr "System cząstek" -#: src/object/candle.cpp:75 src/object/torch.cpp:101 +#: src/object/candle.cpp:73 src/object/torch.cpp:94 msgid "Burning" msgstr "Płonąca" -#: src/object/candle.cpp:76 +#: src/object/candle.cpp:74 msgid "Flicker" msgstr "Migocząca" -#: src/object/text_array_object.hpp:50 +#: src/object/snow_particle_system.cpp:104 +msgid "Epsilon" +msgstr "" + +#: src/object/snow_particle_system.cpp:105 +msgid "Spin Speed" +msgstr "" + +#: src/object/snow_particle_system.cpp:106 +msgid "State Length" +msgstr "" + +#: src/object/snow_particle_system.cpp:107 +msgid "Wind Speed" +msgstr "" + +#: src/object/text_array_object.hpp:47 msgid "Text array" msgstr "Szyk tekstu" -#: src/object/infoblock.hpp:36 +#: src/object/infoblock.hpp:37 msgid "Info Block" msgstr "Blok informacyjny" -#: src/object/powerup.cpp:191 +#: src/object/powerup.cpp:61 +msgid "Egg" +msgstr "" + +#: src/object/powerup.cpp:62 +msgid "Fire Flower" +msgstr "" + +#: src/object/powerup.cpp:63 +msgid "Ice Flower" +msgstr "" + +#: src/object/powerup.cpp:64 +msgid "Air Flower" +msgstr "" + +#: src/object/powerup.cpp:65 +msgid "Earth Flower" +msgstr "" + +#: src/object/powerup.cpp:67 +msgid "Tux Doll" +msgstr "Awatar Tuxa" + +#: src/object/powerup.cpp:68 +msgid "Flip Potion" +msgstr "" + +#: src/object/powerup.cpp:69 +msgid "Mints" +msgstr "" + +#: src/object/powerup.cpp:70 +msgid "Coffee" +msgstr "Kawa" + +#: src/object/powerup.cpp:71 +msgid "Herring" +msgstr "Śledź" + +#: src/object/powerup.cpp:302 msgid "Disable gravity" msgstr "Wyłącz grawitację" -#: src/object/ambient_sound.hpp:62 +#: src/object/powerup.cpp:312 src/object/weak_block.cpp:266 +msgid "" +"Sprites no longer define the behaviour of the object.\n" +"Object types are used instead." +msgstr "" + +#: src/object/ambient_sound.hpp:43 msgid "Ambient Sound" msgstr "Dźwięk otoczenia" -#: src/object/level_time.cpp:51 src/supertux/statistics.cpp:297 +#: src/object/level_time.cpp:52 src/supertux/statistics.cpp:297 #: src/editor/node_marker.cpp:124 msgid "Time" msgstr "Czas" -#: src/object/hurting_platform.hpp:30 +#: src/object/hurting_platform.hpp:31 msgid "Hurting Platform" msgstr "Raniąca platforma" -#: src/object/icecrusher.cpp:83 -msgid "Sideways" -msgstr "Poziomo" - -#: src/object/background.cpp:182 +#: src/object/background.cpp:183 msgid "Fill" msgstr "Wypełnij" -#: src/object/background.cpp:184 +#: src/object/background.cpp:185 msgid "Alignment" msgstr "Wyrównanie" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 src/supertux/direction.cpp:61 msgid "none" msgstr "Żadne" -#: src/object/background.cpp:185 src/editor/object_settings.cpp:119 +#: src/object/background.cpp:186 src/supertux/direction.cpp:63 msgid "left" msgstr "lewo" -#: src/object/background.cpp:185 src/editor/object_settings.cpp:119 +#: src/object/background.cpp:186 src/supertux/direction.cpp:65 msgid "right" msgstr "prawo" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 msgid "top" msgstr "góra" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 msgid "bottom" msgstr "dół" -#: src/object/background.cpp:188 +#: src/object/background.cpp:189 msgid "Scroll offset x" msgstr "Przesunięcie x" -#: src/object/background.cpp:189 +#: src/object/background.cpp:190 msgid "Scroll offset y" msgstr "Przesunięcie y" -#: src/object/background.cpp:190 +#: src/object/background.cpp:191 msgid "Scroll speed x" msgstr "Prędkość przesuwania x" -#: src/object/background.cpp:191 +#: src/object/background.cpp:192 msgid "Scroll speed y" msgstr "Prędkość przesuwania y" -#: src/object/background.cpp:192 +#: src/object/background.cpp:193 msgid "Parallax Speed x" msgstr "Prędkość paralaksy x" -#: src/object/background.cpp:193 +#: src/object/background.cpp:194 msgid "Parallax Speed y" msgstr "Prędkość paralaksy y" -#: src/object/background.cpp:194 +#: src/object/background.cpp:195 msgid "Top image" msgstr "Obraz górny" -#: src/object/background.cpp:195 +#: src/object/background.cpp:196 msgid "Image" msgstr "Obraz" -#: src/object/background.cpp:196 +#: src/object/background.cpp:197 msgid "Bottom image" msgstr "Obraz dolny" -#: src/object/background.cpp:197 +#: src/object/background.cpp:198 msgid "Colour" msgstr "Kolor" -#: src/object/background.cpp:198 src/object/tilemap.cpp:240 -#: src/object/gradient.cpp:142 +#: src/object/background.cpp:199 src/object/tilemap.cpp:278 +#: src/object/gradient.cpp:108 msgid "Draw target" msgstr "Cel rysowania" -#: src/object/background.cpp:199 src/object/tilemap.cpp:241 -#: src/object/gradient.cpp:143 -msgid "Normal" -msgstr "Normalny" - -#: src/object/background.cpp:199 src/object/tilemap.cpp:241 -#: src/object/gradient.cpp:143 +#: src/object/background.cpp:200 src/object/tilemap.cpp:279 +#: src/object/gradient.cpp:109 msgid "Lightmap" msgstr "Mapa świetlna" -#: src/object/shard.hpp:34 +#: src/object/shard.hpp:35 msgid "Shard" msgstr "Kryształ" -#: src/object/rublight.cpp:55 +#: src/object/rublight.cpp:56 msgid "Fading Speed" msgstr "Szybkość zanikania" -#: src/object/rublight.cpp:56 +#: src/object/rublight.cpp:57 msgid "Glowing Strength" msgstr "Jasność" @@ -743,20 +972,28 @@ msgstr "Wpływa na graczy" msgid "Fancy Particles" msgstr "Dynamiczne cząsteczki" -#: src/object/bicycle_platform.hpp:64 +#: src/object/bicycle_platform.hpp:67 msgid "Bicycle Platform" msgstr "Platforma rowerowa" -#: src/object/platform.cpp:76 src/object/thunderstorm.cpp:69 -#: src/object/tilemap.cpp:254 +#: src/object/platform.cpp:80 src/object/thunderstorm.cpp:77 +#: src/object/tilemap.cpp:292 src/object/conveyor_belt.cpp:62 msgid "Running" msgstr "W ruchu" -#: src/object/rock.cpp:192 +#: src/object/rock.cpp:71 +msgid "Small" +msgstr "Mały" + +#: src/object/rock.cpp:72 +msgid "Large" +msgstr "Duży" + +#: src/object/rock.cpp:234 msgid "On-grab script" msgstr "Skrypt podnoszenia" -#: src/object/rock.cpp:193 +#: src/object/rock.cpp:235 msgid "On-ungrab script" msgstr "Skrypt upuszczania" @@ -764,15 +1001,15 @@ msgstr "Skrypt upuszczania" msgid "Interactive particle system" msgstr "Interaktywny system cząstek" -#: src/object/thunderstorm.cpp:70 +#: src/object/thunderstorm.cpp:78 msgid "Interval" msgstr "Odstęp" -#: src/object/thunderstorm.cpp:71 +#: src/object/thunderstorm.cpp:79 msgid "Strike Script" msgstr "Skrypt uderzenia" -#: src/object/cloud_particle_system.hpp:41 +#: src/object/cloud_particle_system.hpp:42 msgid "Cloud Particles" msgstr "Cząsteczki chmury" @@ -784,7 +1021,7 @@ msgstr "Tekstura" msgid "Amount" msgstr "Ilość" -#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:56 +#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:59 #: src/editor/particle_editor.cpp:141 msgid "Delay" msgstr "Opóźnienie" @@ -803,10 +1040,11 @@ msgid "Birth mode" msgstr "Tryb pojawienia się" #: src/object/custom_particle_system.cpp:430 -#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:149 -#: src/supertux/menu/keyboard_menu.cpp:58 -#: src/supertux/menu/joystick_menu.cpp:106 -#: src/supertux/menu/joystick_menu.cpp:213 src/editor/object_settings.cpp:131 +#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:115 +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/joystick_menu.cpp:108 +#: src/supertux/menu/joystick_menu.cpp:215 src/editor/object_settings.cpp:129 #: src/editor/particle_editor.cpp:162 src/editor/particle_editor.cpp:168 msgid "None" msgstr "Brak" @@ -1005,11 +1243,11 @@ msgstr "Zmienność czasu wyjścia" #: src/object/custom_particle_system.cpp:501 msgid "Speed X (variation)" -msgstr "Prędkość X (odmiania)" +msgstr "Prędkość X (zmienność)" #: src/object/custom_particle_system.cpp:502 msgid "Speed Y (variation)" -msgstr "Prędkość Y (odmiania)" +msgstr "Prędkość Y (zmienność)" #: src/object/custom_particle_system.cpp:503 msgid "Acceleration X" @@ -1038,7 +1276,7 @@ msgstr "Obrót" #: src/object/custom_particle_system.cpp:509 msgid "Rotation (variation)" -msgstr "Obrót (odmiania)" +msgstr "Obrót (zmienność)" #: src/object/custom_particle_system.cpp:510 #: src/editor/particle_editor.cpp:195 @@ -1047,7 +1285,7 @@ msgstr "Prędkość obrotu" #: src/object/custom_particle_system.cpp:511 msgid "Rotation speed (variation)" -msgstr "Prędkość obrotu (odmiania)" +msgstr "Prędkość obrotu (zmienność)" #: src/object/custom_particle_system.cpp:512 #: src/editor/particle_editor.cpp:200 @@ -1098,7 +1336,7 @@ msgstr "Trzymaj zawsze" #: src/object/custom_particle_system.cpp:520 #: src/editor/particle_editor.cpp:214 msgid "Bounce (heavy)" -msgstr "Odbij (ciężko)" +msgstr "Odbij (mocno)" #: src/object/custom_particle_system.cpp:520 #: src/editor/particle_editor.cpp:213 @@ -1107,11 +1345,11 @@ msgstr "Odbij (lekko)" #: src/object/custom_particle_system.cpp:520 msgid "Kill particle" -msgstr "Zabij cząstke" +msgstr "Zniszcz cząstkę" #: src/object/custom_particle_system.cpp:520 msgid "Fade out particle" -msgstr "Zanikaj cząstke" +msgstr "Zanikaj cząstkę" #: src/object/custom_particle_system.cpp:524 msgid "Delete if off-screen" @@ -1135,597 +1373,916 @@ msgstr "Zawsze" msgid "Cover screen" msgstr "Zasłoń ekran" -#: src/object/ispy.hpp:33 +#: src/object/ispy.hpp:35 msgid "Ispy" msgstr "Podglądacz" -#: src/object/skull_tile.hpp:32 -msgid "Skull Tile" -msgstr "Płytka z czaszki" - -#: src/object/particle_zone.cpp:80 +#: src/object/particle_zone.cpp:51 msgid "Particle Name" msgstr "Nazwa cząstki" -#: src/object/particle_zone.cpp:81 -msgid "Zone Type" -msgstr "Typ strefy" - -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:62 msgid "Spawn" msgstr "Wyświetl" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:63 msgid "Life zone" msgstr "Strefa życia" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:64 msgid "Life zone (clear)" msgstr "Strefa życia (czysta)" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:65 msgid "Kill particles" msgstr "Zabijaj cząstki" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:66 msgid "Clear particles" msgstr "Wyczyszczaj cząstki" -#: src/object/weak_block.cpp:211 -msgid "Linked" -msgstr "Połączony" +#: src/object/weak_block.cpp:98 +msgid "Hay" +msgstr "Siano" -#: src/object/decal.hpp:40 +#: src/object/decal.hpp:41 msgid "Decal" msgstr "Tablica informacyjna" -#: src/object/tilemap.cpp:229 +#: src/object/tilemap.cpp:267 msgid "Resize offset x" msgstr "Zmień rozmiar wyrównania x" -#: src/object/tilemap.cpp:230 +#: src/object/tilemap.cpp:268 msgid "Resize offset y" msgstr "Zmień rozmiar wyrównania y" -#: src/object/tilemap.cpp:232 src/supertux/menu/editor_sector_menu.cpp:39 -#: src/editor/object_option.cpp:173 +#: src/object/tilemap.cpp:270 src/supertux/menu/editor_sector_menu.cpp:41 +#: src/editor/object_option.cpp:178 msgid "Width" msgstr "Szerokość" -#: src/object/tilemap.cpp:233 src/supertux/menu/editor_sector_menu.cpp:40 -#: src/editor/object_option.cpp:174 +#: src/object/tilemap.cpp:271 src/supertux/menu/editor_sector_menu.cpp:42 +#: src/editor/object_option.cpp:179 msgid "Height" msgstr "Wysokość" -#: src/object/tilemap.cpp:235 +#: src/object/tilemap.cpp:273 msgid "Alpha" msgstr "Alfa" -#: src/object/tilemap.cpp:236 +#: src/object/tilemap.cpp:274 msgid "Speed x" msgstr "Prędkość x" -#: src/object/tilemap.cpp:237 +#: src/object/tilemap.cpp:275 msgid "Speed y" msgstr "Prędkość y" -#: src/object/tilemap.cpp:238 +#: src/object/tilemap.cpp:276 msgid "Tint" msgstr "Odcień" -#: src/object/tilemap.cpp:257 src/supertux/menu/editor_tilegroup_menu.cpp:26 -#: src/editor/toolbox_widget.cpp:90 +#: src/object/tilemap.cpp:296 src/supertux/menu/editor_tilegroup_menu.cpp:26 +#: src/editor/toolbox_widget.cpp:98 msgid "Tiles" msgstr "Płytki" -#: src/object/gradient.cpp:128 -msgid "Left Colour" -msgstr "Kolor lewy" - -#: src/object/gradient.cpp:129 -msgid "Right Colour" -msgstr "Kolor prawy" - -#: src/object/gradient.cpp:131 -msgid "Top Colour" -msgstr "Kolor górny" +#: src/object/gradient.cpp:98 +msgid "Primary Colour" +msgstr "Kolor podstawowy" -#: src/object/gradient.cpp:132 -msgid "Bottom Colour" -msgstr "Kolor dolny" +#: src/object/gradient.cpp:99 +msgid "Secondary Colour" +msgstr "Kolor dodatkowy" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Vertical" msgstr "Pionowy" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Horizontal" msgstr "Poziomy" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Vertical (whole sector)" msgstr "Pionowy (cały sektor)" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Horizontal (whole sector)" msgstr "Poziomy (cały sektor)" -#: src/object/gradient.cpp:148 +#: src/object/gradient.cpp:114 msgid "Blend mode" msgstr "Tryb mieszania" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Blend" msgstr "Mieszaj" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Additive" msgstr "Przyłącz" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Modulate" msgstr "Moduluj" -#: src/object/bumper.hpp:35 +#: src/object/bumper.hpp:38 msgid "Bumper" msgstr "Odbijacz" -#: src/object/unstable_tile.hpp:37 +#: src/object/conveyor_belt.cpp:63 +msgid "Length" +msgstr "Długość" + +#: src/object/moving_sprite.cpp:192 src/object/pneumatic_platform.cpp:161 +msgid "Sprite" +msgstr "Sprite" + +#: src/object/unstable_tile.hpp:42 msgid "Unstable Tile" msgstr "Niestabilna płytka" -#: src/object/brick.hpp:31 -msgid "Brick" -msgstr "Cegła" +#: src/object/brick.hpp:70 +msgid "Heavy Brick" +msgstr "" -#: src/object/invisible_wall.hpp:34 +#: src/object/invisible_wall.hpp:37 msgid "Invisible Wall" msgstr "Niewidzialna ściana" -#: src/object/spotlight.hpp:51 +#: src/object/spotlight.hpp:52 msgid "Spotlight" msgstr "Reflektor" -#: src/object/scripted_object.hpp:39 +#: src/object/scripted_object.hpp:40 msgid "Scripted Object" msgstr "Obiekt skryptowy" -#: src/object/custom_particle_system_file.hpp:39 +#: src/object/custom_particle_system_file.hpp:40 msgid "Custom Particles from file" msgstr "Niestandardowe cząstki z pliku" -#: src/object/coin.hpp:78 +#: src/object/coin.hpp:97 msgid "Heavy Coin" msgstr "Ciężka moneta" -#: src/object/bonus_block.hpp:56 +#: src/object/explosion.hpp:35 +msgid "Explosion" +msgstr "Eksplozja" + +#: src/object/bonus_block.hpp:62 msgid "Bonus Block" msgstr "Bonusowy blok" -#: src/object/magicblock.hpp:41 +#: src/object/magicblock.hpp:42 msgid "Magic Tile" msgstr "Magiczna płytka" -#: src/object/camera.hpp:67 +#: src/object/camera.hpp:61 msgid "Camera" msgstr "Kamera" -#: src/object/textscroller.hpp:44 +#: src/object/textscroller.hpp:45 msgid "Text Scroller" msgstr "Przewijacz tekstu" -#: src/gui/menu_badguy_select.cpp:94 -msgid "List of enemies" -msgstr "Lista wrogów" +#: src/gui/notification.cpp:57 +msgid "Click for more details." +msgstr "Kliknij, aby uzyskać więcej informacji." + +#: src/gui/notification.cpp:150 +msgid "Do not show again" +msgstr "Nie pokazuj ponownie" + +#: src/gui/notification.cpp:157 src/supertux/menu/download_dialog.cpp:124 +msgid "Close" +msgstr "Zamknij" + +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#, c++-format +msgid "Selected item: {}" +msgstr "Wybrany element: {}" -#: src/gui/menu_badguy_select.cpp:96 -msgid "Select enemy" -msgstr "Wybierz wroga" +#: src/gui/menu_string_array.cpp:70 +msgid "Edit string array" +msgstr "Edytuj tablicę ciągów znaków" -#: src/gui/menu_badguy_select.cpp:97 +#: src/gui/menu_string_array.cpp:79 src/gui/menu_object_select.cpp:50 +#: src/supertux/menu/profile_menu.cpp:88 msgid "Add" msgstr "Dodaj" -#: src/gui/menu_badguy_select.cpp:107 src/gui/menu_color.cpp:37 -#: src/gui/dialog.hpp:81 src/gui/menu_script.cpp:47 -#: src/supertux/menu/editor_sector_menu.cpp:46 -#: src/supertux/menu/editor_levelset_menu.cpp:62 -#: src/supertux/menu/addon_menu.cpp:349 +#: src/gui/menu_string_array.cpp:80 +msgid "Insert" +msgstr "Wstaw" + +#: src/gui/menu_string_array.cpp:81 +#: src/supertux/menu/addon_preview_menu.cpp:177 src/editor/object_menu.cpp:61 +msgid "Update" +msgstr "" + +#: src/gui/menu_string_array.cpp:82 src/supertux/menu/profile_menu.cpp:108 +#: src/supertux/menu/profile_menu.cpp:110 +msgid "Delete" +msgstr "Usuń" + +#: src/gui/menu_string_array.cpp:84 src/gui/menu_object_select.cpp:61 +#: src/gui/menu_color.cpp:37 src/gui/dialog.hpp:87 src/gui/menu_script.cpp:46 +#: src/supertux/menu/editor_sector_menu.cpp:48 +#: src/supertux/menu/editor_levelset_menu.cpp:58 #: src/supertux/menu/editor_new_levelset_menu.cpp:37 -#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:43 +#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:71 msgid "OK" msgstr "OK" -#: src/gui/menu_badguy_select.cpp:136 -msgid "Do you want to delete this badguy from the list?" -msgstr "Czy chcesz usunąć tego wroga z listy?" +#: src/gui/menu_object_select.cpp:46 +msgid "List of objects" +msgstr "Lista obiektów" -#: src/gui/menu_badguy_select.cpp:137 src/gui/dialog.hpp:90 -#: src/supertux/menu/editor_level_select_menu.cpp:164 -#: src/supertux/menu/editor_menu.cpp:164 src/editor/editor.cpp:583 -msgid "Yes" -msgstr "Tak" +#: src/gui/menu_object_select.cpp:48 +#, c++-format +msgid "Select object ({})" +msgstr "Wybierz obiekt ({})" -#: src/gui/menu_badguy_select.cpp:140 src/gui/dialog.hpp:91 -#: src/supertux/menu/editor_level_select_menu.cpp:168 -#: src/supertux/menu/editor_menu.cpp:167 src/editor/particle_editor.cpp:780 -#: src/editor/editor.cpp:590 -msgid "No" -msgstr "Nie" +#: src/gui/menu_object_select.cpp:114 +msgid "Are you sure you want to remove this object from the list?" +msgstr "Czy na pewno chcesz usunąć ten obiekt z listy?" #: src/gui/menu_color.cpp:24 msgid "Mix the colour" msgstr "Zmieszaj kolor" -#: src/gui/menu_filesystem.cpp:112 src/gui/menu_paths.cpp:44 -#: src/supertux/menu/particle_editor_save_as.cpp:42 +#: src/gui/dialog.hpp:96 src/supertux/menu/editor_level_select_menu.cpp:181 +#: src/editor/editor.cpp:663 +msgid "Yes" +msgstr "Tak" + +#: src/gui/dialog.hpp:97 src/supertux/menu/editor_level_select_menu.cpp:185 +#: src/editor/particle_editor.cpp:781 src/editor/editor.cpp:670 +msgid "No" +msgstr "Nie" + +#: src/gui/menu_list.cpp:38 src/gui/menu_filesystem.cpp:120 +#: src/gui/menu_paths.cpp:48 src/supertux/menu/particle_editor_save_as.cpp:42 #: src/supertux/menu/editor_sectors_menu.cpp:45 -#: src/supertux/menu/editor_sectors_menu.cpp:95 -#: src/supertux/menu/editor_sectors_menu.cpp:100 +#: src/supertux/menu/editor_sectors_menu.cpp:94 +#: src/supertux/menu/editor_sectors_menu.cpp:99 #: src/supertux/menu/editor_objectgroup_menu.cpp:42 #: src/supertux/menu/editor_tilegroup_menu.cpp:36 -#: src/supertux/menu/editor_level_select_menu.cpp:173 +#: src/supertux/menu/editor_level_select_menu.cpp:190 #: src/supertux/menu/editor_save_as.cpp:42 #: src/supertux/menu/particle_editor_open.cpp:43 -#: src/editor/particle_editor.cpp:784 src/editor/editor.cpp:594 +#: src/editor/particle_editor.cpp:785 src/editor/editor.cpp:674 msgid "Cancel" msgstr "Anuluj" +#: src/gui/menu_filesystem.cpp:118 +msgid "Open Directory" +msgstr "" + #: src/gui/menu_script.cpp:28 msgid "Edit script" msgstr "Edytuj skrypt" -#: src/gui/menu_paths.cpp:30 +#: src/gui/menu_paths.cpp:32 msgid "Clone" msgstr "Sklonuj" -#: src/gui/menu_paths.cpp:38 +#: src/gui/menu_paths.cpp:41 msgid "" -"An error occured and the game could\n" +"An error occurred and the game could\n" "not clone the path. Please contact\n" "the developers for support." -msgstr "Wystąpił błąd i gra\nnie mogła sklonować ścieżki. Skontaktuj się z\nz developerami po pomoc." +msgstr "" -#: src/gui/menu_paths.cpp:41 +#: src/gui/menu_paths.cpp:44 msgid "Bind" msgstr "Przypisz" -#: src/gui/menu_paths.cpp:63 src/supertux/menu/integrations_menu.cpp:60 -#: src/supertux/menu/contrib_menu.cpp:161 src/supertux/menu/debug_menu.cpp:75 -#: src/supertux/menu/editor_level_select_menu.cpp:88 -#: src/supertux/menu/worldmap_cheat_menu.cpp:55 -#: src/supertux/menu/worldmap_cheat_menu.cpp:153 +#: src/gui/menu_paths.cpp:49 +msgid "" +"Do you wish to clone the path to edit it separately,\n" +"or do you want to bind both paths together\n" +"so that any edit on one edits the other?" +msgstr "" + +#: src/gui/menu_paths.cpp:56 +#, c++-format +msgid "Path {}" +msgstr "Ścieżka {}" + +#: src/gui/menu_paths.cpp:67 src/supertux/menu/integrations_menu.cpp:60 +#: src/supertux/menu/editor_converters_menu.cpp:79 +#: src/supertux/menu/video_system_menu.cpp:45 +#: src/supertux/menu/contrib_menu.cpp:102 src/supertux/menu/debug_menu.cpp:77 +#: src/supertux/menu/multiplayer_menu.cpp:39 +#: src/supertux/menu/custom_menu_menu.cpp:65 +#: src/supertux/menu/editor_level_select_menu.cpp:98 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:63 +#: src/supertux/menu/worldmap_cheat_menu.cpp:57 +#: src/supertux/menu/worldmap_cheat_menu.cpp:196 #: src/supertux/menu/editor_levelset_select_menu.cpp:114 -#: src/supertux/menu/options_menu.cpp:442 -#: src/supertux/menu/profile_menu.cpp:54 src/supertux/menu/addon_menu.cpp:213 +#: src/supertux/menu/options_menu.cpp:223 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:69 +#: src/supertux/menu/addon_preview_menu.cpp:193 +#: src/supertux/menu/profile_menu.cpp:118 +#: src/supertux/menu/multiplayer_players_menu.cpp:91 +#: src/supertux/menu/addon_menu.cpp:153 #: src/supertux/menu/editor_new_levelset_menu.cpp:40 +#: src/supertux/menu/options_select_menu.cpp:44 #: src/supertux/menu/world_set_menu.cpp:33 +#: src/supertux/menu/addon_browse_menu.cpp:162 #: src/supertux/menu/web_asset_menu.cpp:48 -#: src/supertux/menu/keyboard_menu.cpp:49 -#: src/supertux/menu/language_menu.cpp:56 -#: src/supertux/menu/joystick_menu.cpp:97 +#: src/supertux/menu/profile_name_menu.cpp:45 +#: src/supertux/menu/keyboard_menu.cpp:71 +#: src/supertux/menu/sorted_contrib_menu.cpp:51 +#: src/supertux/menu/language_menu.cpp:63 +#: src/supertux/menu/joystick_menu.cpp:99 #: src/supertux/menu/contrib_levelset_menu.cpp:67 -#: src/supertux/menu/cheat_menu.cpp:44 -#: src/supertux/menu/editor_delete_level_menu.cpp:43 +#: src/supertux/menu/cheat_menu.cpp:58 +#: src/supertux/menu/addon_file_install_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:43 +#: src/supertux/menu/cheat_apply_menu.cpp:63 +#: src/supertux/menu/multiplayer_player_menu.cpp:205 +#: src/supertux/menu/editor_delete_level_menu.cpp:68 msgid "Back" msgstr "Wróć" -#: src/badguy/toad.hpp:37 -msgid "Toad" -msgstr "Ropucha" +#: src/addon/addon_manager.cpp:562 +msgid "Only one resource pack is allowed to be enabled at a time." +msgstr "" -#: src/badguy/mrtree.hpp:29 -msgid "Walking Tree" -msgstr "Chodzące drzewo" +#: src/addon/addon_manager.cpp:837 +#, c++-format +msgid "Add-on {} by {} is already installed." +msgstr "" -#: src/badguy/plant.hpp:33 -msgid "Plant" -msgstr "Roślina" +#: src/addon/addon_manager.cpp:857 +#, c++-format +msgid "Add-on {} by {} successfully installed." +msgstr "" -#: src/badguy/crystallo.hpp:30 -msgid "Crystallo" -msgstr "Kryształ" +#: src/addon/addon.cpp:71 src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Levelset" +msgstr "Zestaw poziomów" -#: src/badguy/totem.hpp:36 -msgid "Totem" -msgstr "Totem" +#: src/addon/addon.cpp:74 src/supertux/menu/editor_levelset_menu.cpp:54 +#: data//images/engine/editor/objects.stoi:389 +msgid "Worldmap" +msgstr "Mapa świata" -#: src/badguy/stalactite.hpp:38 -msgid "Stalactite" -msgstr "Sopel" +#: src/addon/addon.cpp:77 +msgid "World" +msgstr "Świat" -#: src/badguy/haywire.hpp:45 -msgid "Haywire" -msgstr "Kolorowa bomba" +#: src/addon/addon.cpp:80 +msgid "Add-on" +msgstr "Dodatek" + +#: src/addon/addon.cpp:83 +msgid "Language Pack" +msgstr "" + +#: src/addon/addon.cpp:86 +msgid "Resource Pack" +msgstr "" + +#: src/addon/addon.cpp:89 +msgid "Unknown" +msgstr "Nieznany" + +#: src/addon/addon.cpp:100 +#, c++-format +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" przez \"{}\"" + +#: src/addon/addon.cpp:114 +msgid "add-on" +msgstr "dodatek" + +#: src/addon/addon.cpp:114 +msgid "add-ons" +msgstr "dodatki" + +#: src/badguy/toad.hpp:38 +msgid "Toad" +msgstr "Ropucha" + +#: src/badguy/mrtree.hpp:32 +msgid "Mr. Tree" +msgstr "Pan Drzewo" + +#: src/badguy/plant.hpp:34 +msgid "Plant" +msgstr "Roślina" + +#: src/badguy/tarantula.hpp:39 src/badguy/tarantula.cpp:353 +msgid "Tarantula" +msgstr "" + +#: src/badguy/granito_giant.cpp:71 +msgid "Awake" +msgstr "" + +#: src/badguy/granito_giant.cpp:72 +msgid "Sleeping" +msgstr "" + +#: src/badguy/granito_giant.cpp:73 +msgid "Corrupted A" +msgstr "" + +#: src/badguy/granito_giant.cpp:74 +msgid "Corrupted B" +msgstr "" + +#: src/badguy/granito_giant.cpp:75 +msgid "Corrupted C" +msgstr "" + +#: src/badguy/crystallo.hpp:33 +msgid "Crystallo" +msgstr "Kryształ" + +#: src/badguy/viciousivy.cpp:45 src/badguy/snail.cpp:70 +#: src/badguy/kamikazesnowball.cpp:118 src/badguy/walkingleaf.cpp:36 +#: src/badguy/jumpy.cpp:46 src/badguy/igel.cpp:189 src/badguy/mrtree.cpp:51 +msgid "Corrupted" +msgstr "" + +#: src/badguy/totem.hpp:37 +msgid "Totem" +msgstr "Totem" + +#: src/badguy/stalactite.hpp:42 +msgid "Stalactite" +msgstr "Sopel" + +#: src/badguy/fish_chasing.cpp:198 +msgid "Tracking Distance" +msgstr "" + +#: src/badguy/fish_chasing.cpp:199 +msgid "Losing Distance" +msgstr "" + +#: src/badguy/fish_chasing.cpp:200 +msgid "Chase Speed" +msgstr "" -#: src/badguy/dispenser.hpp:48 +#: src/badguy/root_sapling.hpp:41 +msgid "Root Sapling" +msgstr "" + +#: src/badguy/haywire.hpp:46 +msgid "Haywire" +msgstr "Kolorowa bomba" + +#: src/badguy/dispenser.hpp:52 msgid "Dispenser" msgstr "Dozownik" -#: src/badguy/short_fuse.hpp:29 +#: src/badguy/short_fuse.hpp:30 msgid "Short Fuse" msgstr "Krótki lont" -#: src/badguy/zeekling.hpp:36 +#: src/badguy/zeekling.hpp:39 msgid "Zeekling" msgstr "Zeekling" -#: src/badguy/mriceblock.hpp:46 -msgid "Iceblock" -msgstr "Lodowy klocek" +#: src/badguy/smartball.cpp:35 +msgid "Pumpkin" +msgstr "" + +#: src/badguy/bouncing_snowball.cpp:82 +msgid "Fatbat" +msgstr "" + +#: src/badguy/dive_mine.hpp:50 +msgid "Dive Mine" +msgstr "" + +#: src/badguy/granito_big.hpp:33 +msgid "Big Granito" +msgstr "" + +#: src/badguy/mriceblock.hpp:49 +msgid "Mr. Iceblock" +msgstr "" + +#: src/badguy/granito.hpp:39 src/badguy/darttrap.cpp:163 +#: src/badguy/corrupted_granito.cpp:175 src/badguy/dispenser.cpp:438 +msgid "Granito" +msgstr "Granito" + +#: src/badguy/fish_swimming.cpp:54 src/badguy/jumpy.cpp:44 +#: data//images/ice_world.strf:10 data//images/tiles.strf:28 +#: data//images/worldmap.strf:41 +msgid "Snow" +msgstr "Śnieg" + +#: src/badguy/fish_swimming.cpp:55 data//images/ice_world.strf:211 +#: data//images/tiles.strf:366 data//images/worldmap.strf:67 +msgid "Forest" +msgstr "Las" + +#: src/badguy/crusher.hpp:71 +msgid "Crusher" +msgstr "" + +#: src/badguy/flame.cpp:84 +msgid "Fire" +msgstr "" + +#: src/badguy/flame.cpp:85 +msgid "Ghost" +msgstr "" + +#: src/badguy/corrupted_granito_big.hpp:35 +msgid "Corrupted Big Granito" +msgstr "" -#: src/badguy/scrystallo.cpp:52 +#: src/badguy/scrystallo.cpp:57 msgid "Walk Radius" msgstr "Promień spaceru" -#: src/badguy/scrystallo.cpp:53 +#: src/badguy/scrystallo.cpp:58 msgid "Awakening Radius" msgstr "Promień przebudzenia" -#: src/badguy/jumpy.hpp:36 +#: src/badguy/scrystallo.cpp:59 +msgid "Roof-attached" +msgstr "" + +#: src/badguy/jumpy.hpp:40 msgid "Jumpy" msgstr "Skoczek" -#: src/badguy/captainsnowball.hpp:31 +#: src/badguy/captainsnowball.hpp:32 msgid "Captain Snowball" msgstr "Kapitan kula śnieżna" -#: src/badguy/ghosttree.hpp:42 +#: src/badguy/ghosttree.hpp:43 msgid "Ghost Tree" msgstr "Drzewo-duch" -#: src/badguy/willowisp.cpp:323 +#: src/badguy/willowisp.cpp:314 msgid "Track range" msgstr "Zakres toru" -#: src/badguy/willowisp.cpp:324 +#: src/badguy/willowisp.cpp:315 msgid "Vanish range" msgstr "Zakres zanikania" -#: src/badguy/willowisp.cpp:325 +#: src/badguy/willowisp.cpp:316 msgid "Fly speed" msgstr "Szybkość lotu" -#: src/badguy/kugelblitz.hpp:39 +#: src/badguy/kugelblitz.hpp:40 msgid "Kugelblitz" msgstr "Piorun kulisty" -#: src/badguy/mole_rock.hpp:43 +#: src/badguy/mole_rock.hpp:44 msgid "Mole's rock" msgstr "Kamień kreta" -#: src/badguy/badguy.cpp:849 +#: src/badguy/badguy.cpp:1064 msgid "Death script" msgstr "Skrypt śmierci" -#: src/badguy/sspiky.hpp:36 +#: src/badguy/sspiky.hpp:37 msgid "Sleeping Spiky" msgstr "Śpiący Kolczasty" -#: src/badguy/yeti_stalactite.hpp:33 +#: src/badguy/yeti_stalactite.hpp:34 msgid "Yeti's Stalactite" msgstr "Stalaktyt Yeti" -#: src/badguy/livefire.hpp:37 +#: src/badguy/fish_harmless.hpp:30 +msgid "Harmless Fish" +msgstr "" + +#: src/badguy/livefire.hpp:38 msgid "Walking Flame" msgstr "Chodzący płomień" -#: src/badguy/livefire.hpp:68 +#: src/badguy/livefire.hpp:71 msgid "Sleeping Flame" msgstr "Śpiący płomień" -#: src/badguy/livefire.hpp:84 +#: src/badguy/livefire.hpp:89 msgid "Dormant Flame" msgstr "Drzemiący płomień" -#: src/badguy/owl.hpp:39 +#: src/badguy/owl.hpp:45 msgid "Owl" msgstr "Sowa" -#: src/badguy/igel.hpp:34 +#: src/badguy/igel.hpp:38 msgid "Igel" msgstr "Jeż" -#: src/badguy/darttrap.cpp:126 +#: src/badguy/darttrap.cpp:148 msgid "Initial delay" msgstr "Początkowe opóźnienie" -#: src/badguy/darttrap.cpp:128 +#: src/badguy/darttrap.cpp:150 msgid "Fire delay" msgstr "Opóźnienie ognia" -#: src/badguy/darttrap.cpp:129 +#: src/badguy/darttrap.cpp:151 msgid "Ammo" msgstr "Amunicja" -#: src/badguy/snowball.hpp:29 -msgid "Snowball" -msgstr "Kula śnieżna" +#: src/badguy/darttrap.cpp:152 +msgid "Dart sprite" +msgstr "" + +#: src/badguy/darttrap.cpp:164 +msgid "Skull" +msgstr "" + +#: src/badguy/snowball.hpp:30 +msgid "Mr. Snowball" +msgstr "" -#: src/badguy/smartblock.hpp:29 -msgid "Smartblock" -msgstr "Mądry blok" +#: src/badguy/smartblock.hpp:30 +msgid "Mrs. Iceblock" +msgstr "" -#: src/badguy/yeti.cpp:369 +#: src/badguy/yeti.cpp:370 msgid "Fixed position" msgstr "Stała pozycja" -#: src/badguy/yeti.cpp:370 +#: src/badguy/yeti.cpp:371 msgid "Lives" msgstr "Życia" -#: src/badguy/goldbomb.hpp:49 +#: src/badguy/goldbomb.hpp:50 msgid "Gold Bomb" msgstr "Złota bomba" -#: src/badguy/flyingsnowball.hpp:32 +#: src/badguy/corrupted_granito.hpp:44 +msgid "Corrupted Granito" +msgstr "" + +#: src/badguy/mrbomb.cpp:48 +msgid "Classic" +msgstr "" + +#: src/badguy/flyingsnowball.hpp:33 msgid "Flying Snowball" msgstr "Latająca kula śnieżna" -#: src/badguy/skullyhop.hpp:37 -msgid "Skullyhop" -msgstr "Skacząca czaszka" +#: src/badguy/crusher.cpp:75 +msgid "Ice (normal)" +msgstr "" + +#: src/badguy/crusher.cpp:76 +msgid "Ice (big)" +msgstr "" + +#: src/badguy/crusher.cpp:77 +msgid "Rock (normal)" +msgstr "" + +#: src/badguy/crusher.cpp:78 +msgid "Rock (big)" +msgstr "" + +#: src/badguy/crusher.cpp:79 +msgid "Corrupted (normal)" +msgstr "" + +#: src/badguy/crusher.cpp:80 +msgid "Corrupted (big)" +msgstr "" + +#: src/badguy/crusher.cpp:492 +msgid "Sideways" +msgstr "Poziomo" -#: src/badguy/kamikazesnowball.hpp:32 -msgid "Snowshot" -msgstr "Wystrzelona kula śnieżna" +#: src/badguy/kamikazesnowball.hpp:34 +msgid "Kamikaze Snowball" +msgstr "" -#: src/badguy/kamikazesnowball.hpp:52 +#: src/badguy/kamikazesnowball.hpp:64 msgid "Leafshot" msgstr "Wystrzelony liść" -#: src/badguy/flame.hpp:41 +#: src/badguy/fish_swimming.hpp:40 +msgid "Swimming Fish" +msgstr "" + +#: src/badguy/flame.hpp:47 msgid "Flame" msgstr "Płomień" -#: src/badguy/scrystallo.hpp:30 +#: src/badguy/scrystallo.hpp:31 msgid "Sleeping Crystallo" msgstr "Śpiący kryształ" -#: src/badguy/poisonivy.hpp:30 -msgid "Spring Leaf" -msgstr "Wiosenny liść" +#: src/badguy/jumpy.cpp:45 +msgid "Wooden" +msgstr "" + +#: src/badguy/jumpy.cpp:47 +msgid "Metal" +msgstr "" + +#: src/badguy/jumpy.cpp:48 +msgid "Bag" +msgstr "" #: src/badguy/willowisp.hpp:57 msgid "Will o' Wisp" msgstr "Błędny ognik" -#: src/badguy/badguy.hpp:53 +#: src/badguy/fish_jumping.hpp:41 +msgid "Jumping Fish" +msgstr "" + +#: src/badguy/badguy.hpp:61 msgid "Badguy" msgstr "Wróg" -#: src/badguy/ghostflame.hpp:30 -msgid "Ghost Flame" -msgstr "Płomień-duch" - -#: src/badguy/rcrystallo.hpp:30 +#: src/badguy/rcrystallo.hpp:33 msgid "Roof Crystallo" -msgstr "Dachowy krzyształ" +msgstr "Dachowy kryształ" -#: src/badguy/spiky.hpp:30 +#: src/badguy/spiky.hpp:31 msgid "Spiky" msgstr "Kolczasty" -#: src/badguy/walkingleaf.hpp:30 -msgid "Autumn Leaf" -msgstr "Jesienny liść" +#: src/badguy/walkingleaf.hpp:33 +msgid "Walking Leaf" +msgstr "" + +#: src/badguy/root.hpp:39 +msgid "Root" +msgstr "" -#: src/badguy/owl.cpp:227 +#: src/badguy/owl.cpp:241 msgid "Carry" msgstr "Nieś" -#: src/badguy/darttrap.hpp:33 +#: src/badguy/darttrap.hpp:35 msgid "Dart Trap" msgstr "Pułapka ze strzałami" -#: src/badguy/skydive.hpp:38 +#: src/badguy/skydive.hpp:43 msgid "Skydive" msgstr "Nurek nieba" -#: src/badguy/yeti.hpp:37 +#: src/badguy/yeti.hpp:38 msgid "Yeti" msgstr "Yeti" -#: src/badguy/mole.hpp:39 +#: src/badguy/snowball.cpp:41 +msgid "Bumpkin" +msgstr "" + +#: src/badguy/snowball.cpp:42 +msgid "BSOD" +msgstr "" + +#: src/badguy/mole.hpp:38 msgid "Mole" msgstr "Kret" -#: src/badguy/mrbomb.hpp:42 -msgid "Bomb" -msgstr "Bomba" +#: src/badguy/corrupted_granito.cpp:176 +msgid "Skullyhop" +msgstr "Skacząca czaszka" + +#: src/badguy/mrbomb.hpp:40 +msgid "Mr. Bomb" +msgstr "Pan Bomba" -#: src/badguy/walking_candle.hpp:40 +#: src/badguy/walking_candle.hpp:41 msgid "Walking Candle" msgstr "Chodząca świeczka" -#: src/badguy/angrystone.hpp:34 +#: src/badguy/angrystone.hpp:39 msgid "Angry Stone" msgstr "Wściekły kamień" -#: src/badguy/spidermite.hpp:35 -msgid "Spider" -msgstr "Pająk" +#: src/badguy/tarantula.cpp:354 +msgid "Spidermite" +msgstr "" + +#: src/badguy/tarantula.cpp:374 +msgid "Static" +msgstr "" #: src/badguy/ghoul.hpp:30 msgid "Ghoul" msgstr "Upiór" -#: src/badguy/snowman.hpp:28 +#: src/badguy/granito_giant.hpp:32 +msgid "Giant Granito" +msgstr "" + +#: src/badguy/snowman.hpp:29 msgid "Snowman" msgstr "Bałwan" -#: src/badguy/stumpy.hpp:35 -msgid "Walking Stump" -msgstr "Chodzący pień" +#: src/badguy/viciousivy.hpp:33 +msgid "Vicious Ivy" +msgstr "" + +#: src/badguy/stalactite.cpp:156 +msgid "ice" +msgstr "" + +#: src/badguy/stalactite.cpp:157 +msgid "rock" +msgstr "" + +#: src/badguy/fish_chasing.hpp:33 +msgid "Chasing Fish" +msgstr "" -#: src/badguy/fish.hpp:40 -msgid "Fish" -msgstr "Ryba" +#: src/badguy/stumpy.hpp:38 +msgid "Stumpy" +msgstr "Pieniek" -#: src/badguy/dispenser.cpp:445 +#: src/badguy/dispenser.cpp:412 msgid "Interval (seconds)" msgstr "Odstęp (sekundy)" -#: src/badguy/dispenser.cpp:446 +#: src/badguy/dispenser.cpp:413 msgid "Random" msgstr "Losowy" -#: src/badguy/dispenser.cpp:447 data//images/engine/editor/objects.stoi:4 -msgid "Enemies" -msgstr "Wrogowie" +#: src/badguy/dispenser.cpp:416 +#: src/supertux/menu/editor_objectgroup_menu.cpp:30 +#: src/editor/toolbox_widget.cpp:101 +msgid "Objects" +msgstr "Obiekty" -#: src/badguy/dispenser.cpp:448 +#: src/badguy/dispenser.cpp:419 msgid "Limit dispensed badguys" msgstr "Ogranicz wypuszczanych wrogów" -#: src/badguy/dispenser.cpp:450 +#: src/badguy/dispenser.cpp:421 msgid "Obey Gravity" msgstr "Przestrzegaj grawitacji" -#: src/badguy/dispenser.cpp:452 +#: src/badguy/dispenser.cpp:423 msgid "Max concurrent badguys" msgstr "Maksimum jednoczesnych wrogów" -#: src/badguy/dispenser.cpp:454 src/supertux/menu/editor_levelset_menu.cpp:60 -msgid "Type" -msgstr "Typ" - -#: src/badguy/dispenser.cpp:455 -msgid "dropper" -msgstr "Wyrzutnia przeciwników" - -#: src/badguy/dispenser.cpp:455 -msgid "rocket launcher" -msgstr "Wyrzutnia rakiet" +#: src/badguy/dispenser.cpp:435 +msgid "Dropper" +msgstr "" -#: src/badguy/dispenser.cpp:455 -msgid "cannon" -msgstr "Armata" +#: src/badguy/dispenser.cpp:436 +msgid "Cannon" +msgstr "" -#: src/badguy/dispenser.cpp:455 -msgid "invisible" +#: src/badguy/dispenser.cpp:437 src/worldmap/special_tile.cpp:77 +msgid "Invisible" msgstr "Niewidzialny" -#: src/badguy/snail.hpp:42 +#: src/badguy/snail.hpp:43 msgid "Snail" msgstr "Ślimak" -#: src/badguy/smartball.hpp:31 -msgid "Smartball" -msgstr "Mądrokula" +#: src/badguy/smartball.hpp:32 +msgid "Mrs. Snowball" +msgstr "" -#: src/badguy/bouncing_snowball.hpp:32 +#: src/badguy/bouncing_snowball.hpp:39 msgid "Bouncing Snowball" msgstr "Skacząca kula śnieżna" -#: src/badguy/iceflame.hpp:33 -msgid "Ice Flame" -msgstr "Lodowy płomień" +#: src/badguy/granito_big.cpp:52 src/badguy/granito.cpp:263 +msgid "Default" +msgstr "Domyślny" + +#: src/badguy/granito_big.cpp:53 src/badguy/granito.cpp:264 +msgid "Standing" +msgstr "" + +#: src/badguy/granito_big.cpp:54 src/badguy/granito.cpp:265 +msgid "Walking" +msgstr "" + +#: src/badguy/mriceblock.cpp:63 +msgid "Laptop" +msgstr "Laptop" -#: src/badguy/dart.hpp:43 +#: src/badguy/dart.hpp:44 msgid "Dart" msgstr "Strzała" +#: src/badguy/granito.cpp:268 +msgid "Sitting" +msgstr "" + #: src/supertux/statistics.cpp:54 msgid "Max coins collected:" msgstr "Najwięcej monet:" @@ -1746,7 +2303,7 @@ msgstr "Najlepszy czas ukończenia:" msgid "Level target time:" msgstr "Czas na przejście poziomu" -#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:160 +#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:175 msgid "Best Level Statistics" msgstr "Najlepsze wyniki" @@ -1758,7 +2315,7 @@ msgstr "Ty" msgid "Best" msgstr "Najlepszy" -#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:166 +#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:181 msgid "Coins" msgstr "Monety" @@ -1766,270 +2323,353 @@ msgstr "Monety" msgid "Badguys" msgstr "Wrogowie" -#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:172 +#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:187 msgid "Secrets" msgstr "Sekrety" -#: src/supertux/game_object.hpp:78 +#: src/supertux/game_object.hpp:88 msgid "Unknown object" -msgstr "Nieznany objekt" +msgstr "Nieznany obiekt" -#: src/supertux/sector.cpp:414 +#: src/supertux/sector.cpp:507 msgid "Press escape to skip" msgstr "Naciśnij escape, aby pominąć" -#: src/supertux/command_line_arguments.cpp:94 -#, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Obsługa: %s [OPCJE] [PLIK POZIOMU]" +#: src/supertux/command_line_arguments.cpp:92 +#, c++-format +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "" -#: src/supertux/command_line_arguments.cpp:95 +#: src/supertux/command_line_arguments.cpp:93 msgid "General Options:" msgstr "Opcje ogólne:" -#: src/supertux/command_line_arguments.cpp:96 +#: src/supertux/command_line_arguments.cpp:94 msgid " -h, --help Show this help message and quit" msgstr "-h, --help Wyświetl niniejszą pomoc i wyjdź" -#: src/supertux/command_line_arguments.cpp:97 +#: src/supertux/command_line_arguments.cpp:95 msgid " -v, --version Show SuperTux version and quit" msgstr "-v, --version Wyświetl wersję SuperTux i wyjdź" -#: src/supertux/command_line_arguments.cpp:98 +#: src/supertux/command_line_arguments.cpp:96 msgid " --verbose Print verbose messages" msgstr "--verbose Tryb gadatliwy" -#: src/supertux/command_line_arguments.cpp:99 +#: src/supertux/command_line_arguments.cpp:97 msgid " --debug Print extra verbose messages" msgstr "--debug Wyświetl komunikaty debugowania" -#: src/supertux/command_line_arguments.cpp:100 +#: src/supertux/command_line_arguments.cpp:98 msgid "" " --print-datadir Print SuperTux's primary data directory." msgstr "--print-datadir Podaje główny katalog danych SuperTux." -#: src/supertux/command_line_arguments.cpp:101 +#: src/supertux/command_line_arguments.cpp:99 msgid "" " --acknowledgements Print the licenses of libraries used by " "SuperTux." msgstr " --acknowledgements Drukuj licencje bibliotek używanych przez SuperTux." -#: src/supertux/command_line_arguments.cpp:103 +#: src/supertux/command_line_arguments.cpp:101 msgid "Video Options:" msgstr "Opcje grafiki:" -#: src/supertux/command_line_arguments.cpp:104 +#: src/supertux/command_line_arguments.cpp:102 msgid " -f, --fullscreen Run in fullscreen mode" msgstr "-f, --fullscreen Uruchom w trybie pełnoekranowym" -#: src/supertux/command_line_arguments.cpp:105 +#: src/supertux/command_line_arguments.cpp:103 msgid " -w, --window Run in window mode" msgstr "-w, --window Uruchom w trybie okienkowym" -#: src/supertux/command_line_arguments.cpp:106 +#: src/supertux/command_line_arguments.cpp:104 msgid " -g, --geometry WIDTHxHEIGHT Run SuperTux in given resolution" msgstr "-g, --geometry SZEROKOŚĆxWYSOKOŚĆ Uruchom SuperTux w podanej rozdzielczości" -#: src/supertux/command_line_arguments.cpp:107 +#: src/supertux/command_line_arguments.cpp:105 msgid " -a, --aspect WIDTH:HEIGHT Run SuperTux with given aspect ratio" msgstr "-a, --aspect SZEROKOŚĆ:WYSOKOŚĆ Uruchom SuperTux w podanych proporcjach obrazu" -#: src/supertux/command_line_arguments.cpp:108 +#: src/supertux/command_line_arguments.cpp:106 msgid " -d, --default Reset video settings to default values" msgstr "-d, --default Zresetuj ustawienia grafiki do domyślnych wartości" -#: src/supertux/command_line_arguments.cpp:109 +#: src/supertux/command_line_arguments.cpp:107 msgid " --renderer RENDERER Use sdl, opengl, or auto to render" msgstr "--renderer RENDERER Użyj sdl, opengl lub auto do renderowania" -#: src/supertux/command_line_arguments.cpp:111 +#: src/supertux/command_line_arguments.cpp:109 msgid "Audio Options:" msgstr "Opcje dźwięku:" -#: src/supertux/command_line_arguments.cpp:112 +#: src/supertux/command_line_arguments.cpp:110 msgid " --disable-sound Disable sound effects" msgstr "--disable-sound Wyłącz efekty dźwiękowe" -#: src/supertux/command_line_arguments.cpp:113 +#: src/supertux/command_line_arguments.cpp:111 msgid " --disable-music Disable music" msgstr "--disable-music Wyłącz muzykę" -#: src/supertux/command_line_arguments.cpp:115 +#: src/supertux/command_line_arguments.cpp:113 msgid "Game Options:" msgstr "Opcje gry:" -#: src/supertux/command_line_arguments.cpp:116 +#: src/supertux/command_line_arguments.cpp:114 msgid " --edit-level Open given level in editor" msgstr "--edit-level Otwórz ten poziom w edytorze" -#: src/supertux/command_line_arguments.cpp:117 +#: src/supertux/command_line_arguments.cpp:115 msgid " --resave Loads given level and saves it" msgstr "--resave Ładuje dany poziom i zapisuje go" -#: src/supertux/command_line_arguments.cpp:118 +#: src/supertux/command_line_arguments.cpp:116 msgid " --show-fps Display framerate in levels" msgstr "--show-fps Wyświetlaj ilość klatek na sekundę w poziomach" -#: src/supertux/command_line_arguments.cpp:119 +#: src/supertux/command_line_arguments.cpp:117 msgid " --no-show-fps Do not display framerate in levels" msgstr "--no-show-fps Nie wyświetlaj ilości klatek na sekundę w poziomach" -#: src/supertux/command_line_arguments.cpp:120 +#: src/supertux/command_line_arguments.cpp:118 msgid " --show-pos Display player's current position" msgstr " --show-pos Wyświetl aktualną pozycję gracza" -#: src/supertux/command_line_arguments.cpp:121 +#: src/supertux/command_line_arguments.cpp:119 msgid " --no-show-pos Do not display player's position" msgstr " --no-show-pos Nie wyświetlaj aktualnej pozycji gracza" -#: src/supertux/command_line_arguments.cpp:122 +#: src/supertux/command_line_arguments.cpp:120 msgid " --developer Switch on developer feature" msgstr "--developer Włącz funkcje deweloperskie" -#: src/supertux/command_line_arguments.cpp:123 +#: src/supertux/command_line_arguments.cpp:121 msgid " -s, --debug-scripts Enable script debugger." msgstr "-s, --debug-scripts Włącz debuger skryptów" -#: src/supertux/command_line_arguments.cpp:124 +#: src/supertux/command_line_arguments.cpp:122 msgid "" " --spawn-pos X,Y Where in the level to spawn Tux. Only used if" " level is specified." msgstr " --spawn-pos X,Y Gdzieś w poziomie by ożywić Tuxa. Tylko do użycia, gdy poziom jest określony." -#: src/supertux/command_line_arguments.cpp:125 +#: src/supertux/command_line_arguments.cpp:123 msgid " --sector SECTOR Spawn Tux in SECTOR\n" msgstr "--sector SEKTOR Ustaw Tuxa w SEKTORZE\n" -#: src/supertux/command_line_arguments.cpp:126 +#: src/supertux/command_line_arguments.cpp:124 msgid " --spawnpoint SPAWNPOINT Spawn Tux at SPAWNPOINT\n" msgstr "--spawnpoint PUNKT STARTU Ustaw Tuxa w PUNKCIE_STARTU\n" -#: src/supertux/command_line_arguments.cpp:128 -msgid "Demo Recording Options:" -msgstr "Opcje nagrywania solucji:" - -#: src/supertux/command_line_arguments.cpp:129 -msgid " --record-demo FILE LEVEL Record a demo to FILE" -msgstr "--record-demo PLIK POZIOMU Nagraj solucję do pliku" - -#: src/supertux/command_line_arguments.cpp:130 -msgid " --play-demo FILE LEVEL Play a recorded demo" -msgstr "--play-demo PLIK POZIOMU Odtwórz nagraną solucję" - -#: src/supertux/command_line_arguments.cpp:132 +#: src/supertux/command_line_arguments.cpp:126 msgid "Directory Options:" msgstr "Opcje ścieżek dostępowych:" -#: src/supertux/command_line_arguments.cpp:133 +#: src/supertux/command_line_arguments.cpp:127 msgid "" " --datadir DIR Set the directory for the games datafiles" msgstr "--datadir ŚCIEŻKA Ustaw ścieżkę dla danych gry" -#: src/supertux/command_line_arguments.cpp:134 +#: src/supertux/command_line_arguments.cpp:128 msgid "" " --userdir DIR Set the directory for user data (savegames, " "etc.)" msgstr "--userdir ŚCIEŻKA Ustaw ścieżkę dla danych użytkownika (zapisy, itp.)" -#: src/supertux/command_line_arguments.cpp:136 +#: src/supertux/command_line_arguments.cpp:130 msgid "Add-On Options:" msgstr "Ustawienia dodatków:" -#: src/supertux/command_line_arguments.cpp:137 +#: src/supertux/command_line_arguments.cpp:131 msgid " --repository-url URL Set the URL to the Add-On repository" msgstr "--repository-url URL Ustaw URL na repozytorium z dodatkiem" -#: src/supertux/command_line_arguments.cpp:139 +#: src/supertux/command_line_arguments.cpp:133 msgid "Environment variables:" msgstr "Zmienne środowiskowe:" -#: src/supertux/command_line_arguments.cpp:140 +#: src/supertux/command_line_arguments.cpp:134 msgid "" " SUPERTUX2_USER_DIR Directory for user data (savegames, etc.)" msgstr "SUPERTUX2_USER_DIR Ścieżka dla danych użytkownika (zapisy, itp.)" -#: src/supertux/command_line_arguments.cpp:141 +#: src/supertux/command_line_arguments.cpp:135 msgid " SUPERTUX2_DATA_DIR Directory for the games datafiles" msgstr "SUPERTUX2_DATA_DIR Ścieżka dla danych gry" -#: src/supertux/title_screen.cpp:44 +#: src/supertux/title_screen.cpp:272 msgid "Copyright" msgstr "Prawa autorskie" -#: src/supertux/title_screen.cpp:45 +#: src/supertux/title_screen.cpp:273 msgid "" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to\n" "redistribute it under certain conditions; see the license file for details.\n" msgstr "Ta gra NIE POSIADA GWARANCJI. To jest wolne oprogramowanie, i mile widziane jest\nrozprowadzanie jej pod pewnymi warunkami; dla szczegółów zobacz plik z licencją.\n" +#: src/supertux/game_object.cpp:114 +msgid "Version" +msgstr "Wersja" + +#: src/supertux/game_object.cpp:129 +#: src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Type" +msgstr "Typ" + #: src/supertux/menu/integrations_menu.cpp:49 msgid "Integrations" msgstr "Integracje" #: src/supertux/menu/integrations_menu.cpp:51 msgid "Do not share level names when editing" -msgstr "Nie udostepniaj nazw poziomów podczas edytowania" +msgstr "Nie udostępniaj nazw poziomów podczas edytowania" + +#: src/supertux/menu/integrations_menu.cpp:52 +msgid "" +"Enable this if you want to work on secret levels and don't want the names to" +" be spoiled" +msgstr "" #: src/supertux/menu/integrations_menu.cpp:54 msgid "Enable Discord integration" msgstr "Włącz integralność z Discordem" +#: src/supertux/menu/integrations_menu.cpp:55 +msgid "" +"Sends information to your Discord application about what you're doing in the" +" game." +msgstr "" + #: src/supertux/menu/integrations_menu.cpp:57 msgid "Discord (disabled; not compiled)" msgstr "Discord (wyłączony; nie skompilowany)" -#: src/supertux/menu/contrib_menu.cpp:80 +#: src/supertux/menu/editor_converters_menu.cpp:61 +#: src/supertux/menu/editor_menu.cpp:85 +msgid "Convert Tiles" +msgstr "Przekonwertuj płytki" + +#: src/supertux/menu/editor_converters_menu.cpp:64 +msgid "Select Tile Conversion File" +msgstr "" + +#: src/supertux/menu/editor_converters_menu.cpp:72 +#, c++-format +msgid "By: {}" +msgstr "Przez: {}" + +#: src/supertux/menu/editor_converters_menu.cpp:75 +msgid "Convert Tiles By File" +msgstr "Konwertuj płytki według pliku" + +#: src/supertux/menu/editor_converters_menu.cpp:76 +msgid "Convert all tiles in the current level by a file, specified above." +msgstr "Konwertuje wszystkie płytki na bieżącym poziomie według pliku określonego powyżej." + +#: src/supertux/menu/editor_converters_menu.cpp:89 +msgid "No tile conversion file selected." +msgstr "Nie wybrano pliku konwersji płytek." + +#: src/supertux/menu/editor_converters_menu.cpp:93 +msgid "" +"This will convert all tiles in the level. Proceed?\n" +"\n" +"Note: This should not be ran more than once on a level.\n" +"Creating a separate copy of the level is highly recommended." +msgstr "To powoduje konwersję wszystkich płytek na poziomie. Kontynuować?\n\nNotatka: Nie należy uruchamiać tego więcej niż raz na poziomie.\nStworzenie osobnej kopii poziomu jest bardzo zalecane." + +#: src/supertux/menu/video_system_menu.cpp:36 +msgid "Select Video System" +msgstr "Wybierz System Wideo" + +#: src/supertux/menu/video_system_menu.cpp:37 +#, c++-format +msgid "Used video system: {}" +msgstr "Użyty system wideo: {}" + +#: src/supertux/menu/video_system_menu.cpp:54 +msgid "Restart game for the changes to take effect" +msgstr "Zrestartuj grę, aby zmiany zostały wprowadzone" + +#: src/supertux/menu/contrib_menu.cpp:68 #: src/supertux/menu/world_set_menu.cpp:31 msgid "Contrib Levels" msgstr "Dodatkowe plansze" -#: src/supertux/menu/debug_menu.cpp:32 +#: src/supertux/menu/contrib_menu.cpp:98 +#: src/supertux/menu/contrib_menu.cpp:112 +msgid "Official Contrib Levels" +msgstr "Oficjalne poziomy" + +#: src/supertux/menu/contrib_menu.cpp:99 +#: src/supertux/menu/contrib_menu.cpp:118 +msgid "Community Contrib Levels" +msgstr "Poziomy stworzone przez społeczność" + +#: src/supertux/menu/contrib_menu.cpp:100 +#: src/supertux/menu/contrib_menu.cpp:124 +msgid "User Contrib Levels" +msgstr "Poziomy stworzone przez użytkowników" + +#: src/supertux/menu/contrib_menu.cpp:113 +msgid "How is this possible? There are no Official Contrib Levels!" +msgstr "Jak to możliwe? Nie ma oficjalnych poziomów!" + +#: src/supertux/menu/contrib_menu.cpp:119 +msgid "No Community Contrib Levels yet. Download them from the Add-ons Menu." +msgstr "" + +#: src/supertux/menu/contrib_menu.cpp:125 +msgid "No User Contrib Levels yet. Create some with the Level Editor." +msgstr "" + +#: src/supertux/menu/debug_menu.cpp:34 msgid "Debug" msgstr "Debug" -#: src/supertux/menu/debug_menu.cpp:56 +#: src/supertux/menu/debug_menu.cpp:58 msgid "Game Speed" msgstr "Szybkość Gry" -#: src/supertux/menu/debug_menu.cpp:57 +#: src/supertux/menu/debug_menu.cpp:59 msgid "Adjust Game Speed" msgstr "Dostosuj Szybkość Gry" -#: src/supertux/menu/debug_menu.cpp:63 +#: src/supertux/menu/debug_menu.cpp:65 msgid "Show Collision Rects" msgstr "Pokaż prostokąty kolizji" -#: src/supertux/menu/debug_menu.cpp:64 +#: src/supertux/menu/debug_menu.cpp:66 msgid "Show Worldmap Path" msgstr "Pokaż ścieżkę na mapie" -#: src/supertux/menu/debug_menu.cpp:65 +#: src/supertux/menu/debug_menu.cpp:67 msgid "Show Controller" msgstr "Pokaż kontroler" -#: src/supertux/menu/debug_menu.cpp:66 +#: src/supertux/menu/debug_menu.cpp:68 msgid "Show Framerate" msgstr "Pokaż klatki na sekundę" -#: src/supertux/menu/debug_menu.cpp:67 +#: src/supertux/menu/debug_menu.cpp:69 msgid "Draw Redundant Frames" msgstr "Rysuj zbędne klatki" -#: src/supertux/menu/debug_menu.cpp:68 +#: src/supertux/menu/debug_menu.cpp:70 msgid "Show Player Position" msgstr "Pokaż pozycję gracza" -#: src/supertux/menu/debug_menu.cpp:69 +#: src/supertux/menu/debug_menu.cpp:71 msgid "Use Bitmap Fonts" msgstr "Użyj czcionek rastrowych" -#: src/supertux/menu/debug_menu.cpp:72 +#: src/supertux/menu/debug_menu.cpp:74 msgid "Dump Texture Cache" msgstr "Zrzut pamięci podręcznej tekstu" #: src/supertux/menu/particle_editor_save_as.cpp:33 msgid "Save particle as" -msgstr "Zapisz cząstke jako" +msgstr "Zapisz cząstkę jako" #: src/supertux/menu/particle_editor_save_as.cpp:37 #: src/supertux/menu/editor_save_as.cpp:37 @@ -2037,10 +2677,37 @@ msgid "File name" msgstr "Nazwa pliku" #: src/supertux/menu/particle_editor_save_as.cpp:38 -#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:766 +#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:767 msgid "Save" msgstr "Zapisz" +#: src/supertux/menu/multiplayer_menu.cpp:27 +#: src/supertux/menu/multiplayer_players_menu.cpp:34 +msgid "Multiplayer" +msgstr "" + +#: src/supertux/menu/multiplayer_menu.cpp:30 +msgid "Auto-manage Players" +msgstr "" + +#: src/supertux/menu/multiplayer_menu.cpp:31 +msgid "" +"Automatically add and remove players when controllers are plugged or " +"unplugged" +msgstr "" + +#: src/supertux/menu/multiplayer_menu.cpp:33 +msgid "Allow Multibind" +msgstr "" + +#: src/supertux/menu/multiplayer_menu.cpp:34 +msgid "Allow binding multiple joysticks to a single player" +msgstr "" + +#: src/supertux/menu/multiplayer_menu.cpp:36 +msgid "Manage Players" +msgstr "Zarządzaj Graczami" + #: src/supertux/menu/editor_sectors_menu.cpp:31 msgid "Choose Sector" msgstr "Wybierz sektor" @@ -2057,50 +2724,98 @@ msgstr "Stwórz sektor" msgid "Delete Sector" msgstr "Usuń sektor" -#: src/supertux/menu/editor_sectors_menu.cpp:93 +#: src/supertux/menu/editor_sectors_menu.cpp:92 msgid "Each level must have at least one sector." msgstr "Każdy poziom musi mieć przynajmniej jeden sektor." -#: src/supertux/menu/editor_sectors_menu.cpp:98 +#: src/supertux/menu/editor_sectors_menu.cpp:97 msgid "Do you really want to delete this sector?" msgstr "Czy na pewno chcesz usunąć ten sektor?" -#: src/supertux/menu/editor_sectors_menu.cpp:101 +#: src/supertux/menu/editor_sectors_menu.cpp:100 msgid "Delete sector" msgstr "Usuń sektor" -#: src/supertux/menu/editor_objectgroup_menu.cpp:30 -#: src/editor/toolbox_widget.cpp:93 -msgid "Objects" -msgstr "Objekty" +#: src/supertux/menu/custom_menu_menu.cpp:49 +#: src/supertux/menu/options_menu.cpp:191 +msgid "Menu Customization" +msgstr "Personalizacja menu" + +#: src/supertux/menu/custom_menu_menu.cpp:51 +msgid "Menu Back Color" +msgstr "Kolor Tła Menu" + +#: src/supertux/menu/custom_menu_menu.cpp:52 +msgid "Menu Front Color" +msgstr "" -#: src/supertux/menu/editor_level_select_menu.cpp:62 +#: src/supertux/menu/custom_menu_menu.cpp:53 +msgid "Menu Help Back Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:54 +msgid "Menu Help Front Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:55 +msgid "Label Text Color" +msgstr "Kolor tekstu etykiety" + +#: src/supertux/menu/custom_menu_menu.cpp:56 +msgid "Active Text Color" +msgstr "Kolor aktywnego tekstu" + +#: src/supertux/menu/custom_menu_menu.cpp:57 +msgid "Divider Line Color" +msgstr "Kolor linii podziałowej" + +#: src/supertux/menu/custom_menu_menu.cpp:58 +msgid "Menu Roundness" +msgstr "Zaokrąglenie menu" + +#: src/supertux/menu/custom_menu_menu.cpp:60 +msgid "Editor Interface Color" +msgstr "Kolor interfejsu edytora" + +#: src/supertux/menu/custom_menu_menu.cpp:61 +msgid "Editor Hover Color" +msgstr "Kolor podświetlenia w edytorze" + +#: src/supertux/menu/custom_menu_menu.cpp:62 +msgid "Editor Grab Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:64 +msgid "Reset to defaults" +msgstr "Przywróć ustawienia domyślne" + +#: src/supertux/menu/editor_level_select_menu.cpp:72 msgid "Empty World" msgstr "Pusty świat" -#: src/supertux/menu/editor_level_select_menu.cpp:77 +#: src/supertux/menu/editor_level_select_menu.cpp:87 msgid "Create Level" msgstr "Stwórz poziom" -#: src/supertux/menu/editor_level_select_menu.cpp:81 +#: src/supertux/menu/editor_level_select_menu.cpp:91 msgid "Edit Worldmap" msgstr "Edytuj mapę świata" -#: src/supertux/menu/editor_level_select_menu.cpp:83 +#: src/supertux/menu/editor_level_select_menu.cpp:93 msgid "Create Worldmap" msgstr "Stwórz mapę świata" -#: src/supertux/menu/editor_level_select_menu.cpp:85 -#: src/supertux/menu/editor_delete_level_menu.cpp:33 +#: src/supertux/menu/editor_level_select_menu.cpp:95 +#: src/supertux/menu/editor_delete_level_menu.cpp:55 msgid "Delete level" msgstr "Usuń poziom" -#: src/supertux/menu/editor_level_select_menu.cpp:87 -#: src/supertux/menu/editor_levelset_menu.cpp:56 +#: src/supertux/menu/editor_level_select_menu.cpp:97 +#: src/supertux/menu/editor_levelset_menu.cpp:50 msgid "World Settings" msgstr "Ustawienia świata" -#: src/supertux/menu/editor_level_select_menu.cpp:127 +#: src/supertux/menu/editor_level_select_menu.cpp:141 msgid "" "Share this worldmap under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -2108,7 +2823,7 @@ msgid "" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." msgstr "Opublikuj ten świat pod licencją CC-BY-SA 4.0 International (zalecane)\nPozwala to na modyfikację i dystrybucję przez osoby trzecie.\nJeśli nie zgadzasz się z tą licencją, zmień ją we właściwościach świata.\nUWAGA: Autorzy programu SuperTux nie ponoszą odpowiedzialności za twój wybór licencji." -#: src/supertux/menu/editor_level_select_menu.cpp:134 +#: src/supertux/menu/editor_level_select_menu.cpp:148 msgid "" "Share this level under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -2116,497 +2831,817 @@ msgid "" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." msgstr "Opublikuj ten świat pod licencją CC-BY-SA 4.0 International (zalecane)\nPozwala to na modyfikację i dystrybucję przez osoby trzecie.\nJeśli nie zgadzasz się z tą licencją, zmień ją we właściwościach świata.\nUWAGA: Autorzy programu SuperTux nie ponoszą odpowiedzialności za twój wybór licencji." -#: src/supertux/menu/editor_level_select_menu.cpp:162 +#: src/supertux/menu/editor_level_select_menu.cpp:179 msgid "" "An auto-save recovery file was found. Would you like to restore the recovery\n" "file and resume where you were before the editor crashed?" msgstr "Plik odzyskiwania automatycznego zapisu został odnaleziony. Czy chciałabyś/chciałbyś przywrócić plik\nodzyskiwania i wznowić gdzie byłeś/aś przed tym, jak edytor się zawiesił?" -#: src/supertux/menu/editor_level_select_menu.cpp:169 +#: src/supertux/menu/editor_level_select_menu.cpp:186 msgid "This will delete the auto-save file. Are you sure?" msgstr "To usunie plik autosave. Jesteś pewny?" -#: src/supertux/menu/worldmap_cheat_menu.cpp:34 -#: src/supertux/menu/cheat_menu.cpp:30 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:35 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:52 +#: src/supertux/menu/cheat_apply_menu.cpp:33 +#: src/supertux/menu/cheat_apply_menu.cpp:51 +msgid "Apply cheat to player" +msgstr "Zastosuj cheat do gracza" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:60 +#: src/supertux/menu/multiplayer_players_menu.cpp:39 +#: src/supertux/menu/keyboard_menu.cpp:63 +#: src/supertux/menu/cheat_apply_menu.cpp:39 +#: src/supertux/menu/cheat_apply_menu.cpp:59 +#: src/supertux/menu/multiplayer_player_menu.cpp:37 +#, c++-format +msgid "Player {}" +msgstr "Gracz {}" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:57 +#: src/supertux/menu/cheat_apply_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:56 +msgid "All Players" +msgstr "Wszyscy gracze" + +#: src/supertux/menu/worldmap_cheat_menu.cpp:36 +#: src/supertux/menu/cheat_menu.cpp:31 msgid "Cheats" msgstr "Kody" -#: src/supertux/menu/worldmap_cheat_menu.cpp:36 -#: src/supertux/menu/cheat_menu.cpp:32 +#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:33 msgid "Bonus: Grow" msgstr "Bonus: Wzrost" -#: src/supertux/menu/worldmap_cheat_menu.cpp:37 +#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:34 msgid "Bonus: Fire" msgstr "Bonus: Ogień" -#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/cheat_menu.cpp:35 msgid "Bonus: Ice" msgstr "Bonus: Lód" -#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/cheat_menu.cpp:36 msgid "Bonus: Air" msgstr "Bonus: Powietrze" -#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:42 +#: src/supertux/menu/cheat_menu.cpp:37 msgid "Bonus: Earth" msgstr "Bonus: Ziemia" -#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/worldmap_cheat_menu.cpp:43 msgid "Bonus: None" msgstr "Bonus: Nic" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:51 msgid "Leave Ghost Mode" msgstr "Opuść Tryb Ducha" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:50 msgid "Activate Ghost Mode" msgstr "Aktywuj Tryb Ducha" -#: src/supertux/menu/worldmap_cheat_menu.cpp:46 -#: src/supertux/menu/cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:48 +#: src/supertux/menu/cheat_menu.cpp:41 msgid "Finish Level" msgstr "Ukończ poziom" -#: src/supertux/menu/worldmap_cheat_menu.cpp:47 +#: src/supertux/menu/worldmap_cheat_menu.cpp:49 msgid "Reset Level" msgstr "Zrestartuj poziom" -#: src/supertux/menu/worldmap_cheat_menu.cpp:49 +#: src/supertux/menu/worldmap_cheat_menu.cpp:51 msgid "Finish Worldmap" msgstr "Ukończ mapę" -#: src/supertux/menu/worldmap_cheat_menu.cpp:50 +#: src/supertux/menu/worldmap_cheat_menu.cpp:52 msgid "Reset Worldmap" msgstr "Przywróć mapę" -#: src/supertux/menu/worldmap_cheat_menu.cpp:52 +#: src/supertux/menu/worldmap_cheat_menu.cpp:54 msgid "Go to level" msgstr "Idź do poziomu" -#: src/supertux/menu/worldmap_cheat_menu.cpp:53 +#: src/supertux/menu/worldmap_cheat_menu.cpp:55 msgid "Go to main spawnpoint" msgstr "Idź do głównego punktu odradzania" -#: src/supertux/menu/worldmap_cheat_menu.cpp:145 +#: src/supertux/menu/worldmap_cheat_menu.cpp:188 msgid "Select level" msgstr "Wybierz poziom" #: src/supertux/menu/editor_save_as.cpp:33 -#: src/supertux/menu/editor_menu.cpp:49 +#: src/supertux/menu/editor_menu.cpp:63 msgid "Save Level as" msgstr "Zapisz poziom jako" #: src/supertux/menu/editor_save_as.cpp:33 -#: src/supertux/menu/editor_menu.cpp:50 +#: src/supertux/menu/editor_menu.cpp:64 msgid "Save Copy" msgstr "Zapisz kopię" -#: src/supertux/menu/editor_levelset_select_menu.cpp:72 +#: src/supertux/menu/editor_levelset_select_menu.cpp:71 msgid "Choose World" msgstr "Wybierz świat" -#: src/supertux/menu/editor_levelset_select_menu.cpp:100 -#, c-format -msgid "%d level" -msgid_plural "%d levels" -msgstr[0] "%dpoziom" -msgstr[1] "%dpoziomy" -msgstr[2] "%dpoziomów" -msgstr[3] "%dpoziomów" +#: src/supertux/menu/editor_levelset_select_menu.cpp:99 +#, c++-format +msgid "{} level" +msgid_plural "{} levels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_levelset_select_menu.cpp:112 msgid "Create World" msgstr "Stwórz świat" -#: src/supertux/menu/options_menu.cpp:98 src/supertux/menu/main_menu.cpp:64 -#: src/supertux/menu/game_menu.cpp:61 src/supertux/menu/worldmap_menu.cpp:31 -msgid "Options" -msgstr "Opcje" - -#: src/supertux/menu/options_menu.cpp:104 -#: src/supertux/menu/options_menu.cpp:142 -#: src/supertux/menu/options_menu.cpp:455 -#: src/supertux/menu/options_menu.cpp:476 src/editor/object_settings.cpp:119 -msgid "auto" -msgstr "automatycznie" - -#: src/supertux/menu/options_menu.cpp:221 -msgid "Desktop" -msgstr "Pulpit" - -#: src/supertux/menu/options_menu.cpp:251 -msgid "on" -msgstr "włączony" - -#: src/supertux/menu/options_menu.cpp:252 -msgid "off" -msgstr "wyłączony" +#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:41 +msgid "Delete World" +msgstr "Usuń świat" -#: src/supertux/menu/options_menu.cpp:253 -msgid "adaptive" -msgstr "adaptacyjny" +#: src/supertux/menu/options_menu.cpp:72 +#: src/supertux/menu/options_select_menu.cpp:35 +msgid "Locale" +msgstr "Lokalizacja" -#: src/supertux/menu/options_menu.cpp:347 +#: src/supertux/menu/options_menu.cpp:76 msgid "Select Language" msgstr "Wybierz język" -#: src/supertux/menu/options_menu.cpp:348 +#: src/supertux/menu/options_menu.cpp:77 msgid "Select a different language to display text in" msgstr "Wybierz inny język wyświetlania komunikatów" -#: src/supertux/menu/options_menu.cpp:350 +#: src/supertux/menu/options_menu.cpp:79 msgid "Language Packs" msgstr "Pliki językowe" -#: src/supertux/menu/options_menu.cpp:351 +#: src/supertux/menu/options_menu.cpp:80 msgid "Language packs contain up-to-date translations" msgstr "Twoje tłumaczenie jest aktualne" -#: src/supertux/menu/options_menu.cpp:353 -#: src/supertux/menu/profile_menu.cpp:34 -msgid "Select Profile" -msgstr "Wybierz profil" +#: src/supertux/menu/options_menu.cpp:88 +#: src/supertux/menu/options_select_menu.cpp:37 +msgid "Video" +msgstr "Wideo" -#: src/supertux/menu/options_menu.cpp:354 -msgid "Select a profile to play with" -msgstr "Wybierz profil gracza" - -#: src/supertux/menu/options_menu.cpp:358 +#: src/supertux/menu/options_menu.cpp:91 msgid "Window Resizable" msgstr "Okno Skalowalne" -#: src/supertux/menu/options_menu.cpp:359 +#: src/supertux/menu/options_menu.cpp:92 msgid "Allow window resizing, might require a restart to take effect" -msgstr "Umożliwij zmianę rozmiaru okna, może wymagać restartu by zadziałać" - -#: src/supertux/menu/options_menu.cpp:361 -msgid "Window Resolution" -msgstr "Rozdzielczość w oknie" - -#: src/supertux/menu/options_menu.cpp:362 -msgid "Resize the window to the given size" -msgstr "Wyskaluj okno do danego rozmiaru" +msgstr "Umożliwiaj zmianę rozmiaru okna, może wymagać restartu by zadziałać" -#: src/supertux/menu/options_menu.cpp:364 +#: src/supertux/menu/options_menu.cpp:96 msgid "Fullscreen" msgstr "Pełny ekran" -#: src/supertux/menu/options_menu.cpp:365 +#: src/supertux/menu/options_menu.cpp:97 msgid "Fill the entire screen" msgstr "Wypełnij cały ekran" -#: src/supertux/menu/options_menu.cpp:367 -msgid "Fullscreen Resolution" -msgstr "Rozdzielczość pełnoekranowa" - -#: src/supertux/menu/options_menu.cpp:368 -msgid "" -"Determine the resolution used in fullscreen mode (you must toggle fullscreen" -" to complete the change)" -msgstr "Określa rozdzielczość używaną w trybie pełnoekranowym (musisz włączyć tryb pełnoekranowy, aby wprowadzić zmianę)" - -#: src/supertux/menu/options_menu.cpp:373 +#: src/supertux/menu/options_menu.cpp:104 msgid "Fit to browser" msgstr "Dopasuj do przeglądarki" -#: src/supertux/menu/options_menu.cpp:374 +#: src/supertux/menu/options_menu.cpp:105 msgid "Fit the resolution to the size of your browser" msgstr "Dopasuj rozdzielczość do rozmiaru twojej przeglądarki" -#: src/supertux/menu/options_menu.cpp:378 -msgid "Magnification" -msgstr "Powiększenie" - -#: src/supertux/menu/options_menu.cpp:379 -msgid "Change the magnification of the game area" -msgstr "Zmień zbliżenie ekranu gry" - -#: src/supertux/menu/options_menu.cpp:381 -msgid "VSync" -msgstr "Synchronizacja pionowa" - -#: src/supertux/menu/options_menu.cpp:382 -msgid "Set the VSync mode" -msgstr "Ustaw tryb synchronizacji pionowej" +#: src/supertux/menu/options_menu.cpp:116 +msgid "Change Video System" +msgstr "Zmień system wideo" -#: src/supertux/menu/options_menu.cpp:385 -msgid "Aspect Ratio" -msgstr "Proporcje obrazu" +#: src/supertux/menu/options_menu.cpp:117 +msgid "Change video system used to render graphics" +msgstr "Zmiana systemu wideo używanego do renderowania grafiki" -#: src/supertux/menu/options_menu.cpp:386 -msgid "Adjust the aspect ratio" -msgstr "Ustaw proporcje ekranu" +#: src/supertux/menu/options_menu.cpp:124 +#: src/supertux/menu/options_select_menu.cpp:38 +msgid "Audio" +msgstr "Dźwięk" -#: src/supertux/menu/options_menu.cpp:392 +#: src/supertux/menu/options_menu.cpp:129 msgid "Disable all sound effects" msgstr "Wyłącz wszystkie efekty dźwiękowe" -#: src/supertux/menu/options_menu.cpp:394 +#: src/supertux/menu/options_menu.cpp:131 msgid "Disable all music" msgstr "Wyłącz muzykę" -#: src/supertux/menu/options_menu.cpp:396 -msgid "Sound Volume" -msgstr "Głośność dźwięku" - -#: src/supertux/menu/options_menu.cpp:397 -msgid "Adjust sound volume" -msgstr "Dopasuj głośność dźwięku" - -#: src/supertux/menu/options_menu.cpp:399 -msgid "Music Volume" -msgstr "Głośność muzyki" - -#: src/supertux/menu/options_menu.cpp:400 -msgid "Adjust music volume" -msgstr "Dopasuj głośność muzyki" - -#: src/supertux/menu/options_menu.cpp:404 +#: src/supertux/menu/options_menu.cpp:138 msgid "Sound (disabled)" msgstr "Dźwięk (wyłączony)" -#: src/supertux/menu/options_menu.cpp:405 +#: src/supertux/menu/options_menu.cpp:139 msgid "Music (disabled)" msgstr "Muzyka (wyłączona)" -#: src/supertux/menu/options_menu.cpp:408 -#: src/supertux/menu/keyboard_menu.cpp:30 +#: src/supertux/menu/options_menu.cpp:147 +#: src/supertux/menu/options_select_menu.cpp:39 +msgid "Controls" +msgstr "Sterowanie" + +#: src/supertux/menu/options_menu.cpp:151 +msgid "Enable Rumbling Controllers" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "Enable vibrating the game controllers." +msgstr "Włącz wibracje kontrolerów gier." + +#: src/supertux/menu/options_menu.cpp:152 +msgid "This feature is currently only used in the multiplayer options menu." +msgstr "" + +#: src/supertux/menu/options_menu.cpp:154 +#: src/supertux/menu/keyboard_menu.cpp:34 msgid "Setup Keyboard" msgstr "Ustawienia klawiatury" -#: src/supertux/menu/options_menu.cpp:409 +#: src/supertux/menu/options_menu.cpp:155 msgid "Configure key-action mappings" msgstr "Zmień przypisanie klawiszy" -#: src/supertux/menu/options_menu.cpp:412 -#: src/supertux/menu/joystick_menu.cpp:52 +#: src/supertux/menu/options_menu.cpp:158 +#: src/supertux/menu/joystick_menu.cpp:54 msgid "Setup Joystick" msgstr "Ustaw dżojstik" -#: src/supertux/menu/options_menu.cpp:413 +#: src/supertux/menu/options_menu.cpp:159 msgid "Configure joystick control-action mappings" msgstr "Skonfiguruj mapowania sterowania-działania joysticka" -#: src/supertux/menu/options_menu.cpp:417 -msgid "On-screen controls" -msgstr "Sterowanie na ekranie" +#: src/supertux/menu/options_menu.cpp:167 +#: src/supertux/menu/options_select_menu.cpp:40 +msgid "Extras" +msgstr "Dodatkowe" -#: src/supertux/menu/options_menu.cpp:418 -msgid "Toggle on-screen controls for mobile devices" -msgstr "Włącz sterowanie na ekranie dla urządzeń mobilnych" +#: src/supertux/menu/options_menu.cpp:170 +#: src/supertux/menu/profile_menu.cpp:56 +msgid "Select Profile" +msgstr "Wybierz profil" -#: src/supertux/menu/options_menu.cpp:420 +#: src/supertux/menu/options_menu.cpp:171 +msgid "Select a profile to play with" +msgstr "Wybierz profil gracza" + +#: src/supertux/menu/options_menu.cpp:174 +msgid "Multiplayer settings" +msgstr "Ustawienia gry wieloosobowej" + +#: src/supertux/menu/options_menu.cpp:175 +msgid "Configure settings specific to multiplayer" +msgstr "Konfiguracja ustawień specyficznych dla trybu wieloosobowego" + +#: src/supertux/menu/options_menu.cpp:178 msgid "Enable transitions" msgstr "Włącz płynne przejścia" -#: src/supertux/menu/options_menu.cpp:421 +#: src/supertux/menu/options_menu.cpp:179 msgid "Enable screen transitions and smooth menu animation" msgstr "Włącz płynne przejścia obrazu i menu" -#: src/supertux/menu/options_menu.cpp:425 -msgid "Developer Mode" -msgstr "Tryb programisty" +#: src/supertux/menu/options_menu.cpp:181 +msgid "Custom title screen levels" +msgstr "Niestandardowe poziomy ekranu tytułowego" + +#: src/supertux/menu/options_menu.cpp:182 +msgid "Allow overriding the title screen level, when loading certain worlds" +msgstr "Zezwalaj na zastępowanie poziomu ekranu tytułowego podczas wczytywania niektórych światów" -#: src/supertux/menu/options_menu.cpp:430 +#: src/supertux/menu/options_menu.cpp:185 msgid "Christmas Mode" msgstr "Tryb świąteczny" -#: src/supertux/menu/options_menu.cpp:433 +#: src/supertux/menu/options_menu.cpp:187 +msgid "Integrations and presence" +msgstr "Integralności i obecność" + +#: src/supertux/menu/options_menu.cpp:188 +msgid "" +"Manage whether SuperTux should display the levels you play on your social " +"media profiles (Discord)" +msgstr "Zarządzaj czy SuperTux powinien wyświetlić poziomy, w które grasz na twoich profilach mediów społecznościowych (Discord)" + +#: src/supertux/menu/options_menu.cpp:192 +msgid "Customize the appearance of the menus" +msgstr "Dostosowywanie wyglądu menu" + +#: src/supertux/menu/options_menu.cpp:199 +#: src/supertux/menu/options_select_menu.cpp:41 +msgid "Advanced" +msgstr "Zaawansowane" + +#: src/supertux/menu/options_menu.cpp:204 +msgid "Developer Mode" +msgstr "Tryb programisty" + +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirmation Dialog" msgstr "Okno potwierdzenia" -#: src/supertux/menu/options_menu.cpp:433 +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirm aborting level" msgstr "Potwierdź opuszczenie poziomu" -#: src/supertux/menu/options_menu.cpp:434 +#: src/supertux/menu/options_menu.cpp:208 msgid "Pause on focus loss" msgstr "Zapauzuj, gdy okno jest nieaktywne" -#: src/supertux/menu/options_menu.cpp:435 +#: src/supertux/menu/options_menu.cpp:209 msgid "Automatically pause the game when the window loses focus" msgstr "Automatycznie wstrzymaj grę, gdy okno straci skupienie" -#: src/supertux/menu/options_menu.cpp:436 +#: src/supertux/menu/options_menu.cpp:211 msgid "Use custom mouse cursor" msgstr "Użyj niestandardowego kursora myszy" -#: src/supertux/menu/options_menu.cpp:436 +#: src/supertux/menu/options_menu.cpp:211 msgid "Whether the game renders its own cursor or uses the system's cursor" msgstr "Czy gra renderuje jej własny kursor, czy używa systemowego kursora" -#: src/supertux/menu/options_menu.cpp:438 -msgid "Integrations and presence" -msgstr "Integralności i obecność" +#: src/supertux/menu/options_menu.cpp:214 +msgid "Check for new releases" +msgstr "" -#: src/supertux/menu/options_menu.cpp:439 +#: src/supertux/menu/options_menu.cpp:215 msgid "" -"Manage whether SuperTux should display the levels you play on your social " -"media profiles (Discord)" -msgstr "Zarządzaj czy SuperTux powinien wyświetlić poziomy, w które grasz na twoich profilach mediów społecznościowych (Discord)" +"Allows the game to perform checks for new SuperTux releases on startup and " +"notify if any found." +msgstr "" + +#: src/supertux/menu/options_menu.cpp:245 +#: src/supertux/menu/options_menu.cpp:288 src/supertux/direction.cpp:76 +msgid "auto" +msgstr "automatycznie" + +#: src/supertux/menu/options_menu.cpp:281 +msgid "Magnification" +msgstr "Powiększenie" + +#: src/supertux/menu/options_menu.cpp:282 +msgid "Change the magnification of the game area" +msgstr "Zmień zbliżenie ekranu gry" + +#: src/supertux/menu/options_menu.cpp:318 +msgid "Aspect Ratio" +msgstr "Proporcje obrazu" + +#: src/supertux/menu/options_menu.cpp:319 +msgid "Adjust the aspect ratio" +msgstr "Ustaw proporcje ekranu" + +#: src/supertux/menu/options_menu.cpp:346 +msgid "Window Resolution" +msgstr "Rozdzielczość okna" + +#: src/supertux/menu/options_menu.cpp:347 +msgid "Resize the window to the given size" +msgstr "Wyskaluj okno do danego rozmiaru" + +#: src/supertux/menu/options_menu.cpp:377 +msgid "Desktop" +msgstr "Pulpit" + +#: src/supertux/menu/options_menu.cpp:404 +msgid "Fullscreen Resolution" +msgstr "Rozdzielczość pełnoekranowa" + +#: src/supertux/menu/options_menu.cpp:405 +msgid "" +"Determine the resolution used in fullscreen mode (you must toggle fullscreen" +" to complete the change)" +msgstr "Określa rozdzielczość używaną w trybie pełnoekranowym (musisz włączyć tryb pełnoekranowy, aby wprowadzić zmianę)" + +#: src/supertux/menu/options_menu.cpp:411 +msgid "on" +msgstr "włączony" + +#: src/supertux/menu/options_menu.cpp:412 +msgid "off" +msgstr "wyłączony" + +#: src/supertux/menu/options_menu.cpp:413 +msgid "adaptive" +msgstr "adaptacyjny" + +#: src/supertux/menu/options_menu.cpp:431 +msgid "VSync" +msgstr "Synchronizacja pionowa" + +#: src/supertux/menu/options_menu.cpp:432 +msgid "Set the VSync mode" +msgstr "Ustaw tryb synchronizacji pionowej" + +#: src/supertux/menu/options_menu.cpp:467 +msgid "Sound Volume" +msgstr "Głośność dźwięku" + +#: src/supertux/menu/options_menu.cpp:468 +msgid "Adjust sound volume" +msgstr "Dopasuj głośność dźwięku" -#: src/supertux/menu/options_menu.cpp:559 +#: src/supertux/menu/options_menu.cpp:503 +msgid "Music Volume" +msgstr "Głośność muzyki" + +#: src/supertux/menu/options_menu.cpp:504 +msgid "Adjust music volume" +msgstr "Dopasuj głośność muzyki" + +#: src/supertux/menu/options_menu.cpp:517 +msgid "On-screen controls scale" +msgstr "Skala ekranowych elementów sterujących" + +#: src/supertux/menu/options_menu.cpp:638 msgid "" "The game couldn't detect your browser resolution.\n" "This most likely happens because it is not embedded\n" "in the SuperTux custom HTML template.\n" -msgstr "Gra nie mogła wykryć rozdzielczości twojej przeglądarki.\nNajprawodopniej sie to stało, przez to, że nie jest wbudowana\nw niestandarowowy szablon HTML SuperTux.\n" +msgstr "Gra nie mogła wykryć rozdzielczości twojej przeglądarki.\nNajprawodopniej stało się to, ponieważ nie jest wbudowana\nw niestandardowy szablon HTML SuperTux.\n" + +#: src/supertux/menu/editor_delete_levelset_menu.cpp:80 +msgid "You cannot delete the world that you are editing" +msgstr "Nie możesz usunąć świata, którego edytujesz" + +#: src/supertux/menu/editor_delete_levelset_menu.cpp:83 +#, c++-format +msgid "You are about to delete world \"{}\". Are you sure?" +msgstr "Zamierzasz usunąć świat \"{}\". Jesteś pewny?" + +#: src/supertux/menu/addon_preview_menu.cpp:82 +#, c++-format +msgid "{} \"{}\"" +msgstr "{} \"{}\"" + +#: src/supertux/menu/addon_preview_menu.cpp:87 +msgid "Some information about this add-on is not available." +msgstr "Niektóre informacje na temat tego dodatku nie są dostępne." + +#: src/supertux/menu/addon_preview_menu.cpp:88 +msgid "Perform a \"Check Online\" to try retrieving it." +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:92 +msgid "No author specified." +msgstr "Bez określonego autora." + +#: src/supertux/menu/addon_preview_menu.cpp:92 +#, c++-format +msgid "Author: {}" +msgstr "Autor: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:93 +#, c++-format +msgid "Type: {}" +msgstr "Typ: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:94 +msgid "No license specified." +msgstr "Bez określonej licencji." + +#: src/supertux/menu/addon_preview_menu.cpp:94 +#, c++-format +msgid "License: {}" +msgstr "Licencja: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:99 +msgid "Dependencies:" +msgstr "Zależności:" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Installed" +msgstr "Zainstalowane" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Not installed" +msgstr "Nie zainstalowane" + +#: src/supertux/menu/addon_preview_menu.cpp:113 +msgid "Not available!" +msgstr "Niedostępne!" + +#: src/supertux/menu/addon_preview_menu.cpp:120 +msgid "Description:" +msgstr "Opis:" + +#: src/supertux/menu/addon_preview_menu.cpp:123 +msgid "No description available." +msgstr "Brak dostępnego opisu." -#: src/supertux/menu/main_menu.cpp:56 src/supertux/menu/world_set_menu.cpp:28 +#: src/supertux/menu/addon_preview_menu.cpp:147 +msgid "Failed to load all available screenshot previews." +msgstr "Nie udało się załadować wszystkich dostępnych podglądów zrzutów ekranu." + +#: src/supertux/menu/addon_preview_menu.cpp:152 +msgid "Show screenshots" +msgstr "Pokaż zrzuty ekranu" + +#: src/supertux/menu/addon_preview_menu.cpp:165 +msgid "Screenshot previews are disabled for automatic installs." +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:169 +msgid "No screenshot previews available." +msgstr "Podgląd zrzutów ekranu nie jest dostępny." + +#: src/supertux/menu/addon_preview_menu.cpp:177 +msgid "Install" +msgstr "Zainstaluj" + +#: src/supertux/menu/addon_preview_menu.cpp:190 +msgid "Uninstall" +msgstr "Odinstaluj" + +#: src/supertux/menu/addon_preview_menu.cpp:214 +#, c++-format +msgid "Are you sure you want to uninstall \"{}\"?" +msgstr "Jesteś pewien, że chcesz odinstalować \"{}\"?" + +#: src/supertux/menu/addon_preview_menu.cpp:215 +msgid "" +"\n" +"Your progress won't be lost." +msgstr "\nTwoje postępy nie zostaną utracone." + +#: src/supertux/menu/addon_preview_menu.cpp:227 +#, c++-format +msgid "" +"NOTE: The add-on \"{}\" is a dependency of {} other installed {}.\n" +"Are you sure you wish to uninstall?" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:246 +#, c++-format +msgid "" +"Cannot toggle add-on \"{}\":\n" +"{}" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:279 +msgid "Fetching screenshot previews..." +msgstr "Pobieranie podglądu zrzutów ekranu..." + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Updating" +msgstr "Aktualizowanie" + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Downloading" +msgstr "Ściąganie" + +#: src/supertux/menu/addon_preview_menu.cpp:328 +msgid "Add-on uninstalled successfully." +msgstr "Dodatek został pomyślnie odinstalowany." + +#: src/supertux/menu/addon_preview_menu.cpp:333 +#, c++-format +msgid "" +"Error uninstalling add-on:\n" +"{}" +msgstr "Błąd odinstalowywania dodatku:\n{}" + +#: src/supertux/menu/addon_preview_menu.cpp:361 +msgid "" +"Please restart SuperTux\n" +"for these changes to take effect." +msgstr "Zrestartuj grę,\naby wprowadzić zmiany." + +#: src/supertux/menu/main_menu.cpp:51 src/supertux/menu/world_set_menu.cpp:28 msgid "Start Game" msgstr "Rozpocznij grę" -#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/addon_menu.cpp:122 +#: src/supertux/menu/main_menu.cpp:55 msgid "Add-ons" msgstr "Ściągnij dodatkowe plansze" -#: src/supertux/menu/main_menu.cpp:62 src/supertux/menu/web_asset_menu.cpp:38 +#: src/supertux/menu/main_menu.cpp:57 src/supertux/menu/web_asset_menu.cpp:38 msgid "Manage Assets" msgstr "Zarządzaj zasobami" -#: src/supertux/menu/main_menu.cpp:65 src/supertux/menu/editor_menu.cpp:43 +#: src/supertux/menu/main_menu.cpp:59 +#: src/supertux/menu/options_select_menu.cpp:29 +#: src/supertux/menu/game_menu.cpp:58 src/supertux/menu/worldmap_menu.cpp:31 +#: src/supertux/menu/editor_menu.cpp:70 +msgid "Options" +msgstr "Opcje" + +#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/editor_menu.cpp:58 msgid "Level Editor" msgstr "Edytor poziomów" -#: src/supertux/menu/main_menu.cpp:66 +#: src/supertux/menu/main_menu.cpp:61 msgid "Credits" msgstr "Twórcy" -#: src/supertux/menu/main_menu.cpp:67 +#: src/supertux/menu/main_menu.cpp:64 msgid "Donate" msgstr "Wspomóż" -#: src/supertux/menu/main_menu.cpp:69 +#: src/supertux/menu/main_menu.cpp:67 msgid "Quit" msgstr "Wyjdź" -#: src/supertux/menu/editor_sector_menu.cpp:35 +#: src/supertux/menu/main_menu.cpp:106 +msgid "" +"This will take you to the SuperTux donation page. Are you sure you want to " +"continue?" +msgstr "" + +#: src/supertux/menu/editor_sector_menu.cpp:34 +#, c++-format +msgid "Sector {}" +msgstr "Sektor {}" + +#: src/supertux/menu/editor_sector_menu.cpp:37 msgid "Initialization script" msgstr "Skrypt inicjalizacyjny" -#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_sector_menu.cpp:38 msgid "Gravity" msgstr "Grawitacja" -#: src/supertux/menu/editor_sector_menu.cpp:41 +#: src/supertux/menu/editor_sector_menu.cpp:43 msgid "Resize offset X" msgstr "Zmień rozmiar wyrównania X" -#: src/supertux/menu/editor_sector_menu.cpp:42 +#: src/supertux/menu/editor_sector_menu.cpp:44 msgid "Resize offset Y" msgstr "Zmień rozmiar wyrównania Y" -#: src/supertux/menu/editor_sector_menu.cpp:43 +#: src/supertux/menu/editor_sector_menu.cpp:45 msgid "Resize" msgstr "Zmień rozmiar" -#: src/supertux/menu/profile_menu.cpp:41 -#, c-format -msgid "[Profile %s]" -msgstr "[Profil %s]" - -#: src/supertux/menu/profile_menu.cpp:45 -#, c-format -msgid "Profile %s" -msgstr "Profil %s" - -#: src/supertux/menu/profile_menu.cpp:50 -msgid "Reset profile" -msgstr "Zresetuj profil" - -#: src/supertux/menu/profile_menu.cpp:51 -msgid "Reset all profiles" -msgstr "Zresetuj wszystkie profile" - -#: src/supertux/menu/profile_menu.cpp:67 -msgid "Deleting your profile will reset your game progress. Are you sure?" -msgstr "Usunięcie twojego profilu zresetuje twój postęp w grze. Jesteś pewny?" +#: src/supertux/menu/profile_menu.cpp:60 +msgid "No profiles found." +msgstr "Nie znaleziono żadnych profili." + +#: src/supertux/menu/profile_menu.cpp:68 +#: src/supertux/menu/profile_menu.cpp:149 +#: src/supertux/menu/profile_menu.cpp:168 +#, c++-format +msgid "Profile {}" +msgstr "Profil {}" + +#: src/supertux/menu/profile_menu.cpp:69 +#, c++-format +msgid "{} (Profile {})" +msgstr "{} (Profil {})" + +#: src/supertux/menu/profile_menu.cpp:84 +msgid "No profile selected." +msgstr "Nie wybrano profilu." + +#: src/supertux/menu/profile_menu.cpp:91 src/supertux/menu/profile_menu.cpp:93 +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Rename" +msgstr "Zmień nazwę" + +#: src/supertux/menu/profile_menu.cpp:98 +#: src/supertux/menu/profile_menu.cpp:100 +msgid "Reset" +msgstr "Resetuj" + +#: src/supertux/menu/profile_menu.cpp:103 +#: src/supertux/menu/profile_menu.cpp:105 +msgid "Reset all" +msgstr "Zresetuj wszystko" + +#: src/supertux/menu/profile_menu.cpp:113 +#: src/supertux/menu/profile_menu.cpp:115 +msgid "Delete all" +msgstr "Usuń wszystkie" + +#: src/supertux/menu/profile_menu.cpp:148 +#, c++-format +msgid "" +"This will reset all game progress on the profile \"{}\".\n" +"Are you sure?" +msgstr "" -#: src/supertux/menu/profile_menu.cpp:73 +#: src/supertux/menu/profile_menu.cpp:157 msgid "This will reset your game progress on all profiles. Are you sure?" msgstr "To zresetuje twój postęp w grze na wszystkich profilach. Jesteś pewny?" -#: src/supertux/menu/editor_levelset_menu.cpp:59 +#: src/supertux/menu/profile_menu.cpp:167 +#, c++-format +msgid "" +"This will delete the profile \"{}\",\n" +"including all game progress on it. Are you sure?" +msgstr "" + +#: src/supertux/menu/profile_menu.cpp:178 +msgid "" +"This will delete all profiles, including all game progress on them.\n" +"Are you sure?" +msgstr "" + +#: src/supertux/menu/editor_levelset_menu.cpp:53 #: src/supertux/menu/editor_new_levelset_menu.cpp:35 msgid "Description" msgstr "Opis" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:48 -#: data//images/engine/editor/objects.stoi:371 -msgid "Worldmap" -msgstr "Mapa świata" +#: src/supertux/menu/editor_levelset_menu.cpp:55 +msgid "Title Screen Level" +msgstr "Poziom ekranu tytułowego" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:45 -msgid "Levelset" -msgstr "Zestaw poziomów" +#: src/supertux/menu/editor_levelset_menu.cpp:56 +msgid "A level to be used for the title screen, after exiting the world." +msgstr "Poziom używany na ekranie tytułowym po wyjściu ze świata." -#: src/supertux/menu/addon_menu.cpp:51 -msgid "World" -msgstr "Świat" +#: src/supertux/menu/multiplayer_players_menu.cpp:46 +msgid "Add Player" +msgstr "Dodaj gracza" -#: src/supertux/menu/addon_menu.cpp:54 -msgid "Add-on" -msgstr "Dodatek" +#: src/supertux/menu/multiplayer_players_menu.cpp:59 +msgid "Remove Last Player" +msgstr "Usuń ostatniego gracza" -#: src/supertux/menu/addon_menu.cpp:60 -msgid "Unknown" -msgstr "Nieznany" +#: src/supertux/menu/multiplayer_players_menu.cpp:62 +msgid "" +"Warning: The player you are trying to\n" +"remove is currently in-game.\n" +"\n" +"Do you wish to remove them anyways?" +msgstr "" + +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Language Packs" +msgstr "Zainstalowane pakiety językowe" + +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Add-ons" +msgstr "Zainstalowane dodatki" -#: src/supertux/menu/addon_menu.cpp:71 -#, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" przez \"%s\"" +#: src/supertux/menu/addon_menu.cpp:76 src/supertux/menu/addon_menu.cpp:117 +msgid "No language packs installed" +msgstr "Pliki językowe niezainstalowane" -#: src/supertux/menu/addon_menu.cpp:129 +#: src/supertux/menu/addon_menu.cpp:76 msgid "No Add-ons installed" msgstr "Dodatkowe plansze niezainstalowane" -#: src/supertux/menu/addon_menu.cpp:133 -msgid "No Add-ons found" -msgstr "Dodatkowe plansze nieznalezione" +#: src/supertux/menu/addon_menu.cpp:124 +#, c++-format +msgid "{} {}*UPDATE*" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:179 -#, c-format -msgid "Install %s *NEW*" -msgstr "Zainstaluj %s *NOWY*" +#: src/supertux/menu/addon_menu.cpp:130 +#, c++-format +msgid "{}{}" +msgstr "{}{}" -#: src/supertux/menu/addon_menu.cpp:190 -#, c-format -msgid "Install %s" -msgstr "Zainstaluj %s" +#: src/supertux/menu/addon_menu.cpp:140 +msgid "No updates available." +msgstr "Brak dostępnych aktualizacji." -#: src/supertux/menu/addon_menu.cpp:199 -msgid "No new Add-ons found" -msgstr "Nie znaleziono nowych plansz" +#: src/supertux/menu/addon_menu.cpp:144 +#, c++-format +msgid "{} {} available" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:205 -msgid "Check Online (disabled)" -msgstr "Sprawdź w Internecie (wyłączone)" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "update" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:209 -msgid "Check Online" -msgstr "Sprawdź w Internecie" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "updates" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:286 -msgid "Downloading Add-On Repository Index" -msgstr "Ściąganie listy dodatków" +#: src/supertux/menu/addon_menu.cpp:146 +msgid "Check for updates" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:301 -#, c-format -msgid "Downloading %s" -msgstr "Ściąganie %s" +#: src/supertux/menu/addon_menu.cpp:150 +msgid "Browse language packs" +msgstr "Przeglądaj pakiety językowe" -#: src/supertux/menu/addon_menu.cpp:348 -msgid "" -"Please restart SuperTux\n" -"for these changes to take effect." -msgstr "Zrestartuj grę,\naby wprowadzić zmiany." +#: src/supertux/menu/addon_menu.cpp:150 +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Add-ons" +msgstr "Przeglądaj dodatki" + +#: src/supertux/menu/addon_menu.cpp:151 +msgid "Install from file" +msgstr "Zainstaluj z pliku" + +#: src/supertux/menu/addon_menu.cpp:208 +msgid "Checking for updates..." +msgstr "Sprawdzanie aktualizacji..." #: src/supertux/menu/editor_new_levelset_menu.cpp:31 msgid "New World" @@ -2620,6 +3655,53 @@ msgstr "Wpisz nazwę tego podzbioru poziomów." msgid "Story Mode" msgstr "Opowieść" +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Language Packs" +msgstr "Przeglądaj pakiety językowe" + +#: src/supertux/menu/addon_browse_menu.cpp:112 +#, c++-format +msgid "Page {}/{}" +msgstr "Strona {}/{}" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new language packs available" +msgstr "Brak dostępnych nowych pakietów językowych" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new Add-ons available" +msgstr "Brak dostępnych nowych dodatków" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No language packs available" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No Add-ons available" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:135 +#: src/supertux/menu/addon_browse_menu.cpp:139 +msgid "Previous page" +msgstr "Poprzednia strona" + +#: src/supertux/menu/addon_browse_menu.cpp:143 +#: src/supertux/menu/addon_browse_menu.cpp:147 +msgid "Next page" +msgstr "Następna strona" + +#: src/supertux/menu/addon_browse_menu.cpp:154 +msgid "Check Online (disabled)" +msgstr "Sprawdź w Internecie (wyłączone)" + +#: src/supertux/menu/addon_browse_menu.cpp:158 +msgid "Check Online" +msgstr "Sprawdź w Internecie" + +#: src/supertux/menu/addon_browse_menu.cpp:195 +msgid "Downloading Add-On Repository Index" +msgstr "Ściąganie listy dodatków" + #: src/supertux/menu/web_asset_menu.cpp:42 msgid "New files location" msgstr "Nowa lokalizacja plików" @@ -2640,207 +3722,235 @@ msgstr "Załaduj plik cząsteczek" msgid "Open" msgstr "Otwórz" -#: src/supertux/menu/game_menu.cpp:31 -msgid "Are you sure?" -msgstr "Jesteś pewien?" - -#: src/supertux/menu/game_menu.cpp:54 src/supertux/menu/worldmap_menu.cpp:30 +#: src/supertux/menu/game_menu.cpp:51 src/supertux/menu/worldmap_menu.cpp:30 msgid "Continue" msgstr "Kontynuuj" -#: src/supertux/menu/game_menu.cpp:55 +#: src/supertux/menu/game_menu.cpp:52 msgid "Restart Level" msgstr "Zacznij od nowa" -#: src/supertux/menu/game_menu.cpp:58 +#: src/supertux/menu/game_menu.cpp:55 msgid "Restart from Checkpoint" msgstr "Zacznij od ostatniego dzwonka" -#: src/supertux/menu/game_menu.cpp:63 +#: src/supertux/menu/game_menu.cpp:60 msgid "Abort Level" msgstr "Anuluj grę" -#: src/supertux/menu/keyboard_menu.cpp:32 -#: src/supertux/menu/joystick_menu.cpp:69 +#: src/supertux/menu/game_menu.cpp:76 src/supertux/menu/game_menu.cpp:87 +#: src/supertux/menu/game_menu.cpp:99 +msgid "Are you sure?" +msgstr "Jesteś pewien?" + +#: src/supertux/menu/profile_name_menu.cpp:36 +#, c++-format +msgid "Rename \"{}\"" +msgstr "" + +#: src/supertux/menu/profile_name_menu.cpp:36 +msgid "Add profile" +msgstr "Dodaj profil" + +#: src/supertux/menu/profile_name_menu.cpp:40 +msgid "Profile names must have a maximum of 20 characters." +msgstr "" + +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Create" +msgstr "Utwórz" + +#: src/supertux/menu/profile_name_menu.cpp:56 +msgid "" +"Profile names must have a maximum of 20 characters.\n" +"Please choose a different name." +msgstr "" + +#: src/supertux/menu/profile_name_menu.cpp:77 +msgid "An error occurred while creating the profile." +msgstr "Wystąpił błąd podczas tworzenia profilu." + +#: src/supertux/menu/keyboard_menu.cpp:36 +#: src/supertux/menu/joystick_menu.cpp:71 msgid "Up" msgstr "W górę" -#: src/supertux/menu/keyboard_menu.cpp:33 -#: src/supertux/menu/joystick_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:37 +#: src/supertux/menu/joystick_menu.cpp:72 msgid "Down" msgstr "W dół" -#: src/supertux/menu/keyboard_menu.cpp:36 -#: src/supertux/menu/joystick_menu.cpp:73 +#: src/supertux/menu/keyboard_menu.cpp:40 +#: src/supertux/menu/joystick_menu.cpp:75 msgid "Jump" msgstr "Skok" -#: src/supertux/menu/keyboard_menu.cpp:38 -#: src/supertux/menu/joystick_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:43 +#: src/supertux/menu/joystick_menu.cpp:78 msgid "Peek Left" msgstr "Przesuń w lewo" -#: src/supertux/menu/keyboard_menu.cpp:39 -#: src/supertux/menu/joystick_menu.cpp:77 +#: src/supertux/menu/keyboard_menu.cpp:44 +#: src/supertux/menu/joystick_menu.cpp:79 msgid "Peek Right" msgstr "Przesuń w prawo" -#: src/supertux/menu/keyboard_menu.cpp:40 -#: src/supertux/menu/joystick_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:45 +#: src/supertux/menu/joystick_menu.cpp:80 msgid "Peek Up" msgstr "Przesuń w górę" -#: src/supertux/menu/keyboard_menu.cpp:41 -#: src/supertux/menu/joystick_menu.cpp:79 +#: src/supertux/menu/keyboard_menu.cpp:46 +#: src/supertux/menu/joystick_menu.cpp:81 msgid "Peek Down" msgstr "Przesuń w dół" -#: src/supertux/menu/keyboard_menu.cpp:43 -#: src/supertux/menu/joystick_menu.cpp:81 +#: src/supertux/menu/keyboard_menu.cpp:51 +#: src/supertux/menu/joystick_menu.cpp:83 msgid "Console" msgstr "Konsola" -#: src/supertux/menu/keyboard_menu.cpp:44 -#: src/supertux/menu/joystick_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:52 +#: src/supertux/menu/joystick_menu.cpp:84 msgid "Cheat Menu" msgstr "Menu kodów" -#: src/supertux/menu/keyboard_menu.cpp:45 -#: src/supertux/menu/joystick_menu.cpp:83 +#: src/supertux/menu/keyboard_menu.cpp:53 +#: src/supertux/menu/joystick_menu.cpp:85 msgid "Debug Menu" msgstr "Menu debugowania" -#: src/supertux/menu/keyboard_menu.cpp:47 -#: src/supertux/menu/joystick_menu.cpp:85 +#: src/supertux/menu/keyboard_menu.cpp:56 +#: src/supertux/menu/joystick_menu.cpp:87 msgid "Jump with Up" msgstr "Skok = W górę" -#: src/supertux/menu/keyboard_menu.cpp:60 +#: src/supertux/menu/keyboard_menu.cpp:82 msgid "Up cursor" msgstr "Strzałka w górę" -#: src/supertux/menu/keyboard_menu.cpp:62 +#: src/supertux/menu/keyboard_menu.cpp:84 msgid "Down cursor" msgstr "Strzałka w dół" -#: src/supertux/menu/keyboard_menu.cpp:64 +#: src/supertux/menu/keyboard_menu.cpp:86 msgid "Left cursor" msgstr "Lewa strzałka" -#: src/supertux/menu/keyboard_menu.cpp:66 +#: src/supertux/menu/keyboard_menu.cpp:88 msgid "Right cursor" msgstr "Prawa strzałka" -#: src/supertux/menu/keyboard_menu.cpp:68 +#: src/supertux/menu/keyboard_menu.cpp:90 msgid "Return" msgstr "Return" -#: src/supertux/menu/keyboard_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:92 msgid "Space" msgstr "Spacja" -#: src/supertux/menu/keyboard_menu.cpp:72 +#: src/supertux/menu/keyboard_menu.cpp:94 msgid "Right Shift" msgstr "Prawy shift" -#: src/supertux/menu/keyboard_menu.cpp:74 +#: src/supertux/menu/keyboard_menu.cpp:96 msgid "Left Shift" msgstr "Lewy shift" -#: src/supertux/menu/keyboard_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:98 msgid "Right Control" msgstr "Prawy control" -#: src/supertux/menu/keyboard_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:100 msgid "Left Control" msgstr "Lewy control" -#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/keyboard_menu.cpp:102 msgid "Right Alt" msgstr "Prawy alt" -#: src/supertux/menu/keyboard_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:104 msgid "Left Alt" msgstr "Lewy alt" -#: src/supertux/menu/keyboard_menu.cpp:84 +#: src/supertux/menu/keyboard_menu.cpp:106 msgid "Right Command" msgstr "Prawa komenda" -#: src/supertux/menu/keyboard_menu.cpp:86 +#: src/supertux/menu/keyboard_menu.cpp:108 msgid "Left Command" msgstr "Lewa komenda" -#: src/supertux/menu/keyboard_menu.cpp:100 +#: src/supertux/menu/keyboard_menu.cpp:122 msgid "Press Key" msgstr "Naciśnij klawisz" -#: src/supertux/menu/language_menu.cpp:40 +#: src/supertux/menu/language_menu.cpp:43 msgid "Language" msgstr "Język" -#: src/supertux/menu/language_menu.cpp:42 +#: src/supertux/menu/language_menu.cpp:45 msgid "" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:55 +#: src/supertux/menu/joystick_menu.cpp:57 msgid "Manual Configuration" msgstr "Konfiguracja ręczna" -#: src/supertux/menu/joystick_menu.cpp:57 +#: src/supertux/menu/joystick_menu.cpp:59 msgid "" "Use manual configuration instead of SDL2's automatic GameController support" msgstr "Użyj ręcznej konfiguracji zamiast automatycznej obsługi dżojstika przez SDL2" -#: src/supertux/menu/joystick_menu.cpp:75 +#: src/supertux/menu/joystick_menu.cpp:77 msgid "Pause/Menu" msgstr "Pauza/Menu" -#: src/supertux/menu/joystick_menu.cpp:91 +#: src/supertux/menu/joystick_menu.cpp:93 msgid "No Joysticks found" msgstr "Nie znaleziono dżojstika" -#: src/supertux/menu/joystick_menu.cpp:92 +#: src/supertux/menu/joystick_menu.cpp:94 msgid "Scan for Joysticks" msgstr "Szukaj dżojstików" -#: src/supertux/menu/joystick_menu.cpp:125 +#: src/supertux/menu/joystick_menu.cpp:127 msgid "Press Button" msgstr "Naciśnij przycisk" -#: src/supertux/menu/joystick_menu.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:164 msgid "Axis " msgstr "Oś" -#: src/supertux/menu/joystick_menu.cpp:165 +#: src/supertux/menu/joystick_menu.cpp:167 msgid "-" msgstr "-" -#: src/supertux/menu/joystick_menu.cpp:167 +#: src/supertux/menu/joystick_menu.cpp:169 msgid "+" msgstr "+" -#: src/supertux/menu/joystick_menu.cpp:174 +#: src/supertux/menu/joystick_menu.cpp:176 msgid "X2" msgstr "X2" -#: src/supertux/menu/joystick_menu.cpp:176 +#: src/supertux/menu/joystick_menu.cpp:178 msgid "Y2" msgstr "Y2" -#: src/supertux/menu/joystick_menu.cpp:189 +#: src/supertux/menu/joystick_menu.cpp:191 msgid "Hat Up" msgstr "W górę" -#: src/supertux/menu/joystick_menu.cpp:193 +#: src/supertux/menu/joystick_menu.cpp:195 msgid "Hat Down" msgstr "W dół" -#: src/supertux/menu/joystick_menu.cpp:197 +#: src/supertux/menu/joystick_menu.cpp:199 msgid "Hat Left" msgstr "W lewo" -#: src/supertux/menu/joystick_menu.cpp:201 +#: src/supertux/menu/joystick_menu.cpp:203 msgid "Hat Right" msgstr "W prawo" @@ -2852,52 +3962,47 @@ msgstr "Pauza" msgid "Leave World" msgstr "Opuść świat" -#: src/supertux/menu/download_dialog.cpp:27 +#: src/supertux/menu/download_dialog.cpp:42 msgid "Abort Download" msgstr "Przerwij ściąganie" -#: src/supertux/menu/download_dialog.cpp:42 -msgid "Error:\n" -msgstr "Błąd:\n" - -#: src/supertux/menu/download_dialog.cpp:96 -msgid "Close" -msgstr "Zamknij" - -#: src/supertux/menu/cheat_menu.cpp:33 -msgid "Bonus: Fire x 64" -msgstr "Bonus: Ogień x 64" - -#: src/supertux/menu/cheat_menu.cpp:34 -msgid "Bonus: Ice x 64" -msgstr "Bonus: Lód x 64" - -#: src/supertux/menu/cheat_menu.cpp:35 -msgid "Bonus: Air x 64" -msgstr "Bonus: Powietrze x 64" - -#: src/supertux/menu/cheat_menu.cpp:36 -msgid "Bonus: Earth x 64" -msgstr "Bonus: Ziemia x 64" +#: src/supertux/menu/download_dialog.cpp:59 +#, c++-format +msgid "" +"Error:\n" +"{}" +msgstr "" -#: src/supertux/menu/cheat_menu.cpp:37 +#: src/supertux/menu/cheat_menu.cpp:38 msgid "Bonus: Star" msgstr "Bonus: Gwiazda" -#: src/supertux/menu/cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:39 msgid "Shrink Tux" -msgstr "Zmniejsz Tuksa" +msgstr "Zmniejsz Tuxa" -#: src/supertux/menu/cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:40 msgid "Kill Tux" -msgstr "Zabij Tuksa" +msgstr "Zabij Tuxa" + +#: src/supertux/menu/cheat_menu.cpp:55 +msgid "Prevent Death" +msgstr "Zapobiegaj Śmierci" + +#: src/supertux/menu/addon_file_install_menu.cpp:32 +msgid "Install Add-on from file" +msgstr "" + +#: src/supertux/menu/addon_file_install_menu.cpp:34 +msgid "Drag and drop add-on ZIP archive" +msgstr "Przeciągnij i upuść archiwum ZIP dodatku" #: src/supertux/menu/particle_editor_menu.cpp:32 msgid "Particle Editor" msgstr "Edytor cząstek" #: src/supertux/menu/particle_editor_menu.cpp:36 -#: src/supertux/menu/editor_menu.cpp:45 +#: src/supertux/menu/editor_menu.cpp:60 msgid "Return to Editor" msgstr "Wróć do edytora" @@ -2922,7 +4027,7 @@ msgid "Open Particle Directory" msgstr "Otwórz ścieżkę cząstki" #: src/supertux/menu/particle_editor_menu.cpp:45 -#: src/supertux/menu/editor_menu.cpp:88 +#: src/supertux/menu/editor_menu.cpp:118 msgid "Keyboard Shortcuts" msgstr "Skróty klawiszowe" @@ -2930,7 +4035,7 @@ msgstr "Skróty klawiszowe" msgid "Exit Particle Editor" msgstr "Wyjdź z edytora cząstek" -#: src/supertux/menu/particle_editor_menu.cpp:120 +#: src/supertux/menu/particle_editor_menu.cpp:121 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -2942,18 +4047,18 @@ msgid "" "Ctrl+Y = Redo" msgstr "Skróty klawiszowe:\n---------------------\nEsc = Otwórz Menu\nCtrl+S = Zapisz\nCtrl+Shift+S = Zapisz jako\nCtrl+O = Otwórz\nCtrl+Z = Cofnij\nCtrl+Y = Przywróć" -#: src/supertux/menu/particle_editor_menu.cpp:121 -#: src/supertux/menu/editor_menu.cpp:176 +#: src/supertux/menu/particle_editor_menu.cpp:122 +#: src/supertux/menu/editor_menu.cpp:206 msgid "Got it!" msgstr "Zdobyte!" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:86 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Worldmap Settings" msgstr "Ustawienia mapy świata" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:86 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Level Settings" msgstr "Ustawienia poziomu" @@ -2961,7 +4066,7 @@ msgstr "Ustawienia poziomu" msgid "Author" msgstr "Autor" -#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1166 +#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1253 msgid "Contact" msgstr "Kontakt" @@ -2993,99 +4098,129 @@ msgstr "Wpisz imię autora tego poziomu." msgid "Please enter a license for this level." msgstr "Dodaj licencję dla tego poziomu." -#: src/supertux/menu/editor_menu.cpp:38 +#: src/supertux/menu/editor_menu.cpp:53 msgid "tiny tile (4px)" msgstr "malutka siatka (4px)" -#: src/supertux/menu/editor_menu.cpp:39 +#: src/supertux/menu/editor_menu.cpp:54 msgid "small tile (8px)" msgstr "mała siatka (8px)" -#: src/supertux/menu/editor_menu.cpp:40 +#: src/supertux/menu/editor_menu.cpp:55 msgid "medium tile (16px)" msgstr "średnia siatka (16px)" -#: src/supertux/menu/editor_menu.cpp:41 +#: src/supertux/menu/editor_menu.cpp:56 msgid "big tile (32px)" msgstr "duża siatka (32px)" -#: src/supertux/menu/editor_menu.cpp:46 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Worldmap" msgstr "Zapisz mapę świata" -#: src/supertux/menu/editor_menu.cpp:46 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Level" msgstr "Zapisz poziom" -#: src/supertux/menu/editor_menu.cpp:55 +#: src/supertux/menu/editor_menu.cpp:65 msgid "Test Level" msgstr "Testuj poziom" -#: src/supertux/menu/editor_menu.cpp:59 +#: src/supertux/menu/editor_menu.cpp:67 msgid "Test Worldmap" msgstr "Testuj mapę świata" -#: src/supertux/menu/editor_menu.cpp:62 +#: src/supertux/menu/editor_menu.cpp:72 msgid "Share Level" msgstr "Udostępnij poziom" -#: src/supertux/menu/editor_menu.cpp:64 +#: src/supertux/menu/editor_menu.cpp:74 msgid "Package Add-On" msgstr "Zapakuj jako dodatek" -#: src/supertux/menu/editor_menu.cpp:66 +#: src/supertux/menu/editor_menu.cpp:76 msgid "Open Level Directory" msgstr "Otwórz katalog poziomu" -#: src/supertux/menu/editor_menu.cpp:70 +#: src/supertux/menu/editor_menu.cpp:79 msgid "Edit Another Level" msgstr "Edytuj inny poziom" -#: src/supertux/menu/editor_menu.cpp:73 +#: src/supertux/menu/editor_menu.cpp:81 msgid "Edit Another World" msgstr "Edytuj inny świat" -#: src/supertux/menu/editor_menu.cpp:77 +#: src/supertux/menu/editor_menu.cpp:86 +msgid "Convert all tiles in the level using converters." +msgstr "Przekonwertuj wszystkie kafelki na poziomie za pomocą konwerterów." + +#: src/supertux/menu/editor_menu.cpp:90 msgid "Grid Size" msgstr "Rozmiar siatki" -#: src/supertux/menu/editor_menu.cpp:78 +#: src/supertux/menu/editor_menu.cpp:91 msgid "Show Grid" msgstr "Pokaż siatkę" -#: src/supertux/menu/editor_menu.cpp:79 +#: src/supertux/menu/editor_menu.cpp:92 msgid "Grid Snapping" msgstr "Przyciąganie do siatki" -#: src/supertux/menu/editor_menu.cpp:80 +#: src/supertux/menu/editor_menu.cpp:93 msgid "Render Background" msgstr "Renderuj tło" -#: src/supertux/menu/editor_menu.cpp:81 +#: src/supertux/menu/editor_menu.cpp:94 msgid "Render Light" msgstr "Renderuj światło" -#: src/supertux/menu/editor_menu.cpp:82 +#: src/supertux/menu/editor_menu.cpp:95 msgid "Autotile Mode" msgstr "Tryb Autotile" -#: src/supertux/menu/editor_menu.cpp:83 +#: src/supertux/menu/editor_menu.cpp:96 msgid "Enable Autotile Help" -msgstr "Włacz pomoc Autotile" +msgstr "Włącz pomoc Autotile" + +#: src/supertux/menu/editor_menu.cpp:97 +msgid "Enable Object Undo Tracking" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:100 +msgid "Undo Stack Size" +msgstr "" -#: src/supertux/menu/editor_menu.cpp:84 +#: src/supertux/menu/editor_menu.cpp:102 msgid "Autosave Frequency" msgstr "Częstotliwość automatycznego zapisu" -#: src/supertux/menu/editor_menu.cpp:91 +#: src/supertux/menu/editor_menu.cpp:108 +msgid "Check for Deprecated Tiles" +msgstr "Sprawdź przestarzałe kafelki" + +#: src/supertux/menu/editor_menu.cpp:109 +msgid "Check if any deprecated tiles are currently present in the level." +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:110 +msgid "Show Deprecated Tiles" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:111 +msgid "" +"Indicate all deprecated tiles on the active tilemap, without the need of " +"hovering over." +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:121 msgid "Exit Level Editor" msgstr "Wyjdź z edytora poziomów" -#: src/supertux/menu/editor_menu.cpp:140 +#: src/supertux/menu/editor_menu.cpp:170 msgid "Do you want to package this world as an add-on?" msgstr "Czy chcesz zapakować ten świat jako dodatek?" -#: src/supertux/menu/editor_menu.cpp:163 +#: src/supertux/menu/editor_menu.cpp:196 msgid "" "We encourage you to share your levels in the SuperTux forum.\n" "To find your level, click the\n" @@ -3093,7 +4228,7 @@ msgid "" "Do you want to go to the forum now?" msgstr "Zachęcamy Cię do udostępniania swoich poziomów na forum SuperTux.\nAby znaleźć swój poziom, kliknij\n\"Otwórz katalog wynikowy\" w menu.\nCzy chcesz teraz przejść na forum?" -#: src/supertux/menu/editor_menu.cpp:175 +#: src/supertux/menu/editor_menu.cpp:205 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -3104,54 +4239,217 @@ msgid "" "Ctrl+Y = Redo\n" "F6 = Render Light\n" "F7 = Grid Snapping\n" -"F8 = Show Grid" -msgstr "Skróty klawiszowe:\n---------------------\nEsc = Otwórz menu\nCtrl+S = Zapisz\nCtrl+T = Testuj\nCtrl+Z = Cofnij\nCtrl+Y = Powtórz\nF6 = Renderuj światło\nF7 = Przyciąganie siatki\nF8 = Pokaż siatkę" +"F8 = Show Grid\n" +"Ctrl++ or Ctrl+Scroll Up = Zoom In\n" +"Ctrl+- or Ctrl+Scroll Down = Zoom Out\n" +"Ctrl+D = Reset Zoom\n" +"\n" +"Scripting Shortcuts:\n" +" ------------- \n" +"Home = Go to beginning of line\n" +"End = Go to end of line\n" +"Left arrow = Go back in text\n" +"Right arrow = Go forward in text\n" +"Backspace = Delete in front of text cursor\n" +"Delete = Delete behind text cursor\n" +"Ctrl+X = Cut whole line\n" +"Ctrl+C = Copy whole line\n" +"Ctrl+V = Paste\n" +"Ctrl+D = Duplicate line\n" +"Ctrl+Z = Undo\n" +"Ctrl+Y = Redo" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:232 +msgid "Deprecated tiles are still present in the level." +msgstr "Przestarzałe płytki nadal są obecne w poziomie." + +#: src/supertux/menu/editor_menu.cpp:239 +msgid "Do you want to show all deprecated tiles on active tilemaps?" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:246 +msgid "There are no more deprecated tiles in the level!" +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:40 +msgid "Play with the keyboard" +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:58 +msgid "Remove Player" +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:82 +msgid "Respawn Player" +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:108 +msgid "Spawn Player" +msgstr "" -#: src/supertux/menu/editor_delete_level_menu.cpp:53 -msgid "You cannot delete level that you are editing!" +#: src/supertux/menu/multiplayer_player_menu.cpp:136 +msgid "Controllers" +msgstr "Kontrolery" + +#: src/supertux/menu/multiplayer_player_menu.cpp:152 +msgid "" +"This controller does not support rumbling;\n" +"please check the controllers manually." +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:157 +msgid "" +"This SuperTux build does not support rumbling\n" +"controllers; please check the controllers manually." +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:184 +msgid "" +"This joystick does not support rumbling;\n" +"please check the joysticks manually." +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:189 +msgid "" +"This SuperTux build does not support rumbling\n" +"joysticks; please check the joysticks manually." +msgstr "" + +#: src/supertux/menu/editor_delete_level_menu.cpp:59 +msgid "No levels available" +msgstr "Brak dostępnych poziomów" + +#: src/supertux/menu/editor_delete_level_menu.cpp:79 +msgid "You cannot delete the level that you are editing!" msgstr "Nie możesz usunąć poziomu, którego edytujesz!" -#: src/supertux/levelintro.cpp:136 -#, c-format -msgid "contributed by %s" -msgstr "Autorstwo: %s" +#: src/supertux/menu/editor_delete_level_menu.cpp:82 +#, c++-format +msgid "You are about to delete level \"{}\". Are you sure?" +msgstr "" + +#: src/supertux/levelintro.cpp:137 +#, c++-format +msgid "contributed by {}" +msgstr "" -#: src/supertux/levelintro.cpp:169 +#: src/supertux/levelintro.cpp:184 msgid "Badguys killed" msgstr "Pokonanych wrogów" -#: src/supertux/levelintro.cpp:177 +#: src/supertux/levelintro.cpp:192 msgid "Best time" msgstr "Najlepszy czas" -#: src/supertux/levelintro.cpp:181 +#: src/supertux/levelintro.cpp:196 msgid "Level target time" msgstr "Wymagany czas przejścia poziomu" -#: src/supertux/tile_set.cpp:118 +#: src/supertux/tile_set.cpp:113 msgid "Others" msgstr "Inne" -#: src/supertux/moving_object.cpp:55 +#: src/supertux/direction.cpp:67 +msgid "up" +msgstr "góra" + +#: src/supertux/direction.cpp:69 +msgid "down" +msgstr "dół" + +#: src/supertux/moving_object.cpp:63 msgid "Region" msgstr "Obszar" -#: src/supertux/main.cpp:563 +#: src/supertux/main.cpp:801 +#, c++-format +msgid "New release: SuperTux v{}!" +msgstr "" + +#: src/supertux/main.cpp:804 +#, c++-format msgid "" -"The UBports version is under heavy development!\n" -"If you encounter issues, PLEASE contact the maintainter\n" -"at https://github.com/supertux/supertux/issues or on the\n" -"Open Store's Telegram at https://open-store.io/telegram" -msgstr "Wersja UBports jest pod cięzkim rozwojem!\nJeżeli napotkasz problemy, PROSZĘ skontaktuj się z jej opiekunem\nna https://github.com/supertux/supertux/issues, albo na\nOtwórz Store's Telegram na https://open-store.io/telegram" +"A new release of SuperTux (v{}) is available!\n" +"For more information, you can visit the SuperTux website.\n" +"\n" +"Do you want to visit the website now?" +msgstr "" + +#: src/supertux/main.cpp:815 +msgid "Checking for new releases..." +msgstr "" #: src/control/joystick_config.cpp:85 msgid "Joystick Mappings" msgstr "Ustawienia dżojstika" -#: src/worldmap/worldmap_parser.cpp:167 +#: src/worldmap/sprite_change.cpp:91 +msgid "Stay action" +msgstr "Akcja pobytu" + +#: src/worldmap/sprite_change.cpp:92 +msgid "Initial stay action" +msgstr "Początkowa akcja pobytu" + +#: src/worldmap/sprite_change.cpp:93 +msgid "Stay group" +msgstr "Zostań grupą" + +#: src/worldmap/sprite_change.cpp:94 +msgid "Change on touch" +msgstr "Zmiana po dotknięciu" + +#: src/worldmap/special_tile.hpp:36 +msgid "Special Tile" +msgstr "Specjalna płytka" + +#: src/worldmap/level_tile.hpp:36 src/worldmap/level_tile.cpp:161 +msgid "Level" +msgstr "Poziom" + +#: src/worldmap/teleporter.cpp:50 +msgid "Automatic" +msgstr "Automatyczny" + +#: src/worldmap/teleporter.cpp:51 +msgid "Target worldmap" +msgstr "Docelowy świat" + +#: src/worldmap/sprite_change.hpp:35 +msgid "Sprite Change" +msgstr "Zmień sprite" + +#: src/worldmap/special_tile.cpp:75 +msgid "Show message" +msgstr "Pokaż wiadomość" + +#: src/worldmap/level_tile.cpp:84 msgid "" msgstr "" +#: src/worldmap/level_tile.cpp:162 +msgid "Outro script" +msgstr "Skrypt końcowy" + +#: src/worldmap/level_tile.cpp:163 +msgid "Auto play" +msgstr "Automatyczne odtwarzanie" + +#: src/worldmap/level_tile.cpp:164 +msgid "Title colour" +msgstr "Kolor tytułu" + +#: src/worldmap/teleporter.hpp:34 +msgid "Teleporter" +msgstr "Teleport" + +#: src/editor/tip.cpp:80 +msgid "" +"This object's current functionality is deprecated.\n" +"Updating to get its latest functionality is recommended." +msgstr "" + #: src/editor/node_marker.cpp:122 msgid "Path Node" msgstr "Punkt ścieżki" @@ -3164,85 +4462,82 @@ msgstr "Naciśnij klawisz CTRL, aby przesunąć uchwyty Beziera" msgid "Easing" msgstr "Łagodzenie" -#: src/editor/object_settings.cpp:119 -msgid "up" -msgstr "góra" - -#: src/editor/object_settings.cpp:119 -msgid "down" -msgstr "dół" - -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "West" msgstr "Zachód" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "East" msgstr "Wschód" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "North" msgstr "Północ" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "South" msgstr "Południe" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "One shot" msgstr "Jednorazowo" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "Ping-pong" msgstr "Ping-pong" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "Circular" msgstr "Okrągła" -#: src/editor/object_settings.cpp:144 -msgid "Unordered" -msgstr "Nieuporządkowany" +#: src/editor/layers_widget.cpp:331 +#, c++-format +msgid "Sector: {}" +msgstr "Sektor: {}" -#: src/editor/object_option.cpp:85 +#: src/editor/object_option.cpp:92 msgid "true" msgstr "Prawda" -#: src/editor/object_option.cpp:85 +#: src/editor/object_option.cpp:92 msgid "false" msgstr "Fałsz" -#: src/editor/object_option.cpp:271 src/editor/object_option.cpp:320 +#: src/editor/object_option.cpp:308 src/editor/object_option.cpp:356 msgid "invalid" msgstr "nieprawidłowy" -#: src/editor/object_option.cpp:580 +#: src/editor/object_option.cpp:665 +msgid "Scale X" +msgstr "Skala X" + +#: src/editor/object_option.cpp:666 +msgid "Scale Y" +msgstr "Skala Y" + +#: src/editor/object_option.cpp:667 +msgid "Offset X" +msgstr "Przesunięcie X" + +#: src/editor/object_option.cpp:668 +msgid "Offset Y" +msgstr "Przesunięcie Y" + +#: src/editor/object_option.cpp:672 src/editor/object_menu.cpp:67 msgid "Remove" msgstr "Usuń" -#: src/editor/object_option.cpp:597 +#: src/editor/object_option.cpp:689 msgid "Test from here" msgstr "Przetestuj stąd" -#: src/editor/object_option.cpp:614 +#: src/editor/object_option.cpp:706 msgid "Open Particle Editor" msgstr "Otwórz edytor cząstek" -#: src/editor/worldmap_objects.hpp:56 src/editor/worldmap_objects.cpp:127 -msgid "Level" -msgstr "Poziom" - -#: src/editor/worldmap_objects.hpp:79 -msgid "Teleporter" -msgstr "Teleporter" - -#: src/editor/worldmap_objects.hpp:119 -msgid "Sprite Change" -msgstr "Zmień sprite" - -#: src/editor/worldmap_objects.hpp:140 -msgid "Special tile" -msgstr "Bloki specjalne" +#: src/editor/particle_editor.cpp:114 +msgid "Change texture... ->" +msgstr "Zmień teksturę... ->" #: src/editor/particle_editor.cpp:126 msgid "Max amount" @@ -3324,17 +4619,60 @@ msgstr "Zawsze zniszcz" msgid "Offscreen mode" msgstr "Tryb poza ekranem" -#: src/editor/particle_editor.cpp:765 +#: src/editor/particle_editor.cpp:229 +msgid "Clear" +msgstr "Wyczyść" + +#: src/editor/particle_editor.cpp:245 +msgid "<- General settings" +msgstr "<- Ogólne ustawienia" + +#: src/editor/particle_editor.cpp:255 +msgid "Likeliness" +msgstr "Podobieństwo" + +#: src/editor/particle_editor.cpp:266 +msgid "Color (RGBA)" +msgstr "Kolor (RGBA)" + +#: src/editor/particle_editor.cpp:311 +msgid "Scale (x, y)" +msgstr "Skala (x, y)" + +#: src/editor/particle_editor.cpp:332 +msgid "Hitbox scale (x, y)" +msgstr "Skala hitboxa (x, y)" + +#: src/editor/particle_editor.cpp:353 +msgid "Hitbox offset relative to scale" +msgstr "Przesunięcie hitboxa względem skali" + +#: src/editor/particle_editor.cpp:372 +msgid "Change texture..." +msgstr "Zmień teksturę..." + +#: src/editor/particle_editor.cpp:766 msgid "" "This particle configuration contains unsaved changes,\n" "do you want to save?" msgstr "Ta konfiguracja cząstek zawiera niezapisane zmiany, czy chcesz je zapisać?" -#: src/editor/particle_editor.cpp:773 +#: src/editor/particle_editor.cpp:774 msgid "Save as" msgstr "Zapisz jako" -#: src/editor/editor.cpp:566 +#: src/editor/editor.cpp:577 +msgid "" +"This level contains deprecated tiles.\n" +"It is strongly recommended to replace all deprecated tiles\n" +"to avoid loss of compatibility in future versions." +msgstr "Ten poziom zawiera przestarzałe płytki.\nZdecydowanie zaleca się zastąpienie wszystkich przestarzałych płytek\naby uniknąć utraty kompatybilności w przyszłych wersjach." + +#: src/editor/editor.cpp:579 +msgid "Tip: Turn on \"Show Deprecated Tiles\" from the level editor menu." +msgstr "Wskazówka: Włącz opcję \"Pokaż przestarzałe płytki\" w menu edytora poziomów." + +#: src/editor/editor.cpp:626 msgid "" "Don't forget that your levels and assets\n" "aren't saved between sessions!\n" @@ -3342,105 +4680,87 @@ msgid "" "from the \"Manage Assets\" menu." msgstr "Nie zapomnij, że twoje poziomy i zasoby\nnie są zapisywane pomiędzy sesjami!\nJeżeli chcesz zachować swoje poziomy, pobierz je\nz menu \"Manage Assets\"." -#: src/editor/editor.cpp:582 +#: src/editor/editor.cpp:661 msgid "This level contains unsaved changes, do you want to save?" msgstr "Ten poziom zawiera niezapisane zmiany, czy chcesz je teraz zapisać?" -#: src/editor/editor.cpp:622 +#: src/editor/editor.cpp:662 +msgid "This level may contain unsaved changes, do you want to save?" +msgstr "Ten poziom może zawierać niezapisane zmiany, czy chcesz je zapisać?" + +#: src/editor/editor.cpp:797 msgid "" "Some obsolete add-ons are still active\n" "and might cause collisions with default Super Tux structure.\n" "You can still enable these add-ons in the menu.\n" "Disabling these add-ons will not delete your game progress." -msgstr "Niektóre przestarzałe dodatki są wciąż aktywne\ni mogą one kolidować z ogólną strukturą Super Tuksa.\nNadal możesz uruchomić te dodatki w menu.\nWyłączenie tych dodatków nie usunie twoich postępów w grze." +msgstr "Niektóre przestarzałe dodatki są wciąż aktywne\ni mogą one kolidować z ogólną strukturą Super Tuxa.\nNadal możesz uruchomić te dodatki w menu.\nWyłączenie tych dodatków nie usunie twoich postępów w grze." -#: src/editor/editor.cpp:625 +#: src/editor/editor.cpp:800 msgid "Disable add-ons" msgstr "Wyłącz dodatkowe plansze" -#: src/editor/editor.cpp:630 +#: src/editor/editor.cpp:805 msgid "Ignore (not advised)" msgstr "Zignoruj (Niezalecane)" -#: src/editor/editor.cpp:634 +#: src/editor/editor.cpp:809 msgid "Leave editor" msgstr "Opuść edytor" -#: src/editor/editor.cpp:853 +#: src/editor/editor.cpp:1023 msgid "" "Couldn't find a \"main\" sector.\n" "Please change the name of the sector where\n" "you'd like the player to start to \"main\"" msgstr "Nie znaleziono \"głównego\" sektora.\nZmień nazwę sektora, w którym\nchciałbyś by gracz startował, na \"główny\"" -#: src/editor/editor.cpp:857 +#: src/editor/editor.cpp:1027 msgid "" "Couldn't find a \"main\" spawnpoint.\n" " Please change the name of the spawnpoint where\n" "you'd like the player to start to \"main\"" msgstr "Nie znaleziono \"głównego\" punktu startu.\nZmień nazwę tego punktu startu, gdzie\nchciałbyś by gracz zaczynał, na \"główny\"" -#: src/editor/worldmap_objects.cpp:128 -msgid "Outro script" -msgstr "Skrypt końcowy" - -#: src/editor/worldmap_objects.cpp:129 -msgid "Auto play" -msgstr "Automatyczne odtwarzanie" - -#: src/editor/worldmap_objects.cpp:131 -msgid "Title colour" -msgstr "Kolor tytułu" - -#: src/editor/worldmap_objects.cpp:173 -msgid "Automatic" -msgstr "Automatyczny" - -#: src/editor/worldmap_objects.cpp:175 -msgid "Target worldmap" -msgstr "Docelowy świat" - -#: src/editor/worldmap_objects.cpp:238 -msgid "Stay action" -msgstr "Akcja pobytu" - -#: src/editor/worldmap_objects.cpp:239 -msgid "Initial stay action" -msgstr "Początkowa akcja pobytu" +#: src/editor/object_menu.cpp:60 +msgid "Patch Notes" +msgstr "Informacje o aktualizacji" -#: src/editor/worldmap_objects.cpp:240 -msgid "Stay group" -msgstr "Zostań grupą" - -#: src/editor/worldmap_objects.cpp:241 -msgid "Change on touch" -msgstr "Zmiana po dotknięciu" +#: src/editor/object_menu.cpp:84 +msgid "" +"This will update the object to its latest functionality.\n" +"Check the \"Patch Notes\" for more information.\n" +"\n" +"Keep in mind this is very likely to break the proper behaviour of the object.\n" +"Make sure to re-check any behaviour, related to the object." +msgstr "" -#: src/editor/worldmap_objects.cpp:271 -msgid "Show message" -msgstr "Pokaż wiadomość" +#: src/editor/object_menu.cpp:98 +#, c++-format +msgid "Patch notes for v{}:" +msgstr "" -#: src/editor/worldmap_objects.cpp:273 -msgid "Invisible" -msgstr "Niewidzialny" +#: src/editor/overlay_widget.cpp:1062 +msgid "Cannot select deprecated tiles" +msgstr "Nie można wybrać przestarzałych płytek" -#: src/editor/overlay_widget.cpp:1297 +#: src/editor/overlay_widget.cpp:1567 msgid "Autotile mode is on" msgstr "Tryb autotile jest włączony" -#: src/editor/overlay_widget.cpp:1299 +#: src/editor/overlay_widget.cpp:1571 msgid "Hold Ctrl to enable autotile" msgstr "Przytrzymaj Ctrl, aby włączyć autotile" -#: src/editor/overlay_widget.cpp:1303 +#: src/editor/overlay_widget.cpp:1578 msgid "Autotile erasing mode is on" -msgstr "Kasowanie Autotile jest włączone" +msgstr "Kasowanie autotile jest włączone" -#: src/editor/overlay_widget.cpp:1305 +#: src/editor/overlay_widget.cpp:1582 msgid "Selected tile isn't autotileable" msgstr "Wybrana płytka nie wspiera autotiling-u" -#: src/editor/overlay_widget.cpp:1308 +#: src/editor/overlay_widget.cpp:1587 msgid "Hold Ctrl to enable autotile erasing" msgstr "Przytrzymaj Ctrl, aby włączyć kasowanie autotile" @@ -3449,8 +4769,8 @@ msgid "Current SuperTux Team" msgstr "Obecny zespół SuperTuxa" #: data//credits.stxt:30 -msgid "Programming, project lead ad interim" -msgstr "Programowanie, Tymczasowe prowadzenie reklamy projektu" +msgid "Maintainer, Programming" +msgstr "" #: data//credits.stxt:35 msgid "Graphics, Level Design, Story" @@ -3460,12 +4780,12 @@ msgstr "Grafika, projektowanie poziomów, fabuła" msgid "Level Design, Story, Optimisation, Coordination" msgstr "Projektowanie poziomów, fabuła, optymalizacja, koordynacja" -#: data//credits.stxt:45 data//credits.stxt:105 data//credits.stxt:191 -#: data//credits.stxt:519 +#: data//credits.stxt:45 data//credits.stxt:120 data//credits.stxt:206 +#: data//credits.stxt:538 msgid "Graphics" msgstr "Grafika" -#: data//credits.stxt:50 data//credits.stxt:87 data//credits.stxt:93 +#: data//credits.stxt:50 data//credits.stxt:102 data//credits.stxt:108 msgid "Graphics, Programming, Level Design" msgstr "Grafika, Programowanie, Projektowanie poziomów" @@ -3474,256 +4794,266 @@ msgid "Features and Programming" msgstr "Funkcje i programowanie" #: data//credits.stxt:60 +msgid "Minor features and programming" +msgstr "Drobne funkcje i programowanie" + +#: data//credits.stxt:65 msgid "Programming, Level Updates" msgstr "Programowanie, Aktualizacje Poziomów" -#: data//credits.stxt:65 +#: data//credits.stxt:70 msgid "Graphics, Programming" msgstr "Grafika, programowanie" -#: data//credits.stxt:70 data//credits.stxt:135 data//credits.stxt:140 -#: data//credits.stxt:145 data//credits.stxt:150 data//credits.stxt:165 -#: data//credits.stxt:170 data//credits.stxt:515 data//credits.stxt:527 +#: data//credits.stxt:75 data//credits.stxt:85 data//credits.stxt:150 +#: data//credits.stxt:155 data//credits.stxt:160 data//credits.stxt:165 +#: data//credits.stxt:180 data//credits.stxt:185 data//credits.stxt:534 +#: data//credits.stxt:546 msgid "Programming" msgstr "Programowanie" -#: data//credits.stxt:76 +#: data//credits.stxt:80 data//credits.stxt:266 +msgid "Level Design" +msgstr "Projektowanie poziomów" + +#: data//credits.stxt:91 msgid "Original Developers" msgstr "Oryginalni deweloperzy" -#: data//credits.stxt:81 +#: data//credits.stxt:96 msgid "Original Developer" msgstr "Oryginalny programista" -#: data//credits.stxt:99 +#: data//credits.stxt:114 msgid "Music, Level Design" msgstr "Muzyka, Projektowanie poziomów" -#: data//credits.stxt:111 +#: data//credits.stxt:126 msgid "Programming, Graphics, Level Design" msgstr "Programowanie, Grafika, Projektowanie poziomów" -#: data//credits.stxt:117 +#: data//credits.stxt:132 msgid "Programming, Level Design" msgstr "Programowanie, Projektowanie poziomów" -#: data//credits.stxt:123 +#: data//credits.stxt:138 msgid "Graphics, Story" msgstr "Grafika, Fabuła" -#: data//credits.stxt:129 +#: data//credits.stxt:144 msgid "Programming, Documentation" msgstr "Programowanie, Dokumentacja" -#: data//credits.stxt:155 +#: data//credits.stxt:170 msgid "Coordination" msgstr "Koordynacja" -#: data//credits.stxt:160 +#: data//credits.stxt:175 msgid "Programming, \"Flexlay\" Level editor" msgstr "Programowanie, Edytor poziomów \"Flexlay\"" -#: data//credits.stxt:175 +#: data//credits.stxt:190 msgid "Windows build fixes" msgstr "Poprawki wersji na Windows" -#: data//credits.stxt:180 +#: data//credits.stxt:195 msgid "Packaging, Nightly builds" msgstr "Pakowanie, Nocne wersje" -#: data//credits.stxt:185 +#: data//credits.stxt:200 msgid "Translation Guru (and many details anyone else could have done)" msgstr "Guru Tłumaczeń (i wiele detali, które każdy inny mógł zrobić)" -#: data//credits.stxt:251 -msgid "Level Design" -msgstr "Projektowanie poziomów" - -#: data//credits.stxt:431 +#: data//credits.stxt:450 msgid "Additional contributors" msgstr "Dodatkowi współpracownicy" -#: data//credits.stxt:436 +#: data//credits.stxt:455 msgid "Bug fixes" msgstr "Poprawki błędów" -#: data//credits.stxt:440 +#: data//credits.stxt:459 msgid "Scripting functions, Level fixes" msgstr "Funkcje skryptowe, poprawki w poziomach" -#: data//credits.stxt:444 +#: data//credits.stxt:463 msgid "Code quality fixes" msgstr "Poprawki jakości kodu" -#: data//credits.stxt:448 data//credits.stxt:452 data//credits.stxt:456 -#: data//credits.stxt:483 +#: data//credits.stxt:467 data//credits.stxt:471 data//credits.stxt:475 +#: data//credits.stxt:502 msgid "Various contributions" msgstr "Różne zasługi" -#: data//credits.stxt:460 +#: data//credits.stxt:479 msgid "Build issue fix" msgstr "Naprawa problemów z kompilacją" -#: data//credits.stxt:464 data//credits.stxt:468 +#: data//credits.stxt:483 data//credits.stxt:487 msgid "Code contributions" msgstr "Wkład w kod źródłowy" -#: data//credits.stxt:471 +#: data//credits.stxt:490 msgid "Code contribution, AppData file" msgstr "Wkład w kod źródłowy, plik AppData" -#: data//credits.stxt:475 +#: data//credits.stxt:494 msgid "Bug fix" msgstr "Poprawki błędów" -#: data//credits.stxt:479 +#: data//credits.stxt:498 msgid "Menu reorganization" msgstr "Reorganizacja menu" -#: data//credits.stxt:487 +#: data//credits.stxt:506 msgid "Fixing tile bugs" msgstr "Naprawa błędów tytułowych" -#: data//credits.stxt:491 +#: data//credits.stxt:510 msgid "Build error fix" msgstr "Naprawa problemów z kompilacją" -#: data//credits.stxt:495 +#: data//credits.stxt:514 msgid "Scripting function fix" msgstr "Naprawa funkcji skryptowej" -#: data//credits.stxt:499 +#: data//credits.stxt:518 msgid "New features and notable updates" msgstr "Nowe funkcje i istotne aktualizacje" -#: data//credits.stxt:503 +#: data//credits.stxt:522 msgid "Support for \"glbinding\" as optional OpenGL binding" msgstr "Wsparcie dla \"glbinding\" jako opcjonalnego bindingu OpenGL" -#: data//credits.stxt:507 +#: data//credits.stxt:526 msgid "New menu code" msgstr "Nowy kod menu" -#: data//credits.stxt:511 +#: data//credits.stxt:530 msgid "Big Tux Walking Sprites improvements" msgstr "Ulepszenia w wyglądzie chodzącego Tuxa" -#: data//credits.stxt:523 data//credits.stxt:531 +#: data//credits.stxt:542 data//credits.stxt:550 msgid "Contrib Programming" msgstr "Wkład w programowanie" -#: data//credits.stxt:535 +#: data//credits.stxt:554 msgid "Programming, Previous Maintainer" msgstr "Programowanie, Poprzedni Opiekun" -#: data//credits.stxt:539 +#: data//credits.stxt:558 msgid "Various Contributions" msgstr "Różne wkłady" -#: data//credits.stxt:543 -msgid "Minor features and programming" -msgstr "Drobne funkcje i programowanie" - -#: data//credits.stxt:547 data//credits.stxt:551 data//credits.stxt:555 -#: data//credits.stxt:559 data//credits.stxt:563 data//credits.stxt:567 -#: data//credits.stxt:571 data//credits.stxt:575 data//credits.stxt:579 -#: data//credits.stxt:583 data//credits.stxt:587 data//credits.stxt:591 +#: data//credits.stxt:562 data//credits.stxt:566 data//credits.stxt:570 +#: data//credits.stxt:574 data//credits.stxt:578 data//credits.stxt:582 +#: data//credits.stxt:586 data//credits.stxt:590 data//credits.stxt:594 +#: data//credits.stxt:598 data//credits.stxt:602 data//credits.stxt:606 +#: data//credits.stxt:610 data//credits.stxt:614 data//credits.stxt:618 +#: data//credits.stxt:622 data//credits.stxt:626 data//credits.stxt:630 +#: data//credits.stxt:634 data//credits.stxt:638 data//credits.stxt:642 +#: data//credits.stxt:646 data//credits.stxt:650 data//credits.stxt:654 +#: data//credits.stxt:658 data//credits.stxt:662 msgid "Contributions" msgstr "Wkład" -#: data//credits.stxt:597 +#: data//credits.stxt:668 msgid "Localization" -msgstr "Lokalizacja" +msgstr "Tłumaczenie" -#: data//credits.stxt:1144 +#: data//credits.stxt:1231 msgid " Special Thanks to" msgstr "Specjalne podziękowania dla" -#: data//credits.stxt:1149 +#: data//credits.stxt:1236 msgid "Creator of Tux, the Linux penguin" msgstr "Twórcy Tux'a, Pingwina Linux" -#: data//credits.stxt:1153 +#: data//credits.stxt:1240 msgid "SDL, OpenAL and OpenGL" msgstr "SDL, OpenAL i OpenGL" -#: data//credits.stxt:1154 +#: data//credits.stxt:1241 msgid "" "For making such a great gaming experience\n" " possible on Linux" msgstr "Za stworzenie tak świetnego doświadczenia z gry\n możliwego na Linuksie" -#: data//credits.stxt:1159 +#: data//credits.stxt:1246 msgid "and you, the player" msgstr "i Tobie graczu" -#: data//credits.stxt:1160 +#: data//credits.stxt:1247 msgid "for giving this game a chance and playing it" msgstr "za danie tej grze szansy i granie w nią" -#: data//credits.stxt:1171 +#: data//credits.stxt:1258 msgid "Visit our webpage at" msgstr "Odwiedź naszą stronę internetową" -#: data//credits.stxt:1180 +#: data//credits.stxt:1267 msgid "Or visit us directly at IRC:" msgstr "Albo odwiedź nas bezpośrednio na IRC:" -#: data//credits.stxt:1184 +#: data//credits.stxt:1271 msgid "#supertux at web.libera.chat" msgstr "#supertux na web.libera.chat" -#: data//credits.stxt:1189 +#: data//credits.stxt:1276 msgid "Or at our Forum:" msgstr "Lub na naszym forum:" -#: data//credits.stxt:1198 +#: data//credits.stxt:1285 msgid "Comments, ideas and suggestions" msgstr "Komentarze, pomysły i sugestie" -#: data//credits.stxt:1202 +#: data//credits.stxt:1289 msgid "go to our mailing list" msgstr "Nasz adres mailowy" #. l10n: typo contact -#: data//credits.stxt:1212 +#: data//credits.stxt:1299 msgid "Typographical errors can be" msgstr "Błędy typograficzne mogą być" #. l10n: typo contact -#: data//credits.stxt:1217 +#: data//credits.stxt:1304 msgid "reported to" msgstr "zgłaszane do" #. l10n: typo contact, see -#: data//credits.stxt:1222 +#: data//credits.stxt:1309 msgid "supertux-devel@lists.lethargik.org" msgstr "supertux-devel@lists.lethargik.org" -#: data//credits.stxt:1229 +#: data//credits.stxt:1316 msgid "Want to help…" -msgstr "Chcesz pomóc..." +msgstr "Chcesz pomóc…" -#: data//credits.stxt:1234 +#: data//credits.stxt:1321 msgid "…with localization?" -msgstr "...z lokalizacją?" +msgstr "…z tłumaczeniem?" -#: data//credits.stxt:1244 +#: data//credits.stxt:1331 msgid "…with something else?" -msgstr "...z czymś jeszcze innym?" +msgstr "…z czymś jeszcze innym?" -#: data//credits.stxt:1255 +#: data//credits.stxt:1342 msgid "Thank you for" msgstr "Dziękuję Ci za" -#: data//credits.stxt:1259 +#: data//credits.stxt:1346 msgid "playing" msgstr "grę" -#: data//credits.stxt:1269 +#: data//credits.stxt:1356 msgid "Penny awaits you in warmer temperatures!" msgstr "Penny czeka na Ciebie w cieplejszych temperaturach!" +#: data//images/engine/editor/objects.stoi:4 +msgid "Enemies" +msgstr "Wrogowie" + #: data//images/engine/editor/objects.stoi:162 msgid "Bosses" msgstr "Bossowie" @@ -3732,15 +5062,10 @@ msgstr "Bossowie" msgid "Projectiles" msgstr "Pociski" -#: data//images/engine/editor/objects.stoi:187 +#: data//images/engine/editor/objects.stoi:184 msgid "Environment" msgstr "Środowisko" -#: data//images/ice_world.strf:10 data//images/tiles.strf:28 -#: data//images/worldmap.strf:41 -msgid "Snow" -msgstr "Śnieg" - #: data//images/ice_world.strf:80 msgid "Ice Cave & Crystal" msgstr "Lodowa i kryształowa grota" @@ -3749,11 +5074,6 @@ msgstr "Lodowa i kryształowa grota" msgid "Embellishments" msgstr "Upiększenia" -#: data//images/ice_world.strf:211 data//images/tiles.strf:386 -#: data//images/worldmap.strf:67 -msgid "Forest" -msgstr "Las" - #: data//images/ice_world.strf:320 msgid "Underground Forest" msgstr "Podziemny las" @@ -3778,57 +5098,61 @@ msgstr "Ścieżki" msgid "Water" msgstr "Woda" -#: data//images/tiles.strf:176 +#: data//images/tiles.strf:252 msgid "Snow Background" msgstr "Śnieżne tło" -#: data//images/tiles.strf:231 -msgid "Snow Mountain" -msgstr "Góra Śnieżna" - -#: data//images/tiles.strf:305 +#: data//images/tiles.strf:300 msgid "Crystal" msgstr "Kryształ" -#: data//images/tiles.strf:532 +#: data//images/tiles.strf:539 msgid "Forest Background" msgstr "Leśne tło" -#: data//images/tiles.strf:663 +#: data//images/tiles.strf:690 +msgid "Corrupted Forest" +msgstr "" + +#: data//images/tiles.strf:868 +msgid "Corrupted Background" +msgstr "" + +#: data//images/tiles.strf:991 msgid "Block + Bonus" msgstr "Blok + Bonus" -#: data//images/tiles.strf:715 +#: data//images/tiles.strf:1069 msgid "Pole + Signs" msgstr "Słupy + Znaki" -#: data//images/tiles.strf:760 +#: data//images/tiles.strf:1113 msgid "Liquid" msgstr "Płyny" -#: data//images/tiles.strf:793 +#: data//images/tiles.strf:1131 msgid "Castle" msgstr "Zamek" -#: data//images/tiles.strf:930 data//images/worldmap.strf:199 +#: data//images/tiles.strf:1231 data//images/worldmap.strf:199 msgid "Halloween" msgstr "Halloween" -#: data//images/tiles.strf:958 +#: data//images/tiles.strf:1272 msgid "Industrial" msgstr "Przemysłowe" -#: data//images/tiles.strf:973 +#: data//images/tiles.strf:1287 msgid "Unisolid + Lightmap" msgstr "Niejednolitość + Mapa świetlna" -#: data//images/tiles.strf:1000 +#: data//images/tiles.strf:1314 msgid "Miscellaneous" msgstr "Różne" -#: data//images/tiles.strf:1043 -msgid "Retro Snow" -msgstr "Śnieg Retro" +#: data//images/tiles.strf:1342 +msgid "Retro Tiles" +msgstr "Płytki retro" #: data//images/worldmap.strf:24 msgid "Water paths" @@ -3841,3 +5165,19 @@ msgstr "Ścieżki zamkowe" #: data//images/worldmap.strf:135 msgid "Darker Forest" msgstr "Ciemniejszy Las" + +#: data//images/converters/data.stcd:3 +msgid "Nightly Tiles" +msgstr "" + +#: data//images/converters/data.stcd:5 +msgid "For levels, created in previous Nightly builds." +msgstr "" + +#: data//images/converters/data.stcd:8 +msgid "Pre-0.6.3 Crystal Tiles" +msgstr "" + +#: data//images/converters/data.stcd:10 +msgid "For levels, created in pre-0.6.3 versions, which use crystal tiles." +msgstr "" diff --git a/data/locale/pt.po b/data/locale/pt.po index eb2d7ab9824..05653a8d010 100644 --- a/data/locale/pt.po +++ b/data/locale/pt.po @@ -8,12 +8,13 @@ # Benjamin Leduc , 2015 # BlaCoiso, 2016 # Daniela Ferraz , 2013 -# Hugo Carvalho , 2022-2023 +# Hugo Carvalho , 2022-2024 # Ian Rodríguez Lorenzo, 2022 # João Frade <100nome.portugal@gmail.com>, 2023 # José Fryxell, 2022 # zecas , 2008 # José Fryxell, 2022 +# lecalam, 2024 # Ricardo Cruz , 2004 # Rui , 2016,2018 # Sérgio Lopes , 2012 @@ -25,9 +26,9 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-05-30 16:19+0200\n" "PO-Revision-Date: 2013-08-10 22:56+0000\n" -"Last-Translator: Rui , 2016,2018\n" +"Last-Translator: lecalam, 2024\n" "Language-Team: Portuguese (http://app.transifex.com/arctic-games/supertux/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,243 +36,361 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: src/trigger/secretarea_trigger.cpp:53 src/trigger/secretarea_trigger.cpp:61 +#: src/trigger/secretarea_trigger.cpp:47 msgid "You found a secret area!" msgstr "Descobriste uma área secreta!" -#: src/trigger/secretarea_trigger.cpp:77 src/supertux/game_object.cpp:90 -#: src/supertux/menu/editor_sector_menu.cpp:34 -#: src/supertux/menu/editor_levelset_menu.cpp:58 +#: src/trigger/secretarea_trigger.cpp:55 src/supertux/game_object.cpp:115 +#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_levelset_menu.cpp:52 #: src/supertux/menu/editor_new_levelset_menu.cpp:34 +#: src/supertux/menu/profile_name_menu.cpp:39 #: src/supertux/menu/editor_level_menu.cpp:33 msgid "Name" msgstr "Nome" -#: src/trigger/secretarea_trigger.cpp:78 +#: src/trigger/secretarea_trigger.cpp:56 msgid "Fade tilemap" -msgstr "Mapa-peças Diluível" +msgstr "Mapa-peças a desvanecer" -#: src/trigger/secretarea_trigger.cpp:79 src/trigger/climbable.cpp:81 -#: src/object/infoblock.cpp:57 src/editor/worldmap_objects.cpp:172 -#: src/editor/worldmap_objects.cpp:270 +#: src/trigger/secretarea_trigger.cpp:57 src/trigger/climbable.cpp:59 +#: src/object/infoblock.cpp:76 src/worldmap/teleporter.cpp:49 +#: src/worldmap/special_tile.cpp:74 msgid "Message" msgstr "Mensagem" -#: src/trigger/secretarea_trigger.cpp:80 src/trigger/scripttrigger.cpp:75 -#: src/trigger/door.cpp:73 src/object/ispy.cpp:67 -#: src/object/bonus_block.cpp:207 src/object/bonus_block.cpp:211 -#: src/object/pushbutton.cpp:51 src/object/powerup.cpp:190 -#: src/editor/worldmap_objects.cpp:272 +#: src/trigger/secretarea_trigger.cpp:58 src/trigger/scripttrigger.cpp:51 +#: src/trigger/door.cpp:79 src/object/ispy.cpp:53 +#: src/object/bonus_block.cpp:264 src/object/bonus_block.cpp:268 +#: src/object/pushbutton.cpp:62 src/object/powerup.cpp:301 +#: src/worldmap/special_tile.cpp:76 msgid "Script" msgstr "Script" -#: src/trigger/scripttrigger.cpp:76 src/object/pushbutton.hpp:31 +#: src/trigger/scripttrigger.cpp:52 src/object/pushbutton.hpp:32 msgid "Button" msgstr "Botão" -#: src/trigger/scripttrigger.cpp:77 +#: src/trigger/scripttrigger.cpp:53 msgid "Oneshot" msgstr "Um só tiro" -#: src/trigger/sequence_trigger.hpp:33 +#: src/trigger/sequence_trigger.hpp:31 msgid "Sequence Trigger" -msgstr "Ativador de Sequência" +msgstr "Ativador de sequência" + +#: src/trigger/text_area.cpp:141 +msgid "Once" +msgstr "Uma vez" + +#: src/trigger/text_area.cpp:142 +msgid "Text change time" +msgstr "Tempo de mudança do texto" + +#: src/trigger/text_area.cpp:143 +msgid "Fade time" +msgstr "Tempo de desvanecimento" + +#: src/trigger/text_area.cpp:144 src/object/textscroller.cpp:353 +msgid "Anchor" +msgstr "Ancorar" + +#: src/trigger/text_area.cpp:148 +msgid "Anchor offset X" +msgstr "Deslocação X da âncora" + +#: src/trigger/text_area.cpp:149 +msgid "Anchor offset Y" +msgstr "Deslocação Y da âncora" + +#: src/trigger/text_area.cpp:150 +msgid "Texts" +msgstr "Textos" -#: src/trigger/door.cpp:74 src/badguy/willowisp.cpp:320 -#: src/supertux/menu/editor_sector_menu.cpp:32 -#: src/editor/layers_widget.cpp:342 -#: data//images/engine/editor/objects.stoi:321 +#: src/trigger/door.cpp:80 src/badguy/willowisp.cpp:311 +#: src/worldmap/teleporter.cpp:47 data//images/engine/editor/objects.stoi:342 msgid "Sector" msgstr "Setor" -#: src/trigger/door.cpp:75 src/editor/worldmap_objects.hpp:101 +#: src/trigger/door.cpp:81 src/worldmap/spawn_point.hpp:58 msgid "Spawn point" msgstr "Ponto de partida" -#: src/trigger/switch.cpp:61 src/object/block.cpp:224 src/object/torch.cpp:102 -#: src/object/moving_sprite.cpp:156 src/object/pneumatic_platform.cpp:146 -msgid "Sprite" -msgstr "Imagem" +#: src/trigger/door.cpp:82 +msgid "Locked?" +msgstr "Bloqueado?" + +#: src/trigger/door.cpp:83 +msgid "Lock Color" +msgstr "Bloquear cor" + +#: src/trigger/switch.cpp:62 src/object/ispy.cpp:54 src/object/bumper.cpp:53 +#: src/object/spotlight.cpp:106 src/object/pushbutton.cpp:61 +#: src/object/gradient.cpp:103 src/object/conveyor_belt.cpp:60 +#: src/badguy/badguy.cpp:1063 src/worldmap/spawn_point.cpp:79 +#: src/worldmap/special_tile.cpp:78 +msgid "Direction" +msgstr "Direção" -#: src/trigger/switch.cpp:62 +#: src/trigger/switch.cpp:65 msgid "Turn on script" msgstr "Script quando ligado" -#: src/trigger/switch.cpp:63 +#: src/trigger/switch.cpp:66 msgid "Turn off script" msgstr "Script quando desligado" -#: src/trigger/scripttrigger.hpp:32 +#: src/trigger/scripttrigger.hpp:29 msgid "Script Trigger" -msgstr "Ativador de Script" +msgstr "Ativador de script" -#: src/trigger/sequence_trigger.cpp:75 +#: src/trigger/sequence_trigger.cpp:48 msgid "Sequence" msgstr "Sequência" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "end sequence" msgstr "sequência final" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "stop Tux" msgstr "parar Tux" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "fireworks" msgstr "fogo de artifício" -#: src/trigger/sequence_trigger.cpp:80 +#: src/trigger/sequence_trigger.cpp:53 msgid "New worldmap spawnpoint" msgstr "Novo ponto de partida no mapa-mundo" -#: src/trigger/sequence_trigger.cpp:81 +#: src/trigger/sequence_trigger.cpp:54 msgid "Worldmap fade tilemap" -msgstr "Mapa-peças para diluir mapa-mundo" +msgstr "Mapa-peças para desvanecer mapa-mundo" -#: src/trigger/sequence_trigger.cpp:82 +#: src/trigger/sequence_trigger.cpp:55 #: src/object/custom_particle_system.cpp:430 #: src/object/custom_particle_system.cpp:465 msgid "Fade" msgstr "Desvanecer" -#: src/trigger/sequence_trigger.cpp:83 src/editor/particle_editor.cpp:161 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:161 msgid "Fade in" msgstr "Desvanecer para dentro" -#: src/trigger/sequence_trigger.cpp:83 src/editor/particle_editor.cpp:167 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:167 #: src/editor/particle_editor.cpp:212 msgid "Fade out" msgstr "Desvanecer para fora" -#: src/trigger/climbable.hpp:37 +#: src/trigger/climbable.hpp:46 msgid "Climbable" msgstr "Escalável" -#: src/trigger/door.hpp:34 +#: src/trigger/text_area.hpp:47 +msgid "Text Area" +msgstr "Área de texto" + +#: src/trigger/door.hpp:31 msgid "Door" msgstr "Porta" -#: src/trigger/switch.hpp:33 +#: src/trigger/switch.hpp:30 msgid "Switch" msgstr "Interruptor" #: src/trigger/secretarea_trigger.hpp:36 msgid "Secret Area" -msgstr "Área Secreta" +msgstr "Área secreta" + +#: src/math/anchor_point.cpp:33 +msgid "Top Left" +msgstr "Topo esquerdo" + +#: src/math/anchor_point.cpp:34 +msgid "Top" +msgstr "Topo" + +#: src/math/anchor_point.cpp:35 +msgid "Top Right" +msgstr "Topo direito" + +#: src/math/anchor_point.cpp:36 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:38 +#: src/supertux/menu/joystick_menu.cpp:73 +msgid "Left" +msgstr "Esquerda" + +#: src/math/anchor_point.cpp:37 +msgid "Middle" +msgstr "Meio" + +#: src/math/anchor_point.cpp:38 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:39 +#: src/supertux/menu/joystick_menu.cpp:74 +msgid "Right" +msgstr "Direita" + +#: src/math/anchor_point.cpp:39 +msgid "Bottom Left" +msgstr "Fundo esquerdo" -#: src/object/thunderstorm.hpp:40 +#: src/math/anchor_point.cpp:40 +msgid "Bottom" +msgstr "Fundo" + +#: src/math/anchor_point.cpp:41 +msgid "Bottom Right" +msgstr "Fundo direito" + +#: src/object/thunderstorm.hpp:44 msgid "Thunderstorm" msgstr "Tempestade" -#: src/object/cloud_particle_system.cpp:79 +#: src/object/cloud_particle_system.cpp:77 #: src/object/rain_particle_system.cpp:100 msgid "Intensity" msgstr "Intensidade" -#: src/object/custom_particle_system.hpp:45 +#: src/object/custom_particle_system.hpp:46 msgid "Custom Particles" -msgstr "Partículas Personalizadas" - -#: src/object/ispy.cpp:66 -msgid "Facing Down" -msgstr "Virado Para Baixo" +msgstr "Partículas personalizadas" -#: src/object/ispy.cpp:68 src/object/spotlight.cpp:103 -#: src/object/gradient.cpp:137 src/badguy/willowisp.cpp:319 -#: src/badguy/badguy.cpp:848 src/editor/worldmap_objects.cpp:207 -#: src/editor/worldmap_objects.cpp:274 -msgid "Direction" -msgstr "Direção" - -#: src/object/particle_zone.hpp:39 +#: src/object/particle_zone.hpp:41 msgid "Particle zone" -msgstr "Zona de Partículas" +msgstr "Zona de partículas" -#: src/object/path_gameobject.hpp:44 src/object/coin.cpp:301 -#: src/object/camera.cpp:224 src/object/platform.cpp:73 -#: src/object/path_gameobject.cpp:173 src/object/tilemap.cpp:246 -#: src/gui/menu_paths.cpp:52 src/badguy/willowisp.cpp:326 +#: src/object/path_gameobject.hpp:45 src/object/coin.cpp:324 +#: src/object/camera.cpp:168 src/object/platform.cpp:76 +#: src/object/path_gameobject.cpp:175 src/object/tilemap.cpp:284 +#: src/badguy/willowisp.cpp:317 msgid "Path" msgstr "Caminho" -#: src/object/decal.cpp:49 src/object/scripted_object.cpp:67 -#: src/object/particlesystem.cpp:65 src/object/background.cpp:183 -#: src/object/thunderstorm.cpp:68 src/object/tilemap.cpp:239 -#: src/object/gradient.cpp:135 -msgid "Z-pos" -msgstr "Profundidade" - -#: src/object/decal.cpp:50 src/object/scripted_object.cpp:70 -#: src/object/tilemap.cpp:228 +#: src/object/decal.cpp:48 src/object/scripted_object.cpp:70 +#: src/object/tilemap.cpp:266 msgid "Solid" msgstr "Sólido" -#: src/object/decal.cpp:51 src/supertux/menu/keyboard_menu.cpp:37 -#: src/supertux/menu/joystick_menu.cpp:74 +#: src/object/decal.cpp:49 src/supertux/menu/keyboard_menu.cpp:41 +#: src/supertux/menu/joystick_menu.cpp:76 msgid "Action" msgstr "Ação" -#: src/object/weak_block.hpp:35 +#: src/object/weak_block.hpp:36 msgid "Weak Tile" msgstr "Peça frágil" -#: src/object/bumper.cpp:46 -msgid "Facing Left" -msgstr "Orientado Para a Esquerda" - -#: src/object/gradient.hpp:42 +#: src/object/gradient.hpp:43 msgid "Gradient" msgstr "Gradiente" -#: src/object/tilemap.hpp:57 +#: src/object/tilemap.hpp:58 msgid "Tilemap" msgstr "Mapa-peças" -#: src/object/circleplatform.hpp:32 +#: src/object/sound_object.cpp:69 src/object/ambient_sound.cpp:85 +#: src/object/sound_object.hpp:42 src/supertux/menu/options_menu.cpp:128 +#: data//credits.stxt:367 +msgid "Sound" +msgstr "Som" + +#: src/object/sound_object.cpp:70 src/object/ambient_sound.cpp:87 +msgid "Volume" +msgstr "Volume" + +#: src/object/conveyor_belt.hpp:39 +msgid "Conveyor Belt" +msgstr "Correia transportadora" + +#: src/object/unstable_tile.cpp:70 src/object/weak_block.cpp:97 +#: src/badguy/flame.cpp:86 +msgid "Ice" +msgstr "Gelo" + +#: src/object/unstable_tile.cpp:71 src/object/brick.hpp:34 +msgid "Brick" +msgstr "Caixa de madeira" + +#: src/object/unstable_tile.cpp:72 +msgid "Delayed" +msgstr "Atrasado" + +#: src/object/circleplatform.hpp:35 msgid "Circular Platform" -msgstr "Plataforma Circular" +msgstr "Plataforma circular" + +#: src/object/brick.cpp:59 src/object/coin.cpp:69 +#: src/object/invisible_block.cpp:37 src/object/background.cpp:200 +#: src/object/tilemap.cpp:279 src/object/gradient.cpp:109 +#: src/badguy/viciousivy.cpp:44 src/badguy/snail.cpp:69 +#: src/badguy/smartball.cpp:34 src/badguy/bouncing_snowball.cpp:81 +#: src/badguy/kamikazesnowball.cpp:117 src/badguy/walkingleaf.cpp:35 +#: src/badguy/mrbomb.cpp:47 src/badguy/igel.cpp:188 src/badguy/snowball.cpp:40 +#: src/badguy/mrtree.cpp:50 src/badguy/mriceblock.cpp:62 +msgid "Normal" +msgstr "Normal" + +#: src/object/brick.cpp:60 src/object/bonus_block.cpp:175 +#: src/object/coin.cpp:70 src/object/invisible_block.cpp:38 +msgid "Retro" +msgstr "Retro" -#: src/object/brick.cpp:133 +#: src/object/brick.cpp:166 msgid "Breakable" msgstr "Quebrável" -#: src/object/trampoline.cpp:136 src/object/rusty_trampoline.cpp:66 +#: src/object/trampoline.cpp:66 src/object/rusty_trampoline.cpp:66 msgid "Portable" msgstr "Portátil" -#: src/object/spotlight.cpp:100 src/object/rain_particle_system.cpp:101 +#: src/object/trampoline.cpp:67 +msgid "Stationary" +msgstr "Estacionário" + +#: src/object/key.hpp:38 +msgid "Key" +msgstr "Chave" + +#: src/object/spotlight.cpp:102 src/object/particlesystem.cpp:64 +#: src/object/particle_zone.cpp:50 src/badguy/darttrap.cpp:149 +#: src/supertux/menu/addon_preview_menu.cpp:189 +msgid "Enabled" +msgstr "Ativado" + +#: src/object/spotlight.cpp:103 src/object/rain_particle_system.cpp:101 msgid "Angle" msgstr "Ângulo" -#: src/object/spotlight.cpp:101 src/object/magicblock.cpp:94 -#: src/object/candle.cpp:77 src/object/torch.cpp:104 -#: src/object/rublight.cpp:54 src/object/lantern.cpp:62 -#: src/object/ambient_light.cpp:131 src/badguy/willowisp.cpp:328 -#: src/badguy/walking_candle.cpp:82 +#: src/object/spotlight.cpp:104 src/object/magicblock.cpp:95 +#: src/object/candle.cpp:75 src/object/torch.cpp:96 src/object/rublight.cpp:55 +#: src/object/lantern.cpp:62 src/object/ambient_light.cpp:122 +#: src/object/key.cpp:192 src/badguy/willowisp.cpp:319 +#: src/badguy/walking_candle.cpp:91 msgid "Color" msgstr "Cor" -#: src/object/spotlight.cpp:102 src/object/textscroller.cpp:350 -#: src/object/rain_particle_system.cpp:102 src/object/circleplatform.cpp:55 -#: src/badguy/flame.cpp:59 src/editor/node_marker.cpp:125 +#: src/object/spotlight.cpp:105 src/object/textscroller.cpp:350 +#: src/object/rain_particle_system.cpp:102 src/object/conveyor_belt.cpp:61 +#: src/object/circleplatform.cpp:58 src/badguy/flame.cpp:110 +#: src/editor/node_marker.cpp:125 msgid "Speed" msgstr "Velocidade" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Clockwise" msgstr "Sentido horário" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Counter-clockwise" msgstr "Sentido anti-horário" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Stopped" msgstr "Parado" -#: src/object/spotlight.cpp:107 src/object/candle.cpp:78 -#: src/object/torch.cpp:103 +#: src/object/spotlight.cpp:110 src/object/lit_object.cpp:69 +#: src/object/candle.cpp:76 src/object/torch.cpp:95 msgid "Layer" msgstr "Camada" @@ -283,131 +402,177 @@ msgstr "Física ativada" msgid "Visible" msgstr "Visível" -#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:322 +#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:313 msgid "Hit script" msgstr "Script ao tocar" -#: src/object/custom_particle_system_file.cpp:50 +#: src/object/custom_particle_system_file.cpp:53 #: src/object/textscroller.cpp:348 src/object/music_object.cpp:109 #: src/supertux/menu/particle_editor_open.cpp:38 msgid "File" msgstr "Ficheiro" -#: src/object/bonus_block.cpp:208 +#: src/object/bonus_block.cpp:154 +msgid "Only one custom object is allowed inside bonus blocks." +msgstr "Só é permitido um objeto personalizado dentro de blocos de bónus." + +#: src/object/bonus_block.cpp:172 +msgid "Blue" +msgstr "Azul" + +#: src/object/bonus_block.cpp:173 +msgid "Orange" +msgstr "Laranja" + +#: src/object/bonus_block.cpp:174 +msgid "Purple" +msgstr "Púrpura" + +#: src/object/bonus_block.cpp:265 src/supertux/menu/cheat_apply_menu.cpp:54 msgid "Count" msgstr "Quantidade de bónus" -#: src/object/bonus_block.cpp:209 +#: src/object/bonus_block.cpp:266 msgid "Content" msgstr "Bónus" -#: src/object/bonus_block.cpp:210 src/object/coin.hpp:43 +#: src/object/bonus_block.cpp:267 src/object/coin.hpp:44 msgid "Coin" msgstr "Moeda" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (fire flower)" msgstr "Crescer (flor-de-fogo)" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (ice flower)" msgstr "Crescer (flor-de-gelo)" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (air flower)" msgstr "Crescer (flor-de-ar)" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Growth (earth flower)" msgstr "Crescer (flor-de-terra)" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 +msgid "Growth (retro)" +msgstr "Crescer (retro)" + +#: src/object/bonus_block.cpp:268 src/object/powerup.cpp:66 msgid "Star" msgstr "Estrela" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 +msgid "Star (retro)" +msgstr "Estrela (retro)" + +#: src/object/bonus_block.cpp:268 msgid "Tux doll" msgstr "Boneco Tux" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Custom" msgstr "Personalizado" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Light" msgstr "Luz" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Light (On)" -msgstr "Luz (Ligada)" +msgstr "Luz (ligada)" -#: src/object/bonus_block.cpp:212 src/object/trampoline.hpp:35 +#: src/object/bonus_block.cpp:269 src/object/trampoline.hpp:37 msgid "Trampoline" msgstr "Trampolim" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 +msgid "Portable trampoline" +msgstr "Trampolim portátil" + +#: src/object/bonus_block.cpp:269 msgid "Coin rain" msgstr "Chuva de moedas" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 msgid "Coin explosion" msgstr "Explosão de moedas" -#: src/object/bonus_block.cpp:216 +#: src/object/bonus_block.cpp:269 src/object/rock.hpp:43 +msgid "Rock" +msgstr "Pedra transportável" + +#: src/object/bonus_block.cpp:269 +msgid "Potion" +msgstr "Poção" + +#: src/object/bonus_block.cpp:275 msgid "Custom Content" -msgstr "Bónus Personalizado" +msgstr "Bónus personalizado" -#: src/object/pneumatic_platform.hpp:62 +#: src/object/bonus_block.cpp:278 +msgid "Coin sprite" +msgstr "Imagem de moeda" + +#: src/object/pneumatic_platform.hpp:65 msgid "Pneumatic Platform" -msgstr "Plataforma Pneumática" +msgstr "Plataforma pneumática" -#: src/object/coin.cpp:303 src/object/tilemap.cpp:249 +#: src/object/coin.cpp:326 src/object/tilemap.cpp:287 msgid "Following path" msgstr "Seguir um caminho" -#: src/object/coin.cpp:306 src/object/camera.cpp:227 -#: src/object/platform.cpp:74 src/object/tilemap.cpp:252 +#: src/object/coin.cpp:329 src/object/camera.cpp:171 +#: src/object/platform.cpp:77 src/object/tilemap.cpp:290 msgid "Path Mode" -msgstr "Modo de Caminho" +msgstr "Modo de caminho" -#: src/object/coin.cpp:307 src/object/camera.cpp:228 -#: src/object/platform.cpp:75 src/object/tilemap.cpp:253 -#: src/badguy/willowisp.cpp:331 +#: src/object/coin.cpp:330 src/object/camera.cpp:172 +#: src/object/platform.cpp:78 src/object/tilemap.cpp:291 +#: src/badguy/willowisp.cpp:322 msgid "Adapt Speed" -msgstr "Adaptar Velocidade" +msgstr "Adaptar velocidade" -#: src/object/coin.cpp:308 src/object/platform.cpp:77 -#: src/object/tilemap.cpp:247 src/badguy/willowisp.cpp:327 +#: src/object/coin.cpp:331 src/object/platform.cpp:81 +#: src/object/tilemap.cpp:285 src/badguy/willowisp.cpp:318 msgid "Starting Node" msgstr "Nó Inicial" -#: src/object/coin.cpp:311 src/object/coin.cpp:339 +#: src/object/coin.cpp:332 src/object/camera.cpp:173 +#: src/object/platform.cpp:82 src/object/tilemap.cpp:293 +#: src/badguy/willowisp.cpp:323 +msgid "Handle" +msgstr "Manípulo" + +#: src/object/coin.cpp:335 src/object/coin.cpp:371 msgid "Collect script" msgstr "Script ao apanhar" -#: src/object/ghost_particle_system.hpp:36 +#: src/object/ghost_particle_system.hpp:37 msgid "Ghost Particles" -msgstr "Partículas Fantasma" +msgstr "Partículas fantasma" -#: src/object/camera.cpp:219 +#: src/object/camera.cpp:163 msgid "Mode" msgstr "Modo" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "normal" msgstr "normal" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "manual" msgstr "manual" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "autoscroll" msgstr "rolagem automática" #: src/object/textscroller.cpp:349 msgid "Finish Script" -msgstr "Terminar Script" +msgstr "Terminar script" #: src/object/textscroller.cpp:351 msgid "X-offset" @@ -417,32 +582,20 @@ msgstr "Desvio em X" msgid "Controllable" msgstr "Controlável" -#: src/object/textscroller.cpp:353 -msgid "Anchor" -msgstr "Ancorar" - -#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 -#: src/supertux/menu/keyboard_menu.cpp:34 -#: src/supertux/menu/joystick_menu.cpp:71 -msgid "Left" -msgstr "Esquerda" - #: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 msgid "Center" msgstr "Centro" -#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 -#: src/supertux/menu/keyboard_menu.cpp:35 -#: src/supertux/menu/joystick_menu.cpp:72 -msgid "Right" -msgstr "Direita" - #: src/object/textscroller.cpp:357 msgid "Text Alignment" -msgstr "Alinhamento de Texto" +msgstr "Alinhamento de texto" + +#: src/object/lit_object.hpp:40 +msgid "Lit object" +msgstr "Objeto iluminado" -#: src/object/spawnpoint.hpp:46 src/badguy/willowisp.cpp:321 -#: src/editor/worldmap_objects.cpp:171 +#: src/object/spawnpoint.hpp:48 src/badguy/willowisp.cpp:312 +#: src/worldmap/teleporter.cpp:48 msgid "Spawnpoint" msgstr "Ponto de partida" @@ -450,268 +603,341 @@ msgstr "Ponto de partida" msgid "Counter" msgstr "Contador" -#: src/object/candle.hpp:36 +#: src/object/candle.hpp:37 msgid "Candle" msgstr "Vela" -#: src/object/particlesystem.cpp:64 src/object/particle_zone.cpp:79 -#: src/badguy/darttrap.cpp:127 -msgid "Enabled" -msgstr "Ativado" +#: src/object/particlesystem.cpp:65 src/object/background.cpp:184 +#: src/object/thunderstorm.cpp:76 src/object/tilemap.cpp:277 +#: src/object/gradient.cpp:101 src/object/moving_sprite.cpp:193 +msgid "Z-pos" +msgstr "Profundidade" -#: src/object/invisible_block.hpp:31 +#: src/object/invisible_block.hpp:30 msgid "Invisible Block" msgstr "Bloco Invisível" -#: src/object/snow_particle_system.hpp:35 +#: src/object/snow_particle_system.hpp:37 msgid "Snow Particles" -msgstr "Partículas de Neve" +msgstr "Partículas de neve" -#: src/object/powerup.hpp:35 +#: src/object/powerup.hpp:40 msgid "Powerup" msgstr "Poder" -#: src/object/fallblock.hpp:39 -msgid "Falling Platform" -msgstr "Plataforma Instável" +#: src/object/infoblock.cpp:78 +msgid "Front Color" +msgstr "Cor da frente" -#: src/object/level_time.hpp:55 -msgid "Time Limit" -msgstr "Limite de Tempo" +#: src/object/infoblock.cpp:80 +msgid "Back Color" +msgstr "Cor de trás" -#: src/object/ambient_sound.cpp:119 src/supertux/menu/options_menu.cpp:391 -#: data//credits.stxt:352 -msgid "Sound" -msgstr "Som" +#: src/object/infoblock.cpp:82 +msgid "Roundness" +msgstr "Arredondamento" -#: src/object/ambient_sound.cpp:120 -msgid "Distance factor" -msgstr "Fator de distância" +#: src/object/infoblock.cpp:84 +msgid "Fade Transition" +msgstr "Transição de esbatimento" -#: src/object/ambient_sound.cpp:121 -msgid "Distance bias" -msgstr "Margem de distância" +#: src/object/fallblock.hpp:41 +msgid "Falling Platform" +msgstr "Plataforma instável" -#: src/object/ambient_sound.cpp:122 -msgid "Volume" -msgstr "Volume" +#: src/object/level_time.hpp:56 +msgid "Time Limit" +msgstr "Limite de tempo" + +#: src/object/ambient_sound.cpp:86 +msgid "Radius (in tiles)" +msgstr "Raio (em peças)" #: src/object/torch.hpp:41 msgid "Torch" msgstr "Tocha" -#: src/object/icecrusher.hpp:53 -msgid "Icecrusher" -msgstr "Esmagador de gelo" - -#: src/object/rublight.hpp:33 +#: src/object/rublight.hpp:34 msgid "Rublight" msgstr "Contacto de luz" -#: src/object/background.hpp:43 +#: src/object/background.hpp:45 msgid "Background" msgstr "Fundo" -#: src/object/firefly.hpp:36 +#: src/object/text_object.hpp:44 src/gui/menu_string_array.cpp:77 +msgid "Text" +msgstr "Texto" + +#: src/object/firefly.hpp:38 msgid "Checkpoint" -msgstr "Ponto de Controlo" +msgstr "Ponto de controlo" -#: src/object/ambient_light.hpp:36 +#: src/object/ambient_light.hpp:37 msgid "Ambient Light" -msgstr "Luz Ambiente" +msgstr "Luz ambiente" -#: src/object/lantern.hpp:37 +#: src/object/lantern.hpp:38 msgid "Lantern" msgstr "Lanterna" -#: src/object/wind.hpp:40 +#: src/object/wind.hpp:43 msgid "Wind" msgstr "Vento" -#: src/object/bicycle_platform.cpp:189 src/object/background.cpp:179 -#: src/object/pneumatic_platform.cpp:147 -#: src/supertux/menu/joystick_menu.cpp:170 src/supertux/moving_object.cpp:58 -#: src/editor/worldmap_objects.cpp:73 +#: src/object/bicycle_platform.cpp:203 src/object/background.cpp:180 +#: src/object/pneumatic_platform.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:65 +#: src/worldmap/worldmap_object.cpp:77 msgid "X" msgstr "X" -#: src/object/bicycle_platform.cpp:190 src/object/background.cpp:180 -#: src/object/pneumatic_platform.cpp:148 -#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:59 -#: src/editor/worldmap_objects.cpp:74 +#: src/object/bicycle_platform.cpp:204 src/object/background.cpp:181 +#: src/object/pneumatic_platform.cpp:163 +#: src/supertux/menu/joystick_menu.cpp:174 src/supertux/moving_object.cpp:66 +#: src/worldmap/worldmap_object.cpp:78 msgid "Y" msgstr "Y" -#: src/object/bicycle_platform.cpp:192 +#: src/object/bicycle_platform.cpp:206 msgid "Platforms" msgstr "Plataformas" -#: src/object/bicycle_platform.cpp:193 src/object/circleplatform.cpp:54 -#: src/badguy/flame.cpp:58 src/badguy/rcrystallo.cpp:50 -#: src/badguy/crystallo.cpp:35 +#: src/object/bicycle_platform.cpp:207 src/object/circleplatform.cpp:57 +#: src/badguy/fish_swimming.cpp:76 src/badguy/flame.cpp:109 +#: src/badguy/rcrystallo.cpp:83 src/badguy/crystallo.cpp:50 msgid "Radius" msgstr "Raio" -#: src/object/bicycle_platform.cpp:194 +#: src/object/bicycle_platform.cpp:208 msgid "Momentum change rate" msgstr "Taxa de alteração do momento" -#: src/object/rain_particle_system.hpp:40 +#: src/object/rain_particle_system.hpp:41 msgid "Rain Particles" -msgstr "Partículas de Chuva" +msgstr "Partículas de chuva" -#: src/object/platform.hpp:45 +#: src/object/platform.hpp:46 msgid "Platform" msgstr "Plataforma" -#: src/object/rock.hpp:42 -msgid "Rock" -msgstr "Pedra transportável" - -#: src/object/music_object.hpp:41 src/supertux/menu/options_menu.cpp:393 -#: data//credits.stxt:294 +#: src/object/music_object.hpp:42 src/supertux/menu/options_menu.cpp:130 +#: data//credits.stxt:309 msgid "Music" msgstr "Música" -#: src/object/rusty_trampoline.hpp:39 +#: src/object/lit_object.cpp:68 +msgid "Light sprite" +msgstr "Imagem de luz" + +#: src/object/lit_object.cpp:71 +msgid "Sprite starting action" +msgstr "Ação de arranque da imagem" + +#: src/object/lit_object.cpp:72 +msgid "Light sprite starting action" +msgstr "Ação de arranque da imagem da luz" + +#: src/object/lit_object.cpp:74 +msgid "Light sprite offset X" +msgstr "Deslocação X da imagem da luz" + +#: src/object/lit_object.cpp:75 +msgid "Light sprite offset Y" +msgstr "Deslocação Y da imagem da luz" + +#: src/object/rusty_trampoline.hpp:40 msgid "Rusty Trampoline" -msgstr "Trampolim Enferrujado" +msgstr "Trampolim enferrujado" -#: src/object/particlesystem.hpp:57 +#: src/object/particlesystem.hpp:58 msgid "Particle system" msgstr "Sistema de partículas" -#: src/object/candle.cpp:75 src/object/torch.cpp:101 +#: src/object/candle.cpp:73 src/object/torch.cpp:94 msgid "Burning" msgstr "A arder" -#: src/object/candle.cpp:76 +#: src/object/candle.cpp:74 msgid "Flicker" msgstr "A piscar" -#: src/object/text_array_object.hpp:50 +#: src/object/snow_particle_system.cpp:104 +msgid "Epsilon" +msgstr "Épsilon" + +#: src/object/snow_particle_system.cpp:105 +msgid "Spin Speed" +msgstr "Velocidade de rotação" + +#: src/object/snow_particle_system.cpp:106 +msgid "State Length" +msgstr "Comprimento do estado" + +#: src/object/snow_particle_system.cpp:107 +msgid "Wind Speed" +msgstr "Velocidade do vento" + +#: src/object/text_array_object.hpp:47 msgid "Text array" -msgstr "Malha de texto" +msgstr "Matriz de texto" -#: src/object/infoblock.hpp:36 +#: src/object/infoblock.hpp:37 msgid "Info Block" -msgstr "Bloco de Informação" +msgstr "Bloco de informação" + +#: src/object/powerup.cpp:61 +msgid "Egg" +msgstr "Ovo" + +#: src/object/powerup.cpp:62 +msgid "Fire Flower" +msgstr "Flor de fogo" + +#: src/object/powerup.cpp:63 +msgid "Ice Flower" +msgstr "Flor de gelo" + +#: src/object/powerup.cpp:64 +msgid "Air Flower" +msgstr "Flor de ar" + +#: src/object/powerup.cpp:65 +msgid "Earth Flower" +msgstr "Flor de terra" + +#: src/object/powerup.cpp:67 +msgid "Tux Doll" +msgstr "Boneca Tux" -#: src/object/powerup.cpp:191 +#: src/object/powerup.cpp:68 +msgid "Flip Potion" +msgstr "Poção de viragem" + +#: src/object/powerup.cpp:69 +msgid "Mints" +msgstr "Pastilhas" + +#: src/object/powerup.cpp:70 +msgid "Coffee" +msgstr "Café" + +#: src/object/powerup.cpp:71 +msgid "Herring" +msgstr "Arenque" + +#: src/object/powerup.cpp:302 msgid "Disable gravity" msgstr "Desativar gravidade" -#: src/object/ambient_sound.hpp:62 +#: src/object/powerup.cpp:312 src/object/weak_block.cpp:266 +msgid "" +"Sprites no longer define the behaviour of the object.\n" +"Object types are used instead." +msgstr "As imagens já não definem o comportamento do objeto.\nEm vez disso, são utilizados tipos de objetos." + +#: src/object/ambient_sound.hpp:43 msgid "Ambient Sound" -msgstr "Som Ambiente" +msgstr "Som ambiente" -#: src/object/level_time.cpp:51 src/supertux/statistics.cpp:297 +#: src/object/level_time.cpp:52 src/supertux/statistics.cpp:297 #: src/editor/node_marker.cpp:124 msgid "Time" msgstr "Tempo" -#: src/object/hurting_platform.hpp:30 +#: src/object/hurting_platform.hpp:31 msgid "Hurting Platform" -msgstr "Plataforma Mortífera" - -#: src/object/icecrusher.cpp:83 -msgid "Sideways" -msgstr "Lateralmente" +msgstr "Plataforma mortífera" -#: src/object/background.cpp:182 +#: src/object/background.cpp:183 msgid "Fill" msgstr "Preencher" -#: src/object/background.cpp:184 +#: src/object/background.cpp:185 msgid "Alignment" msgstr "Alinhamento" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 src/supertux/direction.cpp:61 msgid "none" msgstr "nenhum" -#: src/object/background.cpp:185 src/editor/object_settings.cpp:119 +#: src/object/background.cpp:186 src/supertux/direction.cpp:63 msgid "left" msgstr "esquerda" -#: src/object/background.cpp:185 src/editor/object_settings.cpp:119 +#: src/object/background.cpp:186 src/supertux/direction.cpp:65 msgid "right" msgstr "direita" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 msgid "top" msgstr "cima" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 msgid "bottom" msgstr "baixo" -#: src/object/background.cpp:188 +#: src/object/background.cpp:189 msgid "Scroll offset x" msgstr "Desvio de rolagem (X)" -#: src/object/background.cpp:189 +#: src/object/background.cpp:190 msgid "Scroll offset y" msgstr "Desvio de rolagem (Y)" -#: src/object/background.cpp:190 +#: src/object/background.cpp:191 msgid "Scroll speed x" msgstr "Velocidade de rolagem (X)" -#: src/object/background.cpp:191 +#: src/object/background.cpp:192 msgid "Scroll speed y" msgstr "Velocidade de rolagem (Y)" -#: src/object/background.cpp:192 +#: src/object/background.cpp:193 msgid "Parallax Speed x" -msgstr "Velocidade do Paralaxe (X)" +msgstr "Velocidade da paralaxe (X)" -#: src/object/background.cpp:193 +#: src/object/background.cpp:194 msgid "Parallax Speed y" -msgstr "Velocidade do Paralaxe (Y)" +msgstr "Velocidade da paralaxe (Y)" -#: src/object/background.cpp:194 +#: src/object/background.cpp:195 msgid "Top image" msgstr "Imagem de cima" -#: src/object/background.cpp:195 +#: src/object/background.cpp:196 msgid "Image" msgstr "Imagem" -#: src/object/background.cpp:196 +#: src/object/background.cpp:197 msgid "Bottom image" msgstr "Imagem de baixo" -#: src/object/background.cpp:197 +#: src/object/background.cpp:198 msgid "Colour" msgstr "Cor" -#: src/object/background.cpp:198 src/object/tilemap.cpp:240 -#: src/object/gradient.cpp:142 +#: src/object/background.cpp:199 src/object/tilemap.cpp:278 +#: src/object/gradient.cpp:108 msgid "Draw target" msgstr "Desenhar alvo" -#: src/object/background.cpp:199 src/object/tilemap.cpp:241 -#: src/object/gradient.cpp:143 -msgid "Normal" -msgstr "Normal" - -#: src/object/background.cpp:199 src/object/tilemap.cpp:241 -#: src/object/gradient.cpp:143 +#: src/object/background.cpp:200 src/object/tilemap.cpp:279 +#: src/object/gradient.cpp:109 msgid "Lightmap" msgstr "Mapa de luz" -#: src/object/shard.hpp:34 +#: src/object/shard.hpp:35 msgid "Shard" msgstr "Fragmento" -#: src/object/rublight.cpp:55 +#: src/object/rublight.cpp:56 msgid "Fading Speed" -msgstr "Rapidez a Desvanecer" +msgstr "Rapidez a desvanecer" -#: src/object/rublight.cpp:56 +#: src/object/rublight.cpp:57 msgid "Glowing Strength" -msgstr "Força do Brilho" +msgstr "Força do brilho" #: src/object/wind.cpp:78 src/object/custom_particle_system.cpp:499 msgid "Speed X" @@ -731,34 +957,42 @@ msgstr "Ativar força do vento" #: src/object/wind.cpp:82 msgid "Affects Badguys" -msgstr "Afeta Mauzões" +msgstr "Afeta mauzões" #: src/object/wind.cpp:83 msgid "Affects Objects" -msgstr "Afeta Objetos" +msgstr "Afeta objetos" #: src/object/wind.cpp:84 msgid "Affects Player" -msgstr "Afeta Jogador" +msgstr "Afeta jogador" #: src/object/wind.cpp:85 msgid "Fancy Particles" -msgstr "Partículas Extravagantes" +msgstr "Partículas extravagantes" -#: src/object/bicycle_platform.hpp:64 +#: src/object/bicycle_platform.hpp:67 msgid "Bicycle Platform" -msgstr "Plataforma Giratória" +msgstr "Plataforma giratória" -#: src/object/platform.cpp:76 src/object/thunderstorm.cpp:69 -#: src/object/tilemap.cpp:254 +#: src/object/platform.cpp:80 src/object/thunderstorm.cpp:77 +#: src/object/tilemap.cpp:292 src/object/conveyor_belt.cpp:62 msgid "Running" msgstr "Ativado" -#: src/object/rock.cpp:192 +#: src/object/rock.cpp:71 +msgid "Small" +msgstr "Pequeno" + +#: src/object/rock.cpp:72 +msgid "Large" +msgstr "Grande" + +#: src/object/rock.cpp:234 msgid "On-grab script" msgstr "Script ao agarrar" -#: src/object/rock.cpp:193 +#: src/object/rock.cpp:235 msgid "On-ungrab script" msgstr "Script ao largar" @@ -766,17 +1000,17 @@ msgstr "Script ao largar" msgid "Interactive particle system" msgstr "Sistema de partículas interativo" -#: src/object/thunderstorm.cpp:70 +#: src/object/thunderstorm.cpp:78 msgid "Interval" msgstr "Intervalo" -#: src/object/thunderstorm.cpp:71 +#: src/object/thunderstorm.cpp:79 msgid "Strike Script" msgstr "Script ao golpear" -#: src/object/cloud_particle_system.hpp:41 +#: src/object/cloud_particle_system.hpp:42 msgid "Cloud Particles" -msgstr "Partículas de Nuvens" +msgstr "Partículas de nuvens" #: src/object/custom_particle_system.cpp:423 msgid "Texture" @@ -786,7 +1020,7 @@ msgstr "Textura" msgid "Amount" msgstr "Quantidade" -#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:56 +#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:59 #: src/editor/particle_editor.cpp:141 msgid "Delay" msgstr "Atraso" @@ -805,10 +1039,11 @@ msgid "Birth mode" msgstr "Modo de nascimento" #: src/object/custom_particle_system.cpp:430 -#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:149 -#: src/supertux/menu/keyboard_menu.cpp:58 -#: src/supertux/menu/joystick_menu.cpp:106 -#: src/supertux/menu/joystick_menu.cpp:213 src/editor/object_settings.cpp:131 +#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:115 +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/joystick_menu.cpp:108 +#: src/supertux/menu/joystick_menu.cpp:215 src/editor/object_settings.cpp:129 #: src/editor/particle_editor.cpp:162 src/editor/particle_editor.cpp:168 msgid "None" msgstr "Nenhum" @@ -822,17 +1057,17 @@ msgstr "Encolher" #: src/object/custom_particle_system.cpp:434 #: src/editor/particle_editor.cpp:172 msgid "Birth easing" -msgstr "Flexibilização do nascimento" +msgstr "Suavização do nascimento" #: src/object/custom_particle_system.cpp:436 #: src/object/custom_particle_system.cpp:471 src/editor/node_marker.cpp:129 msgid "No easing" -msgstr "Sem atenuação" +msgstr "Sem suavização" #: src/object/custom_particle_system.cpp:437 #: src/object/custom_particle_system.cpp:472 src/editor/node_marker.cpp:130 msgid "Quad in" -msgstr "Quad em" +msgstr "Quad in" #: src/object/custom_particle_system.cpp:437 #: src/object/custom_particle_system.cpp:472 src/editor/node_marker.cpp:130 @@ -842,12 +1077,12 @@ msgstr "Quad out" #: src/object/custom_particle_system.cpp:437 #: src/object/custom_particle_system.cpp:472 src/editor/node_marker.cpp:130 msgid "Quad in/out" -msgstr "Quad em/fora" +msgstr "Quad in/out" #: src/object/custom_particle_system.cpp:438 #: src/object/custom_particle_system.cpp:473 src/editor/node_marker.cpp:131 msgid "Cubic in" -msgstr "Cúbico em" +msgstr "Cúbico in" #: src/object/custom_particle_system.cpp:438 #: src/object/custom_particle_system.cpp:473 src/editor/node_marker.cpp:131 @@ -857,12 +1092,12 @@ msgstr "Cúbico out" #: src/object/custom_particle_system.cpp:438 #: src/object/custom_particle_system.cpp:473 src/editor/node_marker.cpp:131 msgid "Cubic in/out" -msgstr "Cúbico em/fora" +msgstr "Cúbico in/out" #: src/object/custom_particle_system.cpp:439 #: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 msgid "Quart in" -msgstr "Quarto em" +msgstr "Quarto in" #: src/object/custom_particle_system.cpp:439 #: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 @@ -872,37 +1107,37 @@ msgstr "Quart out" #: src/object/custom_particle_system.cpp:439 #: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 msgid "Quart in/out" -msgstr "Quarto em/fora" +msgstr "Quarto in/out" #: src/object/custom_particle_system.cpp:440 #: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 msgid "Quint in" -msgstr "Quinto em" +msgstr "Quinto in" #: src/object/custom_particle_system.cpp:440 #: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 msgid "Quint out" -msgstr "Quinto fora" +msgstr "Quinto out" #: src/object/custom_particle_system.cpp:440 #: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 msgid "Quint in/out" -msgstr "Quinto em/fora" +msgstr "Quinto in/out" #: src/object/custom_particle_system.cpp:441 #: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 msgid "Sine in" -msgstr "Seno em" +msgstr "Seno in" #: src/object/custom_particle_system.cpp:441 #: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 msgid "Sine out" -msgstr "Seno fora" +msgstr "Seno out" #: src/object/custom_particle_system.cpp:441 #: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 msgid "Sine in/out" -msgstr "Seno em/fora" +msgstr "Seno in/out" #: src/object/custom_particle_system.cpp:442 #: src/object/custom_particle_system.cpp:477 src/editor/node_marker.cpp:135 @@ -1007,32 +1242,32 @@ msgstr "Variação do tempo de morte" #: src/object/custom_particle_system.cpp:501 msgid "Speed X (variation)" -msgstr "Velocidade Horizontal (var)" +msgstr "Velocidade horizontal (var)" #: src/object/custom_particle_system.cpp:502 msgid "Speed Y (variation)" -msgstr "Velocidade Vertical (var)" +msgstr "Velocidade vertical (var)" #: src/object/custom_particle_system.cpp:503 msgid "Acceleration X" -msgstr "Aceleração Horizontal" +msgstr "Aceleração horizontal" #: src/object/custom_particle_system.cpp:504 msgid "Acceleration Y" -msgstr "Aceleração Vertical" +msgstr "Aceleração vertical" #: src/object/custom_particle_system.cpp:505 msgid "Friction X" -msgstr "Fricção Horizontal" +msgstr "Fricção horizontal" #: src/object/custom_particle_system.cpp:506 msgid "Friction Y" -msgstr "Fricção Vertical" +msgstr "Fricção vertical" #: src/object/custom_particle_system.cpp:507 #: src/editor/particle_editor.cpp:189 msgid "Feather factor" -msgstr "Atrito com Ar" +msgstr "Atrito com ar" #: src/object/custom_particle_system.cpp:508 msgid "Rotation" @@ -1091,11 +1326,11 @@ msgstr "Nenhum (passar por)" #: src/object/custom_particle_system.cpp:520 msgid "Stick" -msgstr "Grudar" +msgstr "Colar" #: src/object/custom_particle_system.cpp:520 msgid "Stick Forever" -msgstr "Grudar para Sempre" +msgstr "Colar para sempre" #: src/object/custom_particle_system.cpp:520 #: src/editor/particle_editor.cpp:214 @@ -1137,597 +1372,916 @@ msgstr "Sempre" msgid "Cover screen" msgstr "Cobrir ecrã" -#: src/object/ispy.hpp:33 +#: src/object/ispy.hpp:35 msgid "Ispy" msgstr "Olho Espião" -#: src/object/skull_tile.hpp:32 -msgid "Skull Tile" -msgstr "Peça de Caveira" - -#: src/object/particle_zone.cpp:80 +#: src/object/particle_zone.cpp:51 msgid "Particle Name" msgstr "Nome da partícula" -#: src/object/particle_zone.cpp:81 -msgid "Zone Type" -msgstr "Tipo de Zona" - -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:62 msgid "Spawn" msgstr "Criar" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:63 msgid "Life zone" msgstr "Zona de vida" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:64 msgid "Life zone (clear)" msgstr "Zona de vida (limpo)" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:65 msgid "Kill particles" msgstr "Matar partículas" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:66 msgid "Clear particles" msgstr "Limpar partículas" -#: src/object/weak_block.cpp:211 -msgid "Linked" -msgstr "Ligado a outros" +#: src/object/weak_block.cpp:98 +msgid "Hay" +msgstr "Palha" -#: src/object/decal.hpp:40 +#: src/object/decal.hpp:41 msgid "Decal" msgstr "Placar de informação" -#: src/object/tilemap.cpp:229 +#: src/object/tilemap.cpp:267 msgid "Resize offset x" msgstr "Desvio ao redimensionar (X)" -#: src/object/tilemap.cpp:230 +#: src/object/tilemap.cpp:268 msgid "Resize offset y" msgstr "Desvio ao redimensionar (Y)" -#: src/object/tilemap.cpp:232 src/supertux/menu/editor_sector_menu.cpp:39 -#: src/editor/object_option.cpp:173 +#: src/object/tilemap.cpp:270 src/supertux/menu/editor_sector_menu.cpp:41 +#: src/editor/object_option.cpp:178 msgid "Width" msgstr "Largura" -#: src/object/tilemap.cpp:233 src/supertux/menu/editor_sector_menu.cpp:40 -#: src/editor/object_option.cpp:174 +#: src/object/tilemap.cpp:271 src/supertux/menu/editor_sector_menu.cpp:42 +#: src/editor/object_option.cpp:179 msgid "Height" msgstr "Altura" -#: src/object/tilemap.cpp:235 +#: src/object/tilemap.cpp:273 msgid "Alpha" msgstr "Alfa" -#: src/object/tilemap.cpp:236 +#: src/object/tilemap.cpp:274 msgid "Speed x" msgstr "Velocidade x" -#: src/object/tilemap.cpp:237 +#: src/object/tilemap.cpp:275 msgid "Speed y" msgstr "Velocidade y" -#: src/object/tilemap.cpp:238 +#: src/object/tilemap.cpp:276 msgid "Tint" msgstr "Tonalidade" -#: src/object/tilemap.cpp:257 src/supertux/menu/editor_tilegroup_menu.cpp:26 -#: src/editor/toolbox_widget.cpp:90 +#: src/object/tilemap.cpp:296 src/supertux/menu/editor_tilegroup_menu.cpp:26 +#: src/editor/toolbox_widget.cpp:98 msgid "Tiles" msgstr "Peças" -#: src/object/gradient.cpp:128 -msgid "Left Colour" -msgstr "Cor Esquerda" - -#: src/object/gradient.cpp:129 -msgid "Right Colour" -msgstr "Cor Direita" +#: src/object/gradient.cpp:98 +msgid "Primary Colour" +msgstr "Cor primária" -#: src/object/gradient.cpp:131 -msgid "Top Colour" -msgstr "Cor de Cima" +#: src/object/gradient.cpp:99 +msgid "Secondary Colour" +msgstr "Cor secundária" -#: src/object/gradient.cpp:132 -msgid "Bottom Colour" -msgstr "Cor de Baixo" - -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Vertical" msgstr "Vertical" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Horizontal" msgstr "Horizontal" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Vertical (whole sector)" msgstr "Vertical (todo o setor)" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Horizontal (whole sector)" msgstr "Horizontal (todo o setor)" -#: src/object/gradient.cpp:148 +#: src/object/gradient.cpp:114 msgid "Blend mode" -msgstr "Modo de Mistura" +msgstr "Modo de mistura" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Blend" msgstr "Mistura" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Additive" msgstr "Aditivo" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Modulate" msgstr "Modular" -#: src/object/bumper.hpp:35 +#: src/object/bumper.hpp:38 msgid "Bumper" msgstr "Socador" -#: src/object/unstable_tile.hpp:37 +#: src/object/conveyor_belt.cpp:63 +msgid "Length" +msgstr "Comprimento" + +#: src/object/moving_sprite.cpp:192 src/object/pneumatic_platform.cpp:161 +msgid "Sprite" +msgstr "Imagem" + +#: src/object/unstable_tile.hpp:42 msgid "Unstable Tile" -msgstr "Peça Instável" +msgstr "Peça instável" -#: src/object/brick.hpp:31 -msgid "Brick" -msgstr "Caixa de madeira" +#: src/object/brick.hpp:70 +msgid "Heavy Brick" +msgstr "Tijolo pesado" -#: src/object/invisible_wall.hpp:34 +#: src/object/invisible_wall.hpp:37 msgid "Invisible Wall" -msgstr "Parede Invisível" +msgstr "Parede invisível" -#: src/object/spotlight.hpp:51 +#: src/object/spotlight.hpp:52 msgid "Spotlight" msgstr "Foco de luz" -#: src/object/scripted_object.hpp:39 +#: src/object/scripted_object.hpp:40 msgid "Scripted Object" -msgstr "Objeto com Script" +msgstr "Objeto com script" -#: src/object/custom_particle_system_file.hpp:39 +#: src/object/custom_particle_system_file.hpp:40 msgid "Custom Particles from file" -msgstr "Partículas Personalizadas de ficheiro" +msgstr "Partículas personalizadas de ficheiro" -#: src/object/coin.hpp:78 +#: src/object/coin.hpp:97 msgid "Heavy Coin" -msgstr "Moeda Pesada" +msgstr "Moeda pesada" + +#: src/object/explosion.hpp:35 +msgid "Explosion" +msgstr "Explosão" -#: src/object/bonus_block.hpp:56 +#: src/object/bonus_block.hpp:62 msgid "Bonus Block" -msgstr "Bloco de Bónus" +msgstr "Bloco de bónus" -#: src/object/magicblock.hpp:41 +#: src/object/magicblock.hpp:42 msgid "Magic Tile" -msgstr "Peça Mágica" +msgstr "Peça mágica" -#: src/object/camera.hpp:67 +#: src/object/camera.hpp:61 msgid "Camera" msgstr "Câmara" -#: src/object/textscroller.hpp:44 +#: src/object/textscroller.hpp:45 msgid "Text Scroller" -msgstr "Rolagem de Texto" +msgstr "Rolagem de texto" + +#: src/gui/notification.cpp:57 +msgid "Click for more details." +msgstr "Clica para mais pormenores." + +#: src/gui/notification.cpp:150 +msgid "Do not show again" +msgstr "Não voltar a mostrar" -#: src/gui/menu_badguy_select.cpp:94 -msgid "List of enemies" -msgstr "Lista dos inimigos" +#: src/gui/notification.cpp:157 src/supertux/menu/download_dialog.cpp:124 +msgid "Close" +msgstr "Fechar" -#: src/gui/menu_badguy_select.cpp:96 -msgid "Select enemy" -msgstr "Selecionar inimigo" +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#, c++-format +msgid "Selected item: {}" +msgstr "Item selecionado: {}" -#: src/gui/menu_badguy_select.cpp:97 +#: src/gui/menu_string_array.cpp:70 +msgid "Edit string array" +msgstr "Editar matriz de cadeias de caracteres" + +#: src/gui/menu_string_array.cpp:79 src/gui/menu_object_select.cpp:50 +#: src/supertux/menu/profile_menu.cpp:88 msgid "Add" msgstr "Adicionar" -#: src/gui/menu_badguy_select.cpp:107 src/gui/menu_color.cpp:37 -#: src/gui/dialog.hpp:81 src/gui/menu_script.cpp:47 -#: src/supertux/menu/editor_sector_menu.cpp:46 -#: src/supertux/menu/editor_levelset_menu.cpp:62 -#: src/supertux/menu/addon_menu.cpp:349 +#: src/gui/menu_string_array.cpp:80 +msgid "Insert" +msgstr "Inserir" + +#: src/gui/menu_string_array.cpp:81 +#: src/supertux/menu/addon_preview_menu.cpp:177 src/editor/object_menu.cpp:61 +msgid "Update" +msgstr "Atualizar" + +#: src/gui/menu_string_array.cpp:82 src/supertux/menu/profile_menu.cpp:108 +#: src/supertux/menu/profile_menu.cpp:110 +msgid "Delete" +msgstr "Eliminar" + +#: src/gui/menu_string_array.cpp:84 src/gui/menu_object_select.cpp:61 +#: src/gui/menu_color.cpp:37 src/gui/dialog.hpp:87 src/gui/menu_script.cpp:46 +#: src/supertux/menu/editor_sector_menu.cpp:48 +#: src/supertux/menu/editor_levelset_menu.cpp:58 #: src/supertux/menu/editor_new_levelset_menu.cpp:37 -#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:43 +#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:71 msgid "OK" msgstr "Ok" -#: src/gui/menu_badguy_select.cpp:136 -msgid "Do you want to delete this badguy from the list?" -msgstr "Queres eliminar este mauzão da lista?" +#: src/gui/menu_object_select.cpp:46 +msgid "List of objects" +msgstr "Lista de objetos" -#: src/gui/menu_badguy_select.cpp:137 src/gui/dialog.hpp:90 -#: src/supertux/menu/editor_level_select_menu.cpp:164 -#: src/supertux/menu/editor_menu.cpp:164 src/editor/editor.cpp:583 -msgid "Yes" -msgstr "Sim" +#: src/gui/menu_object_select.cpp:48 +#, c++-format +msgid "Select object ({})" +msgstr "Selecionar objeto ({})" -#: src/gui/menu_badguy_select.cpp:140 src/gui/dialog.hpp:91 -#: src/supertux/menu/editor_level_select_menu.cpp:168 -#: src/supertux/menu/editor_menu.cpp:167 src/editor/particle_editor.cpp:780 -#: src/editor/editor.cpp:590 -msgid "No" -msgstr "Não" +#: src/gui/menu_object_select.cpp:114 +msgid "Are you sure you want to remove this object from the list?" +msgstr "Tens a certeza que pretendes remover este objeto da lista?" #: src/gui/menu_color.cpp:24 msgid "Mix the colour" msgstr "Misturar a cor" -#: src/gui/menu_filesystem.cpp:112 src/gui/menu_paths.cpp:44 -#: src/supertux/menu/particle_editor_save_as.cpp:42 +#: src/gui/dialog.hpp:96 src/supertux/menu/editor_level_select_menu.cpp:181 +#: src/editor/editor.cpp:663 +msgid "Yes" +msgstr "Sim" + +#: src/gui/dialog.hpp:97 src/supertux/menu/editor_level_select_menu.cpp:185 +#: src/editor/particle_editor.cpp:781 src/editor/editor.cpp:670 +msgid "No" +msgstr "Não" + +#: src/gui/menu_list.cpp:38 src/gui/menu_filesystem.cpp:120 +#: src/gui/menu_paths.cpp:48 src/supertux/menu/particle_editor_save_as.cpp:42 #: src/supertux/menu/editor_sectors_menu.cpp:45 -#: src/supertux/menu/editor_sectors_menu.cpp:95 -#: src/supertux/menu/editor_sectors_menu.cpp:100 +#: src/supertux/menu/editor_sectors_menu.cpp:94 +#: src/supertux/menu/editor_sectors_menu.cpp:99 #: src/supertux/menu/editor_objectgroup_menu.cpp:42 #: src/supertux/menu/editor_tilegroup_menu.cpp:36 -#: src/supertux/menu/editor_level_select_menu.cpp:173 +#: src/supertux/menu/editor_level_select_menu.cpp:190 #: src/supertux/menu/editor_save_as.cpp:42 #: src/supertux/menu/particle_editor_open.cpp:43 -#: src/editor/particle_editor.cpp:784 src/editor/editor.cpp:594 +#: src/editor/particle_editor.cpp:785 src/editor/editor.cpp:674 msgid "Cancel" msgstr "Cancelar" +#: src/gui/menu_filesystem.cpp:118 +msgid "Open Directory" +msgstr "Abrir diretório" + #: src/gui/menu_script.cpp:28 msgid "Edit script" msgstr "Editar script" -#: src/gui/menu_paths.cpp:30 +#: src/gui/menu_paths.cpp:32 msgid "Clone" msgstr "Clonar" -#: src/gui/menu_paths.cpp:38 +#: src/gui/menu_paths.cpp:41 msgid "" -"An error occured and the game could\n" +"An error occurred and the game could\n" "not clone the path. Please contact\n" "the developers for support." -msgstr "Um erro ocorreu e o jogo não\nconseguiu clonar o caminho.\nPor favor, contacta os criadores\npara suporte." +msgstr "Ocorreu um erro e o jogo não conseguiu\nclonar o caminho. Por favor, contacta\nos criadores para obter apoio." -#: src/gui/menu_paths.cpp:41 +#: src/gui/menu_paths.cpp:44 msgid "Bind" msgstr "Vincular" -#: src/gui/menu_paths.cpp:63 src/supertux/menu/integrations_menu.cpp:60 -#: src/supertux/menu/contrib_menu.cpp:161 src/supertux/menu/debug_menu.cpp:75 -#: src/supertux/menu/editor_level_select_menu.cpp:88 -#: src/supertux/menu/worldmap_cheat_menu.cpp:55 -#: src/supertux/menu/worldmap_cheat_menu.cpp:153 +#: src/gui/menu_paths.cpp:49 +msgid "" +"Do you wish to clone the path to edit it separately,\n" +"or do you want to bind both paths together\n" +"so that any edit on one edits the other?" +msgstr "Pretendes clonar o caminho para o editar separadamente,\nou quer ligar os dois caminhos em conjunto\npara que qualquer edição num deles edite o outro?" + +#: src/gui/menu_paths.cpp:56 +#, c++-format +msgid "Path {}" +msgstr "Caminho {}" + +#: src/gui/menu_paths.cpp:67 src/supertux/menu/integrations_menu.cpp:60 +#: src/supertux/menu/editor_converters_menu.cpp:79 +#: src/supertux/menu/video_system_menu.cpp:45 +#: src/supertux/menu/contrib_menu.cpp:102 src/supertux/menu/debug_menu.cpp:77 +#: src/supertux/menu/multiplayer_menu.cpp:39 +#: src/supertux/menu/custom_menu_menu.cpp:65 +#: src/supertux/menu/editor_level_select_menu.cpp:98 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:63 +#: src/supertux/menu/worldmap_cheat_menu.cpp:57 +#: src/supertux/menu/worldmap_cheat_menu.cpp:196 #: src/supertux/menu/editor_levelset_select_menu.cpp:114 -#: src/supertux/menu/options_menu.cpp:442 -#: src/supertux/menu/profile_menu.cpp:54 src/supertux/menu/addon_menu.cpp:213 +#: src/supertux/menu/options_menu.cpp:223 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:69 +#: src/supertux/menu/addon_preview_menu.cpp:193 +#: src/supertux/menu/profile_menu.cpp:118 +#: src/supertux/menu/multiplayer_players_menu.cpp:91 +#: src/supertux/menu/addon_menu.cpp:153 #: src/supertux/menu/editor_new_levelset_menu.cpp:40 +#: src/supertux/menu/options_select_menu.cpp:44 #: src/supertux/menu/world_set_menu.cpp:33 +#: src/supertux/menu/addon_browse_menu.cpp:162 #: src/supertux/menu/web_asset_menu.cpp:48 -#: src/supertux/menu/keyboard_menu.cpp:49 -#: src/supertux/menu/language_menu.cpp:56 -#: src/supertux/menu/joystick_menu.cpp:97 +#: src/supertux/menu/profile_name_menu.cpp:45 +#: src/supertux/menu/keyboard_menu.cpp:71 +#: src/supertux/menu/sorted_contrib_menu.cpp:51 +#: src/supertux/menu/language_menu.cpp:63 +#: src/supertux/menu/joystick_menu.cpp:99 #: src/supertux/menu/contrib_levelset_menu.cpp:67 -#: src/supertux/menu/cheat_menu.cpp:44 -#: src/supertux/menu/editor_delete_level_menu.cpp:43 +#: src/supertux/menu/cheat_menu.cpp:58 +#: src/supertux/menu/addon_file_install_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:43 +#: src/supertux/menu/cheat_apply_menu.cpp:63 +#: src/supertux/menu/multiplayer_player_menu.cpp:205 +#: src/supertux/menu/editor_delete_level_menu.cpp:68 msgid "Back" msgstr "Voltar" -#: src/badguy/toad.hpp:37 +#: src/addon/addon_manager.cpp:562 +msgid "Only one resource pack is allowed to be enabled at a time." +msgstr "Só é permitido ativar um pacote de recursos de cada vez." + +#: src/addon/addon_manager.cpp:837 +#, c++-format +msgid "Add-on {} by {} is already installed." +msgstr "A extensão {} de {} já está instalada." + +#: src/addon/addon_manager.cpp:857 +#, c++-format +msgid "Add-on {} by {} successfully installed." +msgstr "Extensão {} de {} instalada com sucesso." + +#: src/addon/addon.cpp:71 src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Levelset" +msgstr "Grupos de níveis" + +#: src/addon/addon.cpp:74 src/supertux/menu/editor_levelset_menu.cpp:54 +#: data//images/engine/editor/objects.stoi:389 +msgid "Worldmap" +msgstr "Mapa-mundo" + +#: src/addon/addon.cpp:77 +msgid "World" +msgstr "Mundo" + +#: src/addon/addon.cpp:80 +msgid "Add-on" +msgstr "Extensão" + +#: src/addon/addon.cpp:83 +msgid "Language Pack" +msgstr "Pacote de idioma" + +#: src/addon/addon.cpp:86 +msgid "Resource Pack" +msgstr "Pacote de recursos" + +#: src/addon/addon.cpp:89 +msgid "Unknown" +msgstr "Desconhecido" + +#: src/addon/addon.cpp:100 +#, c++-format +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" por \"{}\"" + +#: src/addon/addon.cpp:114 +msgid "add-on" +msgstr "extensão" + +#: src/addon/addon.cpp:114 +msgid "add-ons" +msgstr "extensões" + +#: src/badguy/toad.hpp:38 msgid "Toad" msgstr "Sapo" -#: src/badguy/mrtree.hpp:29 -msgid "Walking Tree" -msgstr "Árvore Andante" +#: src/badguy/mrtree.hpp:32 +msgid "Mr. Tree" +msgstr "Sr. Árvore" -#: src/badguy/plant.hpp:33 +#: src/badguy/plant.hpp:34 msgid "Plant" msgstr "Planta" -#: src/badguy/crystallo.hpp:30 +#: src/badguy/tarantula.hpp:39 src/badguy/tarantula.cpp:353 +msgid "Tarantula" +msgstr "Tarântula" + +#: src/badguy/granito_giant.cpp:71 +msgid "Awake" +msgstr "Acordado" + +#: src/badguy/granito_giant.cpp:72 +msgid "Sleeping" +msgstr "A dormir" + +#: src/badguy/granito_giant.cpp:73 +msgid "Corrupted A" +msgstr "Corrompido A" + +#: src/badguy/granito_giant.cpp:74 +msgid "Corrupted B" +msgstr "Corrompido B" + +#: src/badguy/granito_giant.cpp:75 +msgid "Corrupted C" +msgstr "Corrompido C" + +#: src/badguy/crystallo.hpp:33 msgid "Crystallo" msgstr "Cristalino" -#: src/badguy/totem.hpp:36 +#: src/badguy/viciousivy.cpp:45 src/badguy/snail.cpp:70 +#: src/badguy/kamikazesnowball.cpp:118 src/badguy/walkingleaf.cpp:36 +#: src/badguy/jumpy.cpp:46 src/badguy/igel.cpp:189 src/badguy/mrtree.cpp:51 +msgid "Corrupted" +msgstr "Corrompido" + +#: src/badguy/totem.hpp:37 msgid "Totem" msgstr "Totem" -#: src/badguy/stalactite.hpp:38 +#: src/badguy/stalactite.hpp:42 msgid "Stalactite" msgstr "Estalactite" -#: src/badguy/haywire.hpp:45 +#: src/badguy/fish_chasing.cpp:198 +msgid "Tracking Distance" +msgstr "Distância de rastreio" + +#: src/badguy/fish_chasing.cpp:199 +msgid "Losing Distance" +msgstr "Distância de perda" + +#: src/badguy/fish_chasing.cpp:200 +msgid "Chase Speed" +msgstr "Velocidade de perseguição" + +#: src/badguy/root_sapling.hpp:41 +msgid "Root Sapling" +msgstr "Rebento de Raiz" + +#: src/badguy/haywire.hpp:46 msgid "Haywire" msgstr "Bomba" -#: src/badguy/dispenser.hpp:48 +#: src/badguy/dispenser.hpp:52 msgid "Dispenser" msgstr "Dispensador" -#: src/badguy/short_fuse.hpp:29 +#: src/badguy/short_fuse.hpp:30 msgid "Short Fuse" msgstr "Fusível Curto" -#: src/badguy/zeekling.hpp:36 +#: src/badguy/zeekling.hpp:39 msgid "Zeekling" msgstr "Dragão-Falcão" -#: src/badguy/mriceblock.hpp:46 -msgid "Iceblock" -msgstr "Bloco de Gelo" +#: src/badguy/smartball.cpp:35 +msgid "Pumpkin" +msgstr "Abóbora" -#: src/badguy/scrystallo.cpp:52 -msgid "Walk Radius" -msgstr "Raio de Movimento" +#: src/badguy/bouncing_snowball.cpp:82 +msgid "Fatbat" +msgstr "Morcego Gordo" -#: src/badguy/scrystallo.cpp:53 -msgid "Awakening Radius" -msgstr "Raio de Despertar" +#: src/badguy/dive_mine.hpp:50 +msgid "Dive Mine" +msgstr "Mina de Mergulho" -#: src/badguy/jumpy.hpp:36 -msgid "Jumpy" -msgstr "Saltador" +#: src/badguy/granito_big.hpp:33 +msgid "Big Granito" +msgstr "Grande Granito" -#: src/badguy/captainsnowball.hpp:31 -msgid "Captain Snowball" -msgstr "Capitão Bola de Neve" +#: src/badguy/mriceblock.hpp:49 +msgid "Mr. Iceblock" +msgstr "Sr. Bloco de Gelo" -#: src/badguy/ghosttree.hpp:42 -msgid "Ghost Tree" -msgstr "Árvore Fantasma" +#: src/badguy/granito.hpp:39 src/badguy/darttrap.cpp:163 +#: src/badguy/corrupted_granito.cpp:175 src/badguy/dispenser.cpp:438 +msgid "Granito" +msgstr "Granito" -#: src/badguy/willowisp.cpp:323 -msgid "Track range" -msgstr "Distância de perseguição" +#: src/badguy/fish_swimming.cpp:54 src/badguy/jumpy.cpp:44 +#: data//images/ice_world.strf:10 data//images/tiles.strf:28 +#: data//images/worldmap.strf:41 +msgid "Snow" +msgstr "Neve" -#: src/badguy/willowisp.cpp:324 +#: src/badguy/fish_swimming.cpp:55 data//images/ice_world.strf:211 +#: data//images/tiles.strf:366 data//images/worldmap.strf:67 +msgid "Forest" +msgstr "Floresta" + +#: src/badguy/crusher.hpp:71 +msgid "Crusher" +msgstr "Esmagador" + +#: src/badguy/flame.cpp:84 +msgid "Fire" +msgstr "Fogo" + +#: src/badguy/flame.cpp:85 +msgid "Ghost" +msgstr "Fantasma" + +#: src/badguy/corrupted_granito_big.hpp:35 +msgid "Corrupted Big Granito" +msgstr "Grande Granito Corrompido" + +#: src/badguy/scrystallo.cpp:57 +msgid "Walk Radius" +msgstr "Raio de movimento" + +#: src/badguy/scrystallo.cpp:58 +msgid "Awakening Radius" +msgstr "Raio de despertar" + +#: src/badguy/scrystallo.cpp:59 +msgid "Roof-attached" +msgstr "Fixado no telhado" + +#: src/badguy/jumpy.hpp:40 +msgid "Jumpy" +msgstr "Saltador" + +#: src/badguy/captainsnowball.hpp:32 +msgid "Captain Snowball" +msgstr "Capitão Bola de Neve" + +#: src/badguy/ghosttree.hpp:43 +msgid "Ghost Tree" +msgstr "Árvore Fantasma" + +#: src/badguy/willowisp.cpp:314 +msgid "Track range" +msgstr "Distância de perseguição" + +#: src/badguy/willowisp.cpp:315 msgid "Vanish range" msgstr "Distância de desaparecer" -#: src/badguy/willowisp.cpp:325 +#: src/badguy/willowisp.cpp:316 msgid "Fly speed" -msgstr "Velocidade a voar" +msgstr "Velocidade de voo" -#: src/badguy/kugelblitz.hpp:39 +#: src/badguy/kugelblitz.hpp:40 msgid "Kugelblitz" msgstr "Meteorito" -#: src/badguy/mole_rock.hpp:43 +#: src/badguy/mole_rock.hpp:44 msgid "Mole's rock" msgstr "Pedra da Toupeira" -#: src/badguy/badguy.cpp:849 +#: src/badguy/badguy.cpp:1064 msgid "Death script" msgstr "Script de morrer" -#: src/badguy/sspiky.hpp:36 +#: src/badguy/sspiky.hpp:37 msgid "Sleeping Spiky" msgstr "Espinhoso Adormecido" -#: src/badguy/yeti_stalactite.hpp:33 +#: src/badguy/yeti_stalactite.hpp:34 msgid "Yeti's Stalactite" msgstr "Estalactite do Yeti" -#: src/badguy/livefire.hpp:37 +#: src/badguy/fish_harmless.hpp:30 +msgid "Harmless Fish" +msgstr "Peixe Inofensivo" + +#: src/badguy/livefire.hpp:38 msgid "Walking Flame" msgstr "Chama Andante" -#: src/badguy/livefire.hpp:68 +#: src/badguy/livefire.hpp:71 msgid "Sleeping Flame" msgstr "Chama Adormecida" -#: src/badguy/livefire.hpp:84 +#: src/badguy/livefire.hpp:89 msgid "Dormant Flame" msgstr "Chama Dormente" -#: src/badguy/owl.hpp:39 +#: src/badguy/owl.hpp:45 msgid "Owl" msgstr "Coruja" -#: src/badguy/igel.hpp:34 +#: src/badguy/igel.hpp:38 msgid "Igel" msgstr "Ouriço-cacheiro" -#: src/badguy/darttrap.cpp:126 +#: src/badguy/darttrap.cpp:148 msgid "Initial delay" msgstr "Atraso inicial (seg)" -#: src/badguy/darttrap.cpp:128 +#: src/badguy/darttrap.cpp:150 msgid "Fire delay" msgstr "Cadência de tiro (seg)" -#: src/badguy/darttrap.cpp:129 +#: src/badguy/darttrap.cpp:151 msgid "Ammo" msgstr "Quantidade de munições" -#: src/badguy/snowball.hpp:29 -msgid "Snowball" -msgstr "Bola de neve" +#: src/badguy/darttrap.cpp:152 +msgid "Dart sprite" +msgstr "Imagem de dardo" + +#: src/badguy/darttrap.cpp:164 +msgid "Skull" +msgstr "Caveira" + +#: src/badguy/snowball.hpp:30 +msgid "Mr. Snowball" +msgstr "Sr. Bola de Neve" -#: src/badguy/smartblock.hpp:29 -msgid "Smartblock" -msgstr "Bloco inteligente" +#: src/badguy/smartblock.hpp:30 +msgid "Mrs. Iceblock" +msgstr "Sra. Bloco de Gelo" -#: src/badguy/yeti.cpp:369 +#: src/badguy/yeti.cpp:370 msgid "Fixed position" msgstr "Posição fixa" -#: src/badguy/yeti.cpp:370 +#: src/badguy/yeti.cpp:371 msgid "Lives" msgstr "Vidas" -#: src/badguy/goldbomb.hpp:49 +#: src/badguy/goldbomb.hpp:50 msgid "Gold Bomb" msgstr "Bomba Dourada" -#: src/badguy/flyingsnowball.hpp:32 +#: src/badguy/corrupted_granito.hpp:44 +msgid "Corrupted Granito" +msgstr "Granito Corrompido" + +#: src/badguy/mrbomb.cpp:48 +msgid "Classic" +msgstr "Clássico" + +#: src/badguy/flyingsnowball.hpp:33 msgid "Flying Snowball" msgstr "Bola de Neve Voadora" -#: src/badguy/skullyhop.hpp:37 -msgid "Skullyhop" -msgstr "Caveiras Saltitantes" +#: src/badguy/crusher.cpp:75 +msgid "Ice (normal)" +msgstr "Gelo (normal)" + +#: src/badguy/crusher.cpp:76 +msgid "Ice (big)" +msgstr "Gelo (grande)" -#: src/badguy/kamikazesnowball.hpp:32 -msgid "Snowshot" -msgstr "Tiro de neve" +#: src/badguy/crusher.cpp:77 +msgid "Rock (normal)" +msgstr "Rocha (normal)" -#: src/badguy/kamikazesnowball.hpp:52 +#: src/badguy/crusher.cpp:78 +msgid "Rock (big)" +msgstr "Rocha (grande)" + +#: src/badguy/crusher.cpp:79 +msgid "Corrupted (normal)" +msgstr "Corrompido (normal)" + +#: src/badguy/crusher.cpp:80 +msgid "Corrupted (big)" +msgstr "Corrompido (grande)" + +#: src/badguy/crusher.cpp:492 +msgid "Sideways" +msgstr "Lateralmente" + +#: src/badguy/kamikazesnowball.hpp:34 +msgid "Kamikaze Snowball" +msgstr "Bola de Neve Kamikaze" + +#: src/badguy/kamikazesnowball.hpp:64 msgid "Leafshot" msgstr "Tiro de folha" -#: src/badguy/flame.hpp:41 +#: src/badguy/fish_swimming.hpp:40 +msgid "Swimming Fish" +msgstr "Peixe Nadador" + +#: src/badguy/flame.hpp:47 msgid "Flame" msgstr "Chama" -#: src/badguy/scrystallo.hpp:30 +#: src/badguy/scrystallo.hpp:31 msgid "Sleeping Crystallo" msgstr "Cristalino Adormecido" -#: src/badguy/poisonivy.hpp:30 -msgid "Spring Leaf" -msgstr "Folha de Primavera" +#: src/badguy/jumpy.cpp:45 +msgid "Wooden" +msgstr "Madeira" + +#: src/badguy/jumpy.cpp:47 +msgid "Metal" +msgstr "Metal" + +#: src/badguy/jumpy.cpp:48 +msgid "Bag" +msgstr "Saco" #: src/badguy/willowisp.hpp:57 msgid "Will o' Wisp" -msgstr "Chama perseguidora" +msgstr "Chama Perseguidora" + +#: src/badguy/fish_jumping.hpp:41 +msgid "Jumping Fish" +msgstr "Peixe Saltitante" -#: src/badguy/badguy.hpp:53 +#: src/badguy/badguy.hpp:61 msgid "Badguy" msgstr "Mauzão" -#: src/badguy/ghostflame.hpp:30 -msgid "Ghost Flame" -msgstr "Chama Fantasma" - -#: src/badguy/rcrystallo.hpp:30 +#: src/badguy/rcrystallo.hpp:33 msgid "Roof Crystallo" msgstr "Cristalino de Teto" -#: src/badguy/spiky.hpp:30 +#: src/badguy/spiky.hpp:31 msgid "Spiky" msgstr "Espinhoso" -#: src/badguy/walkingleaf.hpp:30 -msgid "Autumn Leaf" -msgstr "Folha de Outono" +#: src/badguy/walkingleaf.hpp:33 +msgid "Walking Leaf" +msgstr "Folha Andante" + +#: src/badguy/root.hpp:39 +msgid "Root" +msgstr "Raiz" -#: src/badguy/owl.cpp:227 +#: src/badguy/owl.cpp:241 msgid "Carry" msgstr "Transporte" -#: src/badguy/darttrap.hpp:33 +#: src/badguy/darttrap.hpp:35 msgid "Dart Trap" msgstr "Armadilha de Dardos" -#: src/badguy/skydive.hpp:38 +#: src/badguy/skydive.hpp:43 msgid "Skydive" msgstr "Bomba pesada" -#: src/badguy/yeti.hpp:37 +#: src/badguy/yeti.hpp:38 msgid "Yeti" msgstr "Yeti" -#: src/badguy/mole.hpp:39 +#: src/badguy/snowball.cpp:41 +msgid "Bumpkin" +msgstr "Bóbara" + +#: src/badguy/snowball.cpp:42 +msgid "BSOD" +msgstr "BSOD" + +#: src/badguy/mole.hpp:38 msgid "Mole" msgstr "Toupeira" -#: src/badguy/mrbomb.hpp:42 -msgid "Bomb" -msgstr "Bomba" +#: src/badguy/corrupted_granito.cpp:176 +msgid "Skullyhop" +msgstr "Caveiras Saltitantes" -#: src/badguy/walking_candle.hpp:40 +#: src/badguy/mrbomb.hpp:40 +msgid "Mr. Bomb" +msgstr "Sr. Bomba" + +#: src/badguy/walking_candle.hpp:41 msgid "Walking Candle" msgstr "Vela andante" -#: src/badguy/angrystone.hpp:34 +#: src/badguy/angrystone.hpp:39 msgid "Angry Stone" msgstr "Rocha Zangada" -#: src/badguy/spidermite.hpp:35 -msgid "Spider" -msgstr "Aranha" +#: src/badguy/tarantula.cpp:354 +msgid "Spidermite" +msgstr "Ácaro-Aranha" + +#: src/badguy/tarantula.cpp:374 +msgid "Static" +msgstr "Estático" #: src/badguy/ghoul.hpp:30 msgid "Ghoul" msgstr "Fantasma perseguidor" -#: src/badguy/snowman.hpp:28 +#: src/badguy/granito_giant.hpp:32 +msgid "Giant Granito" +msgstr "Granito Gigante" + +#: src/badguy/snowman.hpp:29 msgid "Snowman" -msgstr "Homem neve" +msgstr "Homem Neve" + +#: src/badguy/viciousivy.hpp:33 +msgid "Vicious Ivy" +msgstr "Hera Perversa" -#: src/badguy/stumpy.hpp:35 -msgid "Walking Stump" -msgstr "Cepo Andante" +#: src/badguy/stalactite.cpp:156 +msgid "ice" +msgstr "gelo" -#: src/badguy/fish.hpp:40 -msgid "Fish" -msgstr "Peixe" +#: src/badguy/stalactite.cpp:157 +msgid "rock" +msgstr "rocha" -#: src/badguy/dispenser.cpp:445 +#: src/badguy/fish_chasing.hpp:33 +msgid "Chasing Fish" +msgstr "Peixe Perseguidor" + +#: src/badguy/stumpy.hpp:38 +msgid "Stumpy" +msgstr "Tronco" + +#: src/badguy/dispenser.cpp:412 msgid "Interval (seconds)" msgstr "Intervalo (segundos)" -#: src/badguy/dispenser.cpp:446 +#: src/badguy/dispenser.cpp:413 msgid "Random" msgstr "Aleatório" -#: src/badguy/dispenser.cpp:447 data//images/engine/editor/objects.stoi:4 -msgid "Enemies" -msgstr "Inimigos" +#: src/badguy/dispenser.cpp:416 +#: src/supertux/menu/editor_objectgroup_menu.cpp:30 +#: src/editor/toolbox_widget.cpp:101 +msgid "Objects" +msgstr "Objetos" -#: src/badguy/dispenser.cpp:448 +#: src/badguy/dispenser.cpp:419 msgid "Limit dispensed badguys" msgstr "Limitar mauzões dispensados" -#: src/badguy/dispenser.cpp:450 +#: src/badguy/dispenser.cpp:421 msgid "Obey Gravity" -msgstr "Obedecer Gravidade" +msgstr "Obedecer gravidade" -#: src/badguy/dispenser.cpp:452 +#: src/badguy/dispenser.cpp:423 msgid "Max concurrent badguys" msgstr "Máx. mauzões simultâneos" -#: src/badguy/dispenser.cpp:454 src/supertux/menu/editor_levelset_menu.cpp:60 -msgid "Type" -msgstr "Tipo" - -#: src/badguy/dispenser.cpp:455 -msgid "dropper" -msgstr "conta-gotas" - -#: src/badguy/dispenser.cpp:455 -msgid "rocket launcher" -msgstr "lança-mísseis" +#: src/badguy/dispenser.cpp:435 +msgid "Dropper" +msgstr "Conta-Gotas" -#: src/badguy/dispenser.cpp:455 -msgid "cannon" -msgstr "canhão" +#: src/badguy/dispenser.cpp:436 +msgid "Cannon" +msgstr "Canhão" -#: src/badguy/dispenser.cpp:455 -msgid "invisible" -msgstr "invisível" +#: src/badguy/dispenser.cpp:437 src/worldmap/special_tile.cpp:77 +msgid "Invisible" +msgstr "Invisível" -#: src/badguy/snail.hpp:42 +#: src/badguy/snail.hpp:43 msgid "Snail" msgstr "Caracol" -#: src/badguy/smartball.hpp:31 -msgid "Smartball" -msgstr "Bola Inteligente" +#: src/badguy/smartball.hpp:32 +msgid "Mrs. Snowball" +msgstr "Sra. Bola de Neve" -#: src/badguy/bouncing_snowball.hpp:32 +#: src/badguy/bouncing_snowball.hpp:39 msgid "Bouncing Snowball" msgstr "Bola de Neve Saltitante" -#: src/badguy/iceflame.hpp:33 -msgid "Ice Flame" -msgstr "Chama Gelada" +#: src/badguy/granito_big.cpp:52 src/badguy/granito.cpp:263 +msgid "Default" +msgstr "Padrão" + +#: src/badguy/granito_big.cpp:53 src/badguy/granito.cpp:264 +msgid "Standing" +msgstr "Em pé" + +#: src/badguy/granito_big.cpp:54 src/badguy/granito.cpp:265 +msgid "Walking" +msgstr "Andando" -#: src/badguy/dart.hpp:43 +#: src/badguy/mriceblock.cpp:63 +msgid "Laptop" +msgstr "Portátil" + +#: src/badguy/dart.hpp:44 msgid "Dart" msgstr "Dardo" +#: src/badguy/granito.cpp:268 +msgid "Sitting" +msgstr "Sentado" + #: src/supertux/statistics.cpp:54 msgid "Max coins collected:" msgstr "Máx. moedas apanhadas:" @@ -1748,9 +2302,9 @@ msgstr "Melhor tempo feito:" msgid "Level target time:" msgstr "Objetivo de tempo do nível:" -#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:160 +#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:175 msgid "Best Level Statistics" -msgstr "Melhores Estatísticas do Nível" +msgstr "Melhores estatísticas do nível" #: src/supertux/statistics.cpp:238 msgid "You" @@ -1760,7 +2314,7 @@ msgstr "Tu" msgid "Best" msgstr "Recorde" -#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:166 +#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:181 msgid "Coins" msgstr "Moedas" @@ -1768,202 +2322,199 @@ msgstr "Moedas" msgid "Badguys" msgstr "Mauzões" -#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:172 +#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:187 msgid "Secrets" msgstr "Áreas secretas" -#: src/supertux/game_object.hpp:78 +#: src/supertux/game_object.hpp:88 msgid "Unknown object" msgstr "Objeto desconhecido" -#: src/supertux/sector.cpp:414 +#: src/supertux/sector.cpp:507 msgid "Press escape to skip" -msgstr "Prime Escape para ignorar" +msgstr "Premir Escape para ignorar" -#: src/supertux/command_line_arguments.cpp:94 -#, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Utilização: %s [OPÇÕES] [FICHEIRO_DO_NÍVEL]" +#: src/supertux/command_line_arguments.cpp:92 +#, c++-format +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Utilização: {} [OPTIONS] [LEVELFILE]" -#: src/supertux/command_line_arguments.cpp:95 +#: src/supertux/command_line_arguments.cpp:93 msgid "General Options:" -msgstr "Opções Gerais:" +msgstr "Opções gerais:" -#: src/supertux/command_line_arguments.cpp:96 +#: src/supertux/command_line_arguments.cpp:94 msgid " -h, --help Show this help message and quit" msgstr " -h, --help Mostra esta mensagem e sai" -#: src/supertux/command_line_arguments.cpp:97 +#: src/supertux/command_line_arguments.cpp:95 msgid " -v, --version Show SuperTux version and quit" msgstr " -v, --version Mostra a versão do SuperTux e sai" -#: src/supertux/command_line_arguments.cpp:98 +#: src/supertux/command_line_arguments.cpp:96 msgid " --verbose Print verbose messages" msgstr " --verbose Mostra as mensagens de depuração" -#: src/supertux/command_line_arguments.cpp:99 +#: src/supertux/command_line_arguments.cpp:97 msgid " --debug Print extra verbose messages" msgstr " --debug Mostra mais mensagens de depuração" -#: src/supertux/command_line_arguments.cpp:100 +#: src/supertux/command_line_arguments.cpp:98 msgid "" " --print-datadir Print SuperTux's primary data directory." msgstr " --print-datadir Mostra o diretório dos dados principais do SuperTux." -#: src/supertux/command_line_arguments.cpp:101 +#: src/supertux/command_line_arguments.cpp:99 msgid "" " --acknowledgements Print the licenses of libraries used by " "SuperTux." msgstr " --acknowledgements Imprime a licença das bibliotecas usadas pelo SuperTux." -#: src/supertux/command_line_arguments.cpp:103 +#: src/supertux/command_line_arguments.cpp:101 msgid "Video Options:" -msgstr "Opções de Vídeo:" +msgstr "Opções de vídeo:" -#: src/supertux/command_line_arguments.cpp:104 +#: src/supertux/command_line_arguments.cpp:102 msgid " -f, --fullscreen Run in fullscreen mode" msgstr " -f, --fullscreen Executa em ecrã inteiro" -#: src/supertux/command_line_arguments.cpp:105 +#: src/supertux/command_line_arguments.cpp:103 msgid " -w, --window Run in window mode" msgstr " -w, --window Executa numa janela" -#: src/supertux/command_line_arguments.cpp:106 +#: src/supertux/command_line_arguments.cpp:104 msgid " -g, --geometry WIDTHxHEIGHT Run SuperTux in given resolution" msgstr " -g, --geometry WIDTHxHEIGHT Executa o SuperTux na resolução indicada" -#: src/supertux/command_line_arguments.cpp:107 +#: src/supertux/command_line_arguments.cpp:105 msgid " -a, --aspect WIDTH:HEIGHT Run SuperTux with given aspect ratio" msgstr " -a, --aspect LARGURA:ALTURA Executa o SuperTux na proporção indicada" -#: src/supertux/command_line_arguments.cpp:108 +#: src/supertux/command_line_arguments.cpp:106 msgid " -d, --default Reset video settings to default values" msgstr " -d, --default Repõe as opções padrão de vídeo" -#: src/supertux/command_line_arguments.cpp:109 +#: src/supertux/command_line_arguments.cpp:107 msgid " --renderer RENDERER Use sdl, opengl, or auto to render" msgstr " --renderer RENDERER Utiliza sdl, opengl ou automático para renderizar" -#: src/supertux/command_line_arguments.cpp:111 +#: src/supertux/command_line_arguments.cpp:109 msgid "Audio Options:" -msgstr "Opções de Áudio:" +msgstr "Opções de áudio:" -#: src/supertux/command_line_arguments.cpp:112 +#: src/supertux/command_line_arguments.cpp:110 msgid " --disable-sound Disable sound effects" msgstr " --disable-sound Desativa o som" -#: src/supertux/command_line_arguments.cpp:113 +#: src/supertux/command_line_arguments.cpp:111 msgid " --disable-music Disable music" msgstr " --disable-music Desativa a música" -#: src/supertux/command_line_arguments.cpp:115 +#: src/supertux/command_line_arguments.cpp:113 msgid "Game Options:" -msgstr "Opções do Jogo:" +msgstr "Opções do jogo:" -#: src/supertux/command_line_arguments.cpp:116 +#: src/supertux/command_line_arguments.cpp:114 msgid " --edit-level Open given level in editor" msgstr " --edit-level Abre no editor o nível indicado" -#: src/supertux/command_line_arguments.cpp:117 +#: src/supertux/command_line_arguments.cpp:115 msgid " --resave Loads given level and saves it" msgstr " --resave Carrega o nível indicado e grava-o" -#: src/supertux/command_line_arguments.cpp:118 +#: src/supertux/command_line_arguments.cpp:116 msgid " --show-fps Display framerate in levels" -msgstr " --show-fps Mostra taxa de frames em níveis" +msgstr " --show-fps Mostra a taxa de fotogramas nos níveis" -#: src/supertux/command_line_arguments.cpp:119 +#: src/supertux/command_line_arguments.cpp:117 msgid " --no-show-fps Do not display framerate in levels" -msgstr " --no-show-fps Não mostra taxa de frames em níveis" +msgstr " --no-show-fps Não mostra a taxa de fotogramas nos níveis" -#: src/supertux/command_line_arguments.cpp:120 +#: src/supertux/command_line_arguments.cpp:118 msgid " --show-pos Display player's current position" msgstr " --show-pos Mostra a posição atual do jogador" -#: src/supertux/command_line_arguments.cpp:121 +#: src/supertux/command_line_arguments.cpp:119 msgid " --no-show-pos Do not display player's position" msgstr " --no-show-pos Não mostra a posição do jogador" -#: src/supertux/command_line_arguments.cpp:122 +#: src/supertux/command_line_arguments.cpp:120 msgid " --developer Switch on developer feature" msgstr " --developer Ativa a função programador" -#: src/supertux/command_line_arguments.cpp:123 +#: src/supertux/command_line_arguments.cpp:121 msgid " -s, --debug-scripts Enable script debugger." msgstr " -s, --debug-scripts Ativa o depurador de script." -#: src/supertux/command_line_arguments.cpp:124 +#: src/supertux/command_line_arguments.cpp:122 msgid "" " --spawn-pos X,Y Where in the level to spawn Tux. Only used if" " level is specified." msgstr " --spawn-pos X,Y Local do nível onde o Tux começa. Usado apenas se um nível for indicado." -#: src/supertux/command_line_arguments.cpp:125 +#: src/supertux/command_line_arguments.cpp:123 msgid " --sector SECTOR Spawn Tux in SECTOR\n" msgstr " --sector SETOR Tux começa no SETOR\n" -#: src/supertux/command_line_arguments.cpp:126 +#: src/supertux/command_line_arguments.cpp:124 msgid " --spawnpoint SPAWNPOINT Spawn Tux at SPAWNPOINT\n" msgstr " --spawnpoint PONTO DE PARTIDA Tux inicia no PONTO DE PARTIDA\n" -#: src/supertux/command_line_arguments.cpp:128 -msgid "Demo Recording Options:" -msgstr "Opções de Gravação de Demo:" - -#: src/supertux/command_line_arguments.cpp:129 -msgid " --record-demo FILE LEVEL Record a demo to FILE" -msgstr " --record-demo FICHEIRO NÍVEL Grava uma demo no FICHEIRO" - -#: src/supertux/command_line_arguments.cpp:130 -msgid " --play-demo FILE LEVEL Play a recorded demo" -msgstr " --play-demo FICHEIRO NÍVEL Mostra uma demo gravada" - -#: src/supertux/command_line_arguments.cpp:132 +#: src/supertux/command_line_arguments.cpp:126 msgid "Directory Options:" -msgstr "Opções de Pastas:" +msgstr "Opções de pastas:" -#: src/supertux/command_line_arguments.cpp:133 +#: src/supertux/command_line_arguments.cpp:127 msgid "" " --datadir DIR Set the directory for the games datafiles" msgstr " --datadir PASTA Define a pasta que contém os ficheiros do jogo" -#: src/supertux/command_line_arguments.cpp:134 +#: src/supertux/command_line_arguments.cpp:128 msgid "" " --userdir DIR Set the directory for user data (savegames, " "etc.)" msgstr " --userdir PASTA Define a pasta que contém os dados do jogador (jogos gravados, etc.)" -#: src/supertux/command_line_arguments.cpp:136 +#: src/supertux/command_line_arguments.cpp:130 msgid "Add-On Options:" -msgstr "Opções de Extensão:" +msgstr "Opções de extensões:" -#: src/supertux/command_line_arguments.cpp:137 +#: src/supertux/command_line_arguments.cpp:131 msgid " --repository-url URL Set the URL to the Add-On repository" msgstr " --repository-url URL Define o URL do repositório de Extensões" -#: src/supertux/command_line_arguments.cpp:139 +#: src/supertux/command_line_arguments.cpp:133 msgid "Environment variables:" msgstr "Variáveis ​​ambientais:" -#: src/supertux/command_line_arguments.cpp:140 +#: src/supertux/command_line_arguments.cpp:134 msgid "" " SUPERTUX2_USER_DIR Directory for user data (savegames, etc.)" msgstr " PASTA_DO_UTILIZADOR_SUPERTUX2 Pasta para os ficheiros de dados do jogador (jogos gravados, etc.)" -#: src/supertux/command_line_arguments.cpp:141 +#: src/supertux/command_line_arguments.cpp:135 msgid " SUPERTUX2_DATA_DIR Directory for the games datafiles" msgstr " PASTA__DE_DADOS_SUPERTUX2 Pasta para os ficheiros de dados do jogo" -#: src/supertux/title_screen.cpp:44 +#: src/supertux/title_screen.cpp:272 msgid "Copyright" -msgstr "Direitos de Autor" +msgstr "Direitos de autor" -#: src/supertux/title_screen.cpp:45 +#: src/supertux/title_screen.cpp:273 msgid "" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to\n" "redistribute it under certain conditions; see the license file for details.\n" msgstr "Este jogo é disponibilizado ABSOLUTAMENTE SEM GARANTIAS. Isto é um programa gratuito e são todos convidados\na redistribuí-lo sob certas condições; ver o ficheiro LICENSE.txt para mais detalhes.\n" +#: src/supertux/game_object.cpp:114 +msgid "Version" +msgstr "Versão" + +#: src/supertux/game_object.cpp:129 +#: src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Type" +msgstr "Tipo" + #: src/supertux/menu/integrations_menu.cpp:49 msgid "Integrations" msgstr "Integrações" @@ -1972,62 +2523,148 @@ msgstr "Integrações" msgid "Do not share level names when editing" msgstr "Não partilhar nome dos níveis durante edição" +#: src/supertux/menu/integrations_menu.cpp:52 +msgid "" +"Enable this if you want to work on secret levels and don't want the names to" +" be spoiled" +msgstr "Ativa esta opção se quiseres trabalhar em níveis secretos e não quiseres que os nomes sejam revelados" + #: src/supertux/menu/integrations_menu.cpp:54 msgid "Enable Discord integration" msgstr "Integração com o Discord" +#: src/supertux/menu/integrations_menu.cpp:55 +msgid "" +"Sends information to your Discord application about what you're doing in the" +" game." +msgstr "Envia informações para a tua aplicação Discord sobre o que estás a fazer no jogo." + #: src/supertux/menu/integrations_menu.cpp:57 msgid "Discord (disabled; not compiled)" msgstr "Discord (desativado; não compilado)" -#: src/supertux/menu/contrib_menu.cpp:80 +#: src/supertux/menu/editor_converters_menu.cpp:61 +#: src/supertux/menu/editor_menu.cpp:85 +msgid "Convert Tiles" +msgstr "Converter peças" + +#: src/supertux/menu/editor_converters_menu.cpp:64 +msgid "Select Tile Conversion File" +msgstr "Selecionar ficheiro de conversão de peças" + +#: src/supertux/menu/editor_converters_menu.cpp:72 +#, c++-format +msgid "By: {}" +msgstr "Por: {}" + +#: src/supertux/menu/editor_converters_menu.cpp:75 +msgid "Convert Tiles By File" +msgstr "Converter peças por ficheiro" + +#: src/supertux/menu/editor_converters_menu.cpp:76 +msgid "Convert all tiles in the current level by a file, specified above." +msgstr "Converte todos as peças no nível atual por um ficheiro, especificado acima." + +#: src/supertux/menu/editor_converters_menu.cpp:89 +msgid "No tile conversion file selected." +msgstr "Não foi selecionado nenhum ficheiro de conversão de peças." + +#: src/supertux/menu/editor_converters_menu.cpp:93 +msgid "" +"This will convert all tiles in the level. Proceed?\n" +"\n" +"Note: This should not be ran more than once on a level.\n" +"Creating a separate copy of the level is highly recommended." +msgstr "Isto converte todas as peças do nível. Continuar?\n\nNota: esta ação não deve ser executada mais do que uma vez num nível.\nÉ altamente recomendável criar uma cópia separada do nível." + +#: src/supertux/menu/video_system_menu.cpp:36 +msgid "Select Video System" +msgstr "Selecionar sistema de vídeo" + +#: src/supertux/menu/video_system_menu.cpp:37 +#, c++-format +msgid "Used video system: {}" +msgstr "Sistema de vídeo usado: {}" + +#: src/supertux/menu/video_system_menu.cpp:54 +msgid "Restart game for the changes to take effect" +msgstr "Reinicia o jogo para que as alterações tenham efeito" + +#: src/supertux/menu/contrib_menu.cpp:68 #: src/supertux/menu/world_set_menu.cpp:31 msgid "Contrib Levels" -msgstr "Níveis Extra" +msgstr "Níveis extra" + +#: src/supertux/menu/contrib_menu.cpp:98 +#: src/supertux/menu/contrib_menu.cpp:112 +msgid "Official Contrib Levels" +msgstr "Níveis extra oficiais" + +#: src/supertux/menu/contrib_menu.cpp:99 +#: src/supertux/menu/contrib_menu.cpp:118 +msgid "Community Contrib Levels" +msgstr "Níveis extra da comunidade" + +#: src/supertux/menu/contrib_menu.cpp:100 +#: src/supertux/menu/contrib_menu.cpp:124 +msgid "User Contrib Levels" +msgstr "Níveis extra do utilizador" + +#: src/supertux/menu/contrib_menu.cpp:113 +msgid "How is this possible? There are no Official Contrib Levels!" +msgstr "Como é que isto é possível? Não existem níveis extra oficiais!" -#: src/supertux/menu/debug_menu.cpp:32 +#: src/supertux/menu/contrib_menu.cpp:119 +msgid "No Community Contrib Levels yet. Download them from the Add-ons Menu." +msgstr "Ainda não há níveis extra da comunidade. Descarrega-os a partir do menu Extensões." + +#: src/supertux/menu/contrib_menu.cpp:125 +msgid "No User Contrib Levels yet. Create some with the Level Editor." +msgstr "Ainda não há níveis extra do utilizador. Cria alguns com o Editor de Níveis." + +#: src/supertux/menu/debug_menu.cpp:34 msgid "Debug" msgstr "Depuração de erros" -#: src/supertux/menu/debug_menu.cpp:56 +#: src/supertux/menu/debug_menu.cpp:58 msgid "Game Speed" -msgstr "Velocidade do Jogo" +msgstr "Velocidade do jogo" -#: src/supertux/menu/debug_menu.cpp:57 +#: src/supertux/menu/debug_menu.cpp:59 msgid "Adjust Game Speed" -msgstr "Ajustar Velocidade do Jogo" +msgstr "Ajustar velocidade do jogo" -#: src/supertux/menu/debug_menu.cpp:63 +#: src/supertux/menu/debug_menu.cpp:65 msgid "Show Collision Rects" -msgstr "Mostrar Retângulos de Colisão" +msgstr "Mostrar retângulos de colisão" -#: src/supertux/menu/debug_menu.cpp:64 +#: src/supertux/menu/debug_menu.cpp:66 msgid "Show Worldmap Path" -msgstr "Mostrar Caminho no Mapa-mundo" +msgstr "Mostrar caminho no mapa-mundo" -#: src/supertux/menu/debug_menu.cpp:65 +#: src/supertux/menu/debug_menu.cpp:67 msgid "Show Controller" -msgstr "Mostrar Controlador" +msgstr "Mostrar controlador" -#: src/supertux/menu/debug_menu.cpp:66 +#: src/supertux/menu/debug_menu.cpp:68 msgid "Show Framerate" -msgstr "Mostrar Taxa de Frames" +msgstr "Mostrar taxa de fotogramas" -#: src/supertux/menu/debug_menu.cpp:67 +#: src/supertux/menu/debug_menu.cpp:69 msgid "Draw Redundant Frames" -msgstr "Desenhar Frames Redundantes" +msgstr "Desenhar fotogramas redundantes" -#: src/supertux/menu/debug_menu.cpp:68 +#: src/supertux/menu/debug_menu.cpp:70 msgid "Show Player Position" -msgstr "Mostrar Posição do Jogador" +msgstr "Mostrar posição do jogador" -#: src/supertux/menu/debug_menu.cpp:69 +#: src/supertux/menu/debug_menu.cpp:71 msgid "Use Bitmap Fonts" -msgstr "Usar Fontes Bitmap" +msgstr "Usar fontes bitmap" -#: src/supertux/menu/debug_menu.cpp:72 +#: src/supertux/menu/debug_menu.cpp:74 msgid "Dump Texture Cache" -msgstr "Cache de Textura de Lixo" +msgstr "Dump da cache de textura" #: src/supertux/menu/particle_editor_save_as.cpp:33 msgid "Save particle as" @@ -2039,70 +2676,145 @@ msgid "File name" msgstr "Nome do ficheiro" #: src/supertux/menu/particle_editor_save_as.cpp:38 -#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:766 +#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:767 msgid "Save" msgstr "Guardar" +#: src/supertux/menu/multiplayer_menu.cpp:27 +#: src/supertux/menu/multiplayer_players_menu.cpp:34 +msgid "Multiplayer" +msgstr "Multijogador" + +#: src/supertux/menu/multiplayer_menu.cpp:30 +msgid "Auto-manage Players" +msgstr "Gestão automática de jogadores" + +#: src/supertux/menu/multiplayer_menu.cpp:31 +msgid "" +"Automatically add and remove players when controllers are plugged or " +"unplugged" +msgstr "Adicionar e remover jogadores automaticamente quando os comandos são ligados ou desligados" + +#: src/supertux/menu/multiplayer_menu.cpp:33 +msgid "Allow Multibind" +msgstr "Permitir associação múltipla" + +#: src/supertux/menu/multiplayer_menu.cpp:34 +msgid "Allow binding multiple joysticks to a single player" +msgstr "Permitir associar vários joysticks a um único jogador" + +#: src/supertux/menu/multiplayer_menu.cpp:36 +msgid "Manage Players" +msgstr "Gerir jogadores" + #: src/supertux/menu/editor_sectors_menu.cpp:31 msgid "Choose Sector" -msgstr "Escolher Seletor" +msgstr "Escolher setor" #: src/supertux/menu/editor_sectors_menu.cpp:41 msgid "Sector Settings" -msgstr "Opções do Seletor" +msgstr "Opções do setor" #: src/supertux/menu/editor_sectors_menu.cpp:42 msgid "Create Sector" -msgstr "Criar Seletor" +msgstr "Criar setor" #: src/supertux/menu/editor_sectors_menu.cpp:43 msgid "Delete Sector" -msgstr "Eliminar Seletor" +msgstr "Eliminar setor" -#: src/supertux/menu/editor_sectors_menu.cpp:93 +#: src/supertux/menu/editor_sectors_menu.cpp:92 msgid "Each level must have at least one sector." msgstr "Cada nível tem de ter pelo menos um setor." -#: src/supertux/menu/editor_sectors_menu.cpp:98 +#: src/supertux/menu/editor_sectors_menu.cpp:97 msgid "Do you really want to delete this sector?" msgstr "Queres mesmo eliminar este setor?" -#: src/supertux/menu/editor_sectors_menu.cpp:101 +#: src/supertux/menu/editor_sectors_menu.cpp:100 msgid "Delete sector" msgstr "Eliminar setor" -#: src/supertux/menu/editor_objectgroup_menu.cpp:30 -#: src/editor/toolbox_widget.cpp:93 -msgid "Objects" -msgstr "Objetos" +#: src/supertux/menu/custom_menu_menu.cpp:49 +#: src/supertux/menu/options_menu.cpp:191 +msgid "Menu Customization" +msgstr "Personalização do menu" + +#: src/supertux/menu/custom_menu_menu.cpp:51 +msgid "Menu Back Color" +msgstr "Cor do fundo do menu" + +#: src/supertux/menu/custom_menu_menu.cpp:52 +msgid "Menu Front Color" +msgstr "Cor da frente do menu" + +#: src/supertux/menu/custom_menu_menu.cpp:53 +msgid "Menu Help Back Color" +msgstr "Cor do fundo do menu Ajuda" + +#: src/supertux/menu/custom_menu_menu.cpp:54 +msgid "Menu Help Front Color" +msgstr "Cor da frente do menu Ajuda" + +#: src/supertux/menu/custom_menu_menu.cpp:55 +msgid "Label Text Color" +msgstr "Cor do texto da etiqueta" + +#: src/supertux/menu/custom_menu_menu.cpp:56 +msgid "Active Text Color" +msgstr "Cor do texto ativo" + +#: src/supertux/menu/custom_menu_menu.cpp:57 +msgid "Divider Line Color" +msgstr "Cor da linha divisória" + +#: src/supertux/menu/custom_menu_menu.cpp:58 +msgid "Menu Roundness" +msgstr "Arredondamento do menu" + +#: src/supertux/menu/custom_menu_menu.cpp:60 +msgid "Editor Interface Color" +msgstr "Cor da interface do editor" + +#: src/supertux/menu/custom_menu_menu.cpp:61 +msgid "Editor Hover Color" +msgstr "Cor do \"hover\" do editor" + +#: src/supertux/menu/custom_menu_menu.cpp:62 +msgid "Editor Grab Color" +msgstr "Cor de agarrar do editor" + +#: src/supertux/menu/custom_menu_menu.cpp:64 +msgid "Reset to defaults" +msgstr "Repor os valores predefinidos" -#: src/supertux/menu/editor_level_select_menu.cpp:62 +#: src/supertux/menu/editor_level_select_menu.cpp:72 msgid "Empty World" -msgstr "Mundo Vazio" +msgstr "Mundo vazio" -#: src/supertux/menu/editor_level_select_menu.cpp:77 +#: src/supertux/menu/editor_level_select_menu.cpp:87 msgid "Create Level" -msgstr "Criar Nível" +msgstr "Criar nível" -#: src/supertux/menu/editor_level_select_menu.cpp:81 +#: src/supertux/menu/editor_level_select_menu.cpp:91 msgid "Edit Worldmap" -msgstr "Editar Mapa-mundo" +msgstr "Editar mapa-mundo" -#: src/supertux/menu/editor_level_select_menu.cpp:83 +#: src/supertux/menu/editor_level_select_menu.cpp:93 msgid "Create Worldmap" -msgstr "Criar Mapa-mundo" +msgstr "Criar mapa-mundo" -#: src/supertux/menu/editor_level_select_menu.cpp:85 -#: src/supertux/menu/editor_delete_level_menu.cpp:33 +#: src/supertux/menu/editor_level_select_menu.cpp:95 +#: src/supertux/menu/editor_delete_level_menu.cpp:55 msgid "Delete level" msgstr "Eliminar nível" -#: src/supertux/menu/editor_level_select_menu.cpp:87 -#: src/supertux/menu/editor_levelset_menu.cpp:56 +#: src/supertux/menu/editor_level_select_menu.cpp:97 +#: src/supertux/menu/editor_levelset_menu.cpp:50 msgid "World Settings" -msgstr "Opções do Mundo" +msgstr "Definições do mundo" -#: src/supertux/menu/editor_level_select_menu.cpp:127 +#: src/supertux/menu/editor_level_select_menu.cpp:141 msgid "" "Share this worldmap under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -2110,7 +2822,7 @@ msgid "" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." msgstr "Partilha este mapa-mundo sob a licença CC-BY-SA 4.0 International (recomendado).\nEsta permite alterações e a redistribuição por terceiros.\nSe não concordares com esta licença, altera-a nas propriedades do mapa-mundo.\nATENÇÃO: os autores do SuperTux não assumem\nqualquer responsabilidade pela escolha de licença que fizeres." -#: src/supertux/menu/editor_level_select_menu.cpp:134 +#: src/supertux/menu/editor_level_select_menu.cpp:148 msgid "" "Share this level under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -2118,496 +2830,816 @@ msgid "" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." msgstr "Partilha este nível sob a licença CC-BY-SA 4.0 International (recomendado).\nEsta permite alterações e a redistribuição por terceiros.\nSe não concordares com esta licença, altera-a nas propriedades do nível.\nATENÇÃO: os autores do SuperTux não assumem\nqualquer responsabilidade pela escolha de licença que fizeres." -#: src/supertux/menu/editor_level_select_menu.cpp:162 +#: src/supertux/menu/editor_level_select_menu.cpp:179 msgid "" "An auto-save recovery file was found. Would you like to restore the recovery\n" "file and resume where you were before the editor crashed?" msgstr "Foi encontrado um ficheiro de recuperação automático. Gostarias de restaurar\neste ficheiro e continuar de onde ficaste antes do editor fechar?" -#: src/supertux/menu/editor_level_select_menu.cpp:169 +#: src/supertux/menu/editor_level_select_menu.cpp:186 msgid "This will delete the auto-save file. Are you sure?" msgstr "Isto eliminará o ficheiro de recuperação automático. Tens a certeza?" -#: src/supertux/menu/worldmap_cheat_menu.cpp:34 -#: src/supertux/menu/cheat_menu.cpp:30 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:35 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:52 +#: src/supertux/menu/cheat_apply_menu.cpp:33 +#: src/supertux/menu/cheat_apply_menu.cpp:51 +msgid "Apply cheat to player" +msgstr "Aplicar uma trapaça ao jogador" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:60 +#: src/supertux/menu/multiplayer_players_menu.cpp:39 +#: src/supertux/menu/keyboard_menu.cpp:63 +#: src/supertux/menu/cheat_apply_menu.cpp:39 +#: src/supertux/menu/cheat_apply_menu.cpp:59 +#: src/supertux/menu/multiplayer_player_menu.cpp:37 +#, c++-format +msgid "Player {}" +msgstr "Jogador {}" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:57 +#: src/supertux/menu/cheat_apply_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:56 +msgid "All Players" +msgstr "Todos os jogadores" + +#: src/supertux/menu/worldmap_cheat_menu.cpp:36 +#: src/supertux/menu/cheat_menu.cpp:31 msgid "Cheats" msgstr "Batotas" -#: src/supertux/menu/worldmap_cheat_menu.cpp:36 -#: src/supertux/menu/cheat_menu.cpp:32 +#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:33 msgid "Bonus: Grow" -msgstr "Bónus: Crescer" +msgstr "Bónus: crescer" -#: src/supertux/menu/worldmap_cheat_menu.cpp:37 +#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:34 msgid "Bonus: Fire" -msgstr "Bónus: Fogo" +msgstr "Bónus: fogo" -#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/cheat_menu.cpp:35 msgid "Bonus: Ice" -msgstr "Bónus: Gelo" +msgstr "Bónus: gelo" -#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/cheat_menu.cpp:36 msgid "Bonus: Air" -msgstr "Bónus: Ar" +msgstr "Bónus: ar" -#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:42 +#: src/supertux/menu/cheat_menu.cpp:37 msgid "Bonus: Earth" -msgstr "Bónus: Terra" +msgstr "Bónus: terra" -#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/worldmap_cheat_menu.cpp:43 msgid "Bonus: None" -msgstr "Bónus: Nenhum" +msgstr "Bónus: nenhum" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:51 msgid "Leave Ghost Mode" -msgstr "Sair do Modo Fantasma" +msgstr "Sair do modo fantasma" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:50 msgid "Activate Ghost Mode" -msgstr "Ativar Modo Fantasma" +msgstr "Ativar modo fantasma" -#: src/supertux/menu/worldmap_cheat_menu.cpp:46 -#: src/supertux/menu/cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:48 +#: src/supertux/menu/cheat_menu.cpp:41 msgid "Finish Level" -msgstr "Completar o Nível" +msgstr "Completar o nível" -#: src/supertux/menu/worldmap_cheat_menu.cpp:47 +#: src/supertux/menu/worldmap_cheat_menu.cpp:49 msgid "Reset Level" -msgstr "Reiniciar o Nível" +msgstr "Reiniciar o nível" -#: src/supertux/menu/worldmap_cheat_menu.cpp:49 +#: src/supertux/menu/worldmap_cheat_menu.cpp:51 msgid "Finish Worldmap" -msgstr "Terminar Mapa-mundo" +msgstr "Terminar mapa-mundo" -#: src/supertux/menu/worldmap_cheat_menu.cpp:50 +#: src/supertux/menu/worldmap_cheat_menu.cpp:52 msgid "Reset Worldmap" -msgstr "Repor Mapa-mundo" +msgstr "Repor mapa-mundo" -#: src/supertux/menu/worldmap_cheat_menu.cpp:52 +#: src/supertux/menu/worldmap_cheat_menu.cpp:54 msgid "Go to level" -msgstr "Ir para o Nível" +msgstr "Ir para o nível" -#: src/supertux/menu/worldmap_cheat_menu.cpp:53 +#: src/supertux/menu/worldmap_cheat_menu.cpp:55 msgid "Go to main spawnpoint" msgstr "Ir para o ponto de partida" -#: src/supertux/menu/worldmap_cheat_menu.cpp:145 +#: src/supertux/menu/worldmap_cheat_menu.cpp:188 msgid "Select level" -msgstr "Selecionar Nível" +msgstr "Selecionar nível" #: src/supertux/menu/editor_save_as.cpp:33 -#: src/supertux/menu/editor_menu.cpp:49 +#: src/supertux/menu/editor_menu.cpp:63 msgid "Save Level as" -msgstr "Guardar Nível como" +msgstr "Guardar nível como" #: src/supertux/menu/editor_save_as.cpp:33 -#: src/supertux/menu/editor_menu.cpp:50 +#: src/supertux/menu/editor_menu.cpp:64 msgid "Save Copy" -msgstr "Guardar Cópia" +msgstr "Guardar cópia" -#: src/supertux/menu/editor_levelset_select_menu.cpp:72 +#: src/supertux/menu/editor_levelset_select_menu.cpp:71 msgid "Choose World" -msgstr "Escolher Mundo" +msgstr "Escolher mundo" -#: src/supertux/menu/editor_levelset_select_menu.cpp:100 -#, c-format -msgid "%d level" -msgid_plural "%d levels" -msgstr[0] "%d nível" -msgstr[1] "%d níveis" -msgstr[2] "%d níveis" +#: src/supertux/menu/editor_levelset_select_menu.cpp:99 +#, c++-format +msgid "{} level" +msgid_plural "{} levels" +msgstr[0] "{} nível" +msgstr[1] "{} níveis" +msgstr[2] "{} níveis" -#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_levelset_select_menu.cpp:112 msgid "Create World" -msgstr "Criar Mundo" +msgstr "Criar mundo" -#: src/supertux/menu/options_menu.cpp:98 src/supertux/menu/main_menu.cpp:64 -#: src/supertux/menu/game_menu.cpp:61 src/supertux/menu/worldmap_menu.cpp:31 -msgid "Options" -msgstr "Opções" - -#: src/supertux/menu/options_menu.cpp:104 -#: src/supertux/menu/options_menu.cpp:142 -#: src/supertux/menu/options_menu.cpp:455 -#: src/supertux/menu/options_menu.cpp:476 src/editor/object_settings.cpp:119 -msgid "auto" -msgstr "automático" - -#: src/supertux/menu/options_menu.cpp:221 -msgid "Desktop" -msgstr "Sistema" - -#: src/supertux/menu/options_menu.cpp:251 -msgid "on" -msgstr "ativo" - -#: src/supertux/menu/options_menu.cpp:252 -msgid "off" -msgstr "inativo" +#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:41 +msgid "Delete World" +msgstr "Eliminar mundo" -#: src/supertux/menu/options_menu.cpp:253 -msgid "adaptive" -msgstr "adaptativo" +#: src/supertux/menu/options_menu.cpp:72 +#: src/supertux/menu/options_select_menu.cpp:35 +msgid "Locale" +msgstr "Configuração regional" -#: src/supertux/menu/options_menu.cpp:347 +#: src/supertux/menu/options_menu.cpp:76 msgid "Select Language" -msgstr "Selecionar a Língua" +msgstr "Selecionar idioma" -#: src/supertux/menu/options_menu.cpp:348 +#: src/supertux/menu/options_menu.cpp:77 msgid "Select a different language to display text in" -msgstr "Escolhe a língua a usar na interface" +msgstr "Escolhe o idioma a usar na interface" -#: src/supertux/menu/options_menu.cpp:350 +#: src/supertux/menu/options_menu.cpp:79 msgid "Language Packs" -msgstr "Pacotes de Tradução" +msgstr "Pacotes de tradução" -#: src/supertux/menu/options_menu.cpp:351 +#: src/supertux/menu/options_menu.cpp:80 msgid "Language packs contain up-to-date translations" -msgstr "Os Pacotes de Traduções estão atualizados" +msgstr "Os pacotes de traduções estão atualizados" -#: src/supertux/menu/options_menu.cpp:353 -#: src/supertux/menu/profile_menu.cpp:34 -msgid "Select Profile" -msgstr "Escolher Jogador" +#: src/supertux/menu/options_menu.cpp:88 +#: src/supertux/menu/options_select_menu.cpp:37 +msgid "Video" +msgstr "Vídeo" -#: src/supertux/menu/options_menu.cpp:354 -msgid "Select a profile to play with" -msgstr "Escolhe um jogador para começar" - -#: src/supertux/menu/options_menu.cpp:358 +#: src/supertux/menu/options_menu.cpp:91 msgid "Window Resizable" -msgstr "Janela Redimensionável" +msgstr "Janela redimensionável" -#: src/supertux/menu/options_menu.cpp:359 +#: src/supertux/menu/options_menu.cpp:92 msgid "Allow window resizing, might require a restart to take effect" -msgstr "Permite mudar o tamanho da janela; pode precisar de reiniciar para surtir efeito" - -#: src/supertux/menu/options_menu.cpp:361 -msgid "Window Resolution" -msgstr "Resolução da Janela" +msgstr "Permite o redimensionamento da janela, pode ser necessário reiniciar para produzir efeito" -#: src/supertux/menu/options_menu.cpp:362 -msgid "Resize the window to the given size" -msgstr "Redimensiona a resolução do ecrã" - -#: src/supertux/menu/options_menu.cpp:364 +#: src/supertux/menu/options_menu.cpp:96 msgid "Fullscreen" msgstr "Ecrã inteiro" -#: src/supertux/menu/options_menu.cpp:365 +#: src/supertux/menu/options_menu.cpp:97 msgid "Fill the entire screen" msgstr "Usar todo o ecrã" -#: src/supertux/menu/options_menu.cpp:367 -msgid "Fullscreen Resolution" -msgstr "Resolução de Ecrã Inteiro" - -#: src/supertux/menu/options_menu.cpp:368 -msgid "" -"Determine the resolution used in fullscreen mode (you must toggle fullscreen" -" to complete the change)" -msgstr "Define a resolução usada no modo de ecrã inteiro (tens de ativar a opção de ecrã inteiro para esta opção funcionar)" - -#: src/supertux/menu/options_menu.cpp:373 +#: src/supertux/menu/options_menu.cpp:104 msgid "Fit to browser" msgstr "Ajustar ao navegador" -#: src/supertux/menu/options_menu.cpp:374 +#: src/supertux/menu/options_menu.cpp:105 msgid "Fit the resolution to the size of your browser" msgstr "Ajustar a resolução ao tamanho do teu navegador" -#: src/supertux/menu/options_menu.cpp:378 -msgid "Magnification" -msgstr "Ampliação" +#: src/supertux/menu/options_menu.cpp:116 +msgid "Change Video System" +msgstr "Alterar o sistema de vídeo" -#: src/supertux/menu/options_menu.cpp:379 -msgid "Change the magnification of the game area" -msgstr "Mudar a ampliação da área de jogo" +#: src/supertux/menu/options_menu.cpp:117 +msgid "Change video system used to render graphics" +msgstr "Alterar o sistema de vídeo utilizado para processar gráficos" -#: src/supertux/menu/options_menu.cpp:381 -msgid "VSync" -msgstr "Sincronização Vertical" +#: src/supertux/menu/options_menu.cpp:124 +#: src/supertux/menu/options_select_menu.cpp:38 +msgid "Audio" +msgstr "Áudio" -#: src/supertux/menu/options_menu.cpp:382 -msgid "Set the VSync mode" -msgstr "Definir o modo de sincronização vertical" - -#: src/supertux/menu/options_menu.cpp:385 -msgid "Aspect Ratio" -msgstr "Proporção da Imagem" - -#: src/supertux/menu/options_menu.cpp:386 -msgid "Adjust the aspect ratio" -msgstr "Ajustar a proporção da imagem" - -#: src/supertux/menu/options_menu.cpp:392 +#: src/supertux/menu/options_menu.cpp:129 msgid "Disable all sound effects" msgstr "Desligar todos os efeitos sonoros" -#: src/supertux/menu/options_menu.cpp:394 +#: src/supertux/menu/options_menu.cpp:131 msgid "Disable all music" msgstr "Desligar a música" -#: src/supertux/menu/options_menu.cpp:396 -msgid "Sound Volume" -msgstr "Volume do Som" - -#: src/supertux/menu/options_menu.cpp:397 -msgid "Adjust sound volume" -msgstr "Ajustar volume do som" - -#: src/supertux/menu/options_menu.cpp:399 -msgid "Music Volume" -msgstr "Volume da Música" - -#: src/supertux/menu/options_menu.cpp:400 -msgid "Adjust music volume" -msgstr "Ajustar volume da música" - -#: src/supertux/menu/options_menu.cpp:404 +#: src/supertux/menu/options_menu.cpp:138 msgid "Sound (disabled)" msgstr "Som (desligado)" -#: src/supertux/menu/options_menu.cpp:405 +#: src/supertux/menu/options_menu.cpp:139 msgid "Music (disabled)" msgstr "Música (desligada)" -#: src/supertux/menu/options_menu.cpp:408 -#: src/supertux/menu/keyboard_menu.cpp:30 +#: src/supertux/menu/options_menu.cpp:147 +#: src/supertux/menu/options_select_menu.cpp:39 +msgid "Controls" +msgstr "Controlos" + +#: src/supertux/menu/options_menu.cpp:151 +msgid "Enable Rumbling Controllers" +msgstr "Ativar controladores de ruído" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "Enable vibrating the game controllers." +msgstr "Ativar a vibração dos comandos de jogo." + +#: src/supertux/menu/options_menu.cpp:152 +msgid "This feature is currently only used in the multiplayer options menu." +msgstr "Atualmente, esta funcionalidade só é utilizada no menu de opções multijogador." + +#: src/supertux/menu/options_menu.cpp:154 +#: src/supertux/menu/keyboard_menu.cpp:34 msgid "Setup Keyboard" -msgstr "Configurar Teclas" +msgstr "Configurar teclas" -#: src/supertux/menu/options_menu.cpp:409 +#: src/supertux/menu/options_menu.cpp:155 msgid "Configure key-action mappings" msgstr "Configurar as teclas usadas" -#: src/supertux/menu/options_menu.cpp:412 -#: src/supertux/menu/joystick_menu.cpp:52 +#: src/supertux/menu/options_menu.cpp:158 +#: src/supertux/menu/joystick_menu.cpp:54 msgid "Setup Joystick" -msgstr "Configurar Joystick" +msgstr "Configurar joystick" -#: src/supertux/menu/options_menu.cpp:413 +#: src/supertux/menu/options_menu.cpp:159 msgid "Configure joystick control-action mappings" msgstr "Configurar os movimentos do joystick usados" -#: src/supertux/menu/options_menu.cpp:417 -msgid "On-screen controls" -msgstr "Controlos no Ecrã" +#: src/supertux/menu/options_menu.cpp:167 +#: src/supertux/menu/options_select_menu.cpp:40 +msgid "Extras" +msgstr "Extras" + +#: src/supertux/menu/options_menu.cpp:170 +#: src/supertux/menu/profile_menu.cpp:56 +msgid "Select Profile" +msgstr "Escolher jogador" + +#: src/supertux/menu/options_menu.cpp:171 +msgid "Select a profile to play with" +msgstr "Escolhe um jogador para começar" + +#: src/supertux/menu/options_menu.cpp:174 +msgid "Multiplayer settings" +msgstr "Definições multijogador" -#: src/supertux/menu/options_menu.cpp:418 -msgid "Toggle on-screen controls for mobile devices" -msgstr "Ativar controlos no ecrã para dispositivos móveis" +#: src/supertux/menu/options_menu.cpp:175 +msgid "Configure settings specific to multiplayer" +msgstr "Configurar definições específicas para o modo multijogador" -#: src/supertux/menu/options_menu.cpp:420 +#: src/supertux/menu/options_menu.cpp:178 msgid "Enable transitions" msgstr "Ativar animações" -#: src/supertux/menu/options_menu.cpp:421 +#: src/supertux/menu/options_menu.cpp:179 msgid "Enable screen transitions and smooth menu animation" msgstr "Ativa a transição entre níveis e a animação suave para o menu" -#: src/supertux/menu/options_menu.cpp:425 -msgid "Developer Mode" -msgstr "Modo Programador" +#: src/supertux/menu/options_menu.cpp:181 +msgid "Custom title screen levels" +msgstr "Níveis de ecrã de título personalizados" + +#: src/supertux/menu/options_menu.cpp:182 +msgid "Allow overriding the title screen level, when loading certain worlds" +msgstr "Permite a substituição do nível do ecrã de título, ao carregar certos mundos" -#: src/supertux/menu/options_menu.cpp:430 +#: src/supertux/menu/options_menu.cpp:185 msgid "Christmas Mode" msgstr "Modo Natal" -#: src/supertux/menu/options_menu.cpp:433 +#: src/supertux/menu/options_menu.cpp:187 +msgid "Integrations and presence" +msgstr "Integrações e presença" + +#: src/supertux/menu/options_menu.cpp:188 +msgid "" +"Manage whether SuperTux should display the levels you play on your social " +"media profiles (Discord)" +msgstr "Escolhe se o SuperTux pode mostrar os níveis que jogas nos perfis das tuas redes sociais (Discord)" + +#: src/supertux/menu/options_menu.cpp:192 +msgid "Customize the appearance of the menus" +msgstr "Personalizar o aspeto dos menus" + +#: src/supertux/menu/options_menu.cpp:199 +#: src/supertux/menu/options_select_menu.cpp:41 +msgid "Advanced" +msgstr "Avançado" + +#: src/supertux/menu/options_menu.cpp:204 +msgid "Developer Mode" +msgstr "Modo programador" + +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirmation Dialog" -msgstr "Janela de Confirmação" +msgstr "Janela de confirmação" -#: src/supertux/menu/options_menu.cpp:433 +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirm aborting level" msgstr "Confirmar saída de um nível" -#: src/supertux/menu/options_menu.cpp:434 +#: src/supertux/menu/options_menu.cpp:208 msgid "Pause on focus loss" msgstr "Pausar ao perder o foco" -#: src/supertux/menu/options_menu.cpp:435 +#: src/supertux/menu/options_menu.cpp:209 msgid "Automatically pause the game when the window loses focus" msgstr "Automaticamente pausar o jogo quando a janela perder o foco" -#: src/supertux/menu/options_menu.cpp:436 +#: src/supertux/menu/options_menu.cpp:211 msgid "Use custom mouse cursor" msgstr "Usar cursor personalizado" -#: src/supertux/menu/options_menu.cpp:436 +#: src/supertux/menu/options_menu.cpp:211 msgid "Whether the game renders its own cursor or uses the system's cursor" msgstr "Se o jogo renderiza o seu próprio cursor ou usa o cursor do sistema" -#: src/supertux/menu/options_menu.cpp:438 -msgid "Integrations and presence" -msgstr "Integrações e presença" +#: src/supertux/menu/options_menu.cpp:214 +msgid "Check for new releases" +msgstr "Verificar se há novas versões" -#: src/supertux/menu/options_menu.cpp:439 +#: src/supertux/menu/options_menu.cpp:215 msgid "" -"Manage whether SuperTux should display the levels you play on your social " -"media profiles (Discord)" -msgstr "Escolhe se o SuperTux pode mostrar os níveis que jogas nos perfis das tuas redes sociais (Discord)" +"Allows the game to perform checks for new SuperTux releases on startup and " +"notify if any found." +msgstr "Permite que o jogo verifique se há novas versões do SuperTux na inicialização e notifique se alguma for encontrada." + +#: src/supertux/menu/options_menu.cpp:245 +#: src/supertux/menu/options_menu.cpp:288 src/supertux/direction.cpp:76 +msgid "auto" +msgstr "automático" + +#: src/supertux/menu/options_menu.cpp:281 +msgid "Magnification" +msgstr "Ampliação" + +#: src/supertux/menu/options_menu.cpp:282 +msgid "Change the magnification of the game area" +msgstr "Mudar a ampliação da área de jogo" + +#: src/supertux/menu/options_menu.cpp:318 +msgid "Aspect Ratio" +msgstr "Proporção da imagem" -#: src/supertux/menu/options_menu.cpp:559 +#: src/supertux/menu/options_menu.cpp:319 +msgid "Adjust the aspect ratio" +msgstr "Ajustar a proporção da imagem" + +#: src/supertux/menu/options_menu.cpp:346 +msgid "Window Resolution" +msgstr "Resolução da janela" + +#: src/supertux/menu/options_menu.cpp:347 +msgid "Resize the window to the given size" +msgstr "Redimensiona a resolução do ecrã" + +#: src/supertux/menu/options_menu.cpp:377 +msgid "Desktop" +msgstr "Sistema" + +#: src/supertux/menu/options_menu.cpp:404 +msgid "Fullscreen Resolution" +msgstr "Resolução de ecrã inteiro" + +#: src/supertux/menu/options_menu.cpp:405 +msgid "" +"Determine the resolution used in fullscreen mode (you must toggle fullscreen" +" to complete the change)" +msgstr "Define a resolução usada no modo de ecrã inteiro (tens de ativar a opção de ecrã inteiro para esta opção funcionar)" + +#: src/supertux/menu/options_menu.cpp:411 +msgid "on" +msgstr "ativo" + +#: src/supertux/menu/options_menu.cpp:412 +msgid "off" +msgstr "inativo" + +#: src/supertux/menu/options_menu.cpp:413 +msgid "adaptive" +msgstr "adaptativo" + +#: src/supertux/menu/options_menu.cpp:431 +msgid "VSync" +msgstr "Sincronização vertical" + +#: src/supertux/menu/options_menu.cpp:432 +msgid "Set the VSync mode" +msgstr "Definir o modo de sincronização vertical (VSync)" + +#: src/supertux/menu/options_menu.cpp:467 +msgid "Sound Volume" +msgstr "Volume do som" + +#: src/supertux/menu/options_menu.cpp:468 +msgid "Adjust sound volume" +msgstr "Ajustar volume do som" + +#: src/supertux/menu/options_menu.cpp:503 +msgid "Music Volume" +msgstr "Volume da música" + +#: src/supertux/menu/options_menu.cpp:504 +msgid "Adjust music volume" +msgstr "Ajustar volume da música" + +#: src/supertux/menu/options_menu.cpp:517 +msgid "On-screen controls scale" +msgstr "Escala de controlos no ecrã" + +#: src/supertux/menu/options_menu.cpp:638 msgid "" "The game couldn't detect your browser resolution.\n" "This most likely happens because it is not embedded\n" "in the SuperTux custom HTML template.\n" msgstr "O jogo não conseguiu detetar a resolução do navegador.\nIsso provavelmente aconteceu porque não está embutido\nno modelo de HTML personalizado do SuperTux.\n" -#: src/supertux/menu/main_menu.cpp:56 src/supertux/menu/world_set_menu.cpp:28 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:80 +msgid "You cannot delete the world that you are editing" +msgstr "Não é possível eliminar o mundo que se estás a editar" + +#: src/supertux/menu/editor_delete_levelset_menu.cpp:83 +#, c++-format +msgid "You are about to delete world \"{}\". Are you sure?" +msgstr "Estás prestes a eliminar o mundo \"{}\". Tens a certeza?" + +#: src/supertux/menu/addon_preview_menu.cpp:82 +#, c++-format +msgid "{} \"{}\"" +msgstr "{} \"{}\"" + +#: src/supertux/menu/addon_preview_menu.cpp:87 +msgid "Some information about this add-on is not available." +msgstr "Algumas informações sobre esta extensão não estão disponíveis." + +#: src/supertux/menu/addon_preview_menu.cpp:88 +msgid "Perform a \"Check Online\" to try retrieving it." +msgstr "Efetua uma \"Verificar online\" para tentar recuperá-lo." + +#: src/supertux/menu/addon_preview_menu.cpp:92 +msgid "No author specified." +msgstr "Nenhum autor especificado." + +#: src/supertux/menu/addon_preview_menu.cpp:92 +#, c++-format +msgid "Author: {}" +msgstr "Autor: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:93 +#, c++-format +msgid "Type: {}" +msgstr "Tipo: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:94 +msgid "No license specified." +msgstr "Nenhuma licença especificada." + +#: src/supertux/menu/addon_preview_menu.cpp:94 +#, c++-format +msgid "License: {}" +msgstr "Licença: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:99 +msgid "Dependencies:" +msgstr "Dependências:" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Installed" +msgstr "Instalado" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Not installed" +msgstr "Não instalado" + +#: src/supertux/menu/addon_preview_menu.cpp:113 +msgid "Not available!" +msgstr "Não disponível" + +#: src/supertux/menu/addon_preview_menu.cpp:120 +msgid "Description:" +msgstr "Descrição:" + +#: src/supertux/menu/addon_preview_menu.cpp:123 +msgid "No description available." +msgstr "Nenhuma descrição disponível." + +#: src/supertux/menu/addon_preview_menu.cpp:147 +msgid "Failed to load all available screenshot previews." +msgstr "Falha ao carregar todas as pré-visualizações de capturas de ecrã disponíveis." + +#: src/supertux/menu/addon_preview_menu.cpp:152 +msgid "Show screenshots" +msgstr "Mostrar capturas de ecrã" + +#: src/supertux/menu/addon_preview_menu.cpp:165 +msgid "Screenshot previews are disabled for automatic installs." +msgstr "As pré-visualizações de capturas de ecrã estão desativadas para instalações automáticas." + +#: src/supertux/menu/addon_preview_menu.cpp:169 +msgid "No screenshot previews available." +msgstr "Não estão disponíveis pré-visualizações de capturas de ecrã." + +#: src/supertux/menu/addon_preview_menu.cpp:177 +msgid "Install" +msgstr "Instalar" + +#: src/supertux/menu/addon_preview_menu.cpp:190 +msgid "Uninstall" +msgstr "Desinstalar" + +#: src/supertux/menu/addon_preview_menu.cpp:214 +#, c++-format +msgid "Are you sure you want to uninstall \"{}\"?" +msgstr "Tens a certeza de que queres desinstalar o \"{}\"?" + +#: src/supertux/menu/addon_preview_menu.cpp:215 +msgid "" +"\n" +"Your progress won't be lost." +msgstr "\nO teu progresso não será perdido." + +#: src/supertux/menu/addon_preview_menu.cpp:227 +#, c++-format +msgid "" +"NOTE: The add-on \"{}\" is a dependency of {} other installed {}.\n" +"Are you sure you wish to uninstall?" +msgstr "NOTA: a extensão \"{}\" é uma dependência de {} outras {} instaladas.\nTens a certeza que pretendes desinstalar?" + +#: src/supertux/menu/addon_preview_menu.cpp:246 +#, c++-format +msgid "" +"Cannot toggle add-on \"{}\":\n" +"{}" +msgstr "Não é possível ativar a extensão \"{}\":\n{}" + +#: src/supertux/menu/addon_preview_menu.cpp:279 +msgid "Fetching screenshot previews..." +msgstr "A obter pré-visualizações de capturas de ecrã..." + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Updating" +msgstr "A atualizar" + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Downloading" +msgstr "A descarregar" + +#: src/supertux/menu/addon_preview_menu.cpp:328 +msgid "Add-on uninstalled successfully." +msgstr "Extensão desinstalada com sucesso." + +#: src/supertux/menu/addon_preview_menu.cpp:333 +#, c++-format +msgid "" +"Error uninstalling add-on:\n" +"{}" +msgstr "Erro ao desinstalar a extensão:\n{}" + +#: src/supertux/menu/addon_preview_menu.cpp:361 +msgid "" +"Please restart SuperTux\n" +"for these changes to take effect." +msgstr "Por favor, reinicia o SuperTux\npara que as alterações surtam efeito." + +#: src/supertux/menu/main_menu.cpp:51 src/supertux/menu/world_set_menu.cpp:28 msgid "Start Game" -msgstr "Começar o Jogo" +msgstr "Começar o jogo" -#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/addon_menu.cpp:122 +#: src/supertux/menu/main_menu.cpp:55 msgid "Add-ons" msgstr "Extensões" -#: src/supertux/menu/main_menu.cpp:62 src/supertux/menu/web_asset_menu.cpp:38 +#: src/supertux/menu/main_menu.cpp:57 src/supertux/menu/web_asset_menu.cpp:38 msgid "Manage Assets" -msgstr "Gerir Recursos" +msgstr "Gerir recursos" -#: src/supertux/menu/main_menu.cpp:65 src/supertux/menu/editor_menu.cpp:43 +#: src/supertux/menu/main_menu.cpp:59 +#: src/supertux/menu/options_select_menu.cpp:29 +#: src/supertux/menu/game_menu.cpp:58 src/supertux/menu/worldmap_menu.cpp:31 +#: src/supertux/menu/editor_menu.cpp:70 +msgid "Options" +msgstr "Opções" + +#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/editor_menu.cpp:58 msgid "Level Editor" -msgstr "Editor de Níveis" +msgstr "Editor de níveis" -#: src/supertux/menu/main_menu.cpp:66 +#: src/supertux/menu/main_menu.cpp:61 msgid "Credits" msgstr "Créditos" -#: src/supertux/menu/main_menu.cpp:67 +#: src/supertux/menu/main_menu.cpp:64 msgid "Donate" msgstr "Doar" -#: src/supertux/menu/main_menu.cpp:69 +#: src/supertux/menu/main_menu.cpp:67 msgid "Quit" msgstr "Sair" -#: src/supertux/menu/editor_sector_menu.cpp:35 +#: src/supertux/menu/main_menu.cpp:106 +msgid "" +"This will take you to the SuperTux donation page. Are you sure you want to " +"continue?" +msgstr "Isto vai levar-te à página de donativos do SuperTux. Tens a certeza de que queres continuar?" + +#: src/supertux/menu/editor_sector_menu.cpp:34 +#, c++-format +msgid "Sector {}" +msgstr "Sector {}" + +#: src/supertux/menu/editor_sector_menu.cpp:37 msgid "Initialization script" msgstr "Script de inicialização" -#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_sector_menu.cpp:38 msgid "Gravity" msgstr "Gravidade" -#: src/supertux/menu/editor_sector_menu.cpp:41 +#: src/supertux/menu/editor_sector_menu.cpp:43 msgid "Resize offset X" msgstr "Desvio ao redimensionar (X)" -#: src/supertux/menu/editor_sector_menu.cpp:42 +#: src/supertux/menu/editor_sector_menu.cpp:44 msgid "Resize offset Y" msgstr "Desvio ao redimensionar (Y)" -#: src/supertux/menu/editor_sector_menu.cpp:43 +#: src/supertux/menu/editor_sector_menu.cpp:45 msgid "Resize" msgstr "Redimensionar" -#: src/supertux/menu/profile_menu.cpp:41 -#, c-format -msgid "[Profile %s]" -msgstr "[Jogador %s]" - -#: src/supertux/menu/profile_menu.cpp:45 -#, c-format -msgid "Profile %s" -msgstr "Jogador %s" - -#: src/supertux/menu/profile_menu.cpp:50 -msgid "Reset profile" -msgstr "Repor perfil de jogador" - -#: src/supertux/menu/profile_menu.cpp:51 -msgid "Reset all profiles" -msgstr "Repor todos os perfis de jogadores" - -#: src/supertux/menu/profile_menu.cpp:67 -msgid "Deleting your profile will reset your game progress. Are you sure?" -msgstr "Eliminar o teu perfil de jogador irá repor o teu progresso de jogo. Tens a certeza?" +#: src/supertux/menu/profile_menu.cpp:60 +msgid "No profiles found." +msgstr "Não foram encontrados perfis." + +#: src/supertux/menu/profile_menu.cpp:68 +#: src/supertux/menu/profile_menu.cpp:149 +#: src/supertux/menu/profile_menu.cpp:168 +#, c++-format +msgid "Profile {}" +msgstr "Perfil {}" + +#: src/supertux/menu/profile_menu.cpp:69 +#, c++-format +msgid "{} (Profile {})" +msgstr "{} (Perfil {})" + +#: src/supertux/menu/profile_menu.cpp:84 +msgid "No profile selected." +msgstr "Nenhum perfil selecionado." + +#: src/supertux/menu/profile_menu.cpp:91 src/supertux/menu/profile_menu.cpp:93 +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Rename" +msgstr "Mudar o nome" + +#: src/supertux/menu/profile_menu.cpp:98 +#: src/supertux/menu/profile_menu.cpp:100 +msgid "Reset" +msgstr "Repor" + +#: src/supertux/menu/profile_menu.cpp:103 +#: src/supertux/menu/profile_menu.cpp:105 +msgid "Reset all" +msgstr "Repor tudo" + +#: src/supertux/menu/profile_menu.cpp:113 +#: src/supertux/menu/profile_menu.cpp:115 +msgid "Delete all" +msgstr "Eliminar tudo" + +#: src/supertux/menu/profile_menu.cpp:148 +#, c++-format +msgid "" +"This will reset all game progress on the profile \"{}\".\n" +"Are you sure?" +msgstr "Isto irá repor todo o progresso do jogo no perfil \"{}\".\nTens a certeza?" -#: src/supertux/menu/profile_menu.cpp:73 +#: src/supertux/menu/profile_menu.cpp:157 msgid "This will reset your game progress on all profiles. Are you sure?" msgstr "Isto irá repor o teu progresso de jogo em todos os perfis de jogadores. Tens a certeza?" -#: src/supertux/menu/editor_levelset_menu.cpp:59 +#: src/supertux/menu/profile_menu.cpp:167 +#, c++-format +msgid "" +"This will delete the profile \"{}\",\n" +"including all game progress on it. Are you sure?" +msgstr "Isto irá eliminar o perfil \"{}\",\nincluindo todo o progresso do jogo nele. Tens a certeza?" + +#: src/supertux/menu/profile_menu.cpp:178 +msgid "" +"This will delete all profiles, including all game progress on them.\n" +"Are you sure?" +msgstr "Isto irá eliminar todos os perfis, incluindo todo o progresso do jogo neles.\nTens a certeza?" + +#: src/supertux/menu/editor_levelset_menu.cpp:53 #: src/supertux/menu/editor_new_levelset_menu.cpp:35 msgid "Description" msgstr "Descrição" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:48 -#: data//images/engine/editor/objects.stoi:371 -msgid "Worldmap" -msgstr "Mapa-mundo" +#: src/supertux/menu/editor_levelset_menu.cpp:55 +msgid "Title Screen Level" +msgstr "Nível do ecrã de título" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:45 -msgid "Levelset" -msgstr "Grupos de níveis" +#: src/supertux/menu/editor_levelset_menu.cpp:56 +msgid "A level to be used for the title screen, after exiting the world." +msgstr "Um nível a ser utilizado para o ecrã de título, depois de sair do mundo." -#: src/supertux/menu/addon_menu.cpp:51 -msgid "World" -msgstr "Mundo" +#: src/supertux/menu/multiplayer_players_menu.cpp:46 +msgid "Add Player" +msgstr "Adicionar jogador" -#: src/supertux/menu/addon_menu.cpp:54 -msgid "Add-on" -msgstr "Extensão" +#: src/supertux/menu/multiplayer_players_menu.cpp:59 +msgid "Remove Last Player" +msgstr "Remover o último jogador" -#: src/supertux/menu/addon_menu.cpp:60 -msgid "Unknown" -msgstr "Desconhecido" +#: src/supertux/menu/multiplayer_players_menu.cpp:62 +msgid "" +"Warning: The player you are trying to\n" +"remove is currently in-game.\n" +"\n" +"Do you wish to remove them anyways?" +msgstr "Aviso: o jogador que estás a tentar\nremover está atualmente no jogo.\n\nQueres removê-lo mesmo assim?" + +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Language Packs" +msgstr "Pacotes de idiomas instalados" + +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Add-ons" +msgstr "Extensões instaladas" -#: src/supertux/menu/addon_menu.cpp:71 -#, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" por \"%s\"" +#: src/supertux/menu/addon_menu.cpp:76 src/supertux/menu/addon_menu.cpp:117 +msgid "No language packs installed" +msgstr "Sem pacotes de idiomas instalados" -#: src/supertux/menu/addon_menu.cpp:129 +#: src/supertux/menu/addon_menu.cpp:76 msgid "No Add-ons installed" msgstr "Não está instalada nenhuma Extensão" -#: src/supertux/menu/addon_menu.cpp:133 -msgid "No Add-ons found" -msgstr "Não foi encontrada nenhuma Extensão" +#: src/supertux/menu/addon_menu.cpp:124 +#, c++-format +msgid "{} {}*UPDATE*" +msgstr "{} {}*ATUALIZAÇÃO*" -#: src/supertux/menu/addon_menu.cpp:179 -#, c-format -msgid "Install %s *NEW*" -msgstr "Instalar %s *NOVO*" +#: src/supertux/menu/addon_menu.cpp:130 +#, c++-format +msgid "{}{}" +msgstr "{}{}" -#: src/supertux/menu/addon_menu.cpp:190 -#, c-format -msgid "Install %s" -msgstr "Instalar %s" +#: src/supertux/menu/addon_menu.cpp:140 +msgid "No updates available." +msgstr "Não há atualizações disponíveis." -#: src/supertux/menu/addon_menu.cpp:199 -msgid "No new Add-ons found" -msgstr "Não foi encontrada nenhuma Extensão nova" +#: src/supertux/menu/addon_menu.cpp:144 +#, c++-format +msgid "{} {} available" +msgstr "{} {} disponível" -#: src/supertux/menu/addon_menu.cpp:205 -msgid "Check Online (disabled)" -msgstr "Verificar na Internet (desativado)" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "update" +msgstr "atualização" -#: src/supertux/menu/addon_menu.cpp:209 -msgid "Check Online" -msgstr "Verificar na Internet" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "updates" +msgstr "atualizações" -#: src/supertux/menu/addon_menu.cpp:286 -msgid "Downloading Add-On Repository Index" -msgstr "A descarregar a lista de Extensões" +#: src/supertux/menu/addon_menu.cpp:146 +msgid "Check for updates" +msgstr "Verificar se há atualizações" -#: src/supertux/menu/addon_menu.cpp:301 -#, c-format -msgid "Downloading %s" -msgstr "A descarregar %s" +#: src/supertux/menu/addon_menu.cpp:150 +msgid "Browse language packs" +msgstr "Navegar pelos pacotes de idiomas" -#: src/supertux/menu/addon_menu.cpp:348 -msgid "" -"Please restart SuperTux\n" -"for these changes to take effect." -msgstr "Por favor, reinicia o SuperTux\npara que as alterações surtam efeito." +#: src/supertux/menu/addon_menu.cpp:150 +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Add-ons" +msgstr "Navegar pelas extensões" + +#: src/supertux/menu/addon_menu.cpp:151 +msgid "Install from file" +msgstr "Instalar a partir do ficheiro" + +#: src/supertux/menu/addon_menu.cpp:208 +msgid "Checking for updates..." +msgstr "A verificar se há atualizações..." #: src/supertux/menu/editor_new_levelset_menu.cpp:31 msgid "New World" @@ -2619,7 +3651,54 @@ msgstr "Por favor, introduz um nome para o subconjunto deste nível." #: src/supertux/menu/world_set_menu.cpp:30 msgid "Story Mode" -msgstr "Modo Estória" +msgstr "Modo estória" + +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Language Packs" +msgstr "Navegar pelos pacotes de idiomas" + +#: src/supertux/menu/addon_browse_menu.cpp:112 +#, c++-format +msgid "Page {}/{}" +msgstr "Página {}/{}" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new language packs available" +msgstr "Não há novos pacotes de idiomas disponíveis" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new Add-ons available" +msgstr "Não há novas extensões disponíveis" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No language packs available" +msgstr "Não há pacotes de idiomas disponíveis" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No Add-ons available" +msgstr "Não há extensões disponíveis" + +#: src/supertux/menu/addon_browse_menu.cpp:135 +#: src/supertux/menu/addon_browse_menu.cpp:139 +msgid "Previous page" +msgstr "Página anterior" + +#: src/supertux/menu/addon_browse_menu.cpp:143 +#: src/supertux/menu/addon_browse_menu.cpp:147 +msgid "Next page" +msgstr "Página seguinte" + +#: src/supertux/menu/addon_browse_menu.cpp:154 +msgid "Check Online (disabled)" +msgstr "Verificar na Internet (desativado)" + +#: src/supertux/menu/addon_browse_menu.cpp:158 +msgid "Check Online" +msgstr "Verificar na Internet" + +#: src/supertux/menu/addon_browse_menu.cpp:195 +msgid "Downloading Add-On Repository Index" +msgstr "A descarregar a lista de extensões" #: src/supertux/menu/web_asset_menu.cpp:42 msgid "New files location" @@ -2641,209 +3720,237 @@ msgstr "Carregar ficheiro de partículas" msgid "Open" msgstr "Abrir" -#: src/supertux/menu/game_menu.cpp:31 -msgid "Are you sure?" -msgstr "Tens a certeza?" - -#: src/supertux/menu/game_menu.cpp:54 src/supertux/menu/worldmap_menu.cpp:30 +#: src/supertux/menu/game_menu.cpp:51 src/supertux/menu/worldmap_menu.cpp:30 msgid "Continue" msgstr "Continuar" -#: src/supertux/menu/game_menu.cpp:55 +#: src/supertux/menu/game_menu.cpp:52 msgid "Restart Level" -msgstr "Recomeçar o Nível" +msgstr "Recomeçar o nível" -#: src/supertux/menu/game_menu.cpp:58 +#: src/supertux/menu/game_menu.cpp:55 msgid "Restart from Checkpoint" -msgstr "Reiniciar do Ponto de Controlo" +msgstr "Recomeçar do ponto de controlo" -#: src/supertux/menu/game_menu.cpp:63 +#: src/supertux/menu/game_menu.cpp:60 msgid "Abort Level" -msgstr "Abortar Nível" +msgstr "Abortar nível" -#: src/supertux/menu/keyboard_menu.cpp:32 -#: src/supertux/menu/joystick_menu.cpp:69 +#: src/supertux/menu/game_menu.cpp:76 src/supertux/menu/game_menu.cpp:87 +#: src/supertux/menu/game_menu.cpp:99 +msgid "Are you sure?" +msgstr "Tens a certeza?" + +#: src/supertux/menu/profile_name_menu.cpp:36 +#, c++-format +msgid "Rename \"{}\"" +msgstr "Alterar nome \"{}\"" + +#: src/supertux/menu/profile_name_menu.cpp:36 +msgid "Add profile" +msgstr "Adicionar perfil" + +#: src/supertux/menu/profile_name_menu.cpp:40 +msgid "Profile names must have a maximum of 20 characters." +msgstr "Os nomes dos perfis devem ter um máximo de 20 caracteres." + +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Create" +msgstr "Criar" + +#: src/supertux/menu/profile_name_menu.cpp:56 +msgid "" +"Profile names must have a maximum of 20 characters.\n" +"Please choose a different name." +msgstr "Os nomes dos perfis devem ter um máximo de 20 caracteres.\nPor favor, escolhe um nome diferente." + +#: src/supertux/menu/profile_name_menu.cpp:77 +msgid "An error occurred while creating the profile." +msgstr "Ocorreu um erro ao criar o perfil." + +#: src/supertux/menu/keyboard_menu.cpp:36 +#: src/supertux/menu/joystick_menu.cpp:71 msgid "Up" msgstr "Cima" -#: src/supertux/menu/keyboard_menu.cpp:33 -#: src/supertux/menu/joystick_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:37 +#: src/supertux/menu/joystick_menu.cpp:72 msgid "Down" msgstr "Baixo" -#: src/supertux/menu/keyboard_menu.cpp:36 -#: src/supertux/menu/joystick_menu.cpp:73 +#: src/supertux/menu/keyboard_menu.cpp:40 +#: src/supertux/menu/joystick_menu.cpp:75 msgid "Jump" msgstr "Saltar" -#: src/supertux/menu/keyboard_menu.cpp:38 -#: src/supertux/menu/joystick_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:43 +#: src/supertux/menu/joystick_menu.cpp:78 msgid "Peek Left" -msgstr "Espreitar à Esquerda" +msgstr "Espreitar à esquerda" -#: src/supertux/menu/keyboard_menu.cpp:39 -#: src/supertux/menu/joystick_menu.cpp:77 +#: src/supertux/menu/keyboard_menu.cpp:44 +#: src/supertux/menu/joystick_menu.cpp:79 msgid "Peek Right" -msgstr "Espreitar à Direita" +msgstr "Espreitar à direita" -#: src/supertux/menu/keyboard_menu.cpp:40 -#: src/supertux/menu/joystick_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:45 +#: src/supertux/menu/joystick_menu.cpp:80 msgid "Peek Up" -msgstr "Espreitar para Cima" +msgstr "Espreitar para cima" -#: src/supertux/menu/keyboard_menu.cpp:41 -#: src/supertux/menu/joystick_menu.cpp:79 +#: src/supertux/menu/keyboard_menu.cpp:46 +#: src/supertux/menu/joystick_menu.cpp:81 msgid "Peek Down" -msgstr "Espreitar para Baixo" +msgstr "Espreitar para baixo" -#: src/supertux/menu/keyboard_menu.cpp:43 -#: src/supertux/menu/joystick_menu.cpp:81 +#: src/supertux/menu/keyboard_menu.cpp:51 +#: src/supertux/menu/joystick_menu.cpp:83 msgid "Console" msgstr "Consola" -#: src/supertux/menu/keyboard_menu.cpp:44 -#: src/supertux/menu/joystick_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:52 +#: src/supertux/menu/joystick_menu.cpp:84 msgid "Cheat Menu" -msgstr "Menu de Batotas" +msgstr "Menu de batotas" -#: src/supertux/menu/keyboard_menu.cpp:45 -#: src/supertux/menu/joystick_menu.cpp:83 +#: src/supertux/menu/keyboard_menu.cpp:53 +#: src/supertux/menu/joystick_menu.cpp:85 msgid "Debug Menu" -msgstr "Menu de Depuração de Erros" +msgstr "Menu de depuração de erros" -#: src/supertux/menu/keyboard_menu.cpp:47 -#: src/supertux/menu/joystick_menu.cpp:85 +#: src/supertux/menu/keyboard_menu.cpp:56 +#: src/supertux/menu/joystick_menu.cpp:87 msgid "Jump with Up" -msgstr "Saltar com a Seta Cima" +msgstr "Saltar com a seta cima" -#: src/supertux/menu/keyboard_menu.cpp:60 +#: src/supertux/menu/keyboard_menu.cpp:82 msgid "Up cursor" -msgstr "Seta Cima" +msgstr "Seta cima" -#: src/supertux/menu/keyboard_menu.cpp:62 +#: src/supertux/menu/keyboard_menu.cpp:84 msgid "Down cursor" -msgstr "Seta Baixo" +msgstr "Seta baixo" -#: src/supertux/menu/keyboard_menu.cpp:64 +#: src/supertux/menu/keyboard_menu.cpp:86 msgid "Left cursor" -msgstr "Seta Direita" +msgstr "Seta direita" -#: src/supertux/menu/keyboard_menu.cpp:66 +#: src/supertux/menu/keyboard_menu.cpp:88 msgid "Right cursor" -msgstr "Seta Esquerda" +msgstr "Seta esquerda" -#: src/supertux/menu/keyboard_menu.cpp:68 +#: src/supertux/menu/keyboard_menu.cpp:90 msgid "Return" msgstr "Enter" -#: src/supertux/menu/keyboard_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:92 msgid "Space" msgstr "Espaço" -#: src/supertux/menu/keyboard_menu.cpp:72 +#: src/supertux/menu/keyboard_menu.cpp:94 msgid "Right Shift" -msgstr "SHIFT Direito" +msgstr "SHIFT direito" -#: src/supertux/menu/keyboard_menu.cpp:74 +#: src/supertux/menu/keyboard_menu.cpp:96 msgid "Left Shift" -msgstr "SHIFT Esquerdo" +msgstr "SHIFT esquerdo" -#: src/supertux/menu/keyboard_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:98 msgid "Right Control" -msgstr "CTRL Direito" +msgstr "CTRL direito" -#: src/supertux/menu/keyboard_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:100 msgid "Left Control" -msgstr "CTRL Esquerdo" +msgstr "CTRL esquerdo" -#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/keyboard_menu.cpp:102 msgid "Right Alt" -msgstr "ALT Direito" +msgstr "ALT direito" -#: src/supertux/menu/keyboard_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:104 msgid "Left Alt" -msgstr "ALT Esquerdo" +msgstr "ALT esquerdo" -#: src/supertux/menu/keyboard_menu.cpp:84 +#: src/supertux/menu/keyboard_menu.cpp:106 msgid "Right Command" -msgstr "Comando Direito" +msgstr "Comando direito" -#: src/supertux/menu/keyboard_menu.cpp:86 +#: src/supertux/menu/keyboard_menu.cpp:108 msgid "Left Command" -msgstr "Comando Esquerdo" +msgstr "Comando esquerdo" -#: src/supertux/menu/keyboard_menu.cpp:100 +#: src/supertux/menu/keyboard_menu.cpp:122 msgid "Press Key" -msgstr "Carrega na Tecla" +msgstr "Carrega na tecla" -#: src/supertux/menu/language_menu.cpp:40 +#: src/supertux/menu/language_menu.cpp:43 msgid "Language" -msgstr "Língua" +msgstr "Idioma" -#: src/supertux/menu/language_menu.cpp:42 +#: src/supertux/menu/language_menu.cpp:45 msgid "" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:55 +#: src/supertux/menu/joystick_menu.cpp:57 msgid "Manual Configuration" -msgstr "Configuração Manual" +msgstr "Configuração manual" -#: src/supertux/menu/joystick_menu.cpp:57 +#: src/supertux/menu/joystick_menu.cpp:59 msgid "" "Use manual configuration instead of SDL2's automatic GameController support" msgstr "Utiliza a configuração manual em vez do suporte ao GameController do SDL2" -#: src/supertux/menu/joystick_menu.cpp:75 +#: src/supertux/menu/joystick_menu.cpp:77 msgid "Pause/Menu" -msgstr "Pausa/Menu" +msgstr "Pausa / menu" -#: src/supertux/menu/joystick_menu.cpp:91 +#: src/supertux/menu/joystick_menu.cpp:93 msgid "No Joysticks found" -msgstr "Não foram encontrados Joysticks" +msgstr "Não foram encontrados joysticks" -#: src/supertux/menu/joystick_menu.cpp:92 +#: src/supertux/menu/joystick_menu.cpp:94 msgid "Scan for Joysticks" -msgstr "Procurar Joysticks" +msgstr "Procurar joysticks" -#: src/supertux/menu/joystick_menu.cpp:125 +#: src/supertux/menu/joystick_menu.cpp:127 msgid "Press Button" -msgstr "Prime o Botão" +msgstr "Prime o botão" -#: src/supertux/menu/joystick_menu.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:164 msgid "Axis " msgstr "Eixo " -#: src/supertux/menu/joystick_menu.cpp:165 +#: src/supertux/menu/joystick_menu.cpp:167 msgid "-" msgstr "-" -#: src/supertux/menu/joystick_menu.cpp:167 +#: src/supertux/menu/joystick_menu.cpp:169 msgid "+" msgstr "+" -#: src/supertux/menu/joystick_menu.cpp:174 +#: src/supertux/menu/joystick_menu.cpp:176 msgid "X2" msgstr "X2" -#: src/supertux/menu/joystick_menu.cpp:176 +#: src/supertux/menu/joystick_menu.cpp:178 msgid "Y2" msgstr "Y2" -#: src/supertux/menu/joystick_menu.cpp:189 +#: src/supertux/menu/joystick_menu.cpp:191 msgid "Hat Up" -msgstr "Inclinar para Cima" +msgstr "Inclinar para cima" -#: src/supertux/menu/joystick_menu.cpp:193 +#: src/supertux/menu/joystick_menu.cpp:195 msgid "Hat Down" -msgstr "Inclinar para Baixo" +msgstr "Inclinar para baixo" -#: src/supertux/menu/joystick_menu.cpp:197 +#: src/supertux/menu/joystick_menu.cpp:199 msgid "Hat Left" -msgstr "Inclinar para a Esquerda" +msgstr "Inclinar para a esquerda" -#: src/supertux/menu/joystick_menu.cpp:201 +#: src/supertux/menu/joystick_menu.cpp:203 msgid "Hat Right" -msgstr "Inclinar para a Direita" +msgstr "Inclinar para a direita" #: src/supertux/menu/worldmap_menu.cpp:28 msgid "Pause" @@ -2851,87 +3958,82 @@ msgstr "Pausa" #: src/supertux/menu/worldmap_menu.cpp:33 msgid "Leave World" -msgstr "Sair do Mundo" - -#: src/supertux/menu/download_dialog.cpp:27 -msgid "Abort Download" -msgstr "Abortar Descarga" +msgstr "Sair do mundo" #: src/supertux/menu/download_dialog.cpp:42 -msgid "Error:\n" -msgstr "Erro:\n" - -#: src/supertux/menu/download_dialog.cpp:96 -msgid "Close" -msgstr "Fechar" - -#: src/supertux/menu/cheat_menu.cpp:33 -msgid "Bonus: Fire x 64" -msgstr "Bónus: Fogo x 64" - -#: src/supertux/menu/cheat_menu.cpp:34 -msgid "Bonus: Ice x 64" -msgstr "Bónus: Gelo x 64" - -#: src/supertux/menu/cheat_menu.cpp:35 -msgid "Bonus: Air x 64" -msgstr "Bónus: Ar x 64" +msgid "Abort Download" +msgstr "Abortar descarga" -#: src/supertux/menu/cheat_menu.cpp:36 -msgid "Bonus: Earth x 64" -msgstr "Bónus: Terra x 64" +#: src/supertux/menu/download_dialog.cpp:59 +#, c++-format +msgid "" +"Error:\n" +"{}" +msgstr "Erro:\n{}" -#: src/supertux/menu/cheat_menu.cpp:37 +#: src/supertux/menu/cheat_menu.cpp:38 msgid "Bonus: Star" -msgstr "Bónus: Estrela" +msgstr "Bónus: estrela" -#: src/supertux/menu/cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:39 msgid "Shrink Tux" msgstr "Encolher o Tux" -#: src/supertux/menu/cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:40 msgid "Kill Tux" msgstr "Matar o Tux" +#: src/supertux/menu/cheat_menu.cpp:55 +msgid "Prevent Death" +msgstr "Prevenir a morte" + +#: src/supertux/menu/addon_file_install_menu.cpp:32 +msgid "Install Add-on from file" +msgstr "Instalar a extensão a partir do ficheiro" + +#: src/supertux/menu/addon_file_install_menu.cpp:34 +msgid "Drag and drop add-on ZIP archive" +msgstr "Arrastar e largar o ficheiro ZIP da extensão" + #: src/supertux/menu/particle_editor_menu.cpp:32 msgid "Particle Editor" -msgstr "Editor de Partículas" +msgstr "Editor de partículas" #: src/supertux/menu/particle_editor_menu.cpp:36 -#: src/supertux/menu/editor_menu.cpp:45 +#: src/supertux/menu/editor_menu.cpp:60 msgid "Return to Editor" -msgstr "Voltar ao Editor" +msgstr "Voltar ao editor" #: src/supertux/menu/particle_editor_menu.cpp:37 msgid "New Particle Config" -msgstr "Nova Configuração de Partículas" +msgstr "Nova configuração de partículas" #: src/supertux/menu/particle_editor_menu.cpp:38 msgid "Save Particle Config" -msgstr "Guardar Configuração de Partículas" +msgstr "Guardar configuração de partículas" #: src/supertux/menu/particle_editor_menu.cpp:39 msgid "Save Particle Config as..." -msgstr "Guardar Configuração de Partículas como..." +msgstr "Guardar configuração de partículas como..." #: src/supertux/menu/particle_editor_menu.cpp:40 msgid "Load Another Particle Config" -msgstr "Carregar Outra Configuração de Partículas" +msgstr "Carregar outra configuração de partículas" #: src/supertux/menu/particle_editor_menu.cpp:44 msgid "Open Particle Directory" -msgstr "Abrir Diretório de Partículas" +msgstr "Abrir diretório de partículas" #: src/supertux/menu/particle_editor_menu.cpp:45 -#: src/supertux/menu/editor_menu.cpp:88 +#: src/supertux/menu/editor_menu.cpp:118 msgid "Keyboard Shortcuts" -msgstr "Atalhos de Teclado" +msgstr "Atalhos de teclado" #: src/supertux/menu/particle_editor_menu.cpp:49 msgid "Exit Particle Editor" -msgstr "Sair do Editor de Partículas" +msgstr "Sair do editor de partículas" -#: src/supertux/menu/particle_editor_menu.cpp:120 +#: src/supertux/menu/particle_editor_menu.cpp:121 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -2941,28 +4043,28 @@ msgid "" "Ctrl+O = Open\n" "Ctrl+Z = Undo\n" "Ctrl+Y = Redo" -msgstr "Atalhos de Teclado:\n---------------------\nEsc = Abrir Menu\nCtrl+S = Guardar\nCtrl+Shift+S = Guardar como\nCtrl+O = Abrir\nCtrl+Z = Anular\nCtrl+Y = Refazer" +msgstr "Atalhos de teclado:\n---------------------\nEsc = Abrir menu\nCtrl+S = Guardar\nCtrl+Shift+S = Guardar como\nCtrl+O = Abrir\nCtrl+Z = Anular\nCtrl+Y = Refazer" -#: src/supertux/menu/particle_editor_menu.cpp:121 -#: src/supertux/menu/editor_menu.cpp:176 +#: src/supertux/menu/particle_editor_menu.cpp:122 +#: src/supertux/menu/editor_menu.cpp:206 msgid "Got it!" msgstr "Entendido!" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:86 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Worldmap Settings" -msgstr "Opções do Mapa-mundo" +msgstr "Opções do mapa-mundo" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:86 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Level Settings" -msgstr "Opções do Nível" +msgstr "Opções do nível" #: src/supertux/menu/editor_level_menu.cpp:34 msgid "Author" msgstr "Autor" -#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1166 +#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1253 msgid "Contact" msgstr "Contacto" @@ -2972,15 +4074,15 @@ msgstr "Licença" #: src/supertux/menu/editor_level_menu.cpp:37 msgid "Level Note" -msgstr "Nota do Nível" +msgstr "Nota do nível" #: src/supertux/menu/editor_level_menu.cpp:38 msgid "Tileset" -msgstr "Set de peças (tileset)" +msgstr "Conjunto de peças (tileset)" #: src/supertux/menu/editor_level_menu.cpp:41 msgid "Target Time" -msgstr "Tempo Alvo" +msgstr "Tempo-alvo" #: src/supertux/menu/editor_level_menu.cpp:83 msgid "Please enter a name for this level." @@ -2994,107 +4096,137 @@ msgstr "Por favor, introduz o autor deste nível." msgid "Please enter a license for this level." msgstr "Por favor, introduz uma licença para este nível." -#: src/supertux/menu/editor_menu.cpp:38 +#: src/supertux/menu/editor_menu.cpp:53 msgid "tiny tile (4px)" msgstr "peça minúscula (4px)" -#: src/supertux/menu/editor_menu.cpp:39 +#: src/supertux/menu/editor_menu.cpp:54 msgid "small tile (8px)" msgstr "peça pequena (8px)" -#: src/supertux/menu/editor_menu.cpp:40 +#: src/supertux/menu/editor_menu.cpp:55 msgid "medium tile (16px)" msgstr "peça média (16px)" -#: src/supertux/menu/editor_menu.cpp:41 +#: src/supertux/menu/editor_menu.cpp:56 msgid "big tile (32px)" msgstr "peça grande (32px)" -#: src/supertux/menu/editor_menu.cpp:46 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Worldmap" -msgstr "Guardar Mapa-mundo" +msgstr "Guardar mapa-mundo" -#: src/supertux/menu/editor_menu.cpp:46 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Level" -msgstr "Guardar Nível" +msgstr "Guardar nível" -#: src/supertux/menu/editor_menu.cpp:55 +#: src/supertux/menu/editor_menu.cpp:65 msgid "Test Level" -msgstr "Testar Nível" +msgstr "Testar nível" -#: src/supertux/menu/editor_menu.cpp:59 +#: src/supertux/menu/editor_menu.cpp:67 msgid "Test Worldmap" -msgstr "Testar Mapa-mundo" +msgstr "Testar mapa-mundo" -#: src/supertux/menu/editor_menu.cpp:62 +#: src/supertux/menu/editor_menu.cpp:72 msgid "Share Level" -msgstr "Partilhar Nível" +msgstr "Partilhar nível" -#: src/supertux/menu/editor_menu.cpp:64 +#: src/supertux/menu/editor_menu.cpp:74 msgid "Package Add-On" -msgstr "Empacotar Extensão" +msgstr "Empacotar extensão" -#: src/supertux/menu/editor_menu.cpp:66 +#: src/supertux/menu/editor_menu.cpp:76 msgid "Open Level Directory" -msgstr "Abrir Diretório de Níveis" +msgstr "Abrir diretório de níveis" -#: src/supertux/menu/editor_menu.cpp:70 +#: src/supertux/menu/editor_menu.cpp:79 msgid "Edit Another Level" -msgstr "Editar Outro Nível" +msgstr "Editar outro nível" -#: src/supertux/menu/editor_menu.cpp:73 +#: src/supertux/menu/editor_menu.cpp:81 msgid "Edit Another World" -msgstr "Editar Outro Mundo" +msgstr "Editar outro mundo" + +#: src/supertux/menu/editor_menu.cpp:86 +msgid "Convert all tiles in the level using converters." +msgstr "Converte todas as peças do nível utilizando conversores." -#: src/supertux/menu/editor_menu.cpp:77 +#: src/supertux/menu/editor_menu.cpp:90 msgid "Grid Size" -msgstr "Tamanho da Grelha" +msgstr "Tamanho da grelha" -#: src/supertux/menu/editor_menu.cpp:78 +#: src/supertux/menu/editor_menu.cpp:91 msgid "Show Grid" -msgstr "Mostrar Grelha" +msgstr "Mostrar grelha" -#: src/supertux/menu/editor_menu.cpp:79 +#: src/supertux/menu/editor_menu.cpp:92 msgid "Grid Snapping" -msgstr "Alinhar na Grelha" +msgstr "Alinhar na grelha" -#: src/supertux/menu/editor_menu.cpp:80 +#: src/supertux/menu/editor_menu.cpp:93 msgid "Render Background" -msgstr "Renderizar Fundo" +msgstr "Renderizar fundo" -#: src/supertux/menu/editor_menu.cpp:81 +#: src/supertux/menu/editor_menu.cpp:94 msgid "Render Light" -msgstr "Renderizar Luz" +msgstr "Renderizar luz" -#: src/supertux/menu/editor_menu.cpp:82 +#: src/supertux/menu/editor_menu.cpp:95 msgid "Autotile Mode" -msgstr "Modo Autopeça" +msgstr "Modo autopeça" -#: src/supertux/menu/editor_menu.cpp:83 +#: src/supertux/menu/editor_menu.cpp:96 msgid "Enable Autotile Help" -msgstr "Ativar Ajuda do Autopeça" +msgstr "Ativar ajuda do autopeça" + +#: src/supertux/menu/editor_menu.cpp:97 +msgid "Enable Object Undo Tracking" +msgstr "Ativar o seguimento de desfazer objeto" + +#: src/supertux/menu/editor_menu.cpp:100 +msgid "Undo Stack Size" +msgstr "Tamanho da pilha de desfazer" -#: src/supertux/menu/editor_menu.cpp:84 +#: src/supertux/menu/editor_menu.cpp:102 msgid "Autosave Frequency" -msgstr "Frequência de Gravação Automática" +msgstr "Frequência de guardar automático" -#: src/supertux/menu/editor_menu.cpp:91 +#: src/supertux/menu/editor_menu.cpp:108 +msgid "Check for Deprecated Tiles" +msgstr "Verificar a existência de peças obsoletas" + +#: src/supertux/menu/editor_menu.cpp:109 +msgid "Check if any deprecated tiles are currently present in the level." +msgstr "Verifica se alguma peça obsoleta está atualmente presente no nível." + +#: src/supertux/menu/editor_menu.cpp:110 +msgid "Show Deprecated Tiles" +msgstr "Mostrar peças obsoletas" + +#: src/supertux/menu/editor_menu.cpp:111 +msgid "" +"Indicate all deprecated tiles on the active tilemap, without the need of " +"hovering over." +msgstr "Indica todas as peças obsoletas no mapa de peças ativo, sem necessidade de passar o rato por cima." + +#: src/supertux/menu/editor_menu.cpp:121 msgid "Exit Level Editor" -msgstr "Sair do Editor de Níveis" +msgstr "Sair do editor de níveis" -#: src/supertux/menu/editor_menu.cpp:140 +#: src/supertux/menu/editor_menu.cpp:170 msgid "Do you want to package this world as an add-on?" msgstr "Queres empacotar este mundo como uma extensão?" -#: src/supertux/menu/editor_menu.cpp:163 +#: src/supertux/menu/editor_menu.cpp:196 msgid "" "We encourage you to share your levels in the SuperTux forum.\n" "To find your level, click the\n" "\"Open Level directory\" menu item.\n" "Do you want to go to the forum now?" -msgstr "Encorajamos-te a partilhar os teus níveis no fórum do SuperTux.\nPara encontrares o teu nível, clica em\n\"Abrir Diretório de Níveis\" no menu.\nDesejas ir para o fórum agora?" +msgstr "Encorajamos-te a partilhar os teus níveis no fórum do SuperTux.\nPara encontrares o teu nível, clica em\n\"Abrir diretório de níveis\" no menu.\nDesejas ir para o fórum agora?" -#: src/supertux/menu/editor_menu.cpp:175 +#: src/supertux/menu/editor_menu.cpp:205 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -3105,57 +4237,220 @@ msgid "" "Ctrl+Y = Redo\n" "F6 = Render Light\n" "F7 = Grid Snapping\n" -"F8 = Show Grid" -msgstr "Atalhos de Teclado:\n---------------------\nEsc = Abrir Menu\nCtrl+S = Guardar\nCtrl+T = Testar\nCtrl+Z = Anular\nCtrl+Y = Refazer\nF6 = Renderizar Luz\nF7 = Alinhar na Grelha\nF8 = Mostrar Grelha" +"F8 = Show Grid\n" +"Ctrl++ or Ctrl+Scroll Up = Zoom In\n" +"Ctrl+- or Ctrl+Scroll Down = Zoom Out\n" +"Ctrl+D = Reset Zoom\n" +"\n" +"Scripting Shortcuts:\n" +" ------------- \n" +"Home = Go to beginning of line\n" +"End = Go to end of line\n" +"Left arrow = Go back in text\n" +"Right arrow = Go forward in text\n" +"Backspace = Delete in front of text cursor\n" +"Delete = Delete behind text cursor\n" +"Ctrl+X = Cut whole line\n" +"Ctrl+C = Copy whole line\n" +"Ctrl+V = Paste\n" +"Ctrl+D = Duplicate line\n" +"Ctrl+Z = Undo\n" +"Ctrl+Y = Redo" +msgstr "Atalhos de teclado:\n---------------------\nEsc = Abrir menu\nCtrl+S = Guardar\nCtrl+T = Testae\nCtrl+Z = Desfazer\nCtrl+Y = Refazer\nF6 = Renderizar luz\nF7 = Atração à grelha\nF8 = Mostrar grelha\nCtrl++ ou Ctrl+Scroll Up = Ampliar\nCtrl+- ou Ctrl+Scroll Down = Diminuir\nCtrl+D = Repor o zoom\n\nAtalhos de scripting:\n ------------- \nHome = Ir para o início da linha\nEnd = Ir para o fim da linha\nSeta para a esquerda = Retroceder no texto\nSeta para a direita = Avançar no texto\nBackspace = Apagar à frente do cursor de texto\nDelete = Apagar atrás do cursor de texto\nCtrl+X = Cortar linha inteira\nCtrl+C = Copiar linha inteira\nCtrl+V = Colar\nCtrl+D = Duplicar linha\nCtrl+Z = Desfazer\nCtrl+Y = Refazer" + +#: src/supertux/menu/editor_menu.cpp:232 +msgid "Deprecated tiles are still present in the level." +msgstr "As peças obsoletas ainda estão presentes no nível." + +#: src/supertux/menu/editor_menu.cpp:239 +msgid "Do you want to show all deprecated tiles on active tilemaps?" +msgstr "Pretendes mostrar todas as peças obsoletas nos mapas de peças ativos?" + +#: src/supertux/menu/editor_menu.cpp:246 +msgid "There are no more deprecated tiles in the level!" +msgstr "Já não existem peças obsoletas no nível!" + +#: src/supertux/menu/multiplayer_player_menu.cpp:40 +msgid "Play with the keyboard" +msgstr "Jogar com o teclado" + +#: src/supertux/menu/multiplayer_player_menu.cpp:58 +msgid "Remove Player" +msgstr "Remover jogador" + +#: src/supertux/menu/multiplayer_player_menu.cpp:82 +msgid "Respawn Player" +msgstr "Renascer jogador" + +#: src/supertux/menu/multiplayer_player_menu.cpp:108 +msgid "Spawn Player" +msgstr "Criar jogador" + +#: src/supertux/menu/multiplayer_player_menu.cpp:136 +msgid "Controllers" +msgstr "Controlos" -#: src/supertux/menu/editor_delete_level_menu.cpp:53 -msgid "You cannot delete level that you are editing!" -msgstr "Não podes eliminar o nível que estás a editar!" +#: src/supertux/menu/multiplayer_player_menu.cpp:152 +msgid "" +"This controller does not support rumbling;\n" +"please check the controllers manually." +msgstr "Este controlador não suporta vibração;\nverifica os controladores manualmente." + +#: src/supertux/menu/multiplayer_player_menu.cpp:157 +msgid "" +"This SuperTux build does not support rumbling\n" +"controllers; please check the controllers manually." +msgstr "Esta versão do SuperTux não suporta controladores com vibração\npor favor verifica os controladores manualmente." + +#: src/supertux/menu/multiplayer_player_menu.cpp:184 +msgid "" +"This joystick does not support rumbling;\n" +"please check the joysticks manually." +msgstr "Este joystick não suporta vibração\npor favor verifica os joysticks manualmente." + +#: src/supertux/menu/multiplayer_player_menu.cpp:189 +msgid "" +"This SuperTux build does not support rumbling\n" +"joysticks; please check the joysticks manually." +msgstr "Esta versão do SuperTux não suporta joysticks com vibração\npor favor verifica os joysticks manualmente." + +#: src/supertux/menu/editor_delete_level_menu.cpp:59 +msgid "No levels available" +msgstr "Não há níveis disponíveis" -#: src/supertux/levelintro.cpp:136 -#, c-format -msgid "contributed by %s" -msgstr "criado por %s" +#: src/supertux/menu/editor_delete_level_menu.cpp:79 +msgid "You cannot delete the level that you are editing!" +msgstr "Não é possível eliminar o nível que estás a editar!" -#: src/supertux/levelintro.cpp:169 +#: src/supertux/menu/editor_delete_level_menu.cpp:82 +#, c++-format +msgid "You are about to delete level \"{}\". Are you sure?" +msgstr "Estás prestes a eliminar o nível \"{}\". Tens a certeza?" + +#: src/supertux/levelintro.cpp:137 +#, c++-format +msgid "contributed by {}" +msgstr "feito por {}" + +#: src/supertux/levelintro.cpp:184 msgid "Badguys killed" msgstr "Mauzões mortos" -#: src/supertux/levelintro.cpp:177 +#: src/supertux/levelintro.cpp:192 msgid "Best time" msgstr "Melhor tempo" -#: src/supertux/levelintro.cpp:181 +#: src/supertux/levelintro.cpp:196 msgid "Level target time" msgstr "Objetivo de tempo do nível" -#: src/supertux/tile_set.cpp:118 +#: src/supertux/tile_set.cpp:113 msgid "Others" msgstr "Outros" -#: src/supertux/moving_object.cpp:55 +#: src/supertux/direction.cpp:67 +msgid "up" +msgstr "cima" + +#: src/supertux/direction.cpp:69 +msgid "down" +msgstr "baixo" + +#: src/supertux/moving_object.cpp:63 msgid "Region" msgstr "Região" -#: src/supertux/main.cpp:563 +#: src/supertux/main.cpp:801 +#, c++-format +msgid "New release: SuperTux v{}!" +msgstr "Nova versão: SuperTux v{}!" + +#: src/supertux/main.cpp:804 +#, c++-format msgid "" -"The UBports version is under heavy development!\n" -"If you encounter issues, PLEASE contact the maintainter\n" -"at https://github.com/supertux/supertux/issues or on the\n" -"Open Store's Telegram at https://open-store.io/telegram" -msgstr "A versão UBports está sob desenvolvimento pesado!\nSe encontrares problemas, POR FAVOR contacta o mantenedor\nem https://github.com/supertux/supertux/issues ou no\nTelegram da Open Store em https://open-store.io/telegram" +"A new release of SuperTux (v{}) is available!\n" +"For more information, you can visit the SuperTux website.\n" +"\n" +"Do you want to visit the website now?" +msgstr "Está disponível uma nova versão do SuperTux (v{})!\nPara mais informações, podes visitar o site do SuperTux.\n\nQueres visitar o site agora?" + +#: src/supertux/main.cpp:815 +msgid "Checking for new releases..." +msgstr "A verificar se há novas versões..." #: src/control/joystick_config.cpp:85 msgid "Joystick Mappings" -msgstr "Atribuições do Joystick" +msgstr "Mapeamentos de joystick" + +#: src/worldmap/sprite_change.cpp:91 +msgid "Stay action" +msgstr "Ação imóvel" + +#: src/worldmap/sprite_change.cpp:92 +msgid "Initial stay action" +msgstr "Ação imóvel inicial" + +#: src/worldmap/sprite_change.cpp:93 +msgid "Stay group" +msgstr "Grupo imóvel" + +#: src/worldmap/sprite_change.cpp:94 +msgid "Change on touch" +msgstr "Alterar ao tocar" + +#: src/worldmap/special_tile.hpp:36 +msgid "Special Tile" +msgstr "Peça especial" -#: src/worldmap/worldmap_parser.cpp:167 +#: src/worldmap/level_tile.hpp:36 src/worldmap/level_tile.cpp:161 +msgid "Level" +msgstr "Nível" + +#: src/worldmap/teleporter.cpp:50 +msgid "Automatic" +msgstr "Automático" + +#: src/worldmap/teleporter.cpp:51 +msgid "Target worldmap" +msgstr "Mapa-mundo alvo" + +#: src/worldmap/sprite_change.hpp:35 +msgid "Sprite Change" +msgstr "Alteração de imagem" + +#: src/worldmap/special_tile.cpp:75 +msgid "Show message" +msgstr "Mostrar mensagem" + +#: src/worldmap/level_tile.cpp:84 msgid "" -msgstr "" +msgstr "" + +#: src/worldmap/level_tile.cpp:162 +msgid "Outro script" +msgstr "Outro script" + +#: src/worldmap/level_tile.cpp:163 +msgid "Auto play" +msgstr "Iniciar automaticamente o nível" + +#: src/worldmap/level_tile.cpp:164 +msgid "Title colour" +msgstr "Cor do título do mapa" + +#: src/worldmap/teleporter.hpp:34 +msgid "Teleporter" +msgstr "Teleportador" + +#: src/editor/tip.cpp:80 +msgid "" +"This object's current functionality is deprecated.\n" +"Updating to get its latest functionality is recommended." +msgstr "A funcionalidade atual deste objeto está obsoleta.\nRecomenda-se a atualização para obter a sua funcionalidade mais recente." #: src/editor/node_marker.cpp:122 msgid "Path Node" -msgstr "Nó do Caminho" +msgstr "Nó do caminho" #: src/editor/node_marker.cpp:123 msgid "Press CTRL to move Bezier handles" @@ -3165,85 +4460,82 @@ msgstr "Prime CTRL para mover as alças de Bézier" msgid "Easing" msgstr "Suavização" -#: src/editor/object_settings.cpp:119 -msgid "up" -msgstr "cima" - -#: src/editor/object_settings.cpp:119 -msgid "down" -msgstr "baixo" - -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "West" msgstr "Oeste" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "East" msgstr "Este" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "North" msgstr "Norte" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "South" msgstr "Sul" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "One shot" msgstr "1 vez" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "Ping-pong" msgstr "Pingue-pongue" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "Circular" msgstr "Circular" -#: src/editor/object_settings.cpp:144 -msgid "Unordered" -msgstr "Não ordenado" +#: src/editor/layers_widget.cpp:331 +#, c++-format +msgid "Sector: {}" +msgstr "Sector: {}" -#: src/editor/object_option.cpp:85 +#: src/editor/object_option.cpp:92 msgid "true" msgstr "sim" -#: src/editor/object_option.cpp:85 +#: src/editor/object_option.cpp:92 msgid "false" msgstr "não" -#: src/editor/object_option.cpp:271 src/editor/object_option.cpp:320 +#: src/editor/object_option.cpp:308 src/editor/object_option.cpp:356 msgid "invalid" msgstr "inválido" -#: src/editor/object_option.cpp:580 +#: src/editor/object_option.cpp:665 +msgid "Scale X" +msgstr "Escala X" + +#: src/editor/object_option.cpp:666 +msgid "Scale Y" +msgstr "Escala Y" + +#: src/editor/object_option.cpp:667 +msgid "Offset X" +msgstr "Desvio X" + +#: src/editor/object_option.cpp:668 +msgid "Offset Y" +msgstr "Desvio Y" + +#: src/editor/object_option.cpp:672 src/editor/object_menu.cpp:67 msgid "Remove" msgstr "Remover" -#: src/editor/object_option.cpp:597 +#: src/editor/object_option.cpp:689 msgid "Test from here" msgstr "Testar daqui" -#: src/editor/object_option.cpp:614 +#: src/editor/object_option.cpp:706 msgid "Open Particle Editor" -msgstr "Abrir Editor de Partículas" - -#: src/editor/worldmap_objects.hpp:56 src/editor/worldmap_objects.cpp:127 -msgid "Level" -msgstr "Nível" - -#: src/editor/worldmap_objects.hpp:79 -msgid "Teleporter" -msgstr "Teleportador" +msgstr "Abrir editor de partículas" -#: src/editor/worldmap_objects.hpp:119 -msgid "Sprite Change" -msgstr "Alteração de Imagem" - -#: src/editor/worldmap_objects.hpp:140 -msgid "Special tile" -msgstr "Peça especial" +#: src/editor/particle_editor.cpp:114 +msgid "Change texture... ->" +msgstr "Alterar textura... ->" #: src/editor/particle_editor.cpp:126 msgid "Max amount" @@ -3307,11 +4599,11 @@ msgstr "Destruir" #: src/editor/particle_editor.cpp:215 msgid "Stick to surface" -msgstr "Grudar à superfície" +msgstr "Colar à superfície" #: src/editor/particle_editor.cpp:216 msgid "Stick and stay" -msgstr "Grudar e ficar" +msgstr "Colar e ficar" #: src/editor/particle_editor.cpp:217 msgid "No collision" @@ -3325,29 +4617,76 @@ msgstr "Destruir sempre" msgid "Offscreen mode" msgstr "Modo fora de ecrã" -#: src/editor/particle_editor.cpp:765 +#: src/editor/particle_editor.cpp:229 +msgid "Clear" +msgstr "Limpar" + +#: src/editor/particle_editor.cpp:245 +msgid "<- General settings" +msgstr "<- Definições gerais" + +#: src/editor/particle_editor.cpp:255 +msgid "Likeliness" +msgstr "Afinidade" + +#: src/editor/particle_editor.cpp:266 +msgid "Color (RGBA)" +msgstr "Cor (RGBA)" + +#: src/editor/particle_editor.cpp:311 +msgid "Scale (x, y)" +msgstr "Escala (x, y)" + +#: src/editor/particle_editor.cpp:332 +msgid "Hitbox scale (x, y)" +msgstr "Escala da caixa de impacto (x, y)" + +#: src/editor/particle_editor.cpp:353 +msgid "Hitbox offset relative to scale" +msgstr "Desvio da caixa de impacto em relação à escala" + +#: src/editor/particle_editor.cpp:372 +msgid "Change texture..." +msgstr "Alterar textura..." + +#: src/editor/particle_editor.cpp:766 msgid "" "This particle configuration contains unsaved changes,\n" "do you want to save?" msgstr "As configurações desta partícula contêm alterações não guardadas;\nqueres guardar?" -#: src/editor/particle_editor.cpp:773 +#: src/editor/particle_editor.cpp:774 msgid "Save as" msgstr "Guardar como" -#: src/editor/editor.cpp:566 +#: src/editor/editor.cpp:577 +msgid "" +"This level contains deprecated tiles.\n" +"It is strongly recommended to replace all deprecated tiles\n" +"to avoid loss of compatibility in future versions." +msgstr "Este nível contém peças obsoletas.\nRecomenda-se vivamente a substituição de todas as peças obsoletas\npara evitar a perda de compatibilidade em versões futuras." + +#: src/editor/editor.cpp:579 +msgid "Tip: Turn on \"Show Deprecated Tiles\" from the level editor menu." +msgstr "Dica: ativa a opção \"Mostrar peças obsoletas\" no menu do editor de níveis." + +#: src/editor/editor.cpp:626 msgid "" "Don't forget that your levels and assets\n" "aren't saved between sessions!\n" "If you want to keep your levels, download them\n" "from the \"Manage Assets\" menu." -msgstr "Não te esqueças de que os teus níveis e recursos\nnão são gravados entre sessões!\nSe quiseres manter os teus níveis, descarrega-os\nno menu \"Gerir Recursos\"." +msgstr "Não te esqueças de que os teus níveis e recursos\nnão são guardados entre sessões!\nSe quiseres manter os teus níveis, descarrega-os\nno menu \"Gerir recursos\"." -#: src/editor/editor.cpp:582 +#: src/editor/editor.cpp:661 msgid "This level contains unsaved changes, do you want to save?" msgstr "Este nível contém alterações não guardadas; queres guardar?" -#: src/editor/editor.cpp:622 +#: src/editor/editor.cpp:662 +msgid "This level may contain unsaved changes, do you want to save?" +msgstr "Este nível pode conter alterações não guardadas, pretendes guardar?" + +#: src/editor/editor.cpp:797 msgid "" "Some obsolete add-ons are still active\n" "and might cause collisions with default Super Tux structure.\n" @@ -3355,103 +4694,81 @@ msgid "" "Disabling these add-ons will not delete your game progress." msgstr "Ainda estão disponíveis algumas extensões antigas\nque podem colidir com a estrutura padrão do SuperTux.\nAinda podes ativar estas extensões no menu.\nDesativar estas extensões não eliminará o teu progresso no jogo." -#: src/editor/editor.cpp:625 +#: src/editor/editor.cpp:800 msgid "Disable add-ons" msgstr "Desativar extensões" -#: src/editor/editor.cpp:630 +#: src/editor/editor.cpp:805 msgid "Ignore (not advised)" msgstr "Ignorar (não recomendado)" -#: src/editor/editor.cpp:634 +#: src/editor/editor.cpp:809 msgid "Leave editor" msgstr "Sair do editor" -#: src/editor/editor.cpp:853 +#: src/editor/editor.cpp:1023 msgid "" "Couldn't find a \"main\" sector.\n" "Please change the name of the sector where\n" "you'd like the player to start to \"main\"" msgstr "Não foi possível encontrar um setor \"principal\".\nPor favor, altera o nome do setor onde queres\nque o jogador comece para \"main\"" -#: src/editor/editor.cpp:857 +#: src/editor/editor.cpp:1027 msgid "" "Couldn't find a \"main\" spawnpoint.\n" " Please change the name of the spawnpoint where\n" "you'd like the player to start to \"main\"" msgstr "Não foi possível encontrar um ponto de partida \"principal\".\n Por favor, altera o nome do ponto de partida onde queres\nque o jogador comece para \"main\"" -#: src/editor/worldmap_objects.cpp:128 -msgid "Outro script" -msgstr "Outro script" - -#: src/editor/worldmap_objects.cpp:129 -msgid "Auto play" -msgstr "Iniciar automaticamente o nível" - -#: src/editor/worldmap_objects.cpp:131 -msgid "Title colour" -msgstr "Cor do título do mapa" - -#: src/editor/worldmap_objects.cpp:173 -msgid "Automatic" -msgstr "Automático" - -#: src/editor/worldmap_objects.cpp:175 -msgid "Target worldmap" -msgstr "Mapa-mundo alvo" - -#: src/editor/worldmap_objects.cpp:238 -msgid "Stay action" -msgstr "Ação imóvel" - -#: src/editor/worldmap_objects.cpp:239 -msgid "Initial stay action" -msgstr "Ação imóvel inicial" - -#: src/editor/worldmap_objects.cpp:240 -msgid "Stay group" -msgstr "Grupo imóvel" - -#: src/editor/worldmap_objects.cpp:241 -msgid "Change on touch" -msgstr "Alterar ao tocar" - -#: src/editor/worldmap_objects.cpp:271 -msgid "Show message" -msgstr "Mostrar mensagem" +#: src/editor/object_menu.cpp:60 +msgid "Patch Notes" +msgstr "Notas de atualização" -#: src/editor/worldmap_objects.cpp:273 -msgid "Invisible" -msgstr "Invisível" - -#: src/editor/overlay_widget.cpp:1297 +#: src/editor/object_menu.cpp:84 +msgid "" +"This will update the object to its latest functionality.\n" +"Check the \"Patch Notes\" for more information.\n" +"\n" +"Keep in mind this is very likely to break the proper behaviour of the object.\n" +"Make sure to re-check any behaviour, related to the object." +msgstr "Isto irá atualizar o objeto para a sua funcionalidade mais recente.\nConsulta as \"Notas de atualização\" para obteres mais informações.\n\nNão te esqueças que é muito provável que este procedimento interrompa o comportamento correto do objeto.\nCertifica-te que voltas a verificar qualquer comportamento relacionado com o objeto." + +#: src/editor/object_menu.cpp:98 +#, c++-format +msgid "Patch notes for v{}:" +msgstr "Notas de atualização de v{}:" + +#: src/editor/overlay_widget.cpp:1062 +msgid "Cannot select deprecated tiles" +msgstr "Não é possível selecionar peças obsoletas" + +#: src/editor/overlay_widget.cpp:1567 msgid "Autotile mode is on" -msgstr "Modo Autopeça está ativo" +msgstr "Modo autopeça está ativo" -#: src/editor/overlay_widget.cpp:1299 +#: src/editor/overlay_widget.cpp:1571 msgid "Hold Ctrl to enable autotile" -msgstr "Segura Ctrl para ativar o Autopeça" +msgstr "Mantém premida a tecla Ctrl para ativar o autopeça" -#: src/editor/overlay_widget.cpp:1303 +#: src/editor/overlay_widget.cpp:1578 msgid "Autotile erasing mode is on" -msgstr "Modo Borracha de Autopeças está ativo" +msgstr "Modo borracha de autopeças está ativo" -#: src/editor/overlay_widget.cpp:1305 +#: src/editor/overlay_widget.cpp:1582 msgid "Selected tile isn't autotileable" -msgstr "Peça selecionada incompatível com Autopeça" +msgstr "Peça selecionada incompatível com autopeça" -#: src/editor/overlay_widget.cpp:1308 +#: src/editor/overlay_widget.cpp:1587 msgid "Hold Ctrl to enable autotile erasing" -msgstr "Segura Ctrl para ativar a borracha de Autopeças" +msgstr "Mantém premida a tecla Ctrl para ativar a borracha de autopeças" #: data//credits.stxt:25 msgid "Current SuperTux Team" -msgstr "Atual Equipa do SuperTux" +msgstr "Atual equipa do SuperTux" #: data//credits.stxt:30 -msgid "Programming, project lead ad interim" -msgstr "Programação, líder interino do projeto" +msgid "Maintainer, Programming" +msgstr "Manutenção, Programação" #: data//credits.stxt:35 msgid "Graphics, Level Design, Story" @@ -3461,12 +4778,12 @@ msgstr "Gráficos, Design de Níveis, Estória" msgid "Level Design, Story, Optimisation, Coordination" msgstr "Design de Níveis, Estória, Otimização, Coordenação" -#: data//credits.stxt:45 data//credits.stxt:105 data//credits.stxt:191 -#: data//credits.stxt:519 +#: data//credits.stxt:45 data//credits.stxt:120 data//credits.stxt:206 +#: data//credits.stxt:538 msgid "Graphics" msgstr "Gráficos" -#: data//credits.stxt:50 data//credits.stxt:87 data//credits.stxt:93 +#: data//credits.stxt:50 data//credits.stxt:102 data//credits.stxt:108 msgid "Graphics, Programming, Level Design" msgstr "Gráficos, Programação, Design de Níveis" @@ -3475,256 +4792,266 @@ msgid "Features and Programming" msgstr "Recursos e Programação" #: data//credits.stxt:60 +msgid "Minor features and programming" +msgstr "Recursos menores e programação" + +#: data//credits.stxt:65 msgid "Programming, Level Updates" msgstr "Programação, Atualização de níveis" -#: data//credits.stxt:65 +#: data//credits.stxt:70 msgid "Graphics, Programming" msgstr "Gráficos, Programação" -#: data//credits.stxt:70 data//credits.stxt:135 data//credits.stxt:140 -#: data//credits.stxt:145 data//credits.stxt:150 data//credits.stxt:165 -#: data//credits.stxt:170 data//credits.stxt:515 data//credits.stxt:527 +#: data//credits.stxt:75 data//credits.stxt:85 data//credits.stxt:150 +#: data//credits.stxt:155 data//credits.stxt:160 data//credits.stxt:165 +#: data//credits.stxt:180 data//credits.stxt:185 data//credits.stxt:534 +#: data//credits.stxt:546 msgid "Programming" msgstr "Programação" -#: data//credits.stxt:76 +#: data//credits.stxt:80 data//credits.stxt:266 +msgid "Level Design" +msgstr "Design de Níveis" + +#: data//credits.stxt:91 msgid "Original Developers" msgstr "Criadores Originais" -#: data//credits.stxt:81 +#: data//credits.stxt:96 msgid "Original Developer" msgstr "Criador Original" -#: data//credits.stxt:99 +#: data//credits.stxt:114 msgid "Music, Level Design" msgstr "Música, Design de Níveis" -#: data//credits.stxt:111 +#: data//credits.stxt:126 msgid "Programming, Graphics, Level Design" msgstr "Programação, Gráficos, Design de Níveis" -#: data//credits.stxt:117 +#: data//credits.stxt:132 msgid "Programming, Level Design" msgstr "Programação, Design de Níveis" -#: data//credits.stxt:123 +#: data//credits.stxt:138 msgid "Graphics, Story" msgstr "Gráficos, Estória" -#: data//credits.stxt:129 +#: data//credits.stxt:144 msgid "Programming, Documentation" msgstr "Programação, Documentação" -#: data//credits.stxt:155 +#: data//credits.stxt:170 msgid "Coordination" msgstr "Coordenação" -#: data//credits.stxt:160 +#: data//credits.stxt:175 msgid "Programming, \"Flexlay\" Level editor" msgstr "Programação, Editor do nível \"Flexlay\"" -#: data//credits.stxt:175 +#: data//credits.stxt:190 msgid "Windows build fixes" msgstr "Correções nos lançamentos para Windows" -#: data//credits.stxt:180 +#: data//credits.stxt:195 msgid "Packaging, Nightly builds" msgstr "Empacotamento, Lançamentos noturnos" -#: data//credits.stxt:185 +#: data//credits.stxt:200 msgid "Translation Guru (and many details anyone else could have done)" msgstr "Guru da Tradução (e muitos detalhes que qualquer um podia ter feito)" -#: data//credits.stxt:251 -msgid "Level Design" -msgstr "Design de Níveis" - -#: data//credits.stxt:431 +#: data//credits.stxt:450 msgid "Additional contributors" msgstr "Contribuidores adicionais" -#: data//credits.stxt:436 +#: data//credits.stxt:455 msgid "Bug fixes" msgstr "Correção de Erros" -#: data//credits.stxt:440 +#: data//credits.stxt:459 msgid "Scripting functions, Level fixes" msgstr "Funções de scripts, Correção nos níveis" -#: data//credits.stxt:444 +#: data//credits.stxt:463 msgid "Code quality fixes" msgstr "Correções de qualidade do código" -#: data//credits.stxt:448 data//credits.stxt:452 data//credits.stxt:456 -#: data//credits.stxt:483 +#: data//credits.stxt:467 data//credits.stxt:471 data//credits.stxt:475 +#: data//credits.stxt:502 msgid "Various contributions" msgstr "Várias contribuições" -#: data//credits.stxt:460 +#: data//credits.stxt:479 msgid "Build issue fix" msgstr "Correção de erros nos lançamentos" -#: data//credits.stxt:464 data//credits.stxt:468 +#: data//credits.stxt:483 data//credits.stxt:487 msgid "Code contributions" msgstr "Contribuições de código" -#: data//credits.stxt:471 +#: data//credits.stxt:490 msgid "Code contribution, AppData file" msgstr "Contribuição para o código, ficheiro AppData" -#: data//credits.stxt:475 +#: data//credits.stxt:494 msgid "Bug fix" msgstr "Correção de erros" -#: data//credits.stxt:479 +#: data//credits.stxt:498 msgid "Menu reorganization" msgstr "Reorganização do menu" -#: data//credits.stxt:487 +#: data//credits.stxt:506 msgid "Fixing tile bugs" msgstr "Correção de falhas em peças" -#: data//credits.stxt:491 +#: data//credits.stxt:510 msgid "Build error fix" msgstr "Correção de erros nos lançamentos" -#: data//credits.stxt:495 +#: data//credits.stxt:514 msgid "Scripting function fix" msgstr "Correção nas funções de scripts" -#: data//credits.stxt:499 +#: data//credits.stxt:518 msgid "New features and notable updates" msgstr "Novos recursos e atualizações notórias" -#: data//credits.stxt:503 +#: data//credits.stxt:522 msgid "Support for \"glbinding\" as optional OpenGL binding" msgstr "Suporte para \"glbinding\" como ligação opcional ao OpenGL" -#: data//credits.stxt:507 +#: data//credits.stxt:526 msgid "New menu code" msgstr "Novo código do menu" -#: data//credits.stxt:511 +#: data//credits.stxt:530 msgid "Big Tux Walking Sprites improvements" -msgstr "Grandes melhorias nas Sprites do Tux a andar" +msgstr "Grandes melhorias nas imagens (sprites) do Tux a andar" -#: data//credits.stxt:523 data//credits.stxt:531 +#: data//credits.stxt:542 data//credits.stxt:550 msgid "Contrib Programming" msgstr "Contribuição de Programação" -#: data//credits.stxt:535 +#: data//credits.stxt:554 msgid "Programming, Previous Maintainer" msgstr "Programação, Responsável Anterior pela Manutenção" -#: data//credits.stxt:539 +#: data//credits.stxt:558 msgid "Various Contributions" msgstr "Várias Contribuições" -#: data//credits.stxt:543 -msgid "Minor features and programming" -msgstr "Recursos menores e programação" - -#: data//credits.stxt:547 data//credits.stxt:551 data//credits.stxt:555 -#: data//credits.stxt:559 data//credits.stxt:563 data//credits.stxt:567 -#: data//credits.stxt:571 data//credits.stxt:575 data//credits.stxt:579 -#: data//credits.stxt:583 data//credits.stxt:587 data//credits.stxt:591 +#: data//credits.stxt:562 data//credits.stxt:566 data//credits.stxt:570 +#: data//credits.stxt:574 data//credits.stxt:578 data//credits.stxt:582 +#: data//credits.stxt:586 data//credits.stxt:590 data//credits.stxt:594 +#: data//credits.stxt:598 data//credits.stxt:602 data//credits.stxt:606 +#: data//credits.stxt:610 data//credits.stxt:614 data//credits.stxt:618 +#: data//credits.stxt:622 data//credits.stxt:626 data//credits.stxt:630 +#: data//credits.stxt:634 data//credits.stxt:638 data//credits.stxt:642 +#: data//credits.stxt:646 data//credits.stxt:650 data//credits.stxt:654 +#: data//credits.stxt:658 data//credits.stxt:662 msgid "Contributions" msgstr "Contribuições" -#: data//credits.stxt:597 +#: data//credits.stxt:668 msgid "Localization" msgstr "Localização" -#: data//credits.stxt:1144 +#: data//credits.stxt:1231 msgid " Special Thanks to" msgstr "Agradecimento especial a" -#: data//credits.stxt:1149 +#: data//credits.stxt:1236 msgid "Creator of Tux, the Linux penguin" msgstr "Criador do tux, o Pinguim do Linux" -#: data//credits.stxt:1153 +#: data//credits.stxt:1240 msgid "SDL, OpenAL and OpenGL" msgstr "SDL, OpenAL e OpenGL" -#: data//credits.stxt:1154 +#: data//credits.stxt:1241 msgid "" "For making such a great gaming experience\n" " possible on Linux" msgstr "Por fazer uma fantástica experiência de jogo\n possível no Linux" -#: data//credits.stxt:1159 +#: data//credits.stxt:1246 msgid "and you, the player" msgstr "e a ti, o jogador" -#: data//credits.stxt:1160 +#: data//credits.stxt:1247 msgid "for giving this game a chance and playing it" msgstr "por dares uma oportunidade a este jogo e o jogares" -#: data//credits.stxt:1171 +#: data//credits.stxt:1258 msgid "Visit our webpage at" msgstr "Visita a nossa página web em" -#: data//credits.stxt:1180 +#: data//credits.stxt:1267 msgid "Or visit us directly at IRC:" msgstr "Ou visita-nos diretamente no IRC:" -#: data//credits.stxt:1184 +#: data//credits.stxt:1271 msgid "#supertux at web.libera.chat" msgstr "#supertux em web.libera.chat" -#: data//credits.stxt:1189 +#: data//credits.stxt:1276 msgid "Or at our Forum:" msgstr "Ou no nosso Fórum:" -#: data//credits.stxt:1198 +#: data//credits.stxt:1285 msgid "Comments, ideas and suggestions" msgstr "Comentários, ideias e sugestões" -#: data//credits.stxt:1202 +#: data//credits.stxt:1289 msgid "go to our mailing list" msgstr "consulta a nossa lista de discussão" #. l10n: typo contact -#: data//credits.stxt:1212 +#: data//credits.stxt:1299 msgid "Typographical errors can be" msgstr "Os erros tipográficos podem ser" #. l10n: typo contact -#: data//credits.stxt:1217 +#: data//credits.stxt:1304 msgid "reported to" msgstr "reportados para" #. l10n: typo contact, see -#: data//credits.stxt:1222 +#: data//credits.stxt:1309 msgid "supertux-devel@lists.lethargik.org" msgstr "supertux-devel@lists.lethargik.org" -#: data//credits.stxt:1229 +#: data//credits.stxt:1316 msgid "Want to help…" msgstr "Queres ajudar…" -#: data//credits.stxt:1234 +#: data//credits.stxt:1321 msgid "…with localization?" msgstr "...com a tradução?" -#: data//credits.stxt:1244 +#: data//credits.stxt:1331 msgid "…with something else?" msgstr "...ou com outra coisa qualquer?" -#: data//credits.stxt:1255 +#: data//credits.stxt:1342 msgid "Thank you for" msgstr "Obrigado por" -#: data//credits.stxt:1259 +#: data//credits.stxt:1346 msgid "playing" msgstr "jogares" -#: data//credits.stxt:1269 +#: data//credits.stxt:1356 msgid "Penny awaits you in warmer temperatures!" msgstr "A Penny espera-te em temperaturas mais quentes!" +#: data//images/engine/editor/objects.stoi:4 +msgid "Enemies" +msgstr "Inimigos" + #: data//images/engine/editor/objects.stoi:162 msgid "Bosses" msgstr "Chefes" @@ -3733,15 +5060,10 @@ msgstr "Chefes" msgid "Projectiles" msgstr "Projéteis" -#: data//images/engine/editor/objects.stoi:187 +#: data//images/engine/editor/objects.stoi:184 msgid "Environment" msgstr "Ambiente" -#: data//images/ice_world.strf:10 data//images/tiles.strf:28 -#: data//images/worldmap.strf:41 -msgid "Snow" -msgstr "Neve" - #: data//images/ice_world.strf:80 msgid "Ice Cave & Crystal" msgstr "Caverna de Gelo e Cristal" @@ -3750,18 +5072,13 @@ msgstr "Caverna de Gelo e Cristal" msgid "Embellishments" msgstr "Embelezamentos" -#: data//images/ice_world.strf:211 data//images/tiles.strf:386 -#: data//images/worldmap.strf:67 -msgid "Forest" -msgstr "Floresta" - #: data//images/ice_world.strf:320 msgid "Underground Forest" msgstr "Floresta Subterrânea" #: data//images/ice_world.strf:375 msgid "Trees & Bushes" -msgstr "Árvores & Arbustos" +msgstr "Árvores e arbustos" #: data//images/ice_world.strf:406 msgid "Seasonal" @@ -3779,57 +5096,61 @@ msgstr "Caminho" msgid "Water" msgstr "Água" -#: data//images/tiles.strf:176 +#: data//images/tiles.strf:252 msgid "Snow Background" msgstr "Fundo de Neve" -#: data//images/tiles.strf:231 -msgid "Snow Mountain" -msgstr "Montanha de Neve" - -#: data//images/tiles.strf:305 +#: data//images/tiles.strf:300 msgid "Crystal" msgstr "Cristal" -#: data//images/tiles.strf:532 +#: data//images/tiles.strf:539 msgid "Forest Background" msgstr "Fundo Florestal" -#: data//images/tiles.strf:663 +#: data//images/tiles.strf:690 +msgid "Corrupted Forest" +msgstr "Floresta Corrompida" + +#: data//images/tiles.strf:868 +msgid "Corrupted Background" +msgstr "Fundo Corrompido" + +#: data//images/tiles.strf:991 msgid "Block + Bonus" msgstr "Blocos + Bónus" -#: data//images/tiles.strf:715 +#: data//images/tiles.strf:1069 msgid "Pole + Signs" msgstr "Postes + Sinais" -#: data//images/tiles.strf:760 +#: data//images/tiles.strf:1113 msgid "Liquid" msgstr "Líquido" -#: data//images/tiles.strf:793 +#: data//images/tiles.strf:1131 msgid "Castle" msgstr "Castelo" -#: data//images/tiles.strf:930 data//images/worldmap.strf:199 +#: data//images/tiles.strf:1231 data//images/worldmap.strf:199 msgid "Halloween" msgstr "Dia das Bruxas" -#: data//images/tiles.strf:958 +#: data//images/tiles.strf:1272 msgid "Industrial" msgstr "Industrial" -#: data//images/tiles.strf:973 +#: data//images/tiles.strf:1287 msgid "Unisolid + Lightmap" msgstr "Unissólido + Mapa luminoso" -#: data//images/tiles.strf:1000 +#: data//images/tiles.strf:1314 msgid "Miscellaneous" msgstr "Diversos" -#: data//images/tiles.strf:1043 -msgid "Retro Snow" -msgstr "Neve retro" +#: data//images/tiles.strf:1342 +msgid "Retro Tiles" +msgstr "Peças Retro" #: data//images/worldmap.strf:24 msgid "Water paths" @@ -3842,3 +5163,19 @@ msgstr "Caminhos de castelo" #: data//images/worldmap.strf:135 msgid "Darker Forest" msgstr "Floresta Escura" + +#: data//images/converters/data.stcd:3 +msgid "Nightly Tiles" +msgstr "Mosaicos Noturnos" + +#: data//images/converters/data.stcd:5 +msgid "For levels, created in previous Nightly builds." +msgstr "Para níveis, criados em compilações noturnas anteriores." + +#: data//images/converters/data.stcd:8 +msgid "Pre-0.6.3 Crystal Tiles" +msgstr "Pre-0.6.3 Mosaicos de Cristal" + +#: data//images/converters/data.stcd:10 +msgid "For levels, created in pre-0.6.3 versions, which use crystal tiles." +msgstr "Para níveis, criados em versões anteriores à 0.6.3, que utilizam mosaicos de cristal." diff --git a/data/locale/pt_BR.po b/data/locale/pt_BR.po index 8fa6239f3b4..8d50567dd9b 100644 --- a/data/locale/pt_BR.po +++ b/data/locale/pt_BR.po @@ -7,12 +7,12 @@ # Caio César Tavares , 2021 # Daniela Ferraz , 2013 # Filipe Oliveira , 2013 -# Fúlvio Alves , 2020-2021,2023 +# Fúlvio Alves , 2020-2021,2023-2024 # Herval Ribeiro , 2006 # Jesusaves , 2019 # Jesusaves , 2020 # Jesusaves , 2016,2018 -# Jesusaves , 2021 +# Jesusaves , 2021,2024 # Joel Gil Leon , 2013 # Jesusaves , 2014-2015 # Rui , 2016,2018 @@ -22,9 +22,9 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-05-30 16:19+0200\n" "PO-Revision-Date: 2013-08-10 22:56+0000\n" -"Last-Translator: Fúlvio Alves , 2020-2021,2023\n" +"Last-Translator: Fúlvio Alves , 2020-2021,2023-2024\n" "Language-Team: Portuguese (Brazil) (http://app.transifex.com/arctic-games/supertux/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,124 +32,166 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: src/trigger/secretarea_trigger.cpp:53 src/trigger/secretarea_trigger.cpp:61 +#: src/trigger/secretarea_trigger.cpp:47 msgid "You found a secret area!" msgstr "Você achou uma área secreta!" -#: src/trigger/secretarea_trigger.cpp:77 src/supertux/game_object.cpp:90 -#: src/supertux/menu/editor_sector_menu.cpp:34 -#: src/supertux/menu/editor_levelset_menu.cpp:58 +#: src/trigger/secretarea_trigger.cpp:55 src/supertux/game_object.cpp:115 +#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_levelset_menu.cpp:52 #: src/supertux/menu/editor_new_levelset_menu.cpp:34 +#: src/supertux/menu/profile_name_menu.cpp:39 #: src/supertux/menu/editor_level_menu.cpp:33 msgid "Name" msgstr "Nome" -#: src/trigger/secretarea_trigger.cpp:78 +#: src/trigger/secretarea_trigger.cpp:56 msgid "Fade tilemap" -msgstr "Esmaecer mapa de telas" +msgstr "Esmaecer mapa de blocos" -#: src/trigger/secretarea_trigger.cpp:79 src/trigger/climbable.cpp:81 -#: src/object/infoblock.cpp:57 src/editor/worldmap_objects.cpp:172 -#: src/editor/worldmap_objects.cpp:270 +#: src/trigger/secretarea_trigger.cpp:57 src/trigger/climbable.cpp:59 +#: src/object/infoblock.cpp:76 src/worldmap/teleporter.cpp:49 +#: src/worldmap/special_tile.cpp:74 msgid "Message" msgstr "Mensagem" -#: src/trigger/secretarea_trigger.cpp:80 src/trigger/scripttrigger.cpp:75 -#: src/trigger/door.cpp:73 src/object/ispy.cpp:67 -#: src/object/bonus_block.cpp:207 src/object/bonus_block.cpp:211 -#: src/object/pushbutton.cpp:51 src/object/powerup.cpp:190 -#: src/editor/worldmap_objects.cpp:272 +#: src/trigger/secretarea_trigger.cpp:58 src/trigger/scripttrigger.cpp:51 +#: src/trigger/door.cpp:79 src/object/ispy.cpp:53 +#: src/object/bonus_block.cpp:264 src/object/bonus_block.cpp:268 +#: src/object/pushbutton.cpp:62 src/object/powerup.cpp:301 +#: src/worldmap/special_tile.cpp:76 msgid "Script" msgstr "Script" -#: src/trigger/scripttrigger.cpp:76 src/object/pushbutton.hpp:31 +#: src/trigger/scripttrigger.cpp:52 src/object/pushbutton.hpp:32 msgid "Button" msgstr "Botão" -#: src/trigger/scripttrigger.cpp:77 +#: src/trigger/scripttrigger.cpp:53 msgid "Oneshot" msgstr "Um tiro" -#: src/trigger/sequence_trigger.hpp:33 +#: src/trigger/sequence_trigger.hpp:31 msgid "Sequence Trigger" msgstr "Gatilho de Sequência" -#: src/trigger/door.cpp:74 src/badguy/willowisp.cpp:320 -#: src/supertux/menu/editor_sector_menu.cpp:32 -#: src/editor/layers_widget.cpp:342 -#: data//images/engine/editor/objects.stoi:321 +#: src/trigger/text_area.cpp:141 +msgid "Once" +msgstr "Uma vez" + +#: src/trigger/text_area.cpp:142 +msgid "Text change time" +msgstr "Tempo de mudança do texto" + +#: src/trigger/text_area.cpp:143 +msgid "Fade time" +msgstr "Tempo de desvanecimento" + +#: src/trigger/text_area.cpp:144 src/object/textscroller.cpp:353 +msgid "Anchor" +msgstr "Âncora" + +#: src/trigger/text_area.cpp:148 +msgid "Anchor offset X" +msgstr "Deslocamento de âncora X" + +#: src/trigger/text_area.cpp:149 +msgid "Anchor offset Y" +msgstr "Deslocamento de âncora Y" + +#: src/trigger/text_area.cpp:150 +msgid "Texts" +msgstr "Textos" + +#: src/trigger/door.cpp:80 src/badguy/willowisp.cpp:311 +#: src/worldmap/teleporter.cpp:47 data//images/engine/editor/objects.stoi:342 msgid "Sector" msgstr "Setor" -#: src/trigger/door.cpp:75 src/editor/worldmap_objects.hpp:101 +#: src/trigger/door.cpp:81 src/worldmap/spawn_point.hpp:58 msgid "Spawn point" msgstr "Ponto de partida" -#: src/trigger/switch.cpp:61 src/object/block.cpp:224 src/object/torch.cpp:102 -#: src/object/moving_sprite.cpp:156 src/object/pneumatic_platform.cpp:146 -msgid "Sprite" -msgstr "Imagem" +#: src/trigger/door.cpp:82 +msgid "Locked?" +msgstr "Bloqueado?" + +#: src/trigger/door.cpp:83 +msgid "Lock Color" +msgstr "Bloquear cor" + +#: src/trigger/switch.cpp:62 src/object/ispy.cpp:54 src/object/bumper.cpp:53 +#: src/object/spotlight.cpp:106 src/object/pushbutton.cpp:61 +#: src/object/gradient.cpp:103 src/object/conveyor_belt.cpp:60 +#: src/badguy/badguy.cpp:1063 src/worldmap/spawn_point.cpp:79 +#: src/worldmap/special_tile.cpp:78 +msgid "Direction" +msgstr "Direção" -#: src/trigger/switch.cpp:62 +#: src/trigger/switch.cpp:65 msgid "Turn on script" msgstr "Script quando ligado" -#: src/trigger/switch.cpp:63 +#: src/trigger/switch.cpp:66 msgid "Turn off script" msgstr "Script quando desligado" -#: src/trigger/scripttrigger.hpp:32 +#: src/trigger/scripttrigger.hpp:29 msgid "Script Trigger" msgstr "Gatilho de Script" -#: src/trigger/sequence_trigger.cpp:75 +#: src/trigger/sequence_trigger.cpp:48 msgid "Sequence" msgstr "Sequência" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "end sequence" msgstr "sequência final" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "stop Tux" msgstr "parar o Tux" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "fireworks" msgstr "fogo de artifício" -#: src/trigger/sequence_trigger.cpp:80 +#: src/trigger/sequence_trigger.cpp:53 msgid "New worldmap spawnpoint" msgstr "Novo ponto de partida do mapa mundi" -#: src/trigger/sequence_trigger.cpp:81 +#: src/trigger/sequence_trigger.cpp:54 msgid "Worldmap fade tilemap" -msgstr "Esmaecer mapa de telas do mapa-múndi" +msgstr "Esmaecer mapa de blocos do mapa-múndi" -#: src/trigger/sequence_trigger.cpp:82 +#: src/trigger/sequence_trigger.cpp:55 #: src/object/custom_particle_system.cpp:430 #: src/object/custom_particle_system.cpp:465 msgid "Fade" msgstr "Esmaecer" -#: src/trigger/sequence_trigger.cpp:83 src/editor/particle_editor.cpp:161 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:161 msgid "Fade in" msgstr "Esmaecer na entrada" -#: src/trigger/sequence_trigger.cpp:83 src/editor/particle_editor.cpp:167 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:167 #: src/editor/particle_editor.cpp:212 msgid "Fade out" msgstr "Esmaecer na saída" -#: src/trigger/climbable.hpp:37 +#: src/trigger/climbable.hpp:46 msgid "Climbable" msgstr "Escalável" -#: src/trigger/door.hpp:34 +#: src/trigger/text_area.hpp:47 +msgid "Text Area" +msgstr "Área de texto" + +#: src/trigger/door.hpp:31 msgid "Door" msgstr "Porta" -#: src/trigger/switch.hpp:33 +#: src/trigger/switch.hpp:30 msgid "Switch" msgstr "Interruptor" @@ -157,118 +199,194 @@ msgstr "Interruptor" msgid "Secret Area" msgstr "Área Secreta" -#: src/object/thunderstorm.hpp:40 +#: src/math/anchor_point.cpp:33 +msgid "Top Left" +msgstr "Superior esquerdo" + +#: src/math/anchor_point.cpp:34 +msgid "Top" +msgstr "Superior" + +#: src/math/anchor_point.cpp:35 +msgid "Top Right" +msgstr "Superior direito" + +#: src/math/anchor_point.cpp:36 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:38 +#: src/supertux/menu/joystick_menu.cpp:73 +msgid "Left" +msgstr "Esquerda" + +#: src/math/anchor_point.cpp:37 +msgid "Middle" +msgstr "Meio" + +#: src/math/anchor_point.cpp:38 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:39 +#: src/supertux/menu/joystick_menu.cpp:74 +msgid "Right" +msgstr "Direita" + +#: src/math/anchor_point.cpp:39 +msgid "Bottom Left" +msgstr "Inferior esquerdo" + +#: src/math/anchor_point.cpp:40 +msgid "Bottom" +msgstr "Inferior" + +#: src/math/anchor_point.cpp:41 +msgid "Bottom Right" +msgstr "Inferior direito" + +#: src/object/thunderstorm.hpp:44 msgid "Thunderstorm" msgstr "Tempestade" -#: src/object/cloud_particle_system.cpp:79 +#: src/object/cloud_particle_system.cpp:77 #: src/object/rain_particle_system.cpp:100 msgid "Intensity" msgstr "Intensidade" -#: src/object/custom_particle_system.hpp:45 +#: src/object/custom_particle_system.hpp:46 msgid "Custom Particles" msgstr "Partículas Customizadas" -#: src/object/ispy.cpp:66 -msgid "Facing Down" -msgstr "Olhando Para Baixo" - -#: src/object/ispy.cpp:68 src/object/spotlight.cpp:103 -#: src/object/gradient.cpp:137 src/badguy/willowisp.cpp:319 -#: src/badguy/badguy.cpp:848 src/editor/worldmap_objects.cpp:207 -#: src/editor/worldmap_objects.cpp:274 -msgid "Direction" -msgstr "Direção" - -#: src/object/particle_zone.hpp:39 +#: src/object/particle_zone.hpp:41 msgid "Particle zone" msgstr "Zona de Partículas" -#: src/object/path_gameobject.hpp:44 src/object/coin.cpp:301 -#: src/object/camera.cpp:224 src/object/platform.cpp:73 -#: src/object/path_gameobject.cpp:173 src/object/tilemap.cpp:246 -#: src/gui/menu_paths.cpp:52 src/badguy/willowisp.cpp:326 +#: src/object/path_gameobject.hpp:45 src/object/coin.cpp:324 +#: src/object/camera.cpp:168 src/object/platform.cpp:76 +#: src/object/path_gameobject.cpp:175 src/object/tilemap.cpp:284 +#: src/badguy/willowisp.cpp:317 msgid "Path" msgstr "Caminho" -#: src/object/decal.cpp:49 src/object/scripted_object.cpp:67 -#: src/object/particlesystem.cpp:65 src/object/background.cpp:183 -#: src/object/thunderstorm.cpp:68 src/object/tilemap.cpp:239 -#: src/object/gradient.cpp:135 -msgid "Z-pos" -msgstr "Profundidade" - -#: src/object/decal.cpp:50 src/object/scripted_object.cpp:70 -#: src/object/tilemap.cpp:228 +#: src/object/decal.cpp:48 src/object/scripted_object.cpp:70 +#: src/object/tilemap.cpp:266 msgid "Solid" msgstr "Sólido" -#: src/object/decal.cpp:51 src/supertux/menu/keyboard_menu.cpp:37 -#: src/supertux/menu/joystick_menu.cpp:74 +#: src/object/decal.cpp:49 src/supertux/menu/keyboard_menu.cpp:41 +#: src/supertux/menu/joystick_menu.cpp:76 msgid "Action" msgstr "Ação" -#: src/object/weak_block.hpp:35 +#: src/object/weak_block.hpp:36 msgid "Weak Tile" msgstr "Piso Frágil" -#: src/object/bumper.cpp:46 -msgid "Facing Left" -msgstr "Olhando Para Esquerda" - -#: src/object/gradient.hpp:42 +#: src/object/gradient.hpp:43 msgid "Gradient" msgstr "Gradiente" -#: src/object/tilemap.hpp:57 +#: src/object/tilemap.hpp:58 msgid "Tilemap" -msgstr "Mapa de Pisos" +msgstr "Mapa de Blocos" + +#: src/object/sound_object.cpp:69 src/object/ambient_sound.cpp:85 +#: src/object/sound_object.hpp:42 src/supertux/menu/options_menu.cpp:128 +#: data//credits.stxt:367 +msgid "Sound" +msgstr "Som" + +#: src/object/sound_object.cpp:70 src/object/ambient_sound.cpp:87 +msgid "Volume" +msgstr "Volume" + +#: src/object/conveyor_belt.hpp:39 +msgid "Conveyor Belt" +msgstr "Correia transportadora" + +#: src/object/unstable_tile.cpp:70 src/object/weak_block.cpp:97 +#: src/badguy/flame.cpp:86 +msgid "Ice" +msgstr "Gelo" + +#: src/object/unstable_tile.cpp:71 src/object/brick.hpp:34 +msgid "Brick" +msgstr "Caixa de madeira" + +#: src/object/unstable_tile.cpp:72 +msgid "Delayed" +msgstr "Atrasado" -#: src/object/circleplatform.hpp:32 +#: src/object/circleplatform.hpp:35 msgid "Circular Platform" msgstr "Plataforma Circular" -#: src/object/brick.cpp:133 +#: src/object/brick.cpp:59 src/object/coin.cpp:69 +#: src/object/invisible_block.cpp:37 src/object/background.cpp:200 +#: src/object/tilemap.cpp:279 src/object/gradient.cpp:109 +#: src/badguy/viciousivy.cpp:44 src/badguy/snail.cpp:69 +#: src/badguy/smartball.cpp:34 src/badguy/bouncing_snowball.cpp:81 +#: src/badguy/kamikazesnowball.cpp:117 src/badguy/walkingleaf.cpp:35 +#: src/badguy/mrbomb.cpp:47 src/badguy/igel.cpp:188 src/badguy/snowball.cpp:40 +#: src/badguy/mrtree.cpp:50 src/badguy/mriceblock.cpp:62 +msgid "Normal" +msgstr "Normal" + +#: src/object/brick.cpp:60 src/object/bonus_block.cpp:175 +#: src/object/coin.cpp:70 src/object/invisible_block.cpp:38 +msgid "Retro" +msgstr "Retrô" + +#: src/object/brick.cpp:166 msgid "Breakable" msgstr "Quebrável" -#: src/object/trampoline.cpp:136 src/object/rusty_trampoline.cpp:66 +#: src/object/trampoline.cpp:66 src/object/rusty_trampoline.cpp:66 msgid "Portable" msgstr "Portátil" -#: src/object/spotlight.cpp:100 src/object/rain_particle_system.cpp:101 +#: src/object/trampoline.cpp:67 +msgid "Stationary" +msgstr "Estacionário" + +#: src/object/key.hpp:38 +msgid "Key" +msgstr "Chave" + +#: src/object/spotlight.cpp:102 src/object/particlesystem.cpp:64 +#: src/object/particle_zone.cpp:50 src/badguy/darttrap.cpp:149 +#: src/supertux/menu/addon_preview_menu.cpp:189 +msgid "Enabled" +msgstr "Ativado" + +#: src/object/spotlight.cpp:103 src/object/rain_particle_system.cpp:101 msgid "Angle" msgstr "Ângulo" -#: src/object/spotlight.cpp:101 src/object/magicblock.cpp:94 -#: src/object/candle.cpp:77 src/object/torch.cpp:104 -#: src/object/rublight.cpp:54 src/object/lantern.cpp:62 -#: src/object/ambient_light.cpp:131 src/badguy/willowisp.cpp:328 -#: src/badguy/walking_candle.cpp:82 +#: src/object/spotlight.cpp:104 src/object/magicblock.cpp:95 +#: src/object/candle.cpp:75 src/object/torch.cpp:96 src/object/rublight.cpp:55 +#: src/object/lantern.cpp:62 src/object/ambient_light.cpp:122 +#: src/object/key.cpp:192 src/badguy/willowisp.cpp:319 +#: src/badguy/walking_candle.cpp:91 msgid "Color" msgstr "Cor" -#: src/object/spotlight.cpp:102 src/object/textscroller.cpp:350 -#: src/object/rain_particle_system.cpp:102 src/object/circleplatform.cpp:55 -#: src/badguy/flame.cpp:59 src/editor/node_marker.cpp:125 +#: src/object/spotlight.cpp:105 src/object/textscroller.cpp:350 +#: src/object/rain_particle_system.cpp:102 src/object/conveyor_belt.cpp:61 +#: src/object/circleplatform.cpp:58 src/badguy/flame.cpp:110 +#: src/editor/node_marker.cpp:125 msgid "Speed" msgstr "Velocidade" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Clockwise" msgstr "Sentido Horário" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Counter-clockwise" msgstr "Anti-horário" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Stopped" msgstr "Parado" -#: src/object/spotlight.cpp:107 src/object/candle.cpp:78 -#: src/object/torch.cpp:103 +#: src/object/spotlight.cpp:110 src/object/lit_object.cpp:69 +#: src/object/candle.cpp:76 src/object/torch.cpp:95 msgid "Layer" msgstr "Camada" @@ -280,125 +398,171 @@ msgstr "Física habilitada" msgid "Visible" msgstr "Visível" -#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:322 +#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:313 msgid "Hit script" msgstr "Script ao tocar" -#: src/object/custom_particle_system_file.cpp:50 +#: src/object/custom_particle_system_file.cpp:53 #: src/object/textscroller.cpp:348 src/object/music_object.cpp:109 #: src/supertux/menu/particle_editor_open.cpp:38 msgid "File" msgstr "Arquivo" -#: src/object/bonus_block.cpp:208 +#: src/object/bonus_block.cpp:154 +msgid "Only one custom object is allowed inside bonus blocks." +msgstr "Apenas um bloco personalizado é permitido dentro dos blocos de bônus." + +#: src/object/bonus_block.cpp:172 +msgid "Blue" +msgstr "Azul" + +#: src/object/bonus_block.cpp:173 +msgid "Orange" +msgstr "Laranja" + +#: src/object/bonus_block.cpp:174 +msgid "Purple" +msgstr "Roxo" + +#: src/object/bonus_block.cpp:265 src/supertux/menu/cheat_apply_menu.cpp:54 msgid "Count" msgstr "Quantidade de bônus" -#: src/object/bonus_block.cpp:209 +#: src/object/bonus_block.cpp:266 msgid "Content" msgstr "Bônus" -#: src/object/bonus_block.cpp:210 src/object/coin.hpp:43 +#: src/object/bonus_block.cpp:267 src/object/coin.hpp:44 msgid "Coin" msgstr "Moeda" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (fire flower)" msgstr "Crescer (flor-de-fogo)" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (ice flower)" msgstr "Crescer (flor-de-gelo)" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (air flower)" msgstr "Crescer (flor-de-ar)" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Growth (earth flower)" msgstr "Crescer (flor-de-terra)" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 +msgid "Growth (retro)" +msgstr "Crescimento (retrô)" + +#: src/object/bonus_block.cpp:268 src/object/powerup.cpp:66 msgid "Star" msgstr "Estrela" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 +msgid "Star (retro)" +msgstr "Estrela (retrô)" + +#: src/object/bonus_block.cpp:268 msgid "Tux doll" msgstr "Boneco Tux" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Custom" msgstr "Personalizado" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Light" msgstr "Luz" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Light (On)" msgstr "Luz (Ligado)" -#: src/object/bonus_block.cpp:212 src/object/trampoline.hpp:35 +#: src/object/bonus_block.cpp:269 src/object/trampoline.hpp:37 msgid "Trampoline" msgstr "Trampolim" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 +msgid "Portable trampoline" +msgstr "Trampolim portátil" + +#: src/object/bonus_block.cpp:269 msgid "Coin rain" msgstr "Chuva de moedas" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 msgid "Coin explosion" msgstr "Explosão de moedas" -#: src/object/bonus_block.cpp:216 +#: src/object/bonus_block.cpp:269 src/object/rock.hpp:43 +msgid "Rock" +msgstr "Pedra transportável" + +#: src/object/bonus_block.cpp:269 +msgid "Potion" +msgstr "Poção" + +#: src/object/bonus_block.cpp:275 msgid "Custom Content" msgstr "Conteúdo Personalizado" -#: src/object/pneumatic_platform.hpp:62 +#: src/object/bonus_block.cpp:278 +msgid "Coin sprite" +msgstr "Sprite de moeda" + +#: src/object/pneumatic_platform.hpp:65 msgid "Pneumatic Platform" msgstr "Plataforma Balança" -#: src/object/coin.cpp:303 src/object/tilemap.cpp:249 +#: src/object/coin.cpp:326 src/object/tilemap.cpp:287 msgid "Following path" msgstr "Caminho a seguir" -#: src/object/coin.cpp:306 src/object/camera.cpp:227 -#: src/object/platform.cpp:74 src/object/tilemap.cpp:252 +#: src/object/coin.cpp:329 src/object/camera.cpp:171 +#: src/object/platform.cpp:77 src/object/tilemap.cpp:290 msgid "Path Mode" msgstr "Modo de Caminho" -#: src/object/coin.cpp:307 src/object/camera.cpp:228 -#: src/object/platform.cpp:75 src/object/tilemap.cpp:253 -#: src/badguy/willowisp.cpp:331 +#: src/object/coin.cpp:330 src/object/camera.cpp:172 +#: src/object/platform.cpp:78 src/object/tilemap.cpp:291 +#: src/badguy/willowisp.cpp:322 msgid "Adapt Speed" msgstr "Adaptar Velocidade" -#: src/object/coin.cpp:308 src/object/platform.cpp:77 -#: src/object/tilemap.cpp:247 src/badguy/willowisp.cpp:327 +#: src/object/coin.cpp:331 src/object/platform.cpp:81 +#: src/object/tilemap.cpp:285 src/badguy/willowisp.cpp:318 msgid "Starting Node" msgstr "Posição Inicial" -#: src/object/coin.cpp:311 src/object/coin.cpp:339 +#: src/object/coin.cpp:332 src/object/camera.cpp:173 +#: src/object/platform.cpp:82 src/object/tilemap.cpp:293 +#: src/badguy/willowisp.cpp:323 +msgid "Handle" +msgstr "Alça" + +#: src/object/coin.cpp:335 src/object/coin.cpp:371 msgid "Collect script" msgstr "Script ao coletar" -#: src/object/ghost_particle_system.hpp:36 +#: src/object/ghost_particle_system.hpp:37 msgid "Ghost Particles" msgstr "Partículas Fantasma" -#: src/object/camera.cpp:219 +#: src/object/camera.cpp:163 msgid "Mode" msgstr "Modo" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "normal" msgstr "normal" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "manual" msgstr "manual" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "autoscroll" msgstr "autorolagem" @@ -414,32 +578,20 @@ msgstr "offset-X" msgid "Controllable" msgstr "Controlável" -#: src/object/textscroller.cpp:353 -msgid "Anchor" -msgstr "Âncora" - -#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 -#: src/supertux/menu/keyboard_menu.cpp:34 -#: src/supertux/menu/joystick_menu.cpp:71 -msgid "Left" -msgstr "Esquerda" - #: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 msgid "Center" msgstr "Centro" -#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 -#: src/supertux/menu/keyboard_menu.cpp:35 -#: src/supertux/menu/joystick_menu.cpp:72 -msgid "Right" -msgstr "Direita" - #: src/object/textscroller.cpp:357 msgid "Text Alignment" msgstr "Alinhamento de Texto" -#: src/object/spawnpoint.hpp:46 src/badguy/willowisp.cpp:321 -#: src/editor/worldmap_objects.cpp:171 +#: src/object/lit_object.hpp:40 +msgid "Lit object" +msgstr "Objeto iluminado" + +#: src/object/spawnpoint.hpp:48 src/badguy/willowisp.cpp:312 +#: src/worldmap/teleporter.cpp:48 msgid "Spawnpoint" msgstr "Ponto de partida" @@ -447,266 +599,339 @@ msgstr "Ponto de partida" msgid "Counter" msgstr "Contador" -#: src/object/candle.hpp:36 +#: src/object/candle.hpp:37 msgid "Candle" msgstr "Vela" -#: src/object/particlesystem.cpp:64 src/object/particle_zone.cpp:79 -#: src/badguy/darttrap.cpp:127 -msgid "Enabled" -msgstr "Ativado" +#: src/object/particlesystem.cpp:65 src/object/background.cpp:184 +#: src/object/thunderstorm.cpp:76 src/object/tilemap.cpp:277 +#: src/object/gradient.cpp:101 src/object/moving_sprite.cpp:193 +msgid "Z-pos" +msgstr "Profundidade" -#: src/object/invisible_block.hpp:31 +#: src/object/invisible_block.hpp:30 msgid "Invisible Block" msgstr "Bloco Invisível" -#: src/object/snow_particle_system.hpp:35 +#: src/object/snow_particle_system.hpp:37 msgid "Snow Particles" msgstr "Partículas de Neve" -#: src/object/powerup.hpp:35 +#: src/object/powerup.hpp:40 msgid "Powerup" msgstr "Melhoria" -#: src/object/fallblock.hpp:39 +#: src/object/infoblock.cpp:78 +msgid "Front Color" +msgstr "Cor frontal" + +#: src/object/infoblock.cpp:80 +msgid "Back Color" +msgstr "Cor de fundo" + +#: src/object/infoblock.cpp:82 +msgid "Roundness" +msgstr "Redondeza" + +#: src/object/infoblock.cpp:84 +msgid "Fade Transition" +msgstr "Transição de esmaecimento" + +#: src/object/fallblock.hpp:41 msgid "Falling Platform" msgstr "Plataforma Instável" -#: src/object/level_time.hpp:55 +#: src/object/level_time.hpp:56 msgid "Time Limit" msgstr "Limite de Tempo" -#: src/object/ambient_sound.cpp:119 src/supertux/menu/options_menu.cpp:391 -#: data//credits.stxt:352 -msgid "Sound" -msgstr "Som" - -#: src/object/ambient_sound.cpp:120 -msgid "Distance factor" -msgstr "Fator de distância" - -#: src/object/ambient_sound.cpp:121 -msgid "Distance bias" -msgstr "Margem de distância" - -#: src/object/ambient_sound.cpp:122 -msgid "Volume" -msgstr "Volume" +#: src/object/ambient_sound.cpp:86 +msgid "Radius (in tiles)" +msgstr "Raio (em blocos)" #: src/object/torch.hpp:41 msgid "Torch" msgstr "Tocha" -#: src/object/icecrusher.hpp:53 -msgid "Icecrusher" -msgstr "Quebra-gelo" - -#: src/object/rublight.hpp:33 +#: src/object/rublight.hpp:34 msgid "Rublight" msgstr "Contato de Luz" -#: src/object/background.hpp:43 +#: src/object/background.hpp:45 msgid "Background" msgstr "Fundo" -#: src/object/firefly.hpp:36 +#: src/object/text_object.hpp:44 src/gui/menu_string_array.cpp:77 +msgid "Text" +msgstr "Texto" + +#: src/object/firefly.hpp:38 msgid "Checkpoint" msgstr "Checkpoint" -#: src/object/ambient_light.hpp:36 +#: src/object/ambient_light.hpp:37 msgid "Ambient Light" msgstr "Luz Ambiente" -#: src/object/lantern.hpp:37 +#: src/object/lantern.hpp:38 msgid "Lantern" msgstr "Lanterna" -#: src/object/wind.hpp:40 +#: src/object/wind.hpp:43 msgid "Wind" msgstr "Vento" -#: src/object/bicycle_platform.cpp:189 src/object/background.cpp:179 -#: src/object/pneumatic_platform.cpp:147 -#: src/supertux/menu/joystick_menu.cpp:170 src/supertux/moving_object.cpp:58 -#: src/editor/worldmap_objects.cpp:73 +#: src/object/bicycle_platform.cpp:203 src/object/background.cpp:180 +#: src/object/pneumatic_platform.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:65 +#: src/worldmap/worldmap_object.cpp:77 msgid "X" msgstr "X" -#: src/object/bicycle_platform.cpp:190 src/object/background.cpp:180 -#: src/object/pneumatic_platform.cpp:148 -#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:59 -#: src/editor/worldmap_objects.cpp:74 +#: src/object/bicycle_platform.cpp:204 src/object/background.cpp:181 +#: src/object/pneumatic_platform.cpp:163 +#: src/supertux/menu/joystick_menu.cpp:174 src/supertux/moving_object.cpp:66 +#: src/worldmap/worldmap_object.cpp:78 msgid "Y" msgstr "Y" -#: src/object/bicycle_platform.cpp:192 +#: src/object/bicycle_platform.cpp:206 msgid "Platforms" msgstr "Plataformas" -#: src/object/bicycle_platform.cpp:193 src/object/circleplatform.cpp:54 -#: src/badguy/flame.cpp:58 src/badguy/rcrystallo.cpp:50 -#: src/badguy/crystallo.cpp:35 +#: src/object/bicycle_platform.cpp:207 src/object/circleplatform.cpp:57 +#: src/badguy/fish_swimming.cpp:76 src/badguy/flame.cpp:109 +#: src/badguy/rcrystallo.cpp:83 src/badguy/crystallo.cpp:50 msgid "Radius" msgstr "Raio" -#: src/object/bicycle_platform.cpp:194 +#: src/object/bicycle_platform.cpp:208 msgid "Momentum change rate" msgstr "Taxa de mudança de momentum" -#: src/object/rain_particle_system.hpp:40 +#: src/object/rain_particle_system.hpp:41 msgid "Rain Particles" msgstr "Partículas de Chuva" -#: src/object/platform.hpp:45 +#: src/object/platform.hpp:46 msgid "Platform" msgstr "Plataforma" -#: src/object/rock.hpp:42 -msgid "Rock" -msgstr "Pedra transportável" - -#: src/object/music_object.hpp:41 src/supertux/menu/options_menu.cpp:393 -#: data//credits.stxt:294 +#: src/object/music_object.hpp:42 src/supertux/menu/options_menu.cpp:130 +#: data//credits.stxt:309 msgid "Music" msgstr "Música" -#: src/object/rusty_trampoline.hpp:39 +#: src/object/lit_object.cpp:68 +msgid "Light sprite" +msgstr "Sprite leve" + +#: src/object/lit_object.cpp:71 +msgid "Sprite starting action" +msgstr "Ação inicial do sprite" + +#: src/object/lit_object.cpp:72 +msgid "Light sprite starting action" +msgstr "Ação inicial do sprite de luz" + +#: src/object/lit_object.cpp:74 +msgid "Light sprite offset X" +msgstr "Deslocamento X do sprite de luz" + +#: src/object/lit_object.cpp:75 +msgid "Light sprite offset Y" +msgstr "Deslocamento Y do sprite de luz" + +#: src/object/rusty_trampoline.hpp:40 msgid "Rusty Trampoline" msgstr "Trampolim Enferrujado" -#: src/object/particlesystem.hpp:57 +#: src/object/particlesystem.hpp:58 msgid "Particle system" msgstr "Sistema de partículas" -#: src/object/candle.cpp:75 src/object/torch.cpp:101 +#: src/object/candle.cpp:73 src/object/torch.cpp:94 msgid "Burning" msgstr "A arder" -#: src/object/candle.cpp:76 +#: src/object/candle.cpp:74 msgid "Flicker" msgstr "A piscar" -#: src/object/text_array_object.hpp:50 +#: src/object/snow_particle_system.cpp:104 +msgid "Epsilon" +msgstr "Épsilon" + +#: src/object/snow_particle_system.cpp:105 +msgid "Spin Speed" +msgstr "Velocidade de rotação" + +#: src/object/snow_particle_system.cpp:106 +msgid "State Length" +msgstr "Comprimento do estado" + +#: src/object/snow_particle_system.cpp:107 +msgid "Wind Speed" +msgstr "Velocidade do vento" + +#: src/object/text_array_object.hpp:47 msgid "Text array" msgstr "Coleção de texto" -#: src/object/infoblock.hpp:36 +#: src/object/infoblock.hpp:37 msgid "Info Block" msgstr "Bloco de Informação" -#: src/object/powerup.cpp:191 +#: src/object/powerup.cpp:61 +msgid "Egg" +msgstr "Ovo" + +#: src/object/powerup.cpp:62 +msgid "Fire Flower" +msgstr "Flor de fogo" + +#: src/object/powerup.cpp:63 +msgid "Ice Flower" +msgstr "Flor de gelo" + +#: src/object/powerup.cpp:64 +msgid "Air Flower" +msgstr "Flor de ar" + +#: src/object/powerup.cpp:65 +msgid "Earth Flower" +msgstr "Flor de terra" + +#: src/object/powerup.cpp:67 +msgid "Tux Doll" +msgstr "Boneco do Tux" + +#: src/object/powerup.cpp:68 +msgid "Flip Potion" +msgstr "Poção Invertida" + +#: src/object/powerup.cpp:69 +msgid "Mints" +msgstr "Pastilhas" + +#: src/object/powerup.cpp:70 +msgid "Coffee" +msgstr "Café" + +#: src/object/powerup.cpp:71 +msgid "Herring" +msgstr "Arenque" + +#: src/object/powerup.cpp:302 msgid "Disable gravity" msgstr "Desativa a gravidade" -#: src/object/ambient_sound.hpp:62 +#: src/object/powerup.cpp:312 src/object/weak_block.cpp:266 +msgid "" +"Sprites no longer define the behaviour of the object.\n" +"Object types are used instead." +msgstr "Sprites não definem mais o comportamento do objeto.\nTipos de objetos são usados em seu lugar." + +#: src/object/ambient_sound.hpp:43 msgid "Ambient Sound" msgstr "Som Ambiente" -#: src/object/level_time.cpp:51 src/supertux/statistics.cpp:297 +#: src/object/level_time.cpp:52 src/supertux/statistics.cpp:297 #: src/editor/node_marker.cpp:124 msgid "Time" msgstr "Tempo" -#: src/object/hurting_platform.hpp:30 +#: src/object/hurting_platform.hpp:31 msgid "Hurting Platform" msgstr "Plataforma Mortífera" -#: src/object/icecrusher.cpp:83 -msgid "Sideways" -msgstr "Laterais" - -#: src/object/background.cpp:182 +#: src/object/background.cpp:183 msgid "Fill" msgstr "Preencher" -#: src/object/background.cpp:184 +#: src/object/background.cpp:185 msgid "Alignment" msgstr "Alinhamento" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 src/supertux/direction.cpp:61 msgid "none" msgstr "nenhum" -#: src/object/background.cpp:185 src/editor/object_settings.cpp:119 +#: src/object/background.cpp:186 src/supertux/direction.cpp:63 msgid "left" msgstr "esquerda" -#: src/object/background.cpp:185 src/editor/object_settings.cpp:119 +#: src/object/background.cpp:186 src/supertux/direction.cpp:65 msgid "right" msgstr "direita" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 msgid "top" msgstr "cima" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 msgid "bottom" msgstr "baixo" -#: src/object/background.cpp:188 +#: src/object/background.cpp:189 msgid "Scroll offset x" msgstr "Compensação de deslocamento em x" -#: src/object/background.cpp:189 +#: src/object/background.cpp:190 msgid "Scroll offset y" msgstr "Compensação de deslocamento em y" -#: src/object/background.cpp:190 +#: src/object/background.cpp:191 msgid "Scroll speed x" msgstr "Velocidade de deslocamento em x" -#: src/object/background.cpp:191 +#: src/object/background.cpp:192 msgid "Scroll speed y" msgstr "Velocidade de deslocamento em y" -#: src/object/background.cpp:192 +#: src/object/background.cpp:193 msgid "Parallax Speed x" msgstr "Velocidade Paralaxe em x" -#: src/object/background.cpp:193 +#: src/object/background.cpp:194 msgid "Parallax Speed y" msgstr "Velocidade Paralaxe em y" -#: src/object/background.cpp:194 +#: src/object/background.cpp:195 msgid "Top image" msgstr "Imagem de cima" -#: src/object/background.cpp:195 +#: src/object/background.cpp:196 msgid "Image" msgstr "Imagem" -#: src/object/background.cpp:196 +#: src/object/background.cpp:197 msgid "Bottom image" msgstr "Imagem de baixo" -#: src/object/background.cpp:197 +#: src/object/background.cpp:198 msgid "Colour" msgstr "Cor" -#: src/object/background.cpp:198 src/object/tilemap.cpp:240 -#: src/object/gradient.cpp:142 +#: src/object/background.cpp:199 src/object/tilemap.cpp:278 +#: src/object/gradient.cpp:108 msgid "Draw target" msgstr "Desenhar alvo" -#: src/object/background.cpp:199 src/object/tilemap.cpp:241 -#: src/object/gradient.cpp:143 -msgid "Normal" -msgstr "Normal" - -#: src/object/background.cpp:199 src/object/tilemap.cpp:241 -#: src/object/gradient.cpp:143 +#: src/object/background.cpp:200 src/object/tilemap.cpp:279 +#: src/object/gradient.cpp:109 msgid "Lightmap" msgstr "Mapa de luz" -#: src/object/shard.hpp:34 +#: src/object/shard.hpp:35 msgid "Shard" msgstr "Fragmento" -#: src/object/rublight.cpp:55 +#: src/object/rublight.cpp:56 msgid "Fading Speed" msgstr "Velocidade para Apagar" -#: src/object/rublight.cpp:56 +#: src/object/rublight.cpp:57 msgid "Glowing Strength" msgstr "Força do Brilho" @@ -742,20 +967,28 @@ msgstr "Afetar Jogador" msgid "Fancy Particles" msgstr "Partículas Chiques" -#: src/object/bicycle_platform.hpp:64 +#: src/object/bicycle_platform.hpp:67 msgid "Bicycle Platform" msgstr "Plataforma Giratória" -#: src/object/platform.cpp:76 src/object/thunderstorm.cpp:69 -#: src/object/tilemap.cpp:254 +#: src/object/platform.cpp:80 src/object/thunderstorm.cpp:77 +#: src/object/tilemap.cpp:292 src/object/conveyor_belt.cpp:62 msgid "Running" msgstr "Ativado" -#: src/object/rock.cpp:192 +#: src/object/rock.cpp:71 +msgid "Small" +msgstr "Pequeno" + +#: src/object/rock.cpp:72 +msgid "Large" +msgstr "Largo" + +#: src/object/rock.cpp:234 msgid "On-grab script" msgstr "Script ao Agarrar" -#: src/object/rock.cpp:193 +#: src/object/rock.cpp:235 msgid "On-ungrab script" msgstr "Script ao Largar" @@ -763,15 +996,15 @@ msgstr "Script ao Largar" msgid "Interactive particle system" msgstr "Sistema de partículas interativo" -#: src/object/thunderstorm.cpp:70 +#: src/object/thunderstorm.cpp:78 msgid "Interval" msgstr "Intervalo" -#: src/object/thunderstorm.cpp:71 +#: src/object/thunderstorm.cpp:79 msgid "Strike Script" msgstr "Script ao Atingir" -#: src/object/cloud_particle_system.hpp:41 +#: src/object/cloud_particle_system.hpp:42 msgid "Cloud Particles" msgstr "Partículas de Nuvens" @@ -783,7 +1016,7 @@ msgstr "Textura" msgid "Amount" msgstr "Quantia" -#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:56 +#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:59 #: src/editor/particle_editor.cpp:141 msgid "Delay" msgstr "Atraso" @@ -802,10 +1035,11 @@ msgid "Birth mode" msgstr "Modo de Nascimento" #: src/object/custom_particle_system.cpp:430 -#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:149 -#: src/supertux/menu/keyboard_menu.cpp:58 -#: src/supertux/menu/joystick_menu.cpp:106 -#: src/supertux/menu/joystick_menu.cpp:213 src/editor/object_settings.cpp:131 +#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:115 +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/joystick_menu.cpp:108 +#: src/supertux/menu/joystick_menu.cpp:215 src/editor/object_settings.cpp:129 #: src/editor/particle_editor.cpp:162 src/editor/particle_editor.cpp:168 msgid "None" msgstr "Nada" @@ -1114,7 +1348,7 @@ msgstr "Desvanecer partícula" #: src/object/custom_particle_system.cpp:524 msgid "Delete if off-screen" -msgstr "Removê-la fora de tela" +msgstr "Excluir se estiver fora da tela" #: src/object/custom_particle_system.cpp:525 #: src/editor/particle_editor.cpp:224 @@ -1134,597 +1368,916 @@ msgstr "Sempre" msgid "Cover screen" msgstr "Cobrir a tela" -#: src/object/ispy.hpp:33 +#: src/object/ispy.hpp:35 msgid "Ispy" msgstr "Olho Espião" -#: src/object/skull_tile.hpp:32 -msgid "Skull Tile" -msgstr "Piso de Caveira" - -#: src/object/particle_zone.cpp:80 +#: src/object/particle_zone.cpp:51 msgid "Particle Name" msgstr "Nome da Partícula" -#: src/object/particle_zone.cpp:81 -msgid "Zone Type" -msgstr "Tipo de Zona" - -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:62 msgid "Spawn" msgstr "Criar" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:63 msgid "Life zone" msgstr "Zona de vida" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:64 msgid "Life zone (clear)" msgstr "Zona de vida (limpo)" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:65 msgid "Kill particles" msgstr "Matar partículas" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:66 msgid "Clear particles" msgstr "Limpar partículas" -#: src/object/weak_block.cpp:211 -msgid "Linked" -msgstr "Ligado a outros" +#: src/object/weak_block.cpp:98 +msgid "Hay" +msgstr "Feno" -#: src/object/decal.hpp:40 +#: src/object/decal.hpp:41 msgid "Decal" msgstr "Placard de informação" -#: src/object/tilemap.cpp:229 +#: src/object/tilemap.cpp:267 msgid "Resize offset x" msgstr "Redimensionar offset x" -#: src/object/tilemap.cpp:230 +#: src/object/tilemap.cpp:268 msgid "Resize offset y" msgstr "Redimensionar offset y" -#: src/object/tilemap.cpp:232 src/supertux/menu/editor_sector_menu.cpp:39 -#: src/editor/object_option.cpp:173 +#: src/object/tilemap.cpp:270 src/supertux/menu/editor_sector_menu.cpp:41 +#: src/editor/object_option.cpp:178 msgid "Width" msgstr "Largura" -#: src/object/tilemap.cpp:233 src/supertux/menu/editor_sector_menu.cpp:40 -#: src/editor/object_option.cpp:174 +#: src/object/tilemap.cpp:271 src/supertux/menu/editor_sector_menu.cpp:42 +#: src/editor/object_option.cpp:179 msgid "Height" msgstr "Altura" -#: src/object/tilemap.cpp:235 +#: src/object/tilemap.cpp:273 msgid "Alpha" msgstr "Alpha" -#: src/object/tilemap.cpp:236 +#: src/object/tilemap.cpp:274 msgid "Speed x" msgstr "Velocidade x" -#: src/object/tilemap.cpp:237 +#: src/object/tilemap.cpp:275 msgid "Speed y" msgstr "Velocidade y" -#: src/object/tilemap.cpp:238 +#: src/object/tilemap.cpp:276 msgid "Tint" msgstr "Matiz" -#: src/object/tilemap.cpp:257 src/supertux/menu/editor_tilegroup_menu.cpp:26 -#: src/editor/toolbox_widget.cpp:90 +#: src/object/tilemap.cpp:296 src/supertux/menu/editor_tilegroup_menu.cpp:26 +#: src/editor/toolbox_widget.cpp:98 msgid "Tiles" -msgstr "Pisos" - -#: src/object/gradient.cpp:128 -msgid "Left Colour" -msgstr "Cor Esquerda" - -#: src/object/gradient.cpp:129 -msgid "Right Colour" -msgstr "Cor Direita" +msgstr "Blocos" -#: src/object/gradient.cpp:131 -msgid "Top Colour" -msgstr "Cor de Cima" +#: src/object/gradient.cpp:98 +msgid "Primary Colour" +msgstr "Cor primária" -#: src/object/gradient.cpp:132 -msgid "Bottom Colour" -msgstr "Cor de Baixo" +#: src/object/gradient.cpp:99 +msgid "Secondary Colour" +msgstr "Cor secundária" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Vertical" msgstr "Vertical" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Horizontal" msgstr "Horizontal" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Vertical (whole sector)" msgstr "Vertical (todo o setor)" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Horizontal (whole sector)" msgstr "Horizontal (todo o setor)" -#: src/object/gradient.cpp:148 +#: src/object/gradient.cpp:114 msgid "Blend mode" msgstr "Modo de Combinação" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Blend" msgstr "Combinar" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Additive" msgstr "Aditivo" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Modulate" msgstr "Modular" -#: src/object/bumper.hpp:35 +#: src/object/bumper.hpp:38 msgid "Bumper" msgstr "Bate-Bate" -#: src/object/unstable_tile.hpp:37 +#: src/object/conveyor_belt.cpp:63 +msgid "Length" +msgstr "Comprimento" + +#: src/object/moving_sprite.cpp:192 src/object/pneumatic_platform.cpp:161 +msgid "Sprite" +msgstr "Imagem" + +#: src/object/unstable_tile.hpp:42 msgid "Unstable Tile" msgstr "Piso Instável" -#: src/object/brick.hpp:31 -msgid "Brick" -msgstr "Caixa de madeira" +#: src/object/brick.hpp:70 +msgid "Heavy Brick" +msgstr "Tijolo pesado" -#: src/object/invisible_wall.hpp:34 +#: src/object/invisible_wall.hpp:37 msgid "Invisible Wall" msgstr "Parede Invisível" -#: src/object/spotlight.hpp:51 +#: src/object/spotlight.hpp:52 msgid "Spotlight" msgstr "Foco de luz" -#: src/object/scripted_object.hpp:39 +#: src/object/scripted_object.hpp:40 msgid "Scripted Object" msgstr "Objeto com Script" -#: src/object/custom_particle_system_file.hpp:39 +#: src/object/custom_particle_system_file.hpp:40 msgid "Custom Particles from file" msgstr "Partículas Customizadas de arquivo" -#: src/object/coin.hpp:78 +#: src/object/coin.hpp:97 msgid "Heavy Coin" msgstr "Moeda Pesada" -#: src/object/bonus_block.hpp:56 +#: src/object/explosion.hpp:35 +msgid "Explosion" +msgstr "Explosão" + +#: src/object/bonus_block.hpp:62 msgid "Bonus Block" msgstr "Bloco de Bônus" -#: src/object/magicblock.hpp:41 +#: src/object/magicblock.hpp:42 msgid "Magic Tile" msgstr "Piso Mágico" -#: src/object/camera.hpp:67 +#: src/object/camera.hpp:61 msgid "Camera" msgstr "Câmera" -#: src/object/textscroller.hpp:44 +#: src/object/textscroller.hpp:45 msgid "Text Scroller" msgstr "Rolagem de Texto" -#: src/gui/menu_badguy_select.cpp:94 -msgid "List of enemies" -msgstr "Lista de inimigos" +#: src/gui/notification.cpp:57 +msgid "Click for more details." +msgstr "Clique para mais detalhes." + +#: src/gui/notification.cpp:150 +msgid "Do not show again" +msgstr "Não mostrar novamente" + +#: src/gui/notification.cpp:157 src/supertux/menu/download_dialog.cpp:124 +msgid "Close" +msgstr "Fechar" + +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#, c++-format +msgid "Selected item: {}" +msgstr "Item selecionado: {}" -#: src/gui/menu_badguy_select.cpp:96 -msgid "Select enemy" -msgstr "Selecionar inimigo" +#: src/gui/menu_string_array.cpp:70 +msgid "Edit string array" +msgstr "Editar matriz de strings" -#: src/gui/menu_badguy_select.cpp:97 +#: src/gui/menu_string_array.cpp:79 src/gui/menu_object_select.cpp:50 +#: src/supertux/menu/profile_menu.cpp:88 msgid "Add" msgstr "Adicionar" -#: src/gui/menu_badguy_select.cpp:107 src/gui/menu_color.cpp:37 -#: src/gui/dialog.hpp:81 src/gui/menu_script.cpp:47 -#: src/supertux/menu/editor_sector_menu.cpp:46 -#: src/supertux/menu/editor_levelset_menu.cpp:62 -#: src/supertux/menu/addon_menu.cpp:349 +#: src/gui/menu_string_array.cpp:80 +msgid "Insert" +msgstr "Inserir" + +#: src/gui/menu_string_array.cpp:81 +#: src/supertux/menu/addon_preview_menu.cpp:177 src/editor/object_menu.cpp:61 +msgid "Update" +msgstr "Atualizar" + +#: src/gui/menu_string_array.cpp:82 src/supertux/menu/profile_menu.cpp:108 +#: src/supertux/menu/profile_menu.cpp:110 +msgid "Delete" +msgstr "Excluir" + +#: src/gui/menu_string_array.cpp:84 src/gui/menu_object_select.cpp:61 +#: src/gui/menu_color.cpp:37 src/gui/dialog.hpp:87 src/gui/menu_script.cpp:46 +#: src/supertux/menu/editor_sector_menu.cpp:48 +#: src/supertux/menu/editor_levelset_menu.cpp:58 #: src/supertux/menu/editor_new_levelset_menu.cpp:37 -#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:43 +#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:71 msgid "OK" msgstr "OK" -#: src/gui/menu_badguy_select.cpp:136 -msgid "Do you want to delete this badguy from the list?" -msgstr "Você quer eliminar este inimigo da lista?" +#: src/gui/menu_object_select.cpp:46 +msgid "List of objects" +msgstr "Lista de objetos" -#: src/gui/menu_badguy_select.cpp:137 src/gui/dialog.hpp:90 -#: src/supertux/menu/editor_level_select_menu.cpp:164 -#: src/supertux/menu/editor_menu.cpp:164 src/editor/editor.cpp:583 -msgid "Yes" -msgstr "Sim" +#: src/gui/menu_object_select.cpp:48 +#, c++-format +msgid "Select object ({})" +msgstr "Selecionar objeto ({})" -#: src/gui/menu_badguy_select.cpp:140 src/gui/dialog.hpp:91 -#: src/supertux/menu/editor_level_select_menu.cpp:168 -#: src/supertux/menu/editor_menu.cpp:167 src/editor/particle_editor.cpp:780 -#: src/editor/editor.cpp:590 -msgid "No" -msgstr "Não" +#: src/gui/menu_object_select.cpp:114 +msgid "Are you sure you want to remove this object from the list?" +msgstr "Tem certeza de que deseja remover este objeto da lista?" #: src/gui/menu_color.cpp:24 msgid "Mix the colour" msgstr "Misturar a cor" -#: src/gui/menu_filesystem.cpp:112 src/gui/menu_paths.cpp:44 -#: src/supertux/menu/particle_editor_save_as.cpp:42 +#: src/gui/dialog.hpp:96 src/supertux/menu/editor_level_select_menu.cpp:181 +#: src/editor/editor.cpp:663 +msgid "Yes" +msgstr "Sim" + +#: src/gui/dialog.hpp:97 src/supertux/menu/editor_level_select_menu.cpp:185 +#: src/editor/particle_editor.cpp:781 src/editor/editor.cpp:670 +msgid "No" +msgstr "Não" + +#: src/gui/menu_list.cpp:38 src/gui/menu_filesystem.cpp:120 +#: src/gui/menu_paths.cpp:48 src/supertux/menu/particle_editor_save_as.cpp:42 #: src/supertux/menu/editor_sectors_menu.cpp:45 -#: src/supertux/menu/editor_sectors_menu.cpp:95 -#: src/supertux/menu/editor_sectors_menu.cpp:100 +#: src/supertux/menu/editor_sectors_menu.cpp:94 +#: src/supertux/menu/editor_sectors_menu.cpp:99 #: src/supertux/menu/editor_objectgroup_menu.cpp:42 #: src/supertux/menu/editor_tilegroup_menu.cpp:36 -#: src/supertux/menu/editor_level_select_menu.cpp:173 +#: src/supertux/menu/editor_level_select_menu.cpp:190 #: src/supertux/menu/editor_save_as.cpp:42 #: src/supertux/menu/particle_editor_open.cpp:43 -#: src/editor/particle_editor.cpp:784 src/editor/editor.cpp:594 +#: src/editor/particle_editor.cpp:785 src/editor/editor.cpp:674 msgid "Cancel" msgstr "Cancelar" +#: src/gui/menu_filesystem.cpp:118 +msgid "Open Directory" +msgstr "Abrir diretório" + #: src/gui/menu_script.cpp:28 msgid "Edit script" msgstr "Editar script" -#: src/gui/menu_paths.cpp:30 +#: src/gui/menu_paths.cpp:32 msgid "Clone" msgstr "Clonar" -#: src/gui/menu_paths.cpp:38 +#: src/gui/menu_paths.cpp:41 msgid "" -"An error occured and the game could\n" +"An error occurred and the game could\n" "not clone the path. Please contact\n" "the developers for support." -msgstr "Um erro aconteceu e o jogo não\nconseguiu clonar o caminho.\nPor favor contate os desenvolvedores\npara suporte." +msgstr "Ocorreu um erro e o jogo não conseguiu\nclonar o caminho. Entre em contato com\nos desenvolvedores para obter suporte." -#: src/gui/menu_paths.cpp:41 +#: src/gui/menu_paths.cpp:44 msgid "Bind" msgstr "Vincular" -#: src/gui/menu_paths.cpp:63 src/supertux/menu/integrations_menu.cpp:60 -#: src/supertux/menu/contrib_menu.cpp:161 src/supertux/menu/debug_menu.cpp:75 -#: src/supertux/menu/editor_level_select_menu.cpp:88 -#: src/supertux/menu/worldmap_cheat_menu.cpp:55 -#: src/supertux/menu/worldmap_cheat_menu.cpp:153 +#: src/gui/menu_paths.cpp:49 +msgid "" +"Do you wish to clone the path to edit it separately,\n" +"or do you want to bind both paths together\n" +"so that any edit on one edits the other?" +msgstr "Deseja clonar o caminho para o editar separadamente,\nou quer ligar os dois caminhos em conjunto\npara que qualquer edição num deles edite o outro?" + +#: src/gui/menu_paths.cpp:56 +#, c++-format +msgid "Path {}" +msgstr "Caminho {}" + +#: src/gui/menu_paths.cpp:67 src/supertux/menu/integrations_menu.cpp:60 +#: src/supertux/menu/editor_converters_menu.cpp:79 +#: src/supertux/menu/video_system_menu.cpp:45 +#: src/supertux/menu/contrib_menu.cpp:102 src/supertux/menu/debug_menu.cpp:77 +#: src/supertux/menu/multiplayer_menu.cpp:39 +#: src/supertux/menu/custom_menu_menu.cpp:65 +#: src/supertux/menu/editor_level_select_menu.cpp:98 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:63 +#: src/supertux/menu/worldmap_cheat_menu.cpp:57 +#: src/supertux/menu/worldmap_cheat_menu.cpp:196 #: src/supertux/menu/editor_levelset_select_menu.cpp:114 -#: src/supertux/menu/options_menu.cpp:442 -#: src/supertux/menu/profile_menu.cpp:54 src/supertux/menu/addon_menu.cpp:213 +#: src/supertux/menu/options_menu.cpp:223 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:69 +#: src/supertux/menu/addon_preview_menu.cpp:193 +#: src/supertux/menu/profile_menu.cpp:118 +#: src/supertux/menu/multiplayer_players_menu.cpp:91 +#: src/supertux/menu/addon_menu.cpp:153 #: src/supertux/menu/editor_new_levelset_menu.cpp:40 +#: src/supertux/menu/options_select_menu.cpp:44 #: src/supertux/menu/world_set_menu.cpp:33 +#: src/supertux/menu/addon_browse_menu.cpp:162 #: src/supertux/menu/web_asset_menu.cpp:48 -#: src/supertux/menu/keyboard_menu.cpp:49 -#: src/supertux/menu/language_menu.cpp:56 -#: src/supertux/menu/joystick_menu.cpp:97 +#: src/supertux/menu/profile_name_menu.cpp:45 +#: src/supertux/menu/keyboard_menu.cpp:71 +#: src/supertux/menu/sorted_contrib_menu.cpp:51 +#: src/supertux/menu/language_menu.cpp:63 +#: src/supertux/menu/joystick_menu.cpp:99 #: src/supertux/menu/contrib_levelset_menu.cpp:67 -#: src/supertux/menu/cheat_menu.cpp:44 -#: src/supertux/menu/editor_delete_level_menu.cpp:43 +#: src/supertux/menu/cheat_menu.cpp:58 +#: src/supertux/menu/addon_file_install_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:43 +#: src/supertux/menu/cheat_apply_menu.cpp:63 +#: src/supertux/menu/multiplayer_player_menu.cpp:205 +#: src/supertux/menu/editor_delete_level_menu.cpp:68 msgid "Back" msgstr "Voltar" -#: src/badguy/toad.hpp:37 +#: src/addon/addon_manager.cpp:562 +msgid "Only one resource pack is allowed to be enabled at a time." +msgstr "Só é permitido ativar um pacote de recursos de cada vez." + +#: src/addon/addon_manager.cpp:837 +#, c++-format +msgid "Add-on {} by {} is already installed." +msgstr "O complemento {} de {} já está instalado." + +#: src/addon/addon_manager.cpp:857 +#, c++-format +msgid "Add-on {} by {} successfully installed." +msgstr "Complemento {} de {} instalado com sucesso." + +#: src/addon/addon.cpp:71 src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Levelset" +msgstr "Conjunto de níveis" + +#: src/addon/addon.cpp:74 src/supertux/menu/editor_levelset_menu.cpp:54 +#: data//images/engine/editor/objects.stoi:389 +msgid "Worldmap" +msgstr "Mapa-múndi" + +#: src/addon/addon.cpp:77 +msgid "World" +msgstr "Mundo" + +#: src/addon/addon.cpp:80 +msgid "Add-on" +msgstr "Complemento" + +#: src/addon/addon.cpp:83 +msgid "Language Pack" +msgstr "Pacote de Idiomas" + +#: src/addon/addon.cpp:86 +msgid "Resource Pack" +msgstr "Pacote de Recursos" + +#: src/addon/addon.cpp:89 +msgid "Unknown" +msgstr "Desconhecido" + +#: src/addon/addon.cpp:100 +#, c++-format +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" por \"{}\"" + +#: src/addon/addon.cpp:114 +msgid "add-on" +msgstr "complemento" + +#: src/addon/addon.cpp:114 +msgid "add-ons" +msgstr "complementos" + +#: src/badguy/toad.hpp:38 msgid "Toad" msgstr "Sapo" -#: src/badguy/mrtree.hpp:29 -msgid "Walking Tree" -msgstr "Árvore Andante" +#: src/badguy/mrtree.hpp:32 +msgid "Mr. Tree" +msgstr "Sr. Árvore" -#: src/badguy/plant.hpp:33 +#: src/badguy/plant.hpp:34 msgid "Plant" msgstr "Planta" -#: src/badguy/crystallo.hpp:30 +#: src/badguy/tarantula.hpp:39 src/badguy/tarantula.cpp:353 +msgid "Tarantula" +msgstr "Tarântula" + +#: src/badguy/granito_giant.cpp:71 +msgid "Awake" +msgstr "Acordado" + +#: src/badguy/granito_giant.cpp:72 +msgid "Sleeping" +msgstr "Dormindo" + +#: src/badguy/granito_giant.cpp:73 +msgid "Corrupted A" +msgstr "Corrompido A" + +#: src/badguy/granito_giant.cpp:74 +msgid "Corrupted B" +msgstr "Corrompido B" + +#: src/badguy/granito_giant.cpp:75 +msgid "Corrupted C" +msgstr "Corrompido C" + +#: src/badguy/crystallo.hpp:33 msgid "Crystallo" msgstr "Cristal" -#: src/badguy/totem.hpp:36 +#: src/badguy/viciousivy.cpp:45 src/badguy/snail.cpp:70 +#: src/badguy/kamikazesnowball.cpp:118 src/badguy/walkingleaf.cpp:36 +#: src/badguy/jumpy.cpp:46 src/badguy/igel.cpp:189 src/badguy/mrtree.cpp:51 +msgid "Corrupted" +msgstr "Corrompido" + +#: src/badguy/totem.hpp:37 msgid "Totem" msgstr "Totem" -#: src/badguy/stalactite.hpp:38 +#: src/badguy/stalactite.hpp:42 msgid "Stalactite" msgstr "Estalactite" -#: src/badguy/haywire.hpp:45 +#: src/badguy/fish_chasing.cpp:198 +msgid "Tracking Distance" +msgstr "Distância de Rastreamento" + +#: src/badguy/fish_chasing.cpp:199 +msgid "Losing Distance" +msgstr "Distância de Perda" + +#: src/badguy/fish_chasing.cpp:200 +msgid "Chase Speed" +msgstr "Velocidade de Perseguição" + +#: src/badguy/root_sapling.hpp:41 +msgid "Root Sapling" +msgstr "Muda de raiz" + +#: src/badguy/haywire.hpp:46 msgid "Haywire" msgstr "Bomba" -#: src/badguy/dispenser.hpp:48 +#: src/badguy/dispenser.hpp:52 msgid "Dispenser" msgstr "Dispensador" -#: src/badguy/short_fuse.hpp:29 +#: src/badguy/short_fuse.hpp:30 msgid "Short Fuse" msgstr "Fusível Curto" -#: src/badguy/zeekling.hpp:36 +#: src/badguy/zeekling.hpp:39 msgid "Zeekling" msgstr "Dragão-Falcão" -#: src/badguy/mriceblock.hpp:46 -msgid "Iceblock" -msgstr "Bloco de Gelo" +#: src/badguy/smartball.cpp:35 +msgid "Pumpkin" +msgstr "Abóbora" -#: src/badguy/scrystallo.cpp:52 -msgid "Walk Radius" -msgstr "Raio de Movimento" - -#: src/badguy/scrystallo.cpp:53 -msgid "Awakening Radius" -msgstr "Raio de Despertar" +#: src/badguy/bouncing_snowball.cpp:82 +msgid "Fatbat" +msgstr "Morcego gordo" -#: src/badguy/jumpy.hpp:36 -msgid "Jumpy" -msgstr "Saltador" +#: src/badguy/dive_mine.hpp:50 +msgid "Dive Mine" +msgstr "Mina de mergulho" -#: src/badguy/captainsnowball.hpp:31 -msgid "Captain Snowball" -msgstr "Capitão Bola de Neve" +#: src/badguy/granito_big.hpp:33 +msgid "Big Granito" +msgstr "Grande Granito" -#: src/badguy/ghosttree.hpp:42 -msgid "Ghost Tree" -msgstr "Árvore Fantasma" +#: src/badguy/mriceblock.hpp:49 +msgid "Mr. Iceblock" +msgstr "Sr. Bloco de Gelo" -#: src/badguy/willowisp.cpp:323 -msgid "Track range" -msgstr "Distância de perseguição" +#: src/badguy/granito.hpp:39 src/badguy/darttrap.cpp:163 +#: src/badguy/corrupted_granito.cpp:175 src/badguy/dispenser.cpp:438 +msgid "Granito" +msgstr "Granito" -#: src/badguy/willowisp.cpp:324 -msgid "Vanish range" -msgstr "Distância de desaparecer" +#: src/badguy/fish_swimming.cpp:54 src/badguy/jumpy.cpp:44 +#: data//images/ice_world.strf:10 data//images/tiles.strf:28 +#: data//images/worldmap.strf:41 +msgid "Snow" +msgstr "Neve" + +#: src/badguy/fish_swimming.cpp:55 data//images/ice_world.strf:211 +#: data//images/tiles.strf:366 data//images/worldmap.strf:67 +msgid "Forest" +msgstr "Floresta" + +#: src/badguy/crusher.hpp:71 +msgid "Crusher" +msgstr "Esmagador" + +#: src/badguy/flame.cpp:84 +msgid "Fire" +msgstr "Fogo" + +#: src/badguy/flame.cpp:85 +msgid "Ghost" +msgstr "Fantasma" + +#: src/badguy/corrupted_granito_big.hpp:35 +msgid "Corrupted Big Granito" +msgstr "Grande Granito Corrompido" + +#: src/badguy/scrystallo.cpp:57 +msgid "Walk Radius" +msgstr "Raio de Movimento" + +#: src/badguy/scrystallo.cpp:58 +msgid "Awakening Radius" +msgstr "Raio de Despertar" + +#: src/badguy/scrystallo.cpp:59 +msgid "Roof-attached" +msgstr "Fixado no teto" + +#: src/badguy/jumpy.hpp:40 +msgid "Jumpy" +msgstr "Saltador" + +#: src/badguy/captainsnowball.hpp:32 +msgid "Captain Snowball" +msgstr "Capitão Bola de Neve" -#: src/badguy/willowisp.cpp:325 +#: src/badguy/ghosttree.hpp:43 +msgid "Ghost Tree" +msgstr "Árvore Fantasma" + +#: src/badguy/willowisp.cpp:314 +msgid "Track range" +msgstr "Distância de perseguição" + +#: src/badguy/willowisp.cpp:315 +msgid "Vanish range" +msgstr "Distância de desaparecer" + +#: src/badguy/willowisp.cpp:316 msgid "Fly speed" msgstr "Velocidade a voar" -#: src/badguy/kugelblitz.hpp:39 +#: src/badguy/kugelblitz.hpp:40 msgid "Kugelblitz" msgstr "Meteorito" -#: src/badguy/mole_rock.hpp:43 +#: src/badguy/mole_rock.hpp:44 msgid "Mole's rock" msgstr "Pedra da Toupeira" -#: src/badguy/badguy.cpp:849 +#: src/badguy/badguy.cpp:1064 msgid "Death script" msgstr "Script da Morte" -#: src/badguy/sspiky.hpp:36 +#: src/badguy/sspiky.hpp:37 msgid "Sleeping Spiky" msgstr "Espinhoso a Dormir" -#: src/badguy/yeti_stalactite.hpp:33 +#: src/badguy/yeti_stalactite.hpp:34 msgid "Yeti's Stalactite" msgstr "Estalactite do Yeti" -#: src/badguy/livefire.hpp:37 +#: src/badguy/fish_harmless.hpp:30 +msgid "Harmless Fish" +msgstr "Peixe Inofensivo" + +#: src/badguy/livefire.hpp:38 msgid "Walking Flame" msgstr "Chama Andante" -#: src/badguy/livefire.hpp:68 +#: src/badguy/livefire.hpp:71 msgid "Sleeping Flame" msgstr "Chama a Dormir" -#: src/badguy/livefire.hpp:84 +#: src/badguy/livefire.hpp:89 msgid "Dormant Flame" msgstr "Chama Presa" -#: src/badguy/owl.hpp:39 +#: src/badguy/owl.hpp:45 msgid "Owl" msgstr "Coruja" -#: src/badguy/igel.hpp:34 +#: src/badguy/igel.hpp:38 msgid "Igel" msgstr "Porco-espinho" -#: src/badguy/darttrap.cpp:126 +#: src/badguy/darttrap.cpp:148 msgid "Initial delay" msgstr "Atraso inicial (seg)" -#: src/badguy/darttrap.cpp:128 +#: src/badguy/darttrap.cpp:150 msgid "Fire delay" msgstr "Cadência de tiro (seg)" -#: src/badguy/darttrap.cpp:129 +#: src/badguy/darttrap.cpp:151 msgid "Ammo" msgstr "Quantidade de munições" -#: src/badguy/snowball.hpp:29 -msgid "Snowball" -msgstr "Bola de neve" +#: src/badguy/darttrap.cpp:152 +msgid "Dart sprite" +msgstr "Imagem de dardo" + +#: src/badguy/darttrap.cpp:164 +msgid "Skull" +msgstr "Caveira" + +#: src/badguy/snowball.hpp:30 +msgid "Mr. Snowball" +msgstr "Sr. Bola de Neve" -#: src/badguy/smartblock.hpp:29 -msgid "Smartblock" -msgstr "Bloco Inteligente" +#: src/badguy/smartblock.hpp:30 +msgid "Mrs. Iceblock" +msgstr "Sra. Bloco de Gelo" -#: src/badguy/yeti.cpp:369 +#: src/badguy/yeti.cpp:370 msgid "Fixed position" msgstr "Posição fixa" -#: src/badguy/yeti.cpp:370 +#: src/badguy/yeti.cpp:371 msgid "Lives" msgstr "Vidas" -#: src/badguy/goldbomb.hpp:49 +#: src/badguy/goldbomb.hpp:50 msgid "Gold Bomb" msgstr "Bomba Dourada" -#: src/badguy/flyingsnowball.hpp:32 +#: src/badguy/corrupted_granito.hpp:44 +msgid "Corrupted Granito" +msgstr "Granito Corrompido" + +#: src/badguy/mrbomb.cpp:48 +msgid "Classic" +msgstr "Clássico" + +#: src/badguy/flyingsnowball.hpp:33 msgid "Flying Snowball" msgstr "Bola de Neve Voadora" -#: src/badguy/skullyhop.hpp:37 -msgid "Skullyhop" -msgstr "Caveira Saltitante" +#: src/badguy/crusher.cpp:75 +msgid "Ice (normal)" +msgstr "Gelo (normal)" + +#: src/badguy/crusher.cpp:76 +msgid "Ice (big)" +msgstr "Gelo (grande)" + +#: src/badguy/crusher.cpp:77 +msgid "Rock (normal)" +msgstr "Pedra (normal)" -#: src/badguy/kamikazesnowball.hpp:32 -msgid "Snowshot" -msgstr "Neve Bala" +#: src/badguy/crusher.cpp:78 +msgid "Rock (big)" +msgstr "Pedra (grande)" -#: src/badguy/kamikazesnowball.hpp:52 +#: src/badguy/crusher.cpp:79 +msgid "Corrupted (normal)" +msgstr "Corrompido (normal)" + +#: src/badguy/crusher.cpp:80 +msgid "Corrupted (big)" +msgstr "Corrompido (grande)" + +#: src/badguy/crusher.cpp:492 +msgid "Sideways" +msgstr "Laterais" + +#: src/badguy/kamikazesnowball.hpp:34 +msgid "Kamikaze Snowball" +msgstr "Bola de Neve Kamikaze" + +#: src/badguy/kamikazesnowball.hpp:64 msgid "Leafshot" msgstr "Folha-Bala" -#: src/badguy/flame.hpp:41 +#: src/badguy/fish_swimming.hpp:40 +msgid "Swimming Fish" +msgstr "Peixes nadando" + +#: src/badguy/flame.hpp:47 msgid "Flame" msgstr "Chama" -#: src/badguy/scrystallo.hpp:30 +#: src/badguy/scrystallo.hpp:31 msgid "Sleeping Crystallo" msgstr "Cristal Adormecido" -#: src/badguy/poisonivy.hpp:30 -msgid "Spring Leaf" -msgstr "Folha Trampolim" +#: src/badguy/jumpy.cpp:45 +msgid "Wooden" +msgstr "De madeira" + +#: src/badguy/jumpy.cpp:47 +msgid "Metal" +msgstr "Metal" + +#: src/badguy/jumpy.cpp:48 +msgid "Bag" +msgstr "Bolsa" #: src/badguy/willowisp.hpp:57 msgid "Will o' Wisp" msgstr "Chama Perseguidora" -#: src/badguy/badguy.hpp:53 +#: src/badguy/fish_jumping.hpp:41 +msgid "Jumping Fish" +msgstr "Peixe saltador" + +#: src/badguy/badguy.hpp:61 msgid "Badguy" msgstr "Inimigo" -#: src/badguy/ghostflame.hpp:30 -msgid "Ghost Flame" -msgstr "Chama Fantasma" - -#: src/badguy/rcrystallo.hpp:30 +#: src/badguy/rcrystallo.hpp:33 msgid "Roof Crystallo" msgstr "Cristal de Teto" -#: src/badguy/spiky.hpp:30 +#: src/badguy/spiky.hpp:31 msgid "Spiky" msgstr "Espinhoso" -#: src/badguy/walkingleaf.hpp:30 -msgid "Autumn Leaf" -msgstr "Folha de Outono" +#: src/badguy/walkingleaf.hpp:33 +msgid "Walking Leaf" +msgstr "Folha ambulante" + +#: src/badguy/root.hpp:39 +msgid "Root" +msgstr "Raiz" -#: src/badguy/owl.cpp:227 +#: src/badguy/owl.cpp:241 msgid "Carry" msgstr "Carregar" -#: src/badguy/darttrap.hpp:33 +#: src/badguy/darttrap.hpp:35 msgid "Dart Trap" msgstr "Armadilha de Dardos" -#: src/badguy/skydive.hpp:38 +#: src/badguy/skydive.hpp:43 msgid "Skydive" msgstr "Pára-quedas" -#: src/badguy/yeti.hpp:37 +#: src/badguy/yeti.hpp:38 msgid "Yeti" msgstr "Yeti" -#: src/badguy/mole.hpp:39 +#: src/badguy/snowball.cpp:41 +msgid "Bumpkin" +msgstr "Caipira" + +#: src/badguy/snowball.cpp:42 +msgid "BSOD" +msgstr "Tela Azul" + +#: src/badguy/mole.hpp:38 msgid "Mole" msgstr "Toupeira" -#: src/badguy/mrbomb.hpp:42 -msgid "Bomb" -msgstr "Bomba" +#: src/badguy/corrupted_granito.cpp:176 +msgid "Skullyhop" +msgstr "Caveira Saltitante" + +#: src/badguy/mrbomb.hpp:40 +msgid "Mr. Bomb" +msgstr "Sr. Bomba" -#: src/badguy/walking_candle.hpp:40 +#: src/badguy/walking_candle.hpp:41 msgid "Walking Candle" msgstr "Vela Andante" -#: src/badguy/angrystone.hpp:34 +#: src/badguy/angrystone.hpp:39 msgid "Angry Stone" msgstr "Pedra Irritada" -#: src/badguy/spidermite.hpp:35 -msgid "Spider" -msgstr "Aranha" +#: src/badguy/tarantula.cpp:354 +msgid "Spidermite" +msgstr "Ácaro-aranha" + +#: src/badguy/tarantula.cpp:374 +msgid "Static" +msgstr "Estático" #: src/badguy/ghoul.hpp:30 msgid "Ghoul" msgstr "Carniçal" -#: src/badguy/snowman.hpp:28 +#: src/badguy/granito_giant.hpp:32 +msgid "Giant Granito" +msgstr "Granito Gigante" + +#: src/badguy/snowman.hpp:29 msgid "Snowman" msgstr "Homem neve" -#: src/badguy/stumpy.hpp:35 -msgid "Walking Stump" -msgstr "Toco Andante" +#: src/badguy/viciousivy.hpp:33 +msgid "Vicious Ivy" +msgstr "Hera Viciosa" + +#: src/badguy/stalactite.cpp:156 +msgid "ice" +msgstr "gelo" + +#: src/badguy/stalactite.cpp:157 +msgid "rock" +msgstr "pedra" + +#: src/badguy/fish_chasing.hpp:33 +msgid "Chasing Fish" +msgstr "Peixe perseguidor" -#: src/badguy/fish.hpp:40 -msgid "Fish" -msgstr "Peixe" +#: src/badguy/stumpy.hpp:38 +msgid "Stumpy" +msgstr "Tronco" -#: src/badguy/dispenser.cpp:445 +#: src/badguy/dispenser.cpp:412 msgid "Interval (seconds)" msgstr "Intervalo (segundos)" -#: src/badguy/dispenser.cpp:446 +#: src/badguy/dispenser.cpp:413 msgid "Random" msgstr "Aleatório" -#: src/badguy/dispenser.cpp:447 data//images/engine/editor/objects.stoi:4 -msgid "Enemies" -msgstr "Inimigos" +#: src/badguy/dispenser.cpp:416 +#: src/supertux/menu/editor_objectgroup_menu.cpp:30 +#: src/editor/toolbox_widget.cpp:101 +msgid "Objects" +msgstr "Objetos" -#: src/badguy/dispenser.cpp:448 +#: src/badguy/dispenser.cpp:419 msgid "Limit dispensed badguys" msgstr "Limitar badguys dispensados" -#: src/badguy/dispenser.cpp:450 +#: src/badguy/dispenser.cpp:421 msgid "Obey Gravity" msgstr "Obedecer Gravidade" -#: src/badguy/dispenser.cpp:452 +#: src/badguy/dispenser.cpp:423 msgid "Max concurrent badguys" msgstr "Máximo de badguys simultâneos" -#: src/badguy/dispenser.cpp:454 src/supertux/menu/editor_levelset_menu.cpp:60 -msgid "Type" -msgstr "Tipo" - -#: src/badguy/dispenser.cpp:455 -msgid "dropper" -msgstr "conta-gotas" +#: src/badguy/dispenser.cpp:435 +msgid "Dropper" +msgstr "Conta-gotas" -#: src/badguy/dispenser.cpp:455 -msgid "rocket launcher" -msgstr "lançador de foguetes" +#: src/badguy/dispenser.cpp:436 +msgid "Cannon" +msgstr "Canhão" -#: src/badguy/dispenser.cpp:455 -msgid "cannon" -msgstr "canhão" - -#: src/badguy/dispenser.cpp:455 -msgid "invisible" -msgstr "invisível" +#: src/badguy/dispenser.cpp:437 src/worldmap/special_tile.cpp:77 +msgid "Invisible" +msgstr "Invisível" -#: src/badguy/snail.hpp:42 +#: src/badguy/snail.hpp:43 msgid "Snail" msgstr "Caracol" -#: src/badguy/smartball.hpp:31 -msgid "Smartball" -msgstr "Bola Esperta" +#: src/badguy/smartball.hpp:32 +msgid "Mrs. Snowball" +msgstr "Sra. Bola de Neve" -#: src/badguy/bouncing_snowball.hpp:32 +#: src/badguy/bouncing_snowball.hpp:39 msgid "Bouncing Snowball" msgstr "Bola de Neve Pulante" -#: src/badguy/iceflame.hpp:33 -msgid "Ice Flame" -msgstr "Chama Gelada" +#: src/badguy/granito_big.cpp:52 src/badguy/granito.cpp:263 +msgid "Default" +msgstr "Padrão" + +#: src/badguy/granito_big.cpp:53 src/badguy/granito.cpp:264 +msgid "Standing" +msgstr "Em pé" -#: src/badguy/dart.hpp:43 +#: src/badguy/granito_big.cpp:54 src/badguy/granito.cpp:265 +msgid "Walking" +msgstr "Andando" + +#: src/badguy/mriceblock.cpp:63 +msgid "Laptop" +msgstr "Laptop" + +#: src/badguy/dart.hpp:44 msgid "Dart" msgstr "Dardo" +#: src/badguy/granito.cpp:268 +msgid "Sitting" +msgstr "Sentado" + #: src/supertux/statistics.cpp:54 msgid "Max coins collected:" msgstr "Máx moedas coletadas:" @@ -1745,7 +2298,7 @@ msgstr "Melhor tempo concluído:" msgid "Level target time:" msgstr "Objetivo de tempo do nível:" -#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:160 +#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:175 msgid "Best Level Statistics" msgstr "Melhores Estatísticas do Nível" @@ -1757,7 +2310,7 @@ msgstr "Você" msgid "Best" msgstr "Melhor" -#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:166 +#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:181 msgid "Coins" msgstr "Moedas" @@ -1765,202 +2318,199 @@ msgstr "Moedas" msgid "Badguys" msgstr "Inimigos" -#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:172 +#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:187 msgid "Secrets" msgstr "Segredos" -#: src/supertux/game_object.hpp:78 +#: src/supertux/game_object.hpp:88 msgid "Unknown object" msgstr "Objeto desconhecido" -#: src/supertux/sector.cpp:414 +#: src/supertux/sector.cpp:507 msgid "Press escape to skip" msgstr "Pressione Escape para pular" -#: src/supertux/command_line_arguments.cpp:94 -#, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Uso: %s [OPÇÕES] [ARQUIVOdoNÍVEL]" +#: src/supertux/command_line_arguments.cpp:92 +#, c++-format +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Uso: {} [OPÇÕES] [ARQUIVOdoNÍVEL]" -#: src/supertux/command_line_arguments.cpp:95 +#: src/supertux/command_line_arguments.cpp:93 msgid "General Options:" msgstr "Opções Gerais:" -#: src/supertux/command_line_arguments.cpp:96 +#: src/supertux/command_line_arguments.cpp:94 msgid " -h, --help Show this help message and quit" msgstr " -h, --help Mostra essa mensagem e sai" -#: src/supertux/command_line_arguments.cpp:97 +#: src/supertux/command_line_arguments.cpp:95 msgid " -v, --version Show SuperTux version and quit" msgstr " -v, --version Mostra a versão do SuperTux e sai" -#: src/supertux/command_line_arguments.cpp:98 +#: src/supertux/command_line_arguments.cpp:96 msgid " --verbose Print verbose messages" msgstr " --verbose Mostra mensagens detalhadas de depuração" -#: src/supertux/command_line_arguments.cpp:99 +#: src/supertux/command_line_arguments.cpp:97 msgid " --debug Print extra verbose messages" msgstr " --debug Mostra mais mensagens detalhadas de depuração" -#: src/supertux/command_line_arguments.cpp:100 +#: src/supertux/command_line_arguments.cpp:98 msgid "" " --print-datadir Print SuperTux's primary data directory." msgstr " --print-datadir Mostra o diretório dos dados principais do SuperTux." -#: src/supertux/command_line_arguments.cpp:101 +#: src/supertux/command_line_arguments.cpp:99 msgid "" " --acknowledgements Print the licenses of libraries used by " "SuperTux." msgstr " --acknowledgements Imprime a licença das bibliotecas usadas pelo SuperTux." -#: src/supertux/command_line_arguments.cpp:103 +#: src/supertux/command_line_arguments.cpp:101 msgid "Video Options:" msgstr "Opções de Vídeo:" -#: src/supertux/command_line_arguments.cpp:104 +#: src/supertux/command_line_arguments.cpp:102 msgid " -f, --fullscreen Run in fullscreen mode" msgstr " -f, --fullscreen Roda em modo de tela cheia" -#: src/supertux/command_line_arguments.cpp:105 +#: src/supertux/command_line_arguments.cpp:103 msgid " -w, --window Run in window mode" msgstr " -w, --window Roda em modo de janela" -#: src/supertux/command_line_arguments.cpp:106 +#: src/supertux/command_line_arguments.cpp:104 msgid " -g, --geometry WIDTHxHEIGHT Run SuperTux in given resolution" msgstr " -g, --geometry LARGURAxALTURA Roda o SuperTux em uma dada resolução" -#: src/supertux/command_line_arguments.cpp:107 +#: src/supertux/command_line_arguments.cpp:105 msgid " -a, --aspect WIDTH:HEIGHT Run SuperTux with given aspect ratio" msgstr " -a, --aspect LARGURA:ALTURA Roda o Supertux com uma dada razão de aspecto como 4:3" -#: src/supertux/command_line_arguments.cpp:108 +#: src/supertux/command_line_arguments.cpp:106 msgid " -d, --default Reset video settings to default values" msgstr " -d, --default Reseta opções de vídeo para o padrão" -#: src/supertux/command_line_arguments.cpp:109 +#: src/supertux/command_line_arguments.cpp:107 msgid " --renderer RENDERER Use sdl, opengl, or auto to render" msgstr " --renderer RENDERIZADOR Usa sdl, opengl ou automático como renderizador" -#: src/supertux/command_line_arguments.cpp:111 +#: src/supertux/command_line_arguments.cpp:109 msgid "Audio Options:" msgstr "Opções de Áudio:" -#: src/supertux/command_line_arguments.cpp:112 +#: src/supertux/command_line_arguments.cpp:110 msgid " --disable-sound Disable sound effects" msgstr " --disable-sound Desabilita os efeitos de som" -#: src/supertux/command_line_arguments.cpp:113 +#: src/supertux/command_line_arguments.cpp:111 msgid " --disable-music Disable music" msgstr " --disable-music Desabilita música" -#: src/supertux/command_line_arguments.cpp:115 +#: src/supertux/command_line_arguments.cpp:113 msgid "Game Options:" msgstr "Opções de Jogo:" -#: src/supertux/command_line_arguments.cpp:116 +#: src/supertux/command_line_arguments.cpp:114 msgid " --edit-level Open given level in editor" msgstr " --edit-level Abre no editor o nível indicado" -#: src/supertux/command_line_arguments.cpp:117 +#: src/supertux/command_line_arguments.cpp:115 msgid " --resave Loads given level and saves it" msgstr " --resave Carrega um nível especificado e o salva" -#: src/supertux/command_line_arguments.cpp:118 +#: src/supertux/command_line_arguments.cpp:116 msgid " --show-fps Display framerate in levels" msgstr " --show-fps Mostra a taxa de quadros por segundo nos níveis" -#: src/supertux/command_line_arguments.cpp:119 +#: src/supertux/command_line_arguments.cpp:117 msgid " --no-show-fps Do not display framerate in levels" msgstr " --no-show-fps Não exibe a taxa de quadros por segundo nos níveis" -#: src/supertux/command_line_arguments.cpp:120 +#: src/supertux/command_line_arguments.cpp:118 msgid " --show-pos Display player's current position" msgstr " --show-pos Mostra posição atual do jogador" -#: src/supertux/command_line_arguments.cpp:121 +#: src/supertux/command_line_arguments.cpp:119 msgid " --no-show-pos Do not display player's position" msgstr " --no-show-pos Não mostra a posição do jogador" -#: src/supertux/command_line_arguments.cpp:122 +#: src/supertux/command_line_arguments.cpp:120 msgid " --developer Switch on developer feature" msgstr " --developer Habilita modo de desenvolvedor" -#: src/supertux/command_line_arguments.cpp:123 +#: src/supertux/command_line_arguments.cpp:121 msgid " -s, --debug-scripts Enable script debugger." msgstr " -s, --debug-scripts Habilita o depurador de scripts." -#: src/supertux/command_line_arguments.cpp:124 +#: src/supertux/command_line_arguments.cpp:122 msgid "" " --spawn-pos X,Y Where in the level to spawn Tux. Only used if" " level is specified." msgstr " --spawn-pos X,Y Local do nível onde Tux começa. Usado no nível apenas se este for especificado." -#: src/supertux/command_line_arguments.cpp:125 +#: src/supertux/command_line_arguments.cpp:123 msgid " --sector SECTOR Spawn Tux in SECTOR\n" msgstr " --setor SETOR Tux Começa no SETOR\n" -#: src/supertux/command_line_arguments.cpp:126 +#: src/supertux/command_line_arguments.cpp:124 msgid " --spawnpoint SPAWNPOINT Spawn Tux at SPAWNPOINT\n" msgstr " --spawnpoint PONTOCOMEÇO Tux Inicia no SPAWNPOINT\n" -#: src/supertux/command_line_arguments.cpp:128 -msgid "Demo Recording Options:" -msgstr "Opções de Gravação Demo:" - -#: src/supertux/command_line_arguments.cpp:129 -msgid " --record-demo FILE LEVEL Record a demo to FILE" -msgstr " --record-demo ARQUIVO NÍVEL Grava um demo para ARQUIVO" - -#: src/supertux/command_line_arguments.cpp:130 -msgid " --play-demo FILE LEVEL Play a recorded demo" -msgstr " --play-demo ARQUIVO NÍVEL Reproduz um demo gravado" - -#: src/supertux/command_line_arguments.cpp:132 +#: src/supertux/command_line_arguments.cpp:126 msgid "Directory Options:" msgstr "Opções de Diretórios:" -#: src/supertux/command_line_arguments.cpp:133 +#: src/supertux/command_line_arguments.cpp:127 msgid "" " --datadir DIR Set the directory for the games datafiles" msgstr " --datadir DIRETORIA Define o diretório para os arquivos de dados do jogo" -#: src/supertux/command_line_arguments.cpp:134 +#: src/supertux/command_line_arguments.cpp:128 msgid "" " --userdir DIR Set the directory for user data (savegames, " "etc.)" msgstr " --userdir DIRETORIA Define o diretório de dados do usuário (jogos salvos, etc.)" -#: src/supertux/command_line_arguments.cpp:136 +#: src/supertux/command_line_arguments.cpp:130 msgid "Add-On Options:" msgstr "Opções dos Complementos:" -#: src/supertux/command_line_arguments.cpp:137 +#: src/supertux/command_line_arguments.cpp:131 msgid " --repository-url URL Set the URL to the Add-On repository" msgstr " --repository-url URL Define o URL do repositório dos Complementos" -#: src/supertux/command_line_arguments.cpp:139 +#: src/supertux/command_line_arguments.cpp:133 msgid "Environment variables:" msgstr "Variáveis de Ambiente:" -#: src/supertux/command_line_arguments.cpp:140 +#: src/supertux/command_line_arguments.cpp:134 msgid "" " SUPERTUX2_USER_DIR Directory for user data (savegames, etc.)" msgstr " DIRETORIOdoUSUÁRIO_SUPERTUX2 Diretório para informação do usuário (jogos salvos, etc.)" -#: src/supertux/command_line_arguments.cpp:141 +#: src/supertux/command_line_arguments.cpp:135 msgid " SUPERTUX2_DATA_DIR Directory for the games datafiles" msgstr " DIRETÓRIOdosDADOSdoSUPERTUX2 Diretório para os arquivos do jogo" -#: src/supertux/title_screen.cpp:44 +#: src/supertux/title_screen.cpp:272 msgid "Copyright" msgstr "Direitos autorais" -#: src/supertux/title_screen.cpp:45 +#: src/supertux/title_screen.cpp:273 msgid "" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to\n" "redistribute it under certain conditions; see the license file for details.\n" msgstr "Este jogo não acompanha ABSOLUTAMENTE NENHUMA GARANTIA. É um software livre e você é livre para\nredistribuí-lo sob certas condições; veja o arquivo LICENSE para detalhes.\n" +#: src/supertux/game_object.cpp:114 +msgid "Version" +msgstr "Versão" + +#: src/supertux/game_object.cpp:129 +#: src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Type" +msgstr "Tipo" + #: src/supertux/menu/integrations_menu.cpp:49 msgid "Integrations" msgstr "Integrações" @@ -1969,60 +2519,146 @@ msgstr "Integrações" msgid "Do not share level names when editing" msgstr "Não compartilhar o nome dos níveis enquanto edita" +#: src/supertux/menu/integrations_menu.cpp:52 +msgid "" +"Enable this if you want to work on secret levels and don't want the names to" +" be spoiled" +msgstr "Ative isso se quiser trabalhar em níveis secretos e não quiser que os nomes sejam entregues" + #: src/supertux/menu/integrations_menu.cpp:54 msgid "Enable Discord integration" msgstr "Ativar integração com o Discord" +#: src/supertux/menu/integrations_menu.cpp:55 +msgid "" +"Sends information to your Discord application about what you're doing in the" +" game." +msgstr "Envia informações para seu aplicativo Discord sobre o que você está fazendo no jogo." + #: src/supertux/menu/integrations_menu.cpp:57 msgid "Discord (disabled; not compiled)" msgstr "Discord (desativado; não compilado)" -#: src/supertux/menu/contrib_menu.cpp:80 +#: src/supertux/menu/editor_converters_menu.cpp:61 +#: src/supertux/menu/editor_menu.cpp:85 +msgid "Convert Tiles" +msgstr "Converter blocos" + +#: src/supertux/menu/editor_converters_menu.cpp:64 +msgid "Select Tile Conversion File" +msgstr "Selecione o arquivo de conversão de bloco" + +#: src/supertux/menu/editor_converters_menu.cpp:72 +#, c++-format +msgid "By: {}" +msgstr "Por: {}" + +#: src/supertux/menu/editor_converters_menu.cpp:75 +msgid "Convert Tiles By File" +msgstr "Converter blocos por arquivo" + +#: src/supertux/menu/editor_converters_menu.cpp:76 +msgid "Convert all tiles in the current level by a file, specified above." +msgstr "Converter todos os blocos no nível atual por um arquivo, especificado acima." + +#: src/supertux/menu/editor_converters_menu.cpp:89 +msgid "No tile conversion file selected." +msgstr "Nenhum arquivo de conversão de bloco selecionado." + +#: src/supertux/menu/editor_converters_menu.cpp:93 +msgid "" +"This will convert all tiles in the level. Proceed?\n" +"\n" +"Note: This should not be ran more than once on a level.\n" +"Creating a separate copy of the level is highly recommended." +msgstr "Isso converterá todos os blocos no nível. Continuar?\n\nNota: Isso não deve ser executado mais de uma vez em um nível.\nÉ altamente recomendado criar uma cópia separada do nível." + +#: src/supertux/menu/video_system_menu.cpp:36 +msgid "Select Video System" +msgstr "Selecionar Sistema de Vídeo" + +#: src/supertux/menu/video_system_menu.cpp:37 +#, c++-format +msgid "Used video system: {}" +msgstr "Sistema de vídeo usado: {}" + +#: src/supertux/menu/video_system_menu.cpp:54 +msgid "Restart game for the changes to take effect" +msgstr "Reinicie o jogo para que as alterações tenham efeito." + +#: src/supertux/menu/contrib_menu.cpp:68 #: src/supertux/menu/world_set_menu.cpp:31 msgid "Contrib Levels" msgstr "Níveis Extras" -#: src/supertux/menu/debug_menu.cpp:32 +#: src/supertux/menu/contrib_menu.cpp:98 +#: src/supertux/menu/contrib_menu.cpp:112 +msgid "Official Contrib Levels" +msgstr "Fases Extras Oficiais" + +#: src/supertux/menu/contrib_menu.cpp:99 +#: src/supertux/menu/contrib_menu.cpp:118 +msgid "Community Contrib Levels" +msgstr "Fases Extras da Comunidade" + +#: src/supertux/menu/contrib_menu.cpp:100 +#: src/supertux/menu/contrib_menu.cpp:124 +msgid "User Contrib Levels" +msgstr "Fases Extras do Usuário" + +#: src/supertux/menu/contrib_menu.cpp:113 +msgid "How is this possible? There are no Official Contrib Levels!" +msgstr "Como que isso é possível? Não existem fases extras oficiais!" + +#: src/supertux/menu/contrib_menu.cpp:119 +msgid "No Community Contrib Levels yet. Download them from the Add-ons Menu." +msgstr "Ainda não há fases extra da comunidade. Baixe-os a partir do Menu de Complementos." + +#: src/supertux/menu/contrib_menu.cpp:125 +msgid "No User Contrib Levels yet. Create some with the Level Editor." +msgstr "Ainda não há fases extra do usuário. Crie alguns com o Editor de Níveis." + +#: src/supertux/menu/debug_menu.cpp:34 msgid "Debug" msgstr "Debugar" -#: src/supertux/menu/debug_menu.cpp:56 +#: src/supertux/menu/debug_menu.cpp:58 msgid "Game Speed" msgstr "Velocidade do Jogo" -#: src/supertux/menu/debug_menu.cpp:57 +#: src/supertux/menu/debug_menu.cpp:59 msgid "Adjust Game Speed" msgstr "Ajustar Velocidade do Jogo" -#: src/supertux/menu/debug_menu.cpp:63 +#: src/supertux/menu/debug_menu.cpp:65 msgid "Show Collision Rects" msgstr "Mostrar Retângulos de Colisão" -#: src/supertux/menu/debug_menu.cpp:64 +#: src/supertux/menu/debug_menu.cpp:66 msgid "Show Worldmap Path" msgstr "Mostrar o Caminho do Worldmap" -#: src/supertux/menu/debug_menu.cpp:65 +#: src/supertux/menu/debug_menu.cpp:67 msgid "Show Controller" msgstr "Mostrar Controlador" -#: src/supertux/menu/debug_menu.cpp:66 +#: src/supertux/menu/debug_menu.cpp:68 msgid "Show Framerate" msgstr "Mostrar Taxa de Quadros" -#: src/supertux/menu/debug_menu.cpp:67 +#: src/supertux/menu/debug_menu.cpp:69 msgid "Draw Redundant Frames" msgstr "Desenhar Quadros Redundantes" -#: src/supertux/menu/debug_menu.cpp:68 +#: src/supertux/menu/debug_menu.cpp:70 msgid "Show Player Position" msgstr "Mostrar Posição do Jogador" -#: src/supertux/menu/debug_menu.cpp:69 +#: src/supertux/menu/debug_menu.cpp:71 msgid "Use Bitmap Fonts" msgstr "Usar Fontes Bitmap" -#: src/supertux/menu/debug_menu.cpp:72 +#: src/supertux/menu/debug_menu.cpp:74 msgid "Dump Texture Cache" msgstr "Despejar Cache de Texturas" @@ -2036,10 +2672,37 @@ msgid "File name" msgstr "Nome do arquivo" #: src/supertux/menu/particle_editor_save_as.cpp:38 -#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:766 +#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:767 msgid "Save" msgstr "Salvar" +#: src/supertux/menu/multiplayer_menu.cpp:27 +#: src/supertux/menu/multiplayer_players_menu.cpp:34 +msgid "Multiplayer" +msgstr "Multijogador" + +#: src/supertux/menu/multiplayer_menu.cpp:30 +msgid "Auto-manage Players" +msgstr "Gerenciar jogadores automaticamente" + +#: src/supertux/menu/multiplayer_menu.cpp:31 +msgid "" +"Automatically add and remove players when controllers are plugged or " +"unplugged" +msgstr "Adicione e remova jogadores automaticamente quando os controladores estiverem conectados ou desconectados" + +#: src/supertux/menu/multiplayer_menu.cpp:33 +msgid "Allow Multibind" +msgstr "Permitir Multibind" + +#: src/supertux/menu/multiplayer_menu.cpp:34 +msgid "Allow binding multiple joysticks to a single player" +msgstr "Permitir vincular vários joysticks a um único jogador" + +#: src/supertux/menu/multiplayer_menu.cpp:36 +msgid "Manage Players" +msgstr "Gerenciar Jogadores" + #: src/supertux/menu/editor_sectors_menu.cpp:31 msgid "Choose Sector" msgstr "Escolher Setor" @@ -2056,50 +2719,98 @@ msgstr "Criar Setor" msgid "Delete Sector" msgstr "Excluir Setor" -#: src/supertux/menu/editor_sectors_menu.cpp:93 +#: src/supertux/menu/editor_sectors_menu.cpp:92 msgid "Each level must have at least one sector." -msgstr "Cada nível tem de ter pelo menos um setor." +msgstr "Cada nível deve ter pelo menos um setor." -#: src/supertux/menu/editor_sectors_menu.cpp:98 +#: src/supertux/menu/editor_sectors_menu.cpp:97 msgid "Do you really want to delete this sector?" -msgstr "Você realmente quer deletar este setor?" +msgstr "Você realmente quer excluir este setor?" -#: src/supertux/menu/editor_sectors_menu.cpp:101 +#: src/supertux/menu/editor_sectors_menu.cpp:100 msgid "Delete sector" -msgstr "Deletar setor" +msgstr "Excluir setor" -#: src/supertux/menu/editor_objectgroup_menu.cpp:30 -#: src/editor/toolbox_widget.cpp:93 -msgid "Objects" -msgstr "Objetos" +#: src/supertux/menu/custom_menu_menu.cpp:49 +#: src/supertux/menu/options_menu.cpp:191 +msgid "Menu Customization" +msgstr "Personalização do menu" -#: src/supertux/menu/editor_level_select_menu.cpp:62 +#: src/supertux/menu/custom_menu_menu.cpp:51 +msgid "Menu Back Color" +msgstr "Cor de fundo do menu" + +#: src/supertux/menu/custom_menu_menu.cpp:52 +msgid "Menu Front Color" +msgstr "Cor da frente do menu" + +#: src/supertux/menu/custom_menu_menu.cpp:53 +msgid "Menu Help Back Color" +msgstr "Cor de fundo do menu de ajuda" + +#: src/supertux/menu/custom_menu_menu.cpp:54 +msgid "Menu Help Front Color" +msgstr "Cor da frente do menu de ajuda" + +#: src/supertux/menu/custom_menu_menu.cpp:55 +msgid "Label Text Color" +msgstr "Cor do texto do rótulo" + +#: src/supertux/menu/custom_menu_menu.cpp:56 +msgid "Active Text Color" +msgstr "Cor de texto ativo" + +#: src/supertux/menu/custom_menu_menu.cpp:57 +msgid "Divider Line Color" +msgstr "Cor da linha divisória" + +#: src/supertux/menu/custom_menu_menu.cpp:58 +msgid "Menu Roundness" +msgstr "Redondeza do menu" + +#: src/supertux/menu/custom_menu_menu.cpp:60 +msgid "Editor Interface Color" +msgstr "Cor da interface do editor" + +#: src/supertux/menu/custom_menu_menu.cpp:61 +msgid "Editor Hover Color" +msgstr "Cor do cursor do editor" + +#: src/supertux/menu/custom_menu_menu.cpp:62 +msgid "Editor Grab Color" +msgstr "Cor de captura do editor" + +#: src/supertux/menu/custom_menu_menu.cpp:64 +msgid "Reset to defaults" +msgstr "Resetar para os padrões" + +#: src/supertux/menu/editor_level_select_menu.cpp:72 msgid "Empty World" msgstr "Mundo Vazio" -#: src/supertux/menu/editor_level_select_menu.cpp:77 +#: src/supertux/menu/editor_level_select_menu.cpp:87 msgid "Create Level" msgstr "Criar Nível" -#: src/supertux/menu/editor_level_select_menu.cpp:81 +#: src/supertux/menu/editor_level_select_menu.cpp:91 msgid "Edit Worldmap" msgstr "Editar Mapa do Mundo" -#: src/supertux/menu/editor_level_select_menu.cpp:83 +#: src/supertux/menu/editor_level_select_menu.cpp:93 msgid "Create Worldmap" msgstr "Criar Mapa do Mundo" -#: src/supertux/menu/editor_level_select_menu.cpp:85 -#: src/supertux/menu/editor_delete_level_menu.cpp:33 +#: src/supertux/menu/editor_level_select_menu.cpp:95 +#: src/supertux/menu/editor_delete_level_menu.cpp:55 msgid "Delete level" -msgstr "Deletar nível" +msgstr "Excluir nível" -#: src/supertux/menu/editor_level_select_menu.cpp:87 -#: src/supertux/menu/editor_levelset_menu.cpp:56 +#: src/supertux/menu/editor_level_select_menu.cpp:97 +#: src/supertux/menu/editor_levelset_menu.cpp:50 msgid "World Settings" msgstr "Configurações do Mundo" -#: src/supertux/menu/editor_level_select_menu.cpp:127 +#: src/supertux/menu/editor_level_select_menu.cpp:141 msgid "" "Share this worldmap under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -2107,7 +2818,7 @@ msgid "" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." msgstr "Recomendamos que partilhe este mapa-múndi sob a licença CC-BY-SA 4.0 International.\nEsta permite alterações e a redistribuição por terceiros.\nSe não concordar com esta licença, altere-a nas propriedades do mapa-múndi.\nADVERTÊNCIA: Os autores do SuperTux não assumem\nqualquer responsabilidade pela escolha que fizer da licença." -#: src/supertux/menu/editor_level_select_menu.cpp:134 +#: src/supertux/menu/editor_level_select_menu.cpp:148 msgid "" "Share this level under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" @@ -2115,496 +2826,816 @@ msgid "" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." msgstr "Recomendamos que partilhe este nível sob a licença CC-BY-SA 4.0 International.\nEsta permite alterações e a redistribuição por terceiros.\nSe não concordar com esta licença, altere-a nas propriedades do nível.\nADVERTÊNCIA: Os autores do SuperTux não assumem\nqualquer responsabilidade pela escolha que fizer da licença." -#: src/supertux/menu/editor_level_select_menu.cpp:162 +#: src/supertux/menu/editor_level_select_menu.cpp:179 msgid "" "An auto-save recovery file was found. Would you like to restore the recovery\n" "file and resume where you were before the editor crashed?" msgstr "Um arquivo de recuperação automático foi encontrado. Você gostaria de restaurar\nesse arquivo e continuar de onde parou antes do editor fechar?" -#: src/supertux/menu/editor_level_select_menu.cpp:169 +#: src/supertux/menu/editor_level_select_menu.cpp:186 msgid "This will delete the auto-save file. Are you sure?" -msgstr "Isso irá deletar o arquivo de recuperação. Você tem certeza?" +msgstr "Isso irá excluir o arquivo de recuperação. Você tem certeza?" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:35 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:52 +#: src/supertux/menu/cheat_apply_menu.cpp:33 +#: src/supertux/menu/cheat_apply_menu.cpp:51 +msgid "Apply cheat to player" +msgstr "Aplicar truque ao jogador" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:60 +#: src/supertux/menu/multiplayer_players_menu.cpp:39 +#: src/supertux/menu/keyboard_menu.cpp:63 +#: src/supertux/menu/cheat_apply_menu.cpp:39 +#: src/supertux/menu/cheat_apply_menu.cpp:59 +#: src/supertux/menu/multiplayer_player_menu.cpp:37 +#, c++-format +msgid "Player {}" +msgstr "Jogador {}" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:57 +#: src/supertux/menu/cheat_apply_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:56 +msgid "All Players" +msgstr "Todos os jogadores" -#: src/supertux/menu/worldmap_cheat_menu.cpp:34 -#: src/supertux/menu/cheat_menu.cpp:30 +#: src/supertux/menu/worldmap_cheat_menu.cpp:36 +#: src/supertux/menu/cheat_menu.cpp:31 msgid "Cheats" msgstr "Trapaças" -#: src/supertux/menu/worldmap_cheat_menu.cpp:36 -#: src/supertux/menu/cheat_menu.cpp:32 +#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:33 msgid "Bonus: Grow" msgstr "Bônus: Crescer" -#: src/supertux/menu/worldmap_cheat_menu.cpp:37 +#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:34 msgid "Bonus: Fire" msgstr "Bônus: Fogo" -#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/cheat_menu.cpp:35 msgid "Bonus: Ice" msgstr "Bônus: Gelo" -#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/cheat_menu.cpp:36 msgid "Bonus: Air" msgstr "Bônus: Ar" -#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:42 +#: src/supertux/menu/cheat_menu.cpp:37 msgid "Bonus: Earth" msgstr "Bônus: Terra" -#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/worldmap_cheat_menu.cpp:43 msgid "Bonus: None" msgstr "Bônus: Nenhum" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:51 msgid "Leave Ghost Mode" msgstr "Sair do Modo Fantasma" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:50 msgid "Activate Ghost Mode" msgstr "Ativar Modo Fantasma" -#: src/supertux/menu/worldmap_cheat_menu.cpp:46 -#: src/supertux/menu/cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:48 +#: src/supertux/menu/cheat_menu.cpp:41 msgid "Finish Level" msgstr "Terminar Nível" -#: src/supertux/menu/worldmap_cheat_menu.cpp:47 +#: src/supertux/menu/worldmap_cheat_menu.cpp:49 msgid "Reset Level" msgstr "Reiniciar Nível" -#: src/supertux/menu/worldmap_cheat_menu.cpp:49 +#: src/supertux/menu/worldmap_cheat_menu.cpp:51 msgid "Finish Worldmap" msgstr "Terminar Mapa-Múndi" -#: src/supertux/menu/worldmap_cheat_menu.cpp:50 +#: src/supertux/menu/worldmap_cheat_menu.cpp:52 msgid "Reset Worldmap" msgstr "Resetar Mapa-Múndi" -#: src/supertux/menu/worldmap_cheat_menu.cpp:52 +#: src/supertux/menu/worldmap_cheat_menu.cpp:54 msgid "Go to level" msgstr "Ir para o nível" -#: src/supertux/menu/worldmap_cheat_menu.cpp:53 +#: src/supertux/menu/worldmap_cheat_menu.cpp:55 msgid "Go to main spawnpoint" msgstr "Ir para o ponto de partida" -#: src/supertux/menu/worldmap_cheat_menu.cpp:145 +#: src/supertux/menu/worldmap_cheat_menu.cpp:188 msgid "Select level" msgstr "Selecionar nível" #: src/supertux/menu/editor_save_as.cpp:33 -#: src/supertux/menu/editor_menu.cpp:49 +#: src/supertux/menu/editor_menu.cpp:63 msgid "Save Level as" msgstr "Salvar nível como" #: src/supertux/menu/editor_save_as.cpp:33 -#: src/supertux/menu/editor_menu.cpp:50 +#: src/supertux/menu/editor_menu.cpp:64 msgid "Save Copy" msgstr "Salvar Cópia" -#: src/supertux/menu/editor_levelset_select_menu.cpp:72 +#: src/supertux/menu/editor_levelset_select_menu.cpp:71 msgid "Choose World" msgstr "Escolher Mundo" -#: src/supertux/menu/editor_levelset_select_menu.cpp:100 -#, c-format -msgid "%d level" -msgid_plural "%d levels" -msgstr[0] "%d nível" -msgstr[1] "%d níveis" -msgstr[2] "%d níveis" +#: src/supertux/menu/editor_levelset_select_menu.cpp:99 +#, c++-format +msgid "{} level" +msgid_plural "{} levels" +msgstr[0] "{} nível" +msgstr[1] "{} níveis" +msgstr[2] "{} níveis" -#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_levelset_select_menu.cpp:112 msgid "Create World" msgstr "Criar Mundo" -#: src/supertux/menu/options_menu.cpp:98 src/supertux/menu/main_menu.cpp:64 -#: src/supertux/menu/game_menu.cpp:61 src/supertux/menu/worldmap_menu.cpp:31 -msgid "Options" -msgstr "Opções" - -#: src/supertux/menu/options_menu.cpp:104 -#: src/supertux/menu/options_menu.cpp:142 -#: src/supertux/menu/options_menu.cpp:455 -#: src/supertux/menu/options_menu.cpp:476 src/editor/object_settings.cpp:119 -msgid "auto" -msgstr "automático" - -#: src/supertux/menu/options_menu.cpp:221 -msgid "Desktop" -msgstr "Ambiente de Trabalho" - -#: src/supertux/menu/options_menu.cpp:251 -msgid "on" -msgstr "ativo" - -#: src/supertux/menu/options_menu.cpp:252 -msgid "off" -msgstr "inativo" +#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:41 +msgid "Delete World" +msgstr "Excluir mundo" -#: src/supertux/menu/options_menu.cpp:253 -msgid "adaptive" -msgstr "adaptativo" +#: src/supertux/menu/options_menu.cpp:72 +#: src/supertux/menu/options_select_menu.cpp:35 +msgid "Locale" +msgstr "Local" -#: src/supertux/menu/options_menu.cpp:347 +#: src/supertux/menu/options_menu.cpp:76 msgid "Select Language" msgstr "Selecionar Idioma" -#: src/supertux/menu/options_menu.cpp:348 +#: src/supertux/menu/options_menu.cpp:77 msgid "Select a different language to display text in" msgstr "Selecione um idioma diferente para exibir o texto" -#: src/supertux/menu/options_menu.cpp:350 +#: src/supertux/menu/options_menu.cpp:79 msgid "Language Packs" msgstr "Pacotes de Idiomas" -#: src/supertux/menu/options_menu.cpp:351 +#: src/supertux/menu/options_menu.cpp:80 msgid "Language packs contain up-to-date translations" msgstr "Os Pacotes de Idiomas contêm traduções atualizadas" -#: src/supertux/menu/options_menu.cpp:353 -#: src/supertux/menu/profile_menu.cpp:34 -msgid "Select Profile" -msgstr "Escolher Perfil" - -#: src/supertux/menu/options_menu.cpp:354 -msgid "Select a profile to play with" -msgstr "Selecione um perfil para jogar" +#: src/supertux/menu/options_menu.cpp:88 +#: src/supertux/menu/options_select_menu.cpp:37 +msgid "Video" +msgstr "Vídeo" -#: src/supertux/menu/options_menu.cpp:358 +#: src/supertux/menu/options_menu.cpp:91 msgid "Window Resizable" msgstr "Janela Redimensionável" -#: src/supertux/menu/options_menu.cpp:359 +#: src/supertux/menu/options_menu.cpp:92 msgid "Allow window resizing, might require a restart to take effect" msgstr "Permitir redimensionamento de janela, pode exigir uma reinicialização para entrar em vigor" -#: src/supertux/menu/options_menu.cpp:361 -msgid "Window Resolution" -msgstr "Resolução da Janela" - -#: src/supertux/menu/options_menu.cpp:362 -msgid "Resize the window to the given size" -msgstr "Redimensione a janela para o tamanho especificado" - -#: src/supertux/menu/options_menu.cpp:364 +#: src/supertux/menu/options_menu.cpp:96 msgid "Fullscreen" msgstr "Tela Cheia" -#: src/supertux/menu/options_menu.cpp:365 +#: src/supertux/menu/options_menu.cpp:97 msgid "Fill the entire screen" msgstr "Preencher a tela toda" -#: src/supertux/menu/options_menu.cpp:367 -msgid "Fullscreen Resolution" -msgstr "Tela Cheia" - -#: src/supertux/menu/options_menu.cpp:368 -msgid "" -"Determine the resolution used in fullscreen mode (you must toggle fullscreen" -" to complete the change)" -msgstr "Determinar a resolução usada no modo de tela cheia (você deve ativar a opção tela cheia para funcionar)" - -#: src/supertux/menu/options_menu.cpp:373 +#: src/supertux/menu/options_menu.cpp:104 msgid "Fit to browser" msgstr "Ajustar ao navegador" -#: src/supertux/menu/options_menu.cpp:374 +#: src/supertux/menu/options_menu.cpp:105 msgid "Fit the resolution to the size of your browser" msgstr "Ajustar a resolução ao tamanho do seu navegador" -#: src/supertux/menu/options_menu.cpp:378 -msgid "Magnification" -msgstr "Ampliação" - -#: src/supertux/menu/options_menu.cpp:379 -msgid "Change the magnification of the game area" -msgstr "Alterar a ampliação da área de jogo" - -#: src/supertux/menu/options_menu.cpp:381 -msgid "VSync" -msgstr "VSync" +#: src/supertux/menu/options_menu.cpp:116 +msgid "Change Video System" +msgstr "Alterar sistema de vídeo" -#: src/supertux/menu/options_menu.cpp:382 -msgid "Set the VSync mode" -msgstr "Definir o modo VSync" +#: src/supertux/menu/options_menu.cpp:117 +msgid "Change video system used to render graphics" +msgstr "Alterar sistema de vídeo usado para renderizar gráficos" -#: src/supertux/menu/options_menu.cpp:385 -msgid "Aspect Ratio" -msgstr "Proporção de tela" +#: src/supertux/menu/options_menu.cpp:124 +#: src/supertux/menu/options_select_menu.cpp:38 +msgid "Audio" +msgstr "Áudio" -#: src/supertux/menu/options_menu.cpp:386 -msgid "Adjust the aspect ratio" -msgstr "Ajustar a proporção de tela" - -#: src/supertux/menu/options_menu.cpp:392 +#: src/supertux/menu/options_menu.cpp:129 msgid "Disable all sound effects" msgstr "Desativar todos os efeitos sonoros" -#: src/supertux/menu/options_menu.cpp:394 +#: src/supertux/menu/options_menu.cpp:131 msgid "Disable all music" msgstr "Desativar a música" -#: src/supertux/menu/options_menu.cpp:396 -msgid "Sound Volume" -msgstr "Volume do Som" - -#: src/supertux/menu/options_menu.cpp:397 -msgid "Adjust sound volume" -msgstr "Ajustar volume de som" - -#: src/supertux/menu/options_menu.cpp:399 -msgid "Music Volume" -msgstr "Volume da Música" - -#: src/supertux/menu/options_menu.cpp:400 -msgid "Adjust music volume" -msgstr "Ajustar volume de música" - -#: src/supertux/menu/options_menu.cpp:404 +#: src/supertux/menu/options_menu.cpp:138 msgid "Sound (disabled)" msgstr "Som (desligado)" -#: src/supertux/menu/options_menu.cpp:405 +#: src/supertux/menu/options_menu.cpp:139 msgid "Music (disabled)" msgstr "Música (desligada)" -#: src/supertux/menu/options_menu.cpp:408 -#: src/supertux/menu/keyboard_menu.cpp:30 +#: src/supertux/menu/options_menu.cpp:147 +#: src/supertux/menu/options_select_menu.cpp:39 +msgid "Controls" +msgstr "Controles" + +#: src/supertux/menu/options_menu.cpp:151 +msgid "Enable Rumbling Controllers" +msgstr "Habilitar ruído de controladores" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "Enable vibrating the game controllers." +msgstr "Ativar a vibração dos controles do jogo." + +#: src/supertux/menu/options_menu.cpp:152 +msgid "This feature is currently only used in the multiplayer options menu." +msgstr "Atualmente, este recurso só é usado no menu de opções de multijogador." + +#: src/supertux/menu/options_menu.cpp:154 +#: src/supertux/menu/keyboard_menu.cpp:34 msgid "Setup Keyboard" msgstr "Configurar Teclado" -#: src/supertux/menu/options_menu.cpp:409 +#: src/supertux/menu/options_menu.cpp:155 msgid "Configure key-action mappings" msgstr "Configurar as teclas usadas" -#: src/supertux/menu/options_menu.cpp:412 -#: src/supertux/menu/joystick_menu.cpp:52 +#: src/supertux/menu/options_menu.cpp:158 +#: src/supertux/menu/joystick_menu.cpp:54 msgid "Setup Joystick" msgstr "Configurar Joystick" -#: src/supertux/menu/options_menu.cpp:413 +#: src/supertux/menu/options_menu.cpp:159 msgid "Configure joystick control-action mappings" msgstr "Configurar os controles do joystick " -#: src/supertux/menu/options_menu.cpp:417 -msgid "On-screen controls" -msgstr "Controles na Tela" +#: src/supertux/menu/options_menu.cpp:167 +#: src/supertux/menu/options_select_menu.cpp:40 +msgid "Extras" +msgstr "Extras" -#: src/supertux/menu/options_menu.cpp:418 -msgid "Toggle on-screen controls for mobile devices" -msgstr "Ativar controles na tela para dispositivos móveis" +#: src/supertux/menu/options_menu.cpp:170 +#: src/supertux/menu/profile_menu.cpp:56 +msgid "Select Profile" +msgstr "Escolher Perfil" -#: src/supertux/menu/options_menu.cpp:420 +#: src/supertux/menu/options_menu.cpp:171 +msgid "Select a profile to play with" +msgstr "Selecione um perfil para jogar" + +#: src/supertux/menu/options_menu.cpp:174 +msgid "Multiplayer settings" +msgstr "Configurações de multijogador" + +#: src/supertux/menu/options_menu.cpp:175 +msgid "Configure settings specific to multiplayer" +msgstr "Definir configurações específicas para multijogador" + +#: src/supertux/menu/options_menu.cpp:178 msgid "Enable transitions" msgstr "Habilitar transições" -#: src/supertux/menu/options_menu.cpp:421 +#: src/supertux/menu/options_menu.cpp:179 msgid "Enable screen transitions and smooth menu animation" msgstr "Habilita transições de tela e animação suavizada de menus" -#: src/supertux/menu/options_menu.cpp:425 -msgid "Developer Mode" -msgstr "Modo Desenvolvedor" +#: src/supertux/menu/options_menu.cpp:181 +msgid "Custom title screen levels" +msgstr "Telas de título de níveis personalizados" -#: src/supertux/menu/options_menu.cpp:430 +#: src/supertux/menu/options_menu.cpp:182 +msgid "Allow overriding the title screen level, when loading certain worlds" +msgstr "Permite a substituição da tela de título do nível ao carregar certos mundos" + +#: src/supertux/menu/options_menu.cpp:185 msgid "Christmas Mode" msgstr "Modo Natal" -#: src/supertux/menu/options_menu.cpp:433 +#: src/supertux/menu/options_menu.cpp:187 +msgid "Integrations and presence" +msgstr "Integrações e presença" + +#: src/supertux/menu/options_menu.cpp:188 +msgid "" +"Manage whether SuperTux should display the levels you play on your social " +"media profiles (Discord)" +msgstr "Gerencia se o SuperTux deveria exibir os níveis que você joga nos perfis de suas mídias sociais (Discord)" + +#: src/supertux/menu/options_menu.cpp:192 +msgid "Customize the appearance of the menus" +msgstr "Personalizar a aparência dos menus" + +#: src/supertux/menu/options_menu.cpp:199 +#: src/supertux/menu/options_select_menu.cpp:41 +msgid "Advanced" +msgstr "Avançado" + +#: src/supertux/menu/options_menu.cpp:204 +msgid "Developer Mode" +msgstr "Modo Desenvolvedor" + +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirmation Dialog" msgstr "Diálogo de Confirmação" -#: src/supertux/menu/options_menu.cpp:433 +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirm aborting level" msgstr "Confirmar o abortamento do nível" -#: src/supertux/menu/options_menu.cpp:434 +#: src/supertux/menu/options_menu.cpp:208 msgid "Pause on focus loss" msgstr "Pausar ao perder foco" -#: src/supertux/menu/options_menu.cpp:435 +#: src/supertux/menu/options_menu.cpp:209 msgid "Automatically pause the game when the window loses focus" msgstr "Automaticamente pausar o jogo quando a janela perder o foco" -#: src/supertux/menu/options_menu.cpp:436 +#: src/supertux/menu/options_menu.cpp:211 msgid "Use custom mouse cursor" msgstr "Usar cursor de mouse customizado" -#: src/supertux/menu/options_menu.cpp:436 +#: src/supertux/menu/options_menu.cpp:211 msgid "Whether the game renders its own cursor or uses the system's cursor" msgstr "Se o jogo desenha seu próprio cursor ou usa o cursor do sistema" -#: src/supertux/menu/options_menu.cpp:438 -msgid "Integrations and presence" -msgstr "Integrações e presença" +#: src/supertux/menu/options_menu.cpp:214 +msgid "Check for new releases" +msgstr "Verificar por atualizações" -#: src/supertux/menu/options_menu.cpp:439 +#: src/supertux/menu/options_menu.cpp:215 msgid "" -"Manage whether SuperTux should display the levels you play on your social " -"media profiles (Discord)" -msgstr "Gerencia se o SuperTux deveria exibir os níveis que você joga nos perfis de suas mídias sociais (Discord)" +"Allows the game to perform checks for new SuperTux releases on startup and " +"notify if any found." +msgstr "Permite que o jogo execute verificações por novos lançamentos do SuperTux ao inicializar e notifique se algum for encontrado." + +#: src/supertux/menu/options_menu.cpp:245 +#: src/supertux/menu/options_menu.cpp:288 src/supertux/direction.cpp:76 +msgid "auto" +msgstr "automático" + +#: src/supertux/menu/options_menu.cpp:281 +msgid "Magnification" +msgstr "Ampliação" + +#: src/supertux/menu/options_menu.cpp:282 +msgid "Change the magnification of the game area" +msgstr "Alterar a ampliação da área de jogo" + +#: src/supertux/menu/options_menu.cpp:318 +msgid "Aspect Ratio" +msgstr "Proporção de tela" -#: src/supertux/menu/options_menu.cpp:559 +#: src/supertux/menu/options_menu.cpp:319 +msgid "Adjust the aspect ratio" +msgstr "Ajustar a proporção de tela" + +#: src/supertux/menu/options_menu.cpp:346 +msgid "Window Resolution" +msgstr "Resolução da Janela" + +#: src/supertux/menu/options_menu.cpp:347 +msgid "Resize the window to the given size" +msgstr "Redimensione a janela para o tamanho especificado" + +#: src/supertux/menu/options_menu.cpp:377 +msgid "Desktop" +msgstr "Ambiente de Trabalho" + +#: src/supertux/menu/options_menu.cpp:404 +msgid "Fullscreen Resolution" +msgstr "Tela Cheia" + +#: src/supertux/menu/options_menu.cpp:405 +msgid "" +"Determine the resolution used in fullscreen mode (you must toggle fullscreen" +" to complete the change)" +msgstr "Determinar a resolução usada no modo de tela cheia (você deve ativar a opção tela cheia para funcionar)" + +#: src/supertux/menu/options_menu.cpp:411 +msgid "on" +msgstr "ativo" + +#: src/supertux/menu/options_menu.cpp:412 +msgid "off" +msgstr "inativo" + +#: src/supertux/menu/options_menu.cpp:413 +msgid "adaptive" +msgstr "adaptativo" + +#: src/supertux/menu/options_menu.cpp:431 +msgid "VSync" +msgstr "VSync" + +#: src/supertux/menu/options_menu.cpp:432 +msgid "Set the VSync mode" +msgstr "Definir o modo VSync" + +#: src/supertux/menu/options_menu.cpp:467 +msgid "Sound Volume" +msgstr "Volume do Som" + +#: src/supertux/menu/options_menu.cpp:468 +msgid "Adjust sound volume" +msgstr "Ajustar volume de som" + +#: src/supertux/menu/options_menu.cpp:503 +msgid "Music Volume" +msgstr "Volume da Música" + +#: src/supertux/menu/options_menu.cpp:504 +msgid "Adjust music volume" +msgstr "Ajustar volume de música" + +#: src/supertux/menu/options_menu.cpp:517 +msgid "On-screen controls scale" +msgstr "Escala de controles na tela" + +#: src/supertux/menu/options_menu.cpp:638 msgid "" "The game couldn't detect your browser resolution.\n" "This most likely happens because it is not embedded\n" "in the SuperTux custom HTML template.\n" msgstr "O jogo não conseguiu detectar a resolução do seu navegador.\nIsso provavelmente aconteceu porque ele não está embutido\nno modelo de HTML customizado do SuperTux.\n" -#: src/supertux/menu/main_menu.cpp:56 src/supertux/menu/world_set_menu.cpp:28 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:80 +msgid "You cannot delete the world that you are editing" +msgstr "Você não pode excluir o mundo que está editando" + +#: src/supertux/menu/editor_delete_levelset_menu.cpp:83 +#, c++-format +msgid "You are about to delete world \"{}\". Are you sure?" +msgstr "Você está prestes a excluir o mundo \"{}\". Tem certeza?" + +#: src/supertux/menu/addon_preview_menu.cpp:82 +#, c++-format +msgid "{} \"{}\"" +msgstr "{} \"{}\"" + +#: src/supertux/menu/addon_preview_menu.cpp:87 +msgid "Some information about this add-on is not available." +msgstr "Algumas informações sobre este complemento não estão disponíveis." + +#: src/supertux/menu/addon_preview_menu.cpp:88 +msgid "Perform a \"Check Online\" to try retrieving it." +msgstr "Execute uma \"Verificação online\" para tentar recuperá-lo." + +#: src/supertux/menu/addon_preview_menu.cpp:92 +msgid "No author specified." +msgstr "Nenhum autor especificado." + +#: src/supertux/menu/addon_preview_menu.cpp:92 +#, c++-format +msgid "Author: {}" +msgstr "Autor: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:93 +#, c++-format +msgid "Type: {}" +msgstr "Tipo: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:94 +msgid "No license specified." +msgstr "Nenhuma licença especificada." + +#: src/supertux/menu/addon_preview_menu.cpp:94 +#, c++-format +msgid "License: {}" +msgstr "Licença: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:99 +msgid "Dependencies:" +msgstr "Dependências:" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Installed" +msgstr "Instalado" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Not installed" +msgstr "Não instalado" + +#: src/supertux/menu/addon_preview_menu.cpp:113 +msgid "Not available!" +msgstr "Indisponível!" + +#: src/supertux/menu/addon_preview_menu.cpp:120 +msgid "Description:" +msgstr "Descrição:" + +#: src/supertux/menu/addon_preview_menu.cpp:123 +msgid "No description available." +msgstr "Nenhuma descrição disponível." + +#: src/supertux/menu/addon_preview_menu.cpp:147 +msgid "Failed to load all available screenshot previews." +msgstr "Falhou em carregar todas as capturas de tela disponíveis." + +#: src/supertux/menu/addon_preview_menu.cpp:152 +msgid "Show screenshots" +msgstr "Mostrar capturas de tela" + +#: src/supertux/menu/addon_preview_menu.cpp:165 +msgid "Screenshot previews are disabled for automatic installs." +msgstr "Capturas de tela estão desativadas para instalações automáticas." + +#: src/supertux/menu/addon_preview_menu.cpp:169 +msgid "No screenshot previews available." +msgstr "Nenhuma captura de tela disponível." + +#: src/supertux/menu/addon_preview_menu.cpp:177 +msgid "Install" +msgstr "Instalar" + +#: src/supertux/menu/addon_preview_menu.cpp:190 +msgid "Uninstall" +msgstr "Desinstalar" + +#: src/supertux/menu/addon_preview_menu.cpp:214 +#, c++-format +msgid "Are you sure you want to uninstall \"{}\"?" +msgstr "Você tem certeza que quer desinstalar \"{}\"?" + +#: src/supertux/menu/addon_preview_menu.cpp:215 +msgid "" +"\n" +"Your progress won't be lost." +msgstr "\nSeu progresso não será perdido." + +#: src/supertux/menu/addon_preview_menu.cpp:227 +#, c++-format +msgid "" +"NOTE: The add-on \"{}\" is a dependency of {} other installed {}.\n" +"Are you sure you wish to uninstall?" +msgstr "NOTA: O complemento \"{}\" é uma dependência de {} outros {} instalados.\nTem certeza de que deseja desinstalar?" + +#: src/supertux/menu/addon_preview_menu.cpp:246 +#, c++-format +msgid "" +"Cannot toggle add-on \"{}\":\n" +"{}" +msgstr "Não é possível alternar o complemento \"{}\":\n{}" + +#: src/supertux/menu/addon_preview_menu.cpp:279 +msgid "Fetching screenshot previews..." +msgstr "Obtendo capturas de tela..." + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Updating" +msgstr "Atualizando" + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Downloading" +msgstr "Baixando" + +#: src/supertux/menu/addon_preview_menu.cpp:328 +msgid "Add-on uninstalled successfully." +msgstr "Complemento desinstalado com sucesso." + +#: src/supertux/menu/addon_preview_menu.cpp:333 +#, c++-format +msgid "" +"Error uninstalling add-on:\n" +"{}" +msgstr "Erro ao desinstalar o complemento:\n{}" + +#: src/supertux/menu/addon_preview_menu.cpp:361 +msgid "" +"Please restart SuperTux\n" +"for these changes to take effect." +msgstr "Por favor, reinicie o SuperTux\npara que as alterações tenham efeito." + +#: src/supertux/menu/main_menu.cpp:51 src/supertux/menu/world_set_menu.cpp:28 msgid "Start Game" msgstr "Começar Jogo" -#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/addon_menu.cpp:122 +#: src/supertux/menu/main_menu.cpp:55 msgid "Add-ons" msgstr "Complementos" -#: src/supertux/menu/main_menu.cpp:62 src/supertux/menu/web_asset_menu.cpp:38 +#: src/supertux/menu/main_menu.cpp:57 src/supertux/menu/web_asset_menu.cpp:38 msgid "Manage Assets" msgstr "Gerenciar Recursos" -#: src/supertux/menu/main_menu.cpp:65 src/supertux/menu/editor_menu.cpp:43 +#: src/supertux/menu/main_menu.cpp:59 +#: src/supertux/menu/options_select_menu.cpp:29 +#: src/supertux/menu/game_menu.cpp:58 src/supertux/menu/worldmap_menu.cpp:31 +#: src/supertux/menu/editor_menu.cpp:70 +msgid "Options" +msgstr "Opções" + +#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/editor_menu.cpp:58 msgid "Level Editor" msgstr "Editor de Níveis" -#: src/supertux/menu/main_menu.cpp:66 +#: src/supertux/menu/main_menu.cpp:61 msgid "Credits" msgstr "Créditos" -#: src/supertux/menu/main_menu.cpp:67 +#: src/supertux/menu/main_menu.cpp:64 msgid "Donate" msgstr "Doação" -#: src/supertux/menu/main_menu.cpp:69 +#: src/supertux/menu/main_menu.cpp:67 msgid "Quit" msgstr "Sair" -#: src/supertux/menu/editor_sector_menu.cpp:35 +#: src/supertux/menu/main_menu.cpp:106 +msgid "" +"This will take you to the SuperTux donation page. Are you sure you want to " +"continue?" +msgstr "Isso levará você à página de doações do SuperTux. Você tem certeza que quer continuar?" + +#: src/supertux/menu/editor_sector_menu.cpp:34 +#, c++-format +msgid "Sector {}" +msgstr "Setor {}" + +#: src/supertux/menu/editor_sector_menu.cpp:37 msgid "Initialization script" msgstr "Script de inicialização" -#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_sector_menu.cpp:38 msgid "Gravity" msgstr "Gravidade" -#: src/supertux/menu/editor_sector_menu.cpp:41 +#: src/supertux/menu/editor_sector_menu.cpp:43 msgid "Resize offset X" msgstr "Redimensionar offset X" -#: src/supertux/menu/editor_sector_menu.cpp:42 +#: src/supertux/menu/editor_sector_menu.cpp:44 msgid "Resize offset Y" msgstr "Redimensionar offset Y" -#: src/supertux/menu/editor_sector_menu.cpp:43 +#: src/supertux/menu/editor_sector_menu.cpp:45 msgid "Resize" msgstr "Redimensionar" -#: src/supertux/menu/profile_menu.cpp:41 -#, c-format -msgid "[Profile %s]" -msgstr "[Perfil %s]" - -#: src/supertux/menu/profile_menu.cpp:45 -#, c-format -msgid "Profile %s" -msgstr "Perfil %s" - -#: src/supertux/menu/profile_menu.cpp:50 -msgid "Reset profile" -msgstr "Reiniciar o perfil" - -#: src/supertux/menu/profile_menu.cpp:51 -msgid "Reset all profiles" -msgstr "Reiniciar todos os perfis" - -#: src/supertux/menu/profile_menu.cpp:67 -msgid "Deleting your profile will reset your game progress. Are you sure?" -msgstr "Apagar seu perfil irá reiniciar seu progresso de jogo. Você tem certeza?" +#: src/supertux/menu/profile_menu.cpp:60 +msgid "No profiles found." +msgstr "Nenhum perfil encontrado." + +#: src/supertux/menu/profile_menu.cpp:68 +#: src/supertux/menu/profile_menu.cpp:149 +#: src/supertux/menu/profile_menu.cpp:168 +#, c++-format +msgid "Profile {}" +msgstr "Perfil {}" + +#: src/supertux/menu/profile_menu.cpp:69 +#, c++-format +msgid "{} (Profile {})" +msgstr "{} (Perfil {})" + +#: src/supertux/menu/profile_menu.cpp:84 +msgid "No profile selected." +msgstr "Nenhum perfil selecionado." + +#: src/supertux/menu/profile_menu.cpp:91 src/supertux/menu/profile_menu.cpp:93 +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Rename" +msgstr "Renomear" + +#: src/supertux/menu/profile_menu.cpp:98 +#: src/supertux/menu/profile_menu.cpp:100 +msgid "Reset" +msgstr "Resetar" + +#: src/supertux/menu/profile_menu.cpp:103 +#: src/supertux/menu/profile_menu.cpp:105 +msgid "Reset all" +msgstr "Resetar tudo" + +#: src/supertux/menu/profile_menu.cpp:113 +#: src/supertux/menu/profile_menu.cpp:115 +msgid "Delete all" +msgstr "Excluir tudo" + +#: src/supertux/menu/profile_menu.cpp:148 +#, c++-format +msgid "" +"This will reset all game progress on the profile \"{}\".\n" +"Are you sure?" +msgstr "Isso irá resetar todo o progresso do jogo no perfil \"{}\".\nTem certeza?" -#: src/supertux/menu/profile_menu.cpp:73 +#: src/supertux/menu/profile_menu.cpp:157 msgid "This will reset your game progress on all profiles. Are you sure?" msgstr "Isso irá reiniciar o seu progresso no jogo em todos os perfis. Você tem certeza?" -#: src/supertux/menu/editor_levelset_menu.cpp:59 +#: src/supertux/menu/profile_menu.cpp:167 +#, c++-format +msgid "" +"This will delete the profile \"{}\",\n" +"including all game progress on it. Are you sure?" +msgstr "Isso excluirá o perfil \"{}\",\nincluindo todo o progresso do jogo nele. Tem certeza?" + +#: src/supertux/menu/profile_menu.cpp:178 +msgid "" +"This will delete all profiles, including all game progress on them.\n" +"Are you sure?" +msgstr "Isso excluirá todos os perfis, incluindo todo o progresso no jogo neles.\nTem certeza?" + +#: src/supertux/menu/editor_levelset_menu.cpp:53 #: src/supertux/menu/editor_new_levelset_menu.cpp:35 msgid "Description" msgstr "Descrição" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:48 -#: data//images/engine/editor/objects.stoi:371 -msgid "Worldmap" -msgstr "Mapa-múndi" +#: src/supertux/menu/editor_levelset_menu.cpp:55 +msgid "Title Screen Level" +msgstr "Tela de título do nível" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:45 -msgid "Levelset" -msgstr "Conjunto de níveis" +#: src/supertux/menu/editor_levelset_menu.cpp:56 +msgid "A level to be used for the title screen, after exiting the world." +msgstr "Um nível a ser usado na tela de título, depois de sair do mundo." -#: src/supertux/menu/addon_menu.cpp:51 -msgid "World" -msgstr "Mundo" +#: src/supertux/menu/multiplayer_players_menu.cpp:46 +msgid "Add Player" +msgstr "Adicionar Jogador" -#: src/supertux/menu/addon_menu.cpp:54 -msgid "Add-on" -msgstr "Complemento" +#: src/supertux/menu/multiplayer_players_menu.cpp:59 +msgid "Remove Last Player" +msgstr "Remover o Último Jogador" -#: src/supertux/menu/addon_menu.cpp:60 -msgid "Unknown" -msgstr "Desconhecido" +#: src/supertux/menu/multiplayer_players_menu.cpp:62 +msgid "" +"Warning: The player you are trying to\n" +"remove is currently in-game.\n" +"\n" +"Do you wish to remove them anyways?" +msgstr "Aviso: O jogador que você está tentando\nremover está atualmente no jogo.\n\nVocê deseja removê-lo mesmo assim?" + +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Language Packs" +msgstr "Pacotes de idiomas instalados" -#: src/supertux/menu/addon_menu.cpp:71 -#, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" por \"%s\"" +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Add-ons" +msgstr "Complementos instalados" -#: src/supertux/menu/addon_menu.cpp:129 +#: src/supertux/menu/addon_menu.cpp:76 src/supertux/menu/addon_menu.cpp:117 +msgid "No language packs installed" +msgstr "Nenhum pacote de idioma instalado" + +#: src/supertux/menu/addon_menu.cpp:76 msgid "No Add-ons installed" msgstr "Não há Complementos instalados" -#: src/supertux/menu/addon_menu.cpp:133 -msgid "No Add-ons found" -msgstr "Não foram encontrados Complementos" +#: src/supertux/menu/addon_menu.cpp:124 +#, c++-format +msgid "{} {}*UPDATE*" +msgstr "{} {}*ATUALIZAÇÃO*" -#: src/supertux/menu/addon_menu.cpp:179 -#, c-format -msgid "Install %s *NEW*" -msgstr "Instalar %s *NOVO*" +#: src/supertux/menu/addon_menu.cpp:130 +#, c++-format +msgid "{}{}" +msgstr "{}{}" -#: src/supertux/menu/addon_menu.cpp:190 -#, c-format -msgid "Install %s" -msgstr "Instalar %s" +#: src/supertux/menu/addon_menu.cpp:140 +msgid "No updates available." +msgstr "Nenhuma atualização disponível." -#: src/supertux/menu/addon_menu.cpp:199 -msgid "No new Add-ons found" -msgstr "Não foram encontrados novos Complementos" +#: src/supertux/menu/addon_menu.cpp:144 +#, c++-format +msgid "{} {} available" +msgstr "{} {} disponível" -#: src/supertux/menu/addon_menu.cpp:205 -msgid "Check Online (disabled)" -msgstr "Verificar Online (desabilitado)" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "update" +msgstr "atualização" -#: src/supertux/menu/addon_menu.cpp:209 -msgid "Check Online" -msgstr "Verificar Online" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "updates" +msgstr "atualizações" -#: src/supertux/menu/addon_menu.cpp:286 -msgid "Downloading Add-On Repository Index" -msgstr "Baixando o Índice de Complementos do Repositório" +#: src/supertux/menu/addon_menu.cpp:146 +msgid "Check for updates" +msgstr "Verificar por atualizações" -#: src/supertux/menu/addon_menu.cpp:301 -#, c-format -msgid "Downloading %s" -msgstr "Baixando %s" +#: src/supertux/menu/addon_menu.cpp:150 +msgid "Browse language packs" +msgstr "Navegar pelos pacotes de idiomas" -#: src/supertux/menu/addon_menu.cpp:348 -msgid "" -"Please restart SuperTux\n" -"for these changes to take effect." -msgstr "Por favor, reinicie o SuperTux\npara que as alterações tenham efeito." +#: src/supertux/menu/addon_menu.cpp:150 +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Add-ons" +msgstr "Navegar pelos Complementos" + +#: src/supertux/menu/addon_menu.cpp:151 +msgid "Install from file" +msgstr "Instalar do arquivo" + +#: src/supertux/menu/addon_menu.cpp:208 +msgid "Checking for updates..." +msgstr "Verificando por atualizações..." #: src/supertux/menu/editor_new_levelset_menu.cpp:31 msgid "New World" @@ -2618,17 +3649,64 @@ msgstr "Por favor entre com um nome para o subconjunto deste nível." msgid "Story Mode" msgstr "Modo de História" +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Language Packs" +msgstr "Navegar pelos pacotes de idiomas" + +#: src/supertux/menu/addon_browse_menu.cpp:112 +#, c++-format +msgid "Page {}/{}" +msgstr "Página {}/{}" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new language packs available" +msgstr "Nenhum novo pacote de idiomas disponível" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new Add-ons available" +msgstr "Nenhum Complemento novo disponível" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No language packs available" +msgstr "Nenhum pacote de idiomas disponível" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No Add-ons available" +msgstr "Nenhum Complemento disponível" + +#: src/supertux/menu/addon_browse_menu.cpp:135 +#: src/supertux/menu/addon_browse_menu.cpp:139 +msgid "Previous page" +msgstr "Página anterior" + +#: src/supertux/menu/addon_browse_menu.cpp:143 +#: src/supertux/menu/addon_browse_menu.cpp:147 +msgid "Next page" +msgstr "Próxima página" + +#: src/supertux/menu/addon_browse_menu.cpp:154 +msgid "Check Online (disabled)" +msgstr "Verificar Online (desabilitado)" + +#: src/supertux/menu/addon_browse_menu.cpp:158 +msgid "Check Online" +msgstr "Verificar Online" + +#: src/supertux/menu/addon_browse_menu.cpp:195 +msgid "Downloading Add-On Repository Index" +msgstr "Baixando o índice de complementos do repositório" + #: src/supertux/menu/web_asset_menu.cpp:42 msgid "New files location" msgstr "Localização de novos arquivos" #: src/supertux/menu/web_asset_menu.cpp:43 msgid "Add Files" -msgstr "Adicionar Arquivos" +msgstr "Adicionar arquivos" #: src/supertux/menu/web_asset_menu.cpp:44 msgid "Download Files" -msgstr "Baixar Arquivos" +msgstr "Baixar arquivos" #: src/supertux/menu/particle_editor_open.cpp:32 msgid "Load particle file" @@ -2638,207 +3716,235 @@ msgstr "Carregar arquivo de partículas" msgid "Open" msgstr "Abrir" -#: src/supertux/menu/game_menu.cpp:31 -msgid "Are you sure?" -msgstr "Tem certeza?" - -#: src/supertux/menu/game_menu.cpp:54 src/supertux/menu/worldmap_menu.cpp:30 +#: src/supertux/menu/game_menu.cpp:51 src/supertux/menu/worldmap_menu.cpp:30 msgid "Continue" msgstr "Continuar" -#: src/supertux/menu/game_menu.cpp:55 +#: src/supertux/menu/game_menu.cpp:52 msgid "Restart Level" msgstr "Reiniciar Nível" -#: src/supertux/menu/game_menu.cpp:58 +#: src/supertux/menu/game_menu.cpp:55 msgid "Restart from Checkpoint" msgstr "Reiniciar do Checkpoint" -#: src/supertux/menu/game_menu.cpp:63 +#: src/supertux/menu/game_menu.cpp:60 msgid "Abort Level" msgstr "Desistir desse Nível" -#: src/supertux/menu/keyboard_menu.cpp:32 -#: src/supertux/menu/joystick_menu.cpp:69 +#: src/supertux/menu/game_menu.cpp:76 src/supertux/menu/game_menu.cpp:87 +#: src/supertux/menu/game_menu.cpp:99 +msgid "Are you sure?" +msgstr "Tem certeza?" + +#: src/supertux/menu/profile_name_menu.cpp:36 +#, c++-format +msgid "Rename \"{}\"" +msgstr "Renomear \"{}\"" + +#: src/supertux/menu/profile_name_menu.cpp:36 +msgid "Add profile" +msgstr "Adicionar perfil" + +#: src/supertux/menu/profile_name_menu.cpp:40 +msgid "Profile names must have a maximum of 20 characters." +msgstr "O nome do perfil deve ter no máximo 20 caracteres." + +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Create" +msgstr "Criar" + +#: src/supertux/menu/profile_name_menu.cpp:56 +msgid "" +"Profile names must have a maximum of 20 characters.\n" +"Please choose a different name." +msgstr "O nome do perfil deve ter no máximo 20 caracteres.\nPor favor, escolha um nome diferente." + +#: src/supertux/menu/profile_name_menu.cpp:77 +msgid "An error occurred while creating the profile." +msgstr "Ocorreu um erro ao criar o perfil." + +#: src/supertux/menu/keyboard_menu.cpp:36 +#: src/supertux/menu/joystick_menu.cpp:71 msgid "Up" msgstr "Cima" -#: src/supertux/menu/keyboard_menu.cpp:33 -#: src/supertux/menu/joystick_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:37 +#: src/supertux/menu/joystick_menu.cpp:72 msgid "Down" msgstr "Baixo" - -#: src/supertux/menu/keyboard_menu.cpp:36 -#: src/supertux/menu/joystick_menu.cpp:73 + +#: src/supertux/menu/keyboard_menu.cpp:40 +#: src/supertux/menu/joystick_menu.cpp:75 msgid "Jump" msgstr "Pular" -#: src/supertux/menu/keyboard_menu.cpp:38 -#: src/supertux/menu/joystick_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:43 +#: src/supertux/menu/joystick_menu.cpp:78 msgid "Peek Left" msgstr "Espiar à Esquerda" -#: src/supertux/menu/keyboard_menu.cpp:39 -#: src/supertux/menu/joystick_menu.cpp:77 +#: src/supertux/menu/keyboard_menu.cpp:44 +#: src/supertux/menu/joystick_menu.cpp:79 msgid "Peek Right" msgstr "Espiar à Direita" -#: src/supertux/menu/keyboard_menu.cpp:40 -#: src/supertux/menu/joystick_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:45 +#: src/supertux/menu/joystick_menu.cpp:80 msgid "Peek Up" msgstr "Espiar Acima" -#: src/supertux/menu/keyboard_menu.cpp:41 -#: src/supertux/menu/joystick_menu.cpp:79 +#: src/supertux/menu/keyboard_menu.cpp:46 +#: src/supertux/menu/joystick_menu.cpp:81 msgid "Peek Down" msgstr "Espiar Abaixo" -#: src/supertux/menu/keyboard_menu.cpp:43 -#: src/supertux/menu/joystick_menu.cpp:81 +#: src/supertux/menu/keyboard_menu.cpp:51 +#: src/supertux/menu/joystick_menu.cpp:83 msgid "Console" msgstr "Consola" -#: src/supertux/menu/keyboard_menu.cpp:44 -#: src/supertux/menu/joystick_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:52 +#: src/supertux/menu/joystick_menu.cpp:84 msgid "Cheat Menu" msgstr "Menu de Trapaças" -#: src/supertux/menu/keyboard_menu.cpp:45 -#: src/supertux/menu/joystick_menu.cpp:83 +#: src/supertux/menu/keyboard_menu.cpp:53 +#: src/supertux/menu/joystick_menu.cpp:85 msgid "Debug Menu" msgstr "Menu de Depuração" -#: src/supertux/menu/keyboard_menu.cpp:47 -#: src/supertux/menu/joystick_menu.cpp:85 +#: src/supertux/menu/keyboard_menu.cpp:56 +#: src/supertux/menu/joystick_menu.cpp:87 msgid "Jump with Up" msgstr "Pula com Tecla para Cima" -#: src/supertux/menu/keyboard_menu.cpp:60 +#: src/supertux/menu/keyboard_menu.cpp:82 msgid "Up cursor" msgstr "Seta para Cima" -#: src/supertux/menu/keyboard_menu.cpp:62 +#: src/supertux/menu/keyboard_menu.cpp:84 msgid "Down cursor" msgstr "Seta para Baixo" -#: src/supertux/menu/keyboard_menu.cpp:64 +#: src/supertux/menu/keyboard_menu.cpp:86 msgid "Left cursor" msgstr "Seta para a Esquerda" -#: src/supertux/menu/keyboard_menu.cpp:66 +#: src/supertux/menu/keyboard_menu.cpp:88 msgid "Right cursor" msgstr "Seta para a Direita" -#: src/supertux/menu/keyboard_menu.cpp:68 +#: src/supertux/menu/keyboard_menu.cpp:90 msgid "Return" msgstr "Enter" -#: src/supertux/menu/keyboard_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:92 msgid "Space" msgstr "Espaço" -#: src/supertux/menu/keyboard_menu.cpp:72 +#: src/supertux/menu/keyboard_menu.cpp:94 msgid "Right Shift" msgstr "Shift Direito" -#: src/supertux/menu/keyboard_menu.cpp:74 +#: src/supertux/menu/keyboard_menu.cpp:96 msgid "Left Shift" msgstr "Shift Esquerdo" -#: src/supertux/menu/keyboard_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:98 msgid "Right Control" msgstr "Control Direito" -#: src/supertux/menu/keyboard_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:100 msgid "Left Control" msgstr "Control Esquerdo" -#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/keyboard_menu.cpp:102 msgid "Right Alt" msgstr "Alt Direito" -#: src/supertux/menu/keyboard_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:104 msgid "Left Alt" msgstr "Alt Esquerdo" -#: src/supertux/menu/keyboard_menu.cpp:84 +#: src/supertux/menu/keyboard_menu.cpp:106 msgid "Right Command" msgstr "Comando Direito" -#: src/supertux/menu/keyboard_menu.cpp:86 +#: src/supertux/menu/keyboard_menu.cpp:108 msgid "Left Command" msgstr "Comando Esquerdo" -#: src/supertux/menu/keyboard_menu.cpp:100 +#: src/supertux/menu/keyboard_menu.cpp:122 msgid "Press Key" msgstr "Pressione uma Tecla" -#: src/supertux/menu/language_menu.cpp:40 +#: src/supertux/menu/language_menu.cpp:43 msgid "Language" msgstr "Idioma" -#: src/supertux/menu/language_menu.cpp:42 +#: src/supertux/menu/language_menu.cpp:45 msgid "" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:55 +#: src/supertux/menu/joystick_menu.cpp:57 msgid "Manual Configuration" msgstr "Configuração Manual" -#: src/supertux/menu/joystick_menu.cpp:57 +#: src/supertux/menu/joystick_menu.cpp:59 msgid "" "Use manual configuration instead of SDL2's automatic GameController support" msgstr "Use a configuração manual ao invés do suporte automático GameController do SDL2" -#: src/supertux/menu/joystick_menu.cpp:75 +#: src/supertux/menu/joystick_menu.cpp:77 msgid "Pause/Menu" msgstr "Pausa/Menu" -#: src/supertux/menu/joystick_menu.cpp:91 +#: src/supertux/menu/joystick_menu.cpp:93 msgid "No Joysticks found" msgstr "Nenhum Joystick encontrado" -#: src/supertux/menu/joystick_menu.cpp:92 +#: src/supertux/menu/joystick_menu.cpp:94 msgid "Scan for Joysticks" msgstr "Procurar Joysticks" -#: src/supertux/menu/joystick_menu.cpp:125 +#: src/supertux/menu/joystick_menu.cpp:127 msgid "Press Button" msgstr "Pressione um Botão" -#: src/supertux/menu/joystick_menu.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:164 msgid "Axis " msgstr "Eixo " -#: src/supertux/menu/joystick_menu.cpp:165 +#: src/supertux/menu/joystick_menu.cpp:167 msgid "-" msgstr "-" -#: src/supertux/menu/joystick_menu.cpp:167 +#: src/supertux/menu/joystick_menu.cpp:169 msgid "+" msgstr "+" -#: src/supertux/menu/joystick_menu.cpp:174 +#: src/supertux/menu/joystick_menu.cpp:176 msgid "X2" msgstr "X2" -#: src/supertux/menu/joystick_menu.cpp:176 +#: src/supertux/menu/joystick_menu.cpp:178 msgid "Y2" msgstr "Y2" -#: src/supertux/menu/joystick_menu.cpp:189 +#: src/supertux/menu/joystick_menu.cpp:191 msgid "Hat Up" msgstr "Inclinar para Cima" -#: src/supertux/menu/joystick_menu.cpp:193 +#: src/supertux/menu/joystick_menu.cpp:195 msgid "Hat Down" msgstr "Inclinar para Baixo" -#: src/supertux/menu/joystick_menu.cpp:197 +#: src/supertux/menu/joystick_menu.cpp:199 msgid "Hat Left" msgstr "Inclinar para Esquerda" -#: src/supertux/menu/joystick_menu.cpp:201 +#: src/supertux/menu/joystick_menu.cpp:203 msgid "Hat Right" msgstr "Inclinar para Direita" @@ -2850,52 +3956,47 @@ msgstr "Pausar" msgid "Leave World" msgstr "Sair do Mapa-Múndi" -#: src/supertux/menu/download_dialog.cpp:27 +#: src/supertux/menu/download_dialog.cpp:42 msgid "Abort Download" msgstr "Abortar Download" -#: src/supertux/menu/download_dialog.cpp:42 -msgid "Error:\n" -msgstr "Erro:\n" - -#: src/supertux/menu/download_dialog.cpp:96 -msgid "Close" -msgstr "Fechar" - -#: src/supertux/menu/cheat_menu.cpp:33 -msgid "Bonus: Fire x 64" -msgstr "Bônus: Fogo x 64" - -#: src/supertux/menu/cheat_menu.cpp:34 -msgid "Bonus: Ice x 64" -msgstr "Bônus: Gelo x 64" - -#: src/supertux/menu/cheat_menu.cpp:35 -msgid "Bonus: Air x 64" -msgstr "Bônus: Ar x 64" - -#: src/supertux/menu/cheat_menu.cpp:36 -msgid "Bonus: Earth x 64" -msgstr "Bônus: Terra x 64" +#: src/supertux/menu/download_dialog.cpp:59 +#, c++-format +msgid "" +"Error:\n" +"{}" +msgstr "Erro:\n{}" -#: src/supertux/menu/cheat_menu.cpp:37 +#: src/supertux/menu/cheat_menu.cpp:38 msgid "Bonus: Star" msgstr "Bônus: Estrela" -#: src/supertux/menu/cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:39 msgid "Shrink Tux" msgstr "Encolher Tux" -#: src/supertux/menu/cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:40 msgid "Kill Tux" msgstr "Matar Tux" +#: src/supertux/menu/cheat_menu.cpp:55 +msgid "Prevent Death" +msgstr "Prevenir a morte" + +#: src/supertux/menu/addon_file_install_menu.cpp:32 +msgid "Install Add-on from file" +msgstr "Instalar Complemento do arquivo" + +#: src/supertux/menu/addon_file_install_menu.cpp:34 +msgid "Drag and drop add-on ZIP archive" +msgstr "Arraste e solte o arquivo ZIP do complemento" + #: src/supertux/menu/particle_editor_menu.cpp:32 msgid "Particle Editor" msgstr "Editor de Partículas" #: src/supertux/menu/particle_editor_menu.cpp:36 -#: src/supertux/menu/editor_menu.cpp:45 +#: src/supertux/menu/editor_menu.cpp:60 msgid "Return to Editor" msgstr "Retornar ao Editor" @@ -2920,7 +4021,7 @@ msgid "Open Particle Directory" msgstr "Abrir Diretório de Partículas" #: src/supertux/menu/particle_editor_menu.cpp:45 -#: src/supertux/menu/editor_menu.cpp:88 +#: src/supertux/menu/editor_menu.cpp:118 msgid "Keyboard Shortcuts" msgstr "Atalhos do Teclado" @@ -2928,7 +4029,7 @@ msgstr "Atalhos do Teclado" msgid "Exit Particle Editor" msgstr "Sair do Editor de Partículas" -#: src/supertux/menu/particle_editor_menu.cpp:120 +#: src/supertux/menu/particle_editor_menu.cpp:121 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -2940,18 +4041,18 @@ msgid "" "Ctrl+Y = Redo" msgstr "Atalhos de Teclado:\n---------------------\nEsc = Abrir Menu\nCtrl+S = Salvar\nCtrl+Shift+S = Salvar como\nCtrl+O = Abrir\nCtrl+Z = Desfazer\nCtrl+Y = Refazer" -#: src/supertux/menu/particle_editor_menu.cpp:121 -#: src/supertux/menu/editor_menu.cpp:176 +#: src/supertux/menu/particle_editor_menu.cpp:122 +#: src/supertux/menu/editor_menu.cpp:206 msgid "Got it!" msgstr "Entendi!" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:86 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Worldmap Settings" msgstr "Configurações de Mapa do Mundo" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:86 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Level Settings" msgstr "Configurações do Nível" @@ -2959,7 +4060,7 @@ msgstr "Configurações do Nível" msgid "Author" msgstr "Autor" -#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1166 +#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1253 msgid "Contact" msgstr "Contato" @@ -2973,7 +4074,7 @@ msgstr "Nota do Nível" #: src/supertux/menu/editor_level_menu.cpp:38 msgid "Tileset" -msgstr "Blocos" +msgstr "Conjunto de blocos" #: src/supertux/menu/editor_level_menu.cpp:41 msgid "Target Time" @@ -2991,99 +4092,129 @@ msgstr "Por favor entre com o nome do autor para este nível." msgid "Please enter a license for this level." msgstr "Por favor digite uma licença para este nível." -#: src/supertux/menu/editor_menu.cpp:38 +#: src/supertux/menu/editor_menu.cpp:53 msgid "tiny tile (4px)" msgstr "piso minúsculo (4px)" -#: src/supertux/menu/editor_menu.cpp:39 +#: src/supertux/menu/editor_menu.cpp:54 msgid "small tile (8px)" msgstr "piso pequeno (8px)" -#: src/supertux/menu/editor_menu.cpp:40 +#: src/supertux/menu/editor_menu.cpp:55 msgid "medium tile (16px)" msgstr "piso médio (16px)" -#: src/supertux/menu/editor_menu.cpp:41 +#: src/supertux/menu/editor_menu.cpp:56 msgid "big tile (32px)" msgstr "piso grande (32px)" -#: src/supertux/menu/editor_menu.cpp:46 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Worldmap" msgstr "Salvar Mapa do Mundo" -#: src/supertux/menu/editor_menu.cpp:46 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Level" msgstr "Salvar Nível" -#: src/supertux/menu/editor_menu.cpp:55 +#: src/supertux/menu/editor_menu.cpp:65 msgid "Test Level" msgstr "Testar Nível" -#: src/supertux/menu/editor_menu.cpp:59 +#: src/supertux/menu/editor_menu.cpp:67 msgid "Test Worldmap" msgstr "Testar Mapa do Mundo" -#: src/supertux/menu/editor_menu.cpp:62 +#: src/supertux/menu/editor_menu.cpp:72 msgid "Share Level" msgstr "Compartilhar Nível" -#: src/supertux/menu/editor_menu.cpp:64 +#: src/supertux/menu/editor_menu.cpp:74 msgid "Package Add-On" msgstr "Empacotar Complemento" -#: src/supertux/menu/editor_menu.cpp:66 +#: src/supertux/menu/editor_menu.cpp:76 msgid "Open Level Directory" msgstr "Abrir Diretório do Nível" -#: src/supertux/menu/editor_menu.cpp:70 +#: src/supertux/menu/editor_menu.cpp:79 msgid "Edit Another Level" msgstr "Editar Outro Nível" -#: src/supertux/menu/editor_menu.cpp:73 +#: src/supertux/menu/editor_menu.cpp:81 msgid "Edit Another World" msgstr "Editar Outro Mundo" -#: src/supertux/menu/editor_menu.cpp:77 +#: src/supertux/menu/editor_menu.cpp:86 +msgid "Convert all tiles in the level using converters." +msgstr "Converter todos os blocos do nível usando conversores." + +#: src/supertux/menu/editor_menu.cpp:90 msgid "Grid Size" msgstr "Tamanho da Grelha" -#: src/supertux/menu/editor_menu.cpp:78 +#: src/supertux/menu/editor_menu.cpp:91 msgid "Show Grid" msgstr "Mostrar Grelha" -#: src/supertux/menu/editor_menu.cpp:79 +#: src/supertux/menu/editor_menu.cpp:92 msgid "Grid Snapping" -msgstr "Encaixar na Grelha" +msgstr "Encaixar na grade" -#: src/supertux/menu/editor_menu.cpp:80 +#: src/supertux/menu/editor_menu.cpp:93 msgid "Render Background" msgstr "Renderizar Fundo" -#: src/supertux/menu/editor_menu.cpp:81 +#: src/supertux/menu/editor_menu.cpp:94 msgid "Render Light" msgstr "Renderizar Luz" -#: src/supertux/menu/editor_menu.cpp:82 +#: src/supertux/menu/editor_menu.cpp:95 msgid "Autotile Mode" msgstr "Modo de Piso Automático" -#: src/supertux/menu/editor_menu.cpp:83 +#: src/supertux/menu/editor_menu.cpp:96 msgid "Enable Autotile Help" msgstr "Ativar Ajuda do Piso Automático" -#: src/supertux/menu/editor_menu.cpp:84 +#: src/supertux/menu/editor_menu.cpp:97 +msgid "Enable Object Undo Tracking" +msgstr "Ativar rastreamento de desfazer objetos" + +#: src/supertux/menu/editor_menu.cpp:100 +msgid "Undo Stack Size" +msgstr "Desfazer tamanho da pilha" + +#: src/supertux/menu/editor_menu.cpp:102 msgid "Autosave Frequency" msgstr "Frequência de Salvamento Automático" -#: src/supertux/menu/editor_menu.cpp:91 +#: src/supertux/menu/editor_menu.cpp:108 +msgid "Check for Deprecated Tiles" +msgstr "Verificar por blocos obsoletos" + +#: src/supertux/menu/editor_menu.cpp:109 +msgid "Check if any deprecated tiles are currently present in the level." +msgstr "Verificar se há algum bloco obsoleto presente no nível." + +#: src/supertux/menu/editor_menu.cpp:110 +msgid "Show Deprecated Tiles" +msgstr "Mostrar blocos obsoletos" + +#: src/supertux/menu/editor_menu.cpp:111 +msgid "" +"Indicate all deprecated tiles on the active tilemap, without the need of " +"hovering over." +msgstr "Indicar todos os blocos obsoletos no mapa de blocos ativos, sem a necessidade de passar o mouse sobre eles." + +#: src/supertux/menu/editor_menu.cpp:121 msgid "Exit Level Editor" msgstr "Sair do Editor de Níveis" -#: src/supertux/menu/editor_menu.cpp:140 +#: src/supertux/menu/editor_menu.cpp:170 msgid "Do you want to package this world as an add-on?" msgstr "Você quer empacotar esse mundo como um complemento?" -#: src/supertux/menu/editor_menu.cpp:163 +#: src/supertux/menu/editor_menu.cpp:196 msgid "" "We encourage you to share your levels in the SuperTux forum.\n" "To find your level, click the\n" @@ -3091,7 +4222,7 @@ msgid "" "Do you want to go to the forum now?" msgstr "Nós encorajamos a você compartilhar seus níveis no fórum do SuperTux.\nPara encontrar seu nível, clique no\nitem do menu \"Abrir diretório do nível\".\nVocê quer ir para o fórum agora?" -#: src/supertux/menu/editor_menu.cpp:175 +#: src/supertux/menu/editor_menu.cpp:205 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -3102,54 +4233,217 @@ msgid "" "Ctrl+Y = Redo\n" "F6 = Render Light\n" "F7 = Grid Snapping\n" -"F8 = Show Grid" -msgstr "Atalhos de Teclado:\n---------------------\nEsc = Abrir Menu\nCtrl+S = Salvar\nCtrl+T = Testar\nCtrl+Z = Desfazer\nCtrl+Y = Refazer\nF6 = Renderizar Luz\nF7 = Encaixar na Grelha\nF8 = Mostrar Grelha" +"F8 = Show Grid\n" +"Ctrl++ or Ctrl+Scroll Up = Zoom In\n" +"Ctrl+- or Ctrl+Scroll Down = Zoom Out\n" +"Ctrl+D = Reset Zoom\n" +"\n" +"Scripting Shortcuts:\n" +" ------------- \n" +"Home = Go to beginning of line\n" +"End = Go to end of line\n" +"Left arrow = Go back in text\n" +"Right arrow = Go forward in text\n" +"Backspace = Delete in front of text cursor\n" +"Delete = Delete behind text cursor\n" +"Ctrl+X = Cut whole line\n" +"Ctrl+C = Copy whole line\n" +"Ctrl+V = Paste\n" +"Ctrl+D = Duplicate line\n" +"Ctrl+Z = Undo\n" +"Ctrl+Y = Redo" +msgstr "Atalhos de Teclado:\n---------------------\nEsc = Abrir menu\nCtrl+S = Salvar\nCtrl+T = Testar\nCtrl+Z = Desfazer\nCtrl+Y = Refazer\nF6 = Renderizar luz\nF7 = Encaixar na grade\nF8 = Mostrar grades\nCtrl++ ou Ctrl+Scroll Up = Aumentar o zoom\nCtrl+- ou Ctrl+Scroll Down = Reduzir o zoom\nCtrl+D = Resetar zoom\n\nAtalhos de Script:\n ------------- \nHome = Ir para o início da linha\nEnd = Ir para o fim da linha\nSeta esquerda = Voltar no texto\nSeta direita = Avançar no texto\nBackspace = Excluir na frente do cursor de texto\nDelete = Excluir atrás do cursor de texto\nCtrl+X = Cortar linha inteira\nCtrl+C = Copiar linha inteira\nCtrl+V = Colar\nCtrl+D = Duplicar linha\nCtrl+Z = Desfazer\nCtrl+Y = Refazer" + +#: src/supertux/menu/editor_menu.cpp:232 +msgid "Deprecated tiles are still present in the level." +msgstr "Blocos obsoletos ainda estão presentes no nível." + +#: src/supertux/menu/editor_menu.cpp:239 +msgid "Do you want to show all deprecated tiles on active tilemaps?" +msgstr "Você quer mostrar todos os blocos obsoletos no mapa de blocos ativos?" + +#: src/supertux/menu/editor_menu.cpp:246 +msgid "There are no more deprecated tiles in the level!" +msgstr "Não há mais blocos obsoletos no nível!" + +#: src/supertux/menu/multiplayer_player_menu.cpp:40 +msgid "Play with the keyboard" +msgstr "Jogar com o teclado" + +#: src/supertux/menu/multiplayer_player_menu.cpp:58 +msgid "Remove Player" +msgstr "Remover jogador" + +#: src/supertux/menu/multiplayer_player_menu.cpp:82 +msgid "Respawn Player" +msgstr "Regerar jogador" + +#: src/supertux/menu/multiplayer_player_menu.cpp:108 +msgid "Spawn Player" +msgstr "Gerar jogador" + +#: src/supertux/menu/multiplayer_player_menu.cpp:136 +msgid "Controllers" +msgstr "Controladores" -#: src/supertux/menu/editor_delete_level_menu.cpp:53 -msgid "You cannot delete level that you are editing!" -msgstr "Você não pode deletar o nível que você está editando!" +#: src/supertux/menu/multiplayer_player_menu.cpp:152 +msgid "" +"This controller does not support rumbling;\n" +"please check the controllers manually." +msgstr "Este controlador não possui suporte a vibrações;\nverifique os controles manualmente." + +#: src/supertux/menu/multiplayer_player_menu.cpp:157 +msgid "" +"This SuperTux build does not support rumbling\n" +"controllers; please check the controllers manually." +msgstr "Esta compilação do SuperTux não suporta controles\ncom vibração; verifique os controles manualmente." + +#: src/supertux/menu/multiplayer_player_menu.cpp:184 +msgid "" +"This joystick does not support rumbling;\n" +"please check the joysticks manually." +msgstr "Este joystick não possui suporte a vibrações;\nverifique os joysticks manualmente." + +#: src/supertux/menu/multiplayer_player_menu.cpp:189 +msgid "" +"This SuperTux build does not support rumbling\n" +"joysticks; please check the joysticks manually." +msgstr "Esta compilação do SuperTux não suporta joysticks\ncom vibração; verifique os joysticks manualmente." + +#: src/supertux/menu/editor_delete_level_menu.cpp:59 +msgid "No levels available" +msgstr "Nenhum nível disponível" -#: src/supertux/levelintro.cpp:136 -#, c-format -msgid "contributed by %s" -msgstr "contribuído por %s" +#: src/supertux/menu/editor_delete_level_menu.cpp:79 +msgid "You cannot delete the level that you are editing!" +msgstr "Você não pode excluir o nível que está editando!" -#: src/supertux/levelintro.cpp:169 +#: src/supertux/menu/editor_delete_level_menu.cpp:82 +#, c++-format +msgid "You are about to delete level \"{}\". Are you sure?" +msgstr "Você está prestes a excluir o nível \"{}\". Tem certeza?" + +#: src/supertux/levelintro.cpp:137 +#, c++-format +msgid "contributed by {}" +msgstr "contribuído por {}" + +#: src/supertux/levelintro.cpp:184 msgid "Badguys killed" msgstr "Inimigos vencidos" -#: src/supertux/levelintro.cpp:177 +#: src/supertux/levelintro.cpp:192 msgid "Best time" msgstr "Melhor tempo" -#: src/supertux/levelintro.cpp:181 +#: src/supertux/levelintro.cpp:196 msgid "Level target time" msgstr "Objetivo de tempo do nível" -#: src/supertux/tile_set.cpp:118 +#: src/supertux/tile_set.cpp:113 msgid "Others" msgstr "Outros" -#: src/supertux/moving_object.cpp:55 +#: src/supertux/direction.cpp:67 +msgid "up" +msgstr "cima" + +#: src/supertux/direction.cpp:69 +msgid "down" +msgstr "baixo" + +#: src/supertux/moving_object.cpp:63 msgid "Region" msgstr "Região" -#: src/supertux/main.cpp:563 +#: src/supertux/main.cpp:801 +#, c++-format +msgid "New release: SuperTux v{}!" +msgstr "Novo lançamento: SuperTux v{}!" + +#: src/supertux/main.cpp:804 +#, c++-format msgid "" -"The UBports version is under heavy development!\n" -"If you encounter issues, PLEASE contact the maintainter\n" -"at https://github.com/supertux/supertux/issues or on the\n" -"Open Store's Telegram at https://open-store.io/telegram" -msgstr "A versão UBports está sob desenvolvimento pesado!\nSe você encontrar problemas, POR FAVOR contate o mantenedor\nem https://github.com/supertux/supertux/issues ou no\nTelegram da Open Store em https://open-store.io/telegram" +"A new release of SuperTux (v{}) is available!\n" +"For more information, you can visit the SuperTux website.\n" +"\n" +"Do you want to visit the website now?" +msgstr "Uma nova versão do SuperTux (v{}) está disponível!\nPara mais informações, você pode visitar o site do SuperTux.\n\nVocê quer visitar o site agora?" + +#: src/supertux/main.cpp:815 +msgid "Checking for new releases..." +msgstr "Verificando por novos lançamentos..." #: src/control/joystick_config.cpp:85 msgid "Joystick Mappings" msgstr "Mapeamentos de Joystick" -#: src/worldmap/worldmap_parser.cpp:167 +#: src/worldmap/sprite_change.cpp:91 +msgid "Stay action" +msgstr "Ação imóvel" + +#: src/worldmap/sprite_change.cpp:92 +msgid "Initial stay action" +msgstr "Ação imóvel inicial" + +#: src/worldmap/sprite_change.cpp:93 +msgid "Stay group" +msgstr "Grupo imóvel" + +#: src/worldmap/sprite_change.cpp:94 +msgid "Change on touch" +msgstr "Alterar ao tocar" + +#: src/worldmap/special_tile.hpp:36 +msgid "Special Tile" +msgstr "Bloco especial" + +#: src/worldmap/level_tile.hpp:36 src/worldmap/level_tile.cpp:161 +msgid "Level" +msgstr "Nível" + +#: src/worldmap/teleporter.cpp:50 +msgid "Automatic" +msgstr "Automático" + +#: src/worldmap/teleporter.cpp:51 +msgid "Target worldmap" +msgstr "Mapa-múndi alvo" + +#: src/worldmap/sprite_change.hpp:35 +msgid "Sprite Change" +msgstr "Alteração de Imagem" + +#: src/worldmap/special_tile.cpp:75 +msgid "Show message" +msgstr "Mostrar Mensagem" + +#: src/worldmap/level_tile.cpp:84 msgid "" msgstr "" +#: src/worldmap/level_tile.cpp:162 +msgid "Outro script" +msgstr "Outro script" + +#: src/worldmap/level_tile.cpp:163 +msgid "Auto play" +msgstr "Iniciar automaticamente o nível" + +#: src/worldmap/level_tile.cpp:164 +msgid "Title colour" +msgstr "Cor do título do mapa" + +#: src/worldmap/teleporter.hpp:34 +msgid "Teleporter" +msgstr "Tele-transportador" + +#: src/editor/tip.cpp:80 +msgid "" +"This object's current functionality is deprecated.\n" +"Updating to get its latest functionality is recommended." +msgstr "A funcionalidade atual deste objeto está obsoleta.\nÉ recomendável atualizar para obter sua funcionalidade mais recente." + #: src/editor/node_marker.cpp:122 msgid "Path Node" msgstr "Nó do Caminho" @@ -3162,89 +4456,86 @@ msgstr "Pressione CTRL para mover as alças de Bézier" msgid "Easing" msgstr "Suavização" -#: src/editor/object_settings.cpp:119 -msgid "up" -msgstr "cima" - -#: src/editor/object_settings.cpp:119 -msgid "down" -msgstr "baixo" - -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "West" msgstr "Oeste" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "East" msgstr "Leste" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "North" msgstr "Norte" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "South" msgstr "Sul" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "One shot" msgstr "Um tiro" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "Ping-pong" msgstr "Ping-pong" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "Circular" msgstr "Circular" -#: src/editor/object_settings.cpp:144 -msgid "Unordered" -msgstr "Não ordenado" +#: src/editor/layers_widget.cpp:331 +#, c++-format +msgid "Sector: {}" +msgstr "Setor: {}" -#: src/editor/object_option.cpp:85 +#: src/editor/object_option.cpp:92 msgid "true" -msgstr "sim" +msgstr "verdadeiro" -#: src/editor/object_option.cpp:85 +#: src/editor/object_option.cpp:92 msgid "false" -msgstr "não" +msgstr "falso" -#: src/editor/object_option.cpp:271 src/editor/object_option.cpp:320 +#: src/editor/object_option.cpp:308 src/editor/object_option.cpp:356 msgid "invalid" msgstr "inválido" -#: src/editor/object_option.cpp:580 +#: src/editor/object_option.cpp:665 +msgid "Scale X" +msgstr "Escala X" + +#: src/editor/object_option.cpp:666 +msgid "Scale Y" +msgstr "Escala Y" + +#: src/editor/object_option.cpp:667 +msgid "Offset X" +msgstr "Deslocamento X" + +#: src/editor/object_option.cpp:668 +msgid "Offset Y" +msgstr "Deslocamento Y" + +#: src/editor/object_option.cpp:672 src/editor/object_menu.cpp:67 msgid "Remove" msgstr "Remover" -#: src/editor/object_option.cpp:597 +#: src/editor/object_option.cpp:689 msgid "Test from here" msgstr "Testar daqui" -#: src/editor/object_option.cpp:614 +#: src/editor/object_option.cpp:706 msgid "Open Particle Editor" msgstr "Abrir Editor de Partículas" -#: src/editor/worldmap_objects.hpp:56 src/editor/worldmap_objects.cpp:127 -msgid "Level" -msgstr "Nível" - -#: src/editor/worldmap_objects.hpp:79 -msgid "Teleporter" -msgstr "Tele-transportador" - -#: src/editor/worldmap_objects.hpp:119 -msgid "Sprite Change" -msgstr "Alteração de Imagem" - -#: src/editor/worldmap_objects.hpp:140 -msgid "Special tile" -msgstr "Piso Especial" +#: src/editor/particle_editor.cpp:114 +msgid "Change texture... ->" +msgstr "Alterar textura... ->" #: src/editor/particle_editor.cpp:126 msgid "Max amount" -msgstr "Quantia máxima" +msgstr "Quantidade máxima" #: src/editor/particle_editor.cpp:142 msgid "Spawn anywhere" @@ -3322,17 +4613,60 @@ msgstr "Sempre destruir" msgid "Offscreen mode" msgstr "Modo fora da tela" -#: src/editor/particle_editor.cpp:765 +#: src/editor/particle_editor.cpp:229 +msgid "Clear" +msgstr "Limpar" + +#: src/editor/particle_editor.cpp:245 +msgid "<- General settings" +msgstr "<- Configurações gerais" + +#: src/editor/particle_editor.cpp:255 +msgid "Likeliness" +msgstr "Probabilidade" + +#: src/editor/particle_editor.cpp:266 +msgid "Color (RGBA)" +msgstr "Cor (RGBA)" + +#: src/editor/particle_editor.cpp:311 +msgid "Scale (x, y)" +msgstr "Escala (x, y)" + +#: src/editor/particle_editor.cpp:332 +msgid "Hitbox scale (x, y)" +msgstr "Escala de hitbox (x, y)" + +#: src/editor/particle_editor.cpp:353 +msgid "Hitbox offset relative to scale" +msgstr "Deslocamento da hitbox em relação à escala" + +#: src/editor/particle_editor.cpp:372 +msgid "Change texture..." +msgstr "Mudar textura..." + +#: src/editor/particle_editor.cpp:766 msgid "" "This particle configuration contains unsaved changes,\n" "do you want to save?" msgstr "As configurações dessa partícula contém mudanças não salvas,\nvocê quer salvar?" -#: src/editor/particle_editor.cpp:773 +#: src/editor/particle_editor.cpp:774 msgid "Save as" msgstr "Salvar como" -#: src/editor/editor.cpp:566 +#: src/editor/editor.cpp:577 +msgid "" +"This level contains deprecated tiles.\n" +"It is strongly recommended to replace all deprecated tiles\n" +"to avoid loss of compatibility in future versions." +msgstr "Este nível contém blocos obsoletos.\nÉ altamente recomendado substituir todos os blocos obsoletos\npara evitar perda de compatibilidade em versões futuras." + +#: src/editor/editor.cpp:579 +msgid "Tip: Turn on \"Show Deprecated Tiles\" from the level editor menu." +msgstr "Dica: Ative \"Mostrar blocos obsoletos\" no menu do editor de níveis." + +#: src/editor/editor.cpp:626 msgid "" "Don't forget that your levels and assets\n" "aren't saved between sessions!\n" @@ -3340,11 +4674,15 @@ msgid "" "from the \"Manage Assets\" menu." msgstr "Não se esqueça que seus níveis e recursos\nnão são salvos entre sessões!\nSe você quiser manter seus níveis, baixe eles\ndo menu de \"Gerenciar Recursos\"." -#: src/editor/editor.cpp:582 +#: src/editor/editor.cpp:661 msgid "This level contains unsaved changes, do you want to save?" msgstr "Este nível contém alterações não salvas. Gostaria de salvá-las?" -#: src/editor/editor.cpp:622 +#: src/editor/editor.cpp:662 +msgid "This level may contain unsaved changes, do you want to save?" +msgstr "Este nível pode conter alterações não salvas. Você deseja salvá-las?" + +#: src/editor/editor.cpp:797 msgid "" "Some obsolete add-ons are still active\n" "and might cause collisions with default Super Tux structure.\n" @@ -3352,93 +4690,71 @@ msgid "" "Disabling these add-ons will not delete your game progress." msgstr "Ainda estão disponíveis alguns complementos antigos\nque podem causar colisões com a estrutura padrão do SuperTux.\nVocê ainda pode ativar estes complementos no menu.\nSe você desativar estes complementos, não perderá o progresso no jogo." -#: src/editor/editor.cpp:625 +#: src/editor/editor.cpp:800 msgid "Disable add-ons" msgstr "Desativar complementos" -#: src/editor/editor.cpp:630 +#: src/editor/editor.cpp:805 msgid "Ignore (not advised)" msgstr "Ignorar (não recomendável)" -#: src/editor/editor.cpp:634 +#: src/editor/editor.cpp:809 msgid "Leave editor" msgstr "Sair do editor" -#: src/editor/editor.cpp:853 +#: src/editor/editor.cpp:1023 msgid "" "Couldn't find a \"main\" sector.\n" "Please change the name of the sector where\n" "you'd like the player to start to \"main\"" msgstr "Não foi possível encontrar um setor \"principal\".\nPor favor altera o nome do setor onde gostaria que o jogador comece" -#: src/editor/editor.cpp:857 +#: src/editor/editor.cpp:1027 msgid "" "Couldn't find a \"main\" spawnpoint.\n" " Please change the name of the spawnpoint where\n" "you'd like the player to start to \"main\"" msgstr "Não foi possível encontrar um ponto de começo \"principal\".\nPor favor altera o ponto de começo onde gostaria que o jogador comece" -#: src/editor/worldmap_objects.cpp:128 -msgid "Outro script" -msgstr "Outro script" - -#: src/editor/worldmap_objects.cpp:129 -msgid "Auto play" -msgstr "Iniciar automaticamente o nível" - -#: src/editor/worldmap_objects.cpp:131 -msgid "Title colour" -msgstr "Cor do título do mapa" - -#: src/editor/worldmap_objects.cpp:173 -msgid "Automatic" -msgstr "Automático" - -#: src/editor/worldmap_objects.cpp:175 -msgid "Target worldmap" -msgstr "Mapa-múndi alvo" - -#: src/editor/worldmap_objects.cpp:238 -msgid "Stay action" -msgstr "Ação imóvel" - -#: src/editor/worldmap_objects.cpp:239 -msgid "Initial stay action" -msgstr "Ação imóvel inicial" - -#: src/editor/worldmap_objects.cpp:240 -msgid "Stay group" -msgstr "Grupo imóvel" - -#: src/editor/worldmap_objects.cpp:241 -msgid "Change on touch" -msgstr "Alterar ao tocar" - -#: src/editor/worldmap_objects.cpp:271 -msgid "Show message" -msgstr "Mostrar Mensagem" +#: src/editor/object_menu.cpp:60 +msgid "Patch Notes" +msgstr "Notas do Patch" -#: src/editor/worldmap_objects.cpp:273 -msgid "Invisible" -msgstr "Invisível" - -#: src/editor/overlay_widget.cpp:1297 +#: src/editor/object_menu.cpp:84 +msgid "" +"This will update the object to its latest functionality.\n" +"Check the \"Patch Notes\" for more information.\n" +"\n" +"Keep in mind this is very likely to break the proper behaviour of the object.\n" +"Make sure to re-check any behaviour, related to the object." +msgstr "Isso atualizará o objeto para sua funcionalidade mais recente.\nVerifique as \"Notas do Patch\" para mais informações.\n\nLembre-se de que é muito provável que isso interrompa o comportamento adequado do objeto.\nCertifique-se de verificar novamente qualquer comportamento relacionado ao objeto." + +#: src/editor/object_menu.cpp:98 +#, c++-format +msgid "Patch notes for v{}:" +msgstr "Notas de patch para v{}:" + +#: src/editor/overlay_widget.cpp:1062 +msgid "Cannot select deprecated tiles" +msgstr "Não é possível selecionar blocos obsoletos." + +#: src/editor/overlay_widget.cpp:1567 msgid "Autotile mode is on" msgstr "Modo de Piso Automático ativo" -#: src/editor/overlay_widget.cpp:1299 +#: src/editor/overlay_widget.cpp:1571 msgid "Hold Ctrl to enable autotile" msgstr "Segure Ctrl para ativar o Piso Automático" -#: src/editor/overlay_widget.cpp:1303 +#: src/editor/overlay_widget.cpp:1578 msgid "Autotile erasing mode is on" msgstr "Modo de apagar (Piso Automático) ativo" -#: src/editor/overlay_widget.cpp:1305 +#: src/editor/overlay_widget.cpp:1582 msgid "Selected tile isn't autotileable" msgstr "Piso selecionado não é compatível com o Piso Automático" -#: src/editor/overlay_widget.cpp:1308 +#: src/editor/overlay_widget.cpp:1587 msgid "Hold Ctrl to enable autotile erasing" msgstr "Segure Ctrl para ativar a borracha (Piso Automático)" @@ -3447,8 +4763,8 @@ msgid "Current SuperTux Team" msgstr "Equipe Atual do SuperTux" #: data//credits.stxt:30 -msgid "Programming, project lead ad interim" -msgstr "Programação, Líder Interino de Projeto" +msgid "Maintainer, Programming" +msgstr "Mantenedor, Programação" #: data//credits.stxt:35 msgid "Graphics, Level Design, Story" @@ -3458,12 +4774,12 @@ msgstr "Gráficos, Design de Níveis, História" msgid "Level Design, Story, Optimisation, Coordination" msgstr "Design de Níveis, História, Otimização, Coordenação" -#: data//credits.stxt:45 data//credits.stxt:105 data//credits.stxt:191 -#: data//credits.stxt:519 +#: data//credits.stxt:45 data//credits.stxt:120 data//credits.stxt:206 +#: data//credits.stxt:538 msgid "Graphics" msgstr "Gráficos" -#: data//credits.stxt:50 data//credits.stxt:87 data//credits.stxt:93 +#: data//credits.stxt:50 data//credits.stxt:102 data//credits.stxt:108 msgid "Graphics, Programming, Level Design" msgstr "Gráficos, Programação, Design de Níveis" @@ -3472,256 +4788,266 @@ msgid "Features and Programming" msgstr "Recursos e Programação" #: data//credits.stxt:60 +msgid "Minor features and programming" +msgstr "Recursos menores e programação" + +#: data//credits.stxt:65 msgid "Programming, Level Updates" msgstr "Programação, Atualização de Níveis" -#: data//credits.stxt:65 +#: data//credits.stxt:70 msgid "Graphics, Programming" msgstr "Gráficos, Programação" -#: data//credits.stxt:70 data//credits.stxt:135 data//credits.stxt:140 -#: data//credits.stxt:145 data//credits.stxt:150 data//credits.stxt:165 -#: data//credits.stxt:170 data//credits.stxt:515 data//credits.stxt:527 +#: data//credits.stxt:75 data//credits.stxt:85 data//credits.stxt:150 +#: data//credits.stxt:155 data//credits.stxt:160 data//credits.stxt:165 +#: data//credits.stxt:180 data//credits.stxt:185 data//credits.stxt:534 +#: data//credits.stxt:546 msgid "Programming" msgstr "Programação" -#: data//credits.stxt:76 +#: data//credits.stxt:80 data//credits.stxt:266 +msgid "Level Design" +msgstr "Design de Níveis" + +#: data//credits.stxt:91 msgid "Original Developers" msgstr "Desenvolvedores Originais" -#: data//credits.stxt:81 +#: data//credits.stxt:96 msgid "Original Developer" msgstr "Desenvolvedor Original" -#: data//credits.stxt:99 +#: data//credits.stxt:114 msgid "Music, Level Design" msgstr "Música, Design de Níveis" -#: data//credits.stxt:111 +#: data//credits.stxt:126 msgid "Programming, Graphics, Level Design" msgstr "Programação, Gráficos, Design de Níveis" -#: data//credits.stxt:117 +#: data//credits.stxt:132 msgid "Programming, Level Design" msgstr "Programação, Design de Níveis" -#: data//credits.stxt:123 +#: data//credits.stxt:138 msgid "Graphics, Story" -msgstr "Gráficos, Estória" +msgstr "Gráficos, História" -#: data//credits.stxt:129 +#: data//credits.stxt:144 msgid "Programming, Documentation" msgstr "Programação, Documentação" -#: data//credits.stxt:155 +#: data//credits.stxt:170 msgid "Coordination" msgstr "Coordenação" -#: data//credits.stxt:160 +#: data//credits.stxt:175 msgid "Programming, \"Flexlay\" Level editor" msgstr "Programação, Editor do Nível \"Flexlay\"" -#: data//credits.stxt:175 +#: data//credits.stxt:190 msgid "Windows build fixes" msgstr "Correções no Build Windows" -#: data//credits.stxt:180 +#: data//credits.stxt:195 msgid "Packaging, Nightly builds" msgstr "Empacotamento, Builds Noturnas" -#: data//credits.stxt:185 +#: data//credits.stxt:200 msgid "Translation Guru (and many details anyone else could have done)" msgstr "Guro de Tradução (e muitos detalhes que qualquer outro poderia ter feito)" -#: data//credits.stxt:251 -msgid "Level Design" -msgstr "Design de Níveis" - -#: data//credits.stxt:431 +#: data//credits.stxt:450 msgid "Additional contributors" msgstr "Contribuidores Adicionais" -#: data//credits.stxt:436 +#: data//credits.stxt:455 msgid "Bug fixes" msgstr "Correção de Bugs" -#: data//credits.stxt:440 +#: data//credits.stxt:459 msgid "Scripting functions, Level fixes" msgstr "Funções de scripts, Correções em níveis" -#: data//credits.stxt:444 +#: data//credits.stxt:463 msgid "Code quality fixes" msgstr "Correções de qualidade do código" -#: data//credits.stxt:448 data//credits.stxt:452 data//credits.stxt:456 -#: data//credits.stxt:483 +#: data//credits.stxt:467 data//credits.stxt:471 data//credits.stxt:475 +#: data//credits.stxt:502 msgid "Various contributions" msgstr "Várias contribuições" -#: data//credits.stxt:460 +#: data//credits.stxt:479 msgid "Build issue fix" msgstr "Correção em problema de build" -#: data//credits.stxt:464 data//credits.stxt:468 +#: data//credits.stxt:483 data//credits.stxt:487 msgid "Code contributions" msgstr "Contribuições de Código" -#: data//credits.stxt:471 +#: data//credits.stxt:490 msgid "Code contribution, AppData file" msgstr "Contribuições de Código, Ficheiro AppData" -#: data//credits.stxt:475 +#: data//credits.stxt:494 msgid "Bug fix" msgstr "Correção de Bug" -#: data//credits.stxt:479 +#: data//credits.stxt:498 msgid "Menu reorganization" msgstr "Reorganização de menu" -#: data//credits.stxt:487 +#: data//credits.stxt:506 msgid "Fixing tile bugs" msgstr "Correção de bugs de tela" -#: data//credits.stxt:491 +#: data//credits.stxt:510 msgid "Build error fix" msgstr "Correção de erro no build" -#: data//credits.stxt:495 +#: data//credits.stxt:514 msgid "Scripting function fix" msgstr "Correção de funções de scripts" -#: data//credits.stxt:499 +#: data//credits.stxt:518 msgid "New features and notable updates" msgstr "Novos recursos e atualizações notórias" -#: data//credits.stxt:503 +#: data//credits.stxt:522 msgid "Support for \"glbinding\" as optional OpenGL binding" msgstr "Suporte para \"glbinding\" como anexação opcional OpenGL" -#: data//credits.stxt:507 +#: data//credits.stxt:526 msgid "New menu code" msgstr "Código novo de menu" -#: data//credits.stxt:511 +#: data//credits.stxt:530 msgid "Big Tux Walking Sprites improvements" msgstr "Aprimoramentos nos Sprites do Tux ao Andar" -#: data//credits.stxt:523 data//credits.stxt:531 +#: data//credits.stxt:542 data//credits.stxt:550 msgid "Contrib Programming" msgstr "Contribuição de Programação" -#: data//credits.stxt:535 +#: data//credits.stxt:554 msgid "Programming, Previous Maintainer" msgstr "Programação, Mantenedor Anterior" -#: data//credits.stxt:539 +#: data//credits.stxt:558 msgid "Various Contributions" msgstr "Vários Contribuidores" -#: data//credits.stxt:543 -msgid "Minor features and programming" -msgstr "Recursos menores e programação" - -#: data//credits.stxt:547 data//credits.stxt:551 data//credits.stxt:555 -#: data//credits.stxt:559 data//credits.stxt:563 data//credits.stxt:567 -#: data//credits.stxt:571 data//credits.stxt:575 data//credits.stxt:579 -#: data//credits.stxt:583 data//credits.stxt:587 data//credits.stxt:591 +#: data//credits.stxt:562 data//credits.stxt:566 data//credits.stxt:570 +#: data//credits.stxt:574 data//credits.stxt:578 data//credits.stxt:582 +#: data//credits.stxt:586 data//credits.stxt:590 data//credits.stxt:594 +#: data//credits.stxt:598 data//credits.stxt:602 data//credits.stxt:606 +#: data//credits.stxt:610 data//credits.stxt:614 data//credits.stxt:618 +#: data//credits.stxt:622 data//credits.stxt:626 data//credits.stxt:630 +#: data//credits.stxt:634 data//credits.stxt:638 data//credits.stxt:642 +#: data//credits.stxt:646 data//credits.stxt:650 data//credits.stxt:654 +#: data//credits.stxt:658 data//credits.stxt:662 msgid "Contributions" msgstr "Contribuidores" -#: data//credits.stxt:597 +#: data//credits.stxt:668 msgid "Localization" msgstr "Tradução" -#: data//credits.stxt:1144 +#: data//credits.stxt:1231 msgid " Special Thanks to" msgstr " Agradecimento Especial a" -#: data//credits.stxt:1149 +#: data//credits.stxt:1236 msgid "Creator of Tux, the Linux penguin" msgstr "Criador de Tux, o pinguim do Linux" -#: data//credits.stxt:1153 +#: data//credits.stxt:1240 msgid "SDL, OpenAL and OpenGL" msgstr "SDL, OpenAL e OpenGL" -#: data//credits.stxt:1154 +#: data//credits.stxt:1241 msgid "" "For making such a great gaming experience\n" " possible on Linux" msgstr "Por fazer uma experiência de jogo tão boa\npossível no Linux" -#: data//credits.stxt:1159 +#: data//credits.stxt:1246 msgid "and you, the player" msgstr "e a você, o jogador" -#: data//credits.stxt:1160 +#: data//credits.stxt:1247 msgid "for giving this game a chance and playing it" msgstr "por dar uma chance a este jogo e jogá-lo" -#: data//credits.stxt:1171 +#: data//credits.stxt:1258 msgid "Visit our webpage at" msgstr "Visite nossa página da web em" -#: data//credits.stxt:1180 +#: data//credits.stxt:1267 msgid "Or visit us directly at IRC:" msgstr "Ou nos visite diretamente no IRC:" -#: data//credits.stxt:1184 +#: data//credits.stxt:1271 msgid "#supertux at web.libera.chat" msgstr "#supertux em web.libera.chat" -#: data//credits.stxt:1189 +#: data//credits.stxt:1276 msgid "Or at our Forum:" msgstr "Ou em nosso Fórum:" -#: data//credits.stxt:1198 +#: data//credits.stxt:1285 msgid "Comments, ideas and suggestions" msgstr "Comentários, ideias e sugestões" -#: data//credits.stxt:1202 +#: data//credits.stxt:1289 msgid "go to our mailing list" msgstr "consulte nossa lista de discussão" #. l10n: typo contact -#: data//credits.stxt:1212 +#: data//credits.stxt:1299 msgid "Typographical errors can be" msgstr "Erros tipográficos podem ser" #. l10n: typo contact -#: data//credits.stxt:1217 +#: data//credits.stxt:1304 msgid "reported to" msgstr "reportados para" #. l10n: typo contact, see -#: data//credits.stxt:1222 +#: data//credits.stxt:1309 msgid "supertux-devel@lists.lethargik.org" msgstr "supertux-devel@lists.lethargik.org" -#: data//credits.stxt:1229 +#: data//credits.stxt:1316 msgid "Want to help…" msgstr "Deseja ajudar…" -#: data//credits.stxt:1234 +#: data//credits.stxt:1321 msgid "…with localization?" msgstr "...com tradução?" -#: data//credits.stxt:1244 +#: data//credits.stxt:1331 msgid "…with something else?" msgstr "...com alguma outra coisa?" -#: data//credits.stxt:1255 +#: data//credits.stxt:1342 msgid "Thank you for" msgstr "Obrigado por" -#: data//credits.stxt:1259 +#: data//credits.stxt:1346 msgid "playing" msgstr "jogar" -#: data//credits.stxt:1269 +#: data//credits.stxt:1356 msgid "Penny awaits you in warmer temperatures!" msgstr "Penny espera por você em temperaturas mais amenas!" +#: data//images/engine/editor/objects.stoi:4 +msgid "Enemies" +msgstr "Inimigos" + #: data//images/engine/editor/objects.stoi:162 msgid "Bosses" msgstr "Chefões" @@ -3730,15 +5056,10 @@ msgstr "Chefões" msgid "Projectiles" msgstr "Projéteis" -#: data//images/engine/editor/objects.stoi:187 +#: data//images/engine/editor/objects.stoi:184 msgid "Environment" msgstr "Ambiente" -#: data//images/ice_world.strf:10 data//images/tiles.strf:28 -#: data//images/worldmap.strf:41 -msgid "Snow" -msgstr "Neve" - #: data//images/ice_world.strf:80 msgid "Ice Cave & Crystal" msgstr "Caverna de Gelo e Cristal" @@ -3747,11 +5068,6 @@ msgstr "Caverna de Gelo e Cristal" msgid "Embellishments" msgstr "Embelezamentos" -#: data//images/ice_world.strf:211 data//images/tiles.strf:386 -#: data//images/worldmap.strf:67 -msgid "Forest" -msgstr "Floresta" - #: data//images/ice_world.strf:320 msgid "Underground Forest" msgstr "Floresta Subterrânea" @@ -3776,57 +5092,61 @@ msgstr "Caminho" msgid "Water" msgstr "Água" -#: data//images/tiles.strf:176 +#: data//images/tiles.strf:252 msgid "Snow Background" msgstr "Fundo de Neve" -#: data//images/tiles.strf:231 -msgid "Snow Mountain" -msgstr "Montanha Nevada" - -#: data//images/tiles.strf:305 +#: data//images/tiles.strf:300 msgid "Crystal" msgstr "Cristal" -#: data//images/tiles.strf:532 +#: data//images/tiles.strf:539 msgid "Forest Background" msgstr "Fundo de Floresta" -#: data//images/tiles.strf:663 +#: data//images/tiles.strf:690 +msgid "Corrupted Forest" +msgstr "Floresta Corrompida" + +#: data//images/tiles.strf:868 +msgid "Corrupted Background" +msgstr "Fundo Corrompido" + +#: data//images/tiles.strf:991 msgid "Block + Bonus" msgstr "Bloco + Bônus" -#: data//images/tiles.strf:715 +#: data//images/tiles.strf:1069 msgid "Pole + Signs" msgstr "Mastros + Sinais" -#: data//images/tiles.strf:760 +#: data//images/tiles.strf:1113 msgid "Liquid" msgstr "Líquido" -#: data//images/tiles.strf:793 +#: data//images/tiles.strf:1131 msgid "Castle" msgstr "Castelo" -#: data//images/tiles.strf:930 data//images/worldmap.strf:199 +#: data//images/tiles.strf:1231 data//images/worldmap.strf:199 msgid "Halloween" msgstr "Dia das Bruxas" -#: data//images/tiles.strf:958 +#: data//images/tiles.strf:1272 msgid "Industrial" msgstr "Industrial" -#: data//images/tiles.strf:973 +#: data//images/tiles.strf:1287 msgid "Unisolid + Lightmap" msgstr "Semi-sólidos + Mapa de luz" -#: data//images/tiles.strf:1000 +#: data//images/tiles.strf:1314 msgid "Miscellaneous" msgstr "Miscelânea" -#: data//images/tiles.strf:1043 -msgid "Retro Snow" -msgstr "Neve Retrô" +#: data//images/tiles.strf:1342 +msgid "Retro Tiles" +msgstr "Blocos retrô" #: data//images/worldmap.strf:24 msgid "Water paths" @@ -3839,3 +5159,19 @@ msgstr "Caminhos de castelo" #: data//images/worldmap.strf:135 msgid "Darker Forest" msgstr "Floresta Escura" + +#: data//images/converters/data.stcd:3 +msgid "Nightly Tiles" +msgstr "Blocos noturnos" + +#: data//images/converters/data.stcd:5 +msgid "For levels, created in previous Nightly builds." +msgstr "Para níveis criados em versões Noturnas anteriores." + +#: data//images/converters/data.stcd:8 +msgid "Pre-0.6.3 Crystal Tiles" +msgstr "Blocos de cristal pré-0.6.3" + +#: data//images/converters/data.stcd:10 +msgid "For levels, created in pre-0.6.3 versions, which use crystal tiles." +msgstr "Para níveis criados em versões anteriores à 0.6.3, que utilizam blocos de cristal." diff --git a/data/locale/ro.po b/data/locale/ro.po index 79a77c0a7a2..fed8c084954 100644 --- a/data/locale/ro.po +++ b/data/locale/ro.po @@ -1769,8 +1769,8 @@ msgstr "Apăsați pe Escape pentru a sări" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Utilizare: %s [OPȚIUNI] [FIȘIERNIVEL]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Utilizare: {} [OPȚIUNI] [FIȘIERNIVEL]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2494,13 +2494,13 @@ msgstr "Redimensionează" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[Profil %s]" +msgid "[Profile {}]" +msgstr "[Profil {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "Profil %s" +msgid "Profile {}" +msgstr "Profil {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2548,8 +2548,8 @@ msgstr "Necunoscut" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" de \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" de \"{}\"" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2561,13 +2561,13 @@ msgstr "Nu au fost găsite suplimente" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "Instalare %s *NOU*" +msgid "Install {} *NEW*" +msgstr "Instalare {} *NOU*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Instalare %s" +msgid "Install {}" +msgstr "Instalare {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2587,8 +2587,8 @@ msgstr "Se descarcă lista de suplimente" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "Descărcare %s" +msgid "Downloading {}" +msgstr "Descărcare {}" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3101,8 +3101,8 @@ msgstr "Nu puteți șterge nivelul pe care îl editați!" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "contribuit de %s" +msgid "contributed by {}" +msgstr "contribuit de {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/ru.po b/data/locale/ru.po index 4ee76ffe649..0f057119665 100644 --- a/data/locale/ru.po +++ b/data/locale/ru.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: -# Andrei Stepanov, 2018-2021 +# Andrei Stepanov, 2018-2021,2024 # Artem Krosheninnikov , 2013,2015 # Dmitry Anikonov , 2016 # Dmitry , 2013 @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2021-12-12 20:05+0100\n" +"POT-Creation-Date: 2024-05-30 16:19+0200\n" "PO-Revision-Date: 2013-08-10 22:56+0000\n" -"Last-Translator: Темак, 2022-2023\n" +"Last-Translator: Andrei Stepanov, 2018-2021,2024\n" "Language-Team: Russian (http://app.transifex.com/arctic-games/supertux/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,124 +25,166 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: src/trigger/secretarea_trigger.cpp:53 src/trigger/secretarea_trigger.cpp:61 +#: src/trigger/secretarea_trigger.cpp:47 msgid "You found a secret area!" msgstr "Вы нашли тайник!" -#: src/trigger/secretarea_trigger.cpp:77 src/supertux/game_object.cpp:90 -#: src/supertux/menu/editor_sector_menu.cpp:34 -#: src/supertux/menu/editor_levelset_menu.cpp:58 +#: src/trigger/secretarea_trigger.cpp:55 src/supertux/game_object.cpp:115 +#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_levelset_menu.cpp:52 #: src/supertux/menu/editor_new_levelset_menu.cpp:34 +#: src/supertux/menu/profile_name_menu.cpp:39 #: src/supertux/menu/editor_level_menu.cpp:33 msgid "Name" -msgstr "Название" +msgstr "Имя" -#: src/trigger/secretarea_trigger.cpp:78 +#: src/trigger/secretarea_trigger.cpp:56 msgid "Fade tilemap" msgstr "Исчезающая карта плиток" -#: src/trigger/secretarea_trigger.cpp:79 src/trigger/climbable.cpp:81 -#: src/object/infoblock.cpp:57 src/editor/worldmap_objects.cpp:172 -#: src/editor/worldmap_objects.cpp:270 +#: src/trigger/secretarea_trigger.cpp:57 src/trigger/climbable.cpp:59 +#: src/object/infoblock.cpp:76 src/worldmap/teleporter.cpp:49 +#: src/worldmap/special_tile.cpp:74 msgid "Message" msgstr "Сообщение" -#: src/trigger/secretarea_trigger.cpp:80 src/trigger/scripttrigger.cpp:75 -#: src/trigger/door.cpp:73 src/object/ispy.cpp:67 -#: src/object/bonus_block.cpp:207 src/object/bonus_block.cpp:211 -#: src/object/pushbutton.cpp:51 src/object/powerup.cpp:190 -#: src/editor/worldmap_objects.cpp:272 +#: src/trigger/secretarea_trigger.cpp:58 src/trigger/scripttrigger.cpp:51 +#: src/trigger/door.cpp:79 src/object/ispy.cpp:53 +#: src/object/bonus_block.cpp:264 src/object/bonus_block.cpp:268 +#: src/object/pushbutton.cpp:62 src/object/powerup.cpp:301 +#: src/worldmap/special_tile.cpp:76 msgid "Script" msgstr "Сценарий" -#: src/trigger/scripttrigger.cpp:76 src/object/pushbutton.hpp:31 +#: src/trigger/scripttrigger.cpp:52 src/object/pushbutton.hpp:32 msgid "Button" msgstr "Кнопка" -#: src/trigger/scripttrigger.cpp:77 +#: src/trigger/scripttrigger.cpp:53 msgid "Oneshot" msgstr "Один выстрел" -#: src/trigger/sequence_trigger.hpp:33 +#: src/trigger/sequence_trigger.hpp:31 msgid "Sequence Trigger" msgstr "Триггер последовательности" -#: src/trigger/door.cpp:74 src/badguy/willowisp.cpp:320 -#: src/supertux/menu/editor_sector_menu.cpp:32 -#: src/editor/layers_widget.cpp:342 -#: data//images/engine/editor/objects.stoi:321 +#: src/trigger/text_area.cpp:141 +msgid "Once" +msgstr "Один раз" + +#: src/trigger/text_area.cpp:142 +msgid "Text change time" +msgstr "Время смены текста" + +#: src/trigger/text_area.cpp:143 +msgid "Fade time" +msgstr "Время затухания" + +#: src/trigger/text_area.cpp:144 src/object/textscroller.cpp:353 +msgid "Anchor" +msgstr "Якорь" + +#: src/trigger/text_area.cpp:148 +msgid "Anchor offset X" +msgstr "Смещение X якоря" + +#: src/trigger/text_area.cpp:149 +msgid "Anchor offset Y" +msgstr "Смещение Y якоря" + +#: src/trigger/text_area.cpp:150 +msgid "Texts" +msgstr "Тексты" + +#: src/trigger/door.cpp:80 src/badguy/willowisp.cpp:311 +#: src/worldmap/teleporter.cpp:47 data//images/engine/editor/objects.stoi:342 msgid "Sector" msgstr "Участок" -#: src/trigger/door.cpp:75 src/editor/worldmap_objects.hpp:101 +#: src/trigger/door.cpp:81 src/worldmap/spawn_point.hpp:58 msgid "Spawn point" msgstr "Точка возрождения" -#: src/trigger/switch.cpp:61 src/object/block.cpp:224 src/object/torch.cpp:102 -#: src/object/moving_sprite.cpp:156 src/object/pneumatic_platform.cpp:146 -msgid "Sprite" -msgstr "Спрайт" +#: src/trigger/door.cpp:82 +msgid "Locked?" +msgstr "Заблокировано?" + +#: src/trigger/door.cpp:83 +msgid "Lock Color" +msgstr "Цвет блокировки" + +#: src/trigger/switch.cpp:62 src/object/ispy.cpp:54 src/object/bumper.cpp:53 +#: src/object/spotlight.cpp:106 src/object/pushbutton.cpp:61 +#: src/object/gradient.cpp:103 src/object/conveyor_belt.cpp:60 +#: src/badguy/badguy.cpp:1063 src/worldmap/spawn_point.cpp:79 +#: src/worldmap/special_tile.cpp:78 +msgid "Direction" +msgstr "Направление" -#: src/trigger/switch.cpp:62 +#: src/trigger/switch.cpp:65 msgid "Turn on script" -msgstr "Cценарий включения" +msgstr "Сценарий включения" -#: src/trigger/switch.cpp:63 +#: src/trigger/switch.cpp:66 msgid "Turn off script" msgstr "Сценарий отключения" -#: src/trigger/scripttrigger.hpp:32 +#: src/trigger/scripttrigger.hpp:29 msgid "Script Trigger" msgstr "Триггер сценария" -#: src/trigger/sequence_trigger.cpp:75 +#: src/trigger/sequence_trigger.cpp:48 msgid "Sequence" msgstr "Последовательность" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "end sequence" msgstr "конец последовательности" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "stop Tux" msgstr "остановить Такса" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "fireworks" msgstr "фейерверк" -#: src/trigger/sequence_trigger.cpp:80 +#: src/trigger/sequence_trigger.cpp:53 msgid "New worldmap spawnpoint" msgstr "Новая точка возрождения на карте мира" -#: src/trigger/sequence_trigger.cpp:81 +#: src/trigger/sequence_trigger.cpp:54 msgid "Worldmap fade tilemap" msgstr "Исчезающая карта плиток мира" -#: src/trigger/sequence_trigger.cpp:82 +#: src/trigger/sequence_trigger.cpp:55 #: src/object/custom_particle_system.cpp:430 #: src/object/custom_particle_system.cpp:465 msgid "Fade" msgstr "Исчезающий" -#: src/trigger/sequence_trigger.cpp:83 src/editor/particle_editor.cpp:161 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:161 msgid "Fade in" msgstr "Постепенное появление" -#: src/trigger/sequence_trigger.cpp:83 src/editor/particle_editor.cpp:167 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:167 #: src/editor/particle_editor.cpp:212 msgid "Fade out" msgstr "Постепенное исчезновение" -#: src/trigger/climbable.hpp:37 +#: src/trigger/climbable.hpp:46 msgid "Climbable" msgstr "Для лазанья" -#: src/trigger/door.hpp:34 +#: src/trigger/text_area.hpp:47 +msgid "Text Area" +msgstr "Область текста" + +#: src/trigger/door.hpp:31 msgid "Door" msgstr "Дверь" -#: src/trigger/switch.hpp:33 +#: src/trigger/switch.hpp:30 msgid "Switch" msgstr "Переключатель" @@ -150,118 +192,194 @@ msgstr "Переключатель" msgid "Secret Area" msgstr "Тайник" -#: src/object/thunderstorm.hpp:40 +#: src/math/anchor_point.cpp:33 +msgid "Top Left" +msgstr "Вверху слева" + +#: src/math/anchor_point.cpp:34 +msgid "Top" +msgstr "Сверху" + +#: src/math/anchor_point.cpp:35 +msgid "Top Right" +msgstr "Вверху справа" + +#: src/math/anchor_point.cpp:36 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:38 +#: src/supertux/menu/joystick_menu.cpp:73 +msgid "Left" +msgstr "Влево" + +#: src/math/anchor_point.cpp:37 +msgid "Middle" +msgstr "По середине" + +#: src/math/anchor_point.cpp:38 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:39 +#: src/supertux/menu/joystick_menu.cpp:74 +msgid "Right" +msgstr "Вправо" + +#: src/math/anchor_point.cpp:39 +msgid "Bottom Left" +msgstr "Внизу слева" + +#: src/math/anchor_point.cpp:40 +msgid "Bottom" +msgstr "Снизу" + +#: src/math/anchor_point.cpp:41 +msgid "Bottom Right" +msgstr "Внизу справа" + +#: src/object/thunderstorm.hpp:44 msgid "Thunderstorm" msgstr "Гроза" -#: src/object/cloud_particle_system.cpp:79 +#: src/object/cloud_particle_system.cpp:77 #: src/object/rain_particle_system.cpp:100 msgid "Intensity" msgstr "Интенсивность" -#: src/object/custom_particle_system.hpp:45 +#: src/object/custom_particle_system.hpp:46 msgid "Custom Particles" msgstr "Настраиваемые частицы" -#: src/object/ispy.cpp:66 -msgid "Facing Down" -msgstr "Лицом вниз" - -#: src/object/ispy.cpp:68 src/object/spotlight.cpp:103 -#: src/object/gradient.cpp:137 src/badguy/willowisp.cpp:319 -#: src/badguy/badguy.cpp:848 src/editor/worldmap_objects.cpp:207 -#: src/editor/worldmap_objects.cpp:274 -msgid "Direction" -msgstr "Направление" - -#: src/object/particle_zone.hpp:39 +#: src/object/particle_zone.hpp:41 msgid "Particle zone" msgstr "Зона частиц" -#: src/object/path_gameobject.hpp:44 src/object/coin.cpp:301 -#: src/object/camera.cpp:224 src/object/platform.cpp:73 -#: src/object/path_gameobject.cpp:173 src/object/tilemap.cpp:246 -#: src/gui/menu_paths.cpp:52 src/badguy/willowisp.cpp:326 +#: src/object/path_gameobject.hpp:45 src/object/coin.cpp:324 +#: src/object/camera.cpp:168 src/object/platform.cpp:76 +#: src/object/path_gameobject.cpp:175 src/object/tilemap.cpp:284 +#: src/badguy/willowisp.cpp:317 msgid "Path" msgstr "Путь" -#: src/object/decal.cpp:49 src/object/scripted_object.cpp:67 -#: src/object/particlesystem.cpp:65 src/object/background.cpp:183 -#: src/object/thunderstorm.cpp:68 src/object/tilemap.cpp:239 -#: src/object/gradient.cpp:135 -msgid "Z-pos" -msgstr "Глубина" - -#: src/object/decal.cpp:50 src/object/scripted_object.cpp:70 -#: src/object/tilemap.cpp:228 +#: src/object/decal.cpp:48 src/object/scripted_object.cpp:70 +#: src/object/tilemap.cpp:266 msgid "Solid" msgstr "Цельный" -#: src/object/decal.cpp:51 src/supertux/menu/keyboard_menu.cpp:37 -#: src/supertux/menu/joystick_menu.cpp:74 +#: src/object/decal.cpp:49 src/supertux/menu/keyboard_menu.cpp:41 +#: src/supertux/menu/joystick_menu.cpp:76 msgid "Action" msgstr "Действие" -#: src/object/weak_block.hpp:35 +#: src/object/weak_block.hpp:36 msgid "Weak Tile" msgstr "Слабая плитка" -#: src/object/bumper.cpp:46 -msgid "Facing Left" -msgstr "Лицом влево" - -#: src/object/gradient.hpp:42 +#: src/object/gradient.hpp:43 msgid "Gradient" msgstr "Градиент" -#: src/object/tilemap.hpp:57 +#: src/object/tilemap.hpp:58 msgid "Tilemap" msgstr "Карта плиток" -#: src/object/circleplatform.hpp:32 +#: src/object/sound_object.cpp:69 src/object/ambient_sound.cpp:85 +#: src/object/sound_object.hpp:42 src/supertux/menu/options_menu.cpp:128 +#: data//credits.stxt:367 +msgid "Sound" +msgstr "Звуки" + +#: src/object/sound_object.cpp:70 src/object/ambient_sound.cpp:87 +msgid "Volume" +msgstr "Громкость" + +#: src/object/conveyor_belt.hpp:39 +msgid "Conveyor Belt" +msgstr "Лента конвейера" + +#: src/object/unstable_tile.cpp:70 src/object/weak_block.cpp:97 +#: src/badguy/flame.cpp:86 +msgid "Ice" +msgstr "Лёд" + +#: src/object/unstable_tile.cpp:71 src/object/brick.hpp:34 +msgid "Brick" +msgstr "Кирпич" + +#: src/object/unstable_tile.cpp:72 +msgid "Delayed" +msgstr "Задержка" + +#: src/object/circleplatform.hpp:35 msgid "Circular Platform" msgstr "Круглая платформа" -#: src/object/brick.cpp:133 +#: src/object/brick.cpp:59 src/object/coin.cpp:69 +#: src/object/invisible_block.cpp:37 src/object/background.cpp:200 +#: src/object/tilemap.cpp:279 src/object/gradient.cpp:109 +#: src/badguy/viciousivy.cpp:44 src/badguy/snail.cpp:69 +#: src/badguy/smartball.cpp:34 src/badguy/bouncing_snowball.cpp:81 +#: src/badguy/kamikazesnowball.cpp:117 src/badguy/walkingleaf.cpp:35 +#: src/badguy/mrbomb.cpp:47 src/badguy/igel.cpp:188 src/badguy/snowball.cpp:40 +#: src/badguy/mrtree.cpp:50 src/badguy/mriceblock.cpp:62 +msgid "Normal" +msgstr "Обычный" + +#: src/object/brick.cpp:60 src/object/bonus_block.cpp:175 +#: src/object/coin.cpp:70 src/object/invisible_block.cpp:38 +msgid "Retro" +msgstr "Ретро" + +#: src/object/brick.cpp:166 msgid "Breakable" msgstr "Хрупкий" -#: src/object/trampoline.cpp:136 src/object/rusty_trampoline.cpp:66 +#: src/object/trampoline.cpp:66 src/object/rusty_trampoline.cpp:66 msgid "Portable" msgstr "Переносной" -#: src/object/spotlight.cpp:100 src/object/rain_particle_system.cpp:101 +#: src/object/trampoline.cpp:67 +msgid "Stationary" +msgstr "Стационарный" + +#: src/object/key.hpp:38 +msgid "Key" +msgstr "Ключ" + +#: src/object/spotlight.cpp:102 src/object/particlesystem.cpp:64 +#: src/object/particle_zone.cpp:50 src/badguy/darttrap.cpp:149 +#: src/supertux/menu/addon_preview_menu.cpp:189 +msgid "Enabled" +msgstr "Включено" + +#: src/object/spotlight.cpp:103 src/object/rain_particle_system.cpp:101 msgid "Angle" msgstr "Угол" -#: src/object/spotlight.cpp:101 src/object/magicblock.cpp:94 -#: src/object/candle.cpp:77 src/object/torch.cpp:104 -#: src/object/rublight.cpp:54 src/object/lantern.cpp:62 -#: src/object/ambient_light.cpp:131 src/badguy/willowisp.cpp:328 -#: src/badguy/walking_candle.cpp:82 +#: src/object/spotlight.cpp:104 src/object/magicblock.cpp:95 +#: src/object/candle.cpp:75 src/object/torch.cpp:96 src/object/rublight.cpp:55 +#: src/object/lantern.cpp:62 src/object/ambient_light.cpp:122 +#: src/object/key.cpp:192 src/badguy/willowisp.cpp:319 +#: src/badguy/walking_candle.cpp:91 msgid "Color" msgstr "Цвет" -#: src/object/spotlight.cpp:102 src/object/textscroller.cpp:350 -#: src/object/rain_particle_system.cpp:102 src/object/circleplatform.cpp:55 -#: src/badguy/flame.cpp:59 src/editor/node_marker.cpp:125 +#: src/object/spotlight.cpp:105 src/object/textscroller.cpp:350 +#: src/object/rain_particle_system.cpp:102 src/object/conveyor_belt.cpp:61 +#: src/object/circleplatform.cpp:58 src/badguy/flame.cpp:110 +#: src/editor/node_marker.cpp:125 msgid "Speed" msgstr "Скорость" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Clockwise" msgstr "По часовой стрелке" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Counter-clockwise" msgstr "Против часовой стрелки" -#: src/object/spotlight.cpp:104 +#: src/object/spotlight.cpp:107 msgid "Stopped" msgstr "Остановившийся" -#: src/object/spotlight.cpp:107 src/object/candle.cpp:78 -#: src/object/torch.cpp:103 +#: src/object/spotlight.cpp:110 src/object/lit_object.cpp:69 +#: src/object/candle.cpp:76 src/object/torch.cpp:95 msgid "Layer" msgstr "Слой" @@ -273,125 +391,171 @@ msgstr "Физика включена" msgid "Visible" msgstr "Видимый" -#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:322 +#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:313 msgid "Hit script" msgstr "Сценарий попадания" -#: src/object/custom_particle_system_file.cpp:50 +#: src/object/custom_particle_system_file.cpp:53 #: src/object/textscroller.cpp:348 src/object/music_object.cpp:109 #: src/supertux/menu/particle_editor_open.cpp:38 msgid "File" msgstr "Файл" -#: src/object/bonus_block.cpp:208 +#: src/object/bonus_block.cpp:154 +msgid "Only one custom object is allowed inside bonus blocks." +msgstr "Внутри блоков бонусов допускается только один пользовательский объект." + +#: src/object/bonus_block.cpp:172 +msgid "Blue" +msgstr "Синий" + +#: src/object/bonus_block.cpp:173 +msgid "Orange" +msgstr "Оранжевый" + +#: src/object/bonus_block.cpp:174 +msgid "Purple" +msgstr "Пурпурный" + +#: src/object/bonus_block.cpp:265 src/supertux/menu/cheat_apply_menu.cpp:54 msgid "Count" msgstr "Счёт" -#: src/object/bonus_block.cpp:209 +#: src/object/bonus_block.cpp:266 msgid "Content" msgstr "Содержимое" -#: src/object/bonus_block.cpp:210 src/object/coin.hpp:43 +#: src/object/bonus_block.cpp:267 src/object/coin.hpp:44 msgid "Coin" msgstr "Монета" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (fire flower)" msgstr "Рост (огненный цветок)" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (ice flower)" msgstr "Рост (ледяной цветок)" -#: src/object/bonus_block.cpp:210 +#: src/object/bonus_block.cpp:267 msgid "Growth (air flower)" msgstr "Рост (воздушный цветок)" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Growth (earth flower)" msgstr "Рост (земляной цветок)" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 +msgid "Growth (retro)" +msgstr "Рост (ретро)" + +#: src/object/bonus_block.cpp:268 src/object/powerup.cpp:66 msgid "Star" msgstr "Звезда" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 +msgid "Star (retro)" +msgstr "Звезда (ретро)" + +#: src/object/bonus_block.cpp:268 msgid "Tux doll" -msgstr "Кукольный Такс" +msgstr "Кукла Такс" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Custom" msgstr "Другой" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Light" msgstr "Лёгкий" -#: src/object/bonus_block.cpp:211 +#: src/object/bonus_block.cpp:268 msgid "Light (On)" msgstr "Свет (включён)" -#: src/object/bonus_block.cpp:212 src/object/trampoline.hpp:35 +#: src/object/bonus_block.cpp:269 src/object/trampoline.hpp:37 msgid "Trampoline" msgstr "Трамплин" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 +msgid "Portable trampoline" +msgstr "Переносной трамплин" + +#: src/object/bonus_block.cpp:269 msgid "Coin rain" msgstr "Монетный дождь" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 msgid "Coin explosion" msgstr "Взрыв монеты" -#: src/object/bonus_block.cpp:216 +#: src/object/bonus_block.cpp:269 src/object/rock.hpp:43 +msgid "Rock" +msgstr "Камень" + +#: src/object/bonus_block.cpp:269 +msgid "Potion" +msgstr "Зелье" + +#: src/object/bonus_block.cpp:275 msgid "Custom Content" msgstr "Пользовательское содержимое" -#: src/object/pneumatic_platform.hpp:62 +#: src/object/bonus_block.cpp:278 +msgid "Coin sprite" +msgstr "Спрайт монеты" + +#: src/object/pneumatic_platform.hpp:65 msgid "Pneumatic Platform" msgstr "Пневматическая платформа" -#: src/object/coin.cpp:303 src/object/tilemap.cpp:249 +#: src/object/coin.cpp:326 src/object/tilemap.cpp:287 msgid "Following path" msgstr "Путь следования" -#: src/object/coin.cpp:306 src/object/camera.cpp:227 -#: src/object/platform.cpp:74 src/object/tilemap.cpp:252 +#: src/object/coin.cpp:329 src/object/camera.cpp:171 +#: src/object/platform.cpp:77 src/object/tilemap.cpp:290 msgid "Path Mode" msgstr "Режим пути" -#: src/object/coin.cpp:307 src/object/camera.cpp:228 -#: src/object/platform.cpp:75 src/object/tilemap.cpp:253 -#: src/badguy/willowisp.cpp:331 +#: src/object/coin.cpp:330 src/object/camera.cpp:172 +#: src/object/platform.cpp:78 src/object/tilemap.cpp:291 +#: src/badguy/willowisp.cpp:322 msgid "Adapt Speed" msgstr "Скорость адаптации" -#: src/object/coin.cpp:308 src/object/platform.cpp:77 -#: src/object/tilemap.cpp:247 src/badguy/willowisp.cpp:327 +#: src/object/coin.cpp:331 src/object/platform.cpp:81 +#: src/object/tilemap.cpp:285 src/badguy/willowisp.cpp:318 msgid "Starting Node" msgstr "Начальный узел" -#: src/object/coin.cpp:311 src/object/coin.cpp:339 +#: src/object/coin.cpp:332 src/object/camera.cpp:173 +#: src/object/platform.cpp:82 src/object/tilemap.cpp:293 +#: src/badguy/willowisp.cpp:323 +msgid "Handle" +msgstr "Рукоятка" + +#: src/object/coin.cpp:335 src/object/coin.cpp:371 msgid "Collect script" msgstr "Сценарий сбора" -#: src/object/ghost_particle_system.hpp:36 +#: src/object/ghost_particle_system.hpp:37 msgid "Ghost Particles" msgstr "Частицы призраков" -#: src/object/camera.cpp:219 +#: src/object/camera.cpp:163 msgid "Mode" msgstr "Режим" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "normal" msgstr "обычный" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "manual" msgstr "вручную" -#: src/object/camera.cpp:220 +#: src/object/camera.cpp:164 msgid "autoscroll" msgstr "автопрокрутка" @@ -407,32 +571,20 @@ msgstr "Смещение по X" msgid "Controllable" msgstr "Управляемый" -#: src/object/textscroller.cpp:353 -msgid "Anchor" -msgstr "Якорь" - -#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 -#: src/supertux/menu/keyboard_menu.cpp:34 -#: src/supertux/menu/joystick_menu.cpp:71 -msgid "Left" -msgstr "Влево" - #: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 msgid "Center" msgstr "По середине" -#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 -#: src/supertux/menu/keyboard_menu.cpp:35 -#: src/supertux/menu/joystick_menu.cpp:72 -msgid "Right" -msgstr "Вправо" - #: src/object/textscroller.cpp:357 msgid "Text Alignment" msgstr "Выравнивание текста" -#: src/object/spawnpoint.hpp:46 src/badguy/willowisp.cpp:321 -#: src/editor/worldmap_objects.cpp:171 +#: src/object/lit_object.hpp:40 +msgid "Lit object" +msgstr "Светящийся предмет" + +#: src/object/spawnpoint.hpp:48 src/badguy/willowisp.cpp:312 +#: src/worldmap/teleporter.cpp:48 msgid "Spawnpoint" msgstr "Точка возрождения" @@ -440,266 +592,339 @@ msgstr "Точка возрождения" msgid "Counter" msgstr "Счётчик" -#: src/object/candle.hpp:36 +#: src/object/candle.hpp:37 msgid "Candle" msgstr "Свеча" -#: src/object/particlesystem.cpp:64 src/object/particle_zone.cpp:79 -#: src/badguy/darttrap.cpp:127 -msgid "Enabled" -msgstr "Включено" +#: src/object/particlesystem.cpp:65 src/object/background.cpp:184 +#: src/object/thunderstorm.cpp:76 src/object/tilemap.cpp:277 +#: src/object/gradient.cpp:101 src/object/moving_sprite.cpp:193 +msgid "Z-pos" +msgstr "Глубина" -#: src/object/invisible_block.hpp:31 +#: src/object/invisible_block.hpp:30 msgid "Invisible Block" msgstr "Невидимый блок" -#: src/object/snow_particle_system.hpp:35 +#: src/object/snow_particle_system.hpp:37 msgid "Snow Particles" msgstr "Частицы снега" -#: src/object/powerup.hpp:35 +#: src/object/powerup.hpp:40 msgid "Powerup" msgstr "Усилитель" -#: src/object/fallblock.hpp:39 +#: src/object/infoblock.cpp:78 +msgid "Front Color" +msgstr "Цвет переднего плана" + +#: src/object/infoblock.cpp:80 +msgid "Back Color" +msgstr "Цвет заднего плана" + +#: src/object/infoblock.cpp:82 +msgid "Roundness" +msgstr "Округлость" + +#: src/object/infoblock.cpp:84 +msgid "Fade Transition" +msgstr "Плавный переход" + +#: src/object/fallblock.hpp:41 msgid "Falling Platform" msgstr "Падающая платформа" -#: src/object/level_time.hpp:55 +#: src/object/level_time.hpp:56 msgid "Time Limit" msgstr "Ограничение времени" -#: src/object/ambient_sound.cpp:119 src/supertux/menu/options_menu.cpp:391 -#: data//credits.stxt:352 -msgid "Sound" -msgstr "Звуки" - -#: src/object/ambient_sound.cpp:120 -msgid "Distance factor" -msgstr "Фактор расстояния" - -#: src/object/ambient_sound.cpp:121 -msgid "Distance bias" -msgstr "Смещение расстояния" - -#: src/object/ambient_sound.cpp:122 -msgid "Volume" -msgstr "Громкость" +#: src/object/ambient_sound.cpp:86 +msgid "Radius (in tiles)" +msgstr "Радиус (в плитках)" #: src/object/torch.hpp:41 msgid "Torch" msgstr "Факел" -#: src/object/icecrusher.hpp:53 -msgid "Icecrusher" -msgstr "Измельчитель льда" - -#: src/object/rublight.hpp:33 +#: src/object/rublight.hpp:34 msgid "Rublight" msgstr "Свет трения" -#: src/object/background.hpp:43 +#: src/object/background.hpp:45 msgid "Background" msgstr "Фон" -#: src/object/firefly.hpp:36 +#: src/object/text_object.hpp:44 src/gui/menu_string_array.cpp:77 +msgid "Text" +msgstr "Текст" + +#: src/object/firefly.hpp:38 msgid "Checkpoint" msgstr "Контрольная точка" -#: src/object/ambient_light.hpp:36 +#: src/object/ambient_light.hpp:37 msgid "Ambient Light" msgstr "Окружающее освещение" -#: src/object/lantern.hpp:37 +#: src/object/lantern.hpp:38 msgid "Lantern" msgstr "Светильник" -#: src/object/wind.hpp:40 +#: src/object/wind.hpp:43 msgid "Wind" msgstr "Ветер" -#: src/object/bicycle_platform.cpp:189 src/object/background.cpp:179 -#: src/object/pneumatic_platform.cpp:147 -#: src/supertux/menu/joystick_menu.cpp:170 src/supertux/moving_object.cpp:58 -#: src/editor/worldmap_objects.cpp:73 +#: src/object/bicycle_platform.cpp:203 src/object/background.cpp:180 +#: src/object/pneumatic_platform.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:65 +#: src/worldmap/worldmap_object.cpp:77 msgid "X" msgstr "X" -#: src/object/bicycle_platform.cpp:190 src/object/background.cpp:180 -#: src/object/pneumatic_platform.cpp:148 -#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:59 -#: src/editor/worldmap_objects.cpp:74 +#: src/object/bicycle_platform.cpp:204 src/object/background.cpp:181 +#: src/object/pneumatic_platform.cpp:163 +#: src/supertux/menu/joystick_menu.cpp:174 src/supertux/moving_object.cpp:66 +#: src/worldmap/worldmap_object.cpp:78 msgid "Y" msgstr "Y" -#: src/object/bicycle_platform.cpp:192 +#: src/object/bicycle_platform.cpp:206 msgid "Platforms" msgstr "Платформы" -#: src/object/bicycle_platform.cpp:193 src/object/circleplatform.cpp:54 -#: src/badguy/flame.cpp:58 src/badguy/rcrystallo.cpp:50 -#: src/badguy/crystallo.cpp:35 +#: src/object/bicycle_platform.cpp:207 src/object/circleplatform.cpp:57 +#: src/badguy/fish_swimming.cpp:76 src/badguy/flame.cpp:109 +#: src/badguy/rcrystallo.cpp:83 src/badguy/crystallo.cpp:50 msgid "Radius" msgstr "Радиус" -#: src/object/bicycle_platform.cpp:194 +#: src/object/bicycle_platform.cpp:208 msgid "Momentum change rate" msgstr "Скорость изменения импульса" -#: src/object/rain_particle_system.hpp:40 +#: src/object/rain_particle_system.hpp:41 msgid "Rain Particles" msgstr "Частицы дождя" -#: src/object/platform.hpp:45 +#: src/object/platform.hpp:46 msgid "Platform" msgstr "Платформа" -#: src/object/rock.hpp:42 -msgid "Rock" -msgstr "Камень" - -#: src/object/music_object.hpp:41 src/supertux/menu/options_menu.cpp:393 -#: data//credits.stxt:294 +#: src/object/music_object.hpp:42 src/supertux/menu/options_menu.cpp:130 +#: data//credits.stxt:309 msgid "Music" msgstr "Музыка" -#: src/object/rusty_trampoline.hpp:39 +#: src/object/lit_object.cpp:68 +msgid "Light sprite" +msgstr "Спрайт света" + +#: src/object/lit_object.cpp:71 +msgid "Sprite starting action" +msgstr "Начальное действие спрайта" + +#: src/object/lit_object.cpp:72 +msgid "Light sprite starting action" +msgstr "Начальное действие спрайта света" + +#: src/object/lit_object.cpp:74 +msgid "Light sprite offset X" +msgstr "Смещение X спрайта света" + +#: src/object/lit_object.cpp:75 +msgid "Light sprite offset Y" +msgstr "Смещение Y спрайта света" + +#: src/object/rusty_trampoline.hpp:40 msgid "Rusty Trampoline" msgstr "Ржавый трамплин" -#: src/object/particlesystem.hpp:57 +#: src/object/particlesystem.hpp:58 msgid "Particle system" msgstr "Система частиц" -#: src/object/candle.cpp:75 src/object/torch.cpp:101 +#: src/object/candle.cpp:73 src/object/torch.cpp:94 msgid "Burning" msgstr "Горящий" -#: src/object/candle.cpp:76 +#: src/object/candle.cpp:74 msgid "Flicker" msgstr "Мерцание" -#: src/object/text_array_object.hpp:50 +#: src/object/snow_particle_system.cpp:104 +msgid "Epsilon" +msgstr "Эпсилон" + +#: src/object/snow_particle_system.cpp:105 +msgid "Spin Speed" +msgstr "Скорость вращения" + +#: src/object/snow_particle_system.cpp:106 +msgid "State Length" +msgstr "Длина состояния" + +#: src/object/snow_particle_system.cpp:107 +msgid "Wind Speed" +msgstr "Скорость ветра" + +#: src/object/text_array_object.hpp:47 msgid "Text array" msgstr "Текстовый массив" -#: src/object/infoblock.hpp:36 +#: src/object/infoblock.hpp:37 msgid "Info Block" msgstr "Инфоблок" -#: src/object/powerup.cpp:191 +#: src/object/powerup.cpp:61 +msgid "Egg" +msgstr "Яйцо" + +#: src/object/powerup.cpp:62 +msgid "Fire Flower" +msgstr "Огненный цветок" + +#: src/object/powerup.cpp:63 +msgid "Ice Flower" +msgstr "Ледяной цветок" + +#: src/object/powerup.cpp:64 +msgid "Air Flower" +msgstr "Воздушный цветок" + +#: src/object/powerup.cpp:65 +msgid "Earth Flower" +msgstr "Земляной цветок" + +#: src/object/powerup.cpp:67 +msgid "Tux Doll" +msgstr "Кукла Такс" + +#: src/object/powerup.cpp:68 +msgid "Flip Potion" +msgstr "Зелье переворота" + +#: src/object/powerup.cpp:69 +msgid "Mints" +msgstr "Мятные леденцы" + +#: src/object/powerup.cpp:70 +msgid "Coffee" +msgstr "Кофе" + +#: src/object/powerup.cpp:71 +msgid "Herring" +msgstr "Сельдь" + +#: src/object/powerup.cpp:302 msgid "Disable gravity" msgstr "Отключить притяжение" -#: src/object/ambient_sound.hpp:62 +#: src/object/powerup.cpp:312 src/object/weak_block.cpp:266 +msgid "" +"Sprites no longer define the behaviour of the object.\n" +"Object types are used instead." +msgstr "Спрайты больше не определяют поведение объекта.\nВместо них используются типы объектов." + +#: src/object/ambient_sound.hpp:43 msgid "Ambient Sound" msgstr "Звук окружения" -#: src/object/level_time.cpp:51 src/supertux/statistics.cpp:297 +#: src/object/level_time.cpp:52 src/supertux/statistics.cpp:297 #: src/editor/node_marker.cpp:124 msgid "Time" msgstr "Время" -#: src/object/hurting_platform.hpp:30 +#: src/object/hurting_platform.hpp:31 msgid "Hurting Platform" msgstr "Травматическая платформа" -#: src/object/icecrusher.cpp:83 -msgid "Sideways" -msgstr "В сторону" - -#: src/object/background.cpp:182 +#: src/object/background.cpp:183 msgid "Fill" msgstr "Заполнение" -#: src/object/background.cpp:184 +#: src/object/background.cpp:185 msgid "Alignment" msgstr "Выравнивание" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 src/supertux/direction.cpp:61 msgid "none" msgstr "нет" -#: src/object/background.cpp:185 src/editor/object_settings.cpp:119 +#: src/object/background.cpp:186 src/supertux/direction.cpp:63 msgid "left" msgstr "лево" -#: src/object/background.cpp:185 src/editor/object_settings.cpp:119 +#: src/object/background.cpp:186 src/supertux/direction.cpp:65 msgid "right" msgstr "право" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 msgid "top" msgstr "верх" -#: src/object/background.cpp:185 +#: src/object/background.cpp:186 msgid "bottom" msgstr "низ" -#: src/object/background.cpp:188 +#: src/object/background.cpp:189 msgid "Scroll offset x" msgstr "Шаг прокрутки по X" -#: src/object/background.cpp:189 +#: src/object/background.cpp:190 msgid "Scroll offset y" msgstr "Шаг прокрутки по Y" -#: src/object/background.cpp:190 +#: src/object/background.cpp:191 msgid "Scroll speed x" msgstr "Скорость прокрутки по X" -#: src/object/background.cpp:191 +#: src/object/background.cpp:192 msgid "Scroll speed y" msgstr "Скорость прокрутки по Y" -#: src/object/background.cpp:192 +#: src/object/background.cpp:193 msgid "Parallax Speed x" msgstr "Скорость параллакса по X" -#: src/object/background.cpp:193 +#: src/object/background.cpp:194 msgid "Parallax Speed y" msgstr "Скорость параллакса по Y" -#: src/object/background.cpp:194 +#: src/object/background.cpp:195 msgid "Top image" msgstr "Верхнее изображение" -#: src/object/background.cpp:195 +#: src/object/background.cpp:196 msgid "Image" msgstr "Изображение" -#: src/object/background.cpp:196 +#: src/object/background.cpp:197 msgid "Bottom image" msgstr "Нижнее изображение" -#: src/object/background.cpp:197 +#: src/object/background.cpp:198 msgid "Colour" msgstr "Цвет" -#: src/object/background.cpp:198 src/object/tilemap.cpp:240 -#: src/object/gradient.cpp:142 +#: src/object/background.cpp:199 src/object/tilemap.cpp:278 +#: src/object/gradient.cpp:108 msgid "Draw target" msgstr "Рисовать цель" -#: src/object/background.cpp:199 src/object/tilemap.cpp:241 -#: src/object/gradient.cpp:143 -msgid "Normal" -msgstr "Обычный" - -#: src/object/background.cpp:199 src/object/tilemap.cpp:241 -#: src/object/gradient.cpp:143 +#: src/object/background.cpp:200 src/object/tilemap.cpp:279 +#: src/object/gradient.cpp:109 msgid "Lightmap" msgstr "Карта освещённости" -#: src/object/shard.hpp:34 +#: src/object/shard.hpp:35 msgid "Shard" msgstr "Осколок" -#: src/object/rublight.cpp:55 +#: src/object/rublight.cpp:56 msgid "Fading Speed" msgstr "Скорость затухания" -#: src/object/rublight.cpp:56 +#: src/object/rublight.cpp:57 msgid "Glowing Strength" msgstr "Сила свечения" @@ -735,20 +960,28 @@ msgstr "Влияет на игрока" msgid "Fancy Particles" msgstr "Причудливые частицы" -#: src/object/bicycle_platform.hpp:64 +#: src/object/bicycle_platform.hpp:67 msgid "Bicycle Platform" msgstr "Велосипедная платформа" -#: src/object/platform.cpp:76 src/object/thunderstorm.cpp:69 -#: src/object/tilemap.cpp:254 +#: src/object/platform.cpp:80 src/object/thunderstorm.cpp:77 +#: src/object/tilemap.cpp:292 src/object/conveyor_belt.cpp:62 msgid "Running" msgstr "Бегущий" -#: src/object/rock.cpp:192 +#: src/object/rock.cpp:71 +msgid "Small" +msgstr "Малый" + +#: src/object/rock.cpp:72 +msgid "Large" +msgstr "Большой" + +#: src/object/rock.cpp:234 msgid "On-grab script" msgstr "Сценарий подбора" -#: src/object/rock.cpp:193 +#: src/object/rock.cpp:235 msgid "On-ungrab script" msgstr "Сценарий сброса" @@ -756,15 +989,15 @@ msgstr "Сценарий сброса" msgid "Interactive particle system" msgstr "Интерактивная система частиц" -#: src/object/thunderstorm.cpp:70 +#: src/object/thunderstorm.cpp:78 msgid "Interval" msgstr "Промежуток" -#: src/object/thunderstorm.cpp:71 +#: src/object/thunderstorm.cpp:79 msgid "Strike Script" msgstr "Сценарий удара" -#: src/object/cloud_particle_system.hpp:41 +#: src/object/cloud_particle_system.hpp:42 msgid "Cloud Particles" msgstr "Частицы облака" @@ -776,7 +1009,7 @@ msgstr "Текстура" msgid "Amount" msgstr "Величина" -#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:56 +#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:59 #: src/editor/particle_editor.cpp:141 msgid "Delay" msgstr "Задержка" @@ -795,10 +1028,11 @@ msgid "Birth mode" msgstr "Режим появления" #: src/object/custom_particle_system.cpp:430 -#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:149 -#: src/supertux/menu/keyboard_menu.cpp:58 -#: src/supertux/menu/joystick_menu.cpp:106 -#: src/supertux/menu/joystick_menu.cpp:213 src/editor/object_settings.cpp:131 +#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:115 +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/joystick_menu.cpp:108 +#: src/supertux/menu/joystick_menu.cpp:215 src/editor/object_settings.cpp:129 #: src/editor/particle_editor.cpp:162 src/editor/particle_editor.cpp:168 msgid "None" msgstr "Нет" @@ -852,32 +1086,32 @@ msgstr "Кубическое появ./исчез." #: src/object/custom_particle_system.cpp:439 #: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 msgid "Quart in" -msgstr "Квартовое появление" +msgstr "Четвертичное появление" #: src/object/custom_particle_system.cpp:439 #: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 msgid "Quart out" -msgstr "Квартовое исчезновение" +msgstr "Четвертичное исчезновение" #: src/object/custom_particle_system.cpp:439 #: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 msgid "Quart in/out" -msgstr "Квартовое появ./исчез." +msgstr "Четвертичное появ./исчез." #: src/object/custom_particle_system.cpp:440 #: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 msgid "Quint in" -msgstr "Квинтовое появление" +msgstr "Пятеричное появление" #: src/object/custom_particle_system.cpp:440 #: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 msgid "Quint out" -msgstr "Квинтовое исчезновение" +msgstr "Пятеричное исчезновение" #: src/object/custom_particle_system.cpp:440 #: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 msgid "Quint in/out" -msgstr "Квинтовое появ./исчез." +msgstr "Пятеричное появ./исчез." #: src/object/custom_particle_system.cpp:441 #: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 @@ -1127,597 +1361,916 @@ msgstr "Всегда" msgid "Cover screen" msgstr "Покрыть экран" -#: src/object/ispy.hpp:33 +#: src/object/ispy.hpp:35 msgid "Ispy" msgstr "Глазок" -#: src/object/skull_tile.hpp:32 -msgid "Skull Tile" -msgstr "Тайл черепа" - -#: src/object/particle_zone.cpp:80 +#: src/object/particle_zone.cpp:51 msgid "Particle Name" msgstr "Название частицы" -#: src/object/particle_zone.cpp:81 -msgid "Zone Type" -msgstr "Тип зоны" - -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:62 msgid "Spawn" msgstr "Возрождение" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:63 msgid "Life zone" msgstr "Зона жизни" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:64 msgid "Life zone (clear)" msgstr "Зона жизни (чистая)" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:65 msgid "Kill particles" msgstr "Частицы убийства" -#: src/object/particle_zone.cpp:82 +#: src/object/particle_zone.cpp:66 msgid "Clear particles" msgstr "Чистые частицы" -#: src/object/weak_block.cpp:211 -msgid "Linked" -msgstr "Связанный" +#: src/object/weak_block.cpp:98 +msgid "Hay" +msgstr "Сено" -#: src/object/decal.hpp:40 +#: src/object/decal.hpp:41 msgid "Decal" msgstr "Наклейка" -#: src/object/tilemap.cpp:229 +#: src/object/tilemap.cpp:267 msgid "Resize offset x" msgstr "Масштаб смещения по X" -#: src/object/tilemap.cpp:230 +#: src/object/tilemap.cpp:268 msgid "Resize offset y" msgstr "Масштаб смещения по Y" -#: src/object/tilemap.cpp:232 src/supertux/menu/editor_sector_menu.cpp:39 -#: src/editor/object_option.cpp:173 +#: src/object/tilemap.cpp:270 src/supertux/menu/editor_sector_menu.cpp:41 +#: src/editor/object_option.cpp:178 msgid "Width" msgstr "Ширина" -#: src/object/tilemap.cpp:233 src/supertux/menu/editor_sector_menu.cpp:40 -#: src/editor/object_option.cpp:174 +#: src/object/tilemap.cpp:271 src/supertux/menu/editor_sector_menu.cpp:42 +#: src/editor/object_option.cpp:179 msgid "Height" msgstr "Высота" -#: src/object/tilemap.cpp:235 +#: src/object/tilemap.cpp:273 msgid "Alpha" msgstr "Прозрачность" -#: src/object/tilemap.cpp:236 +#: src/object/tilemap.cpp:274 msgid "Speed x" msgstr "Скорость по X" -#: src/object/tilemap.cpp:237 +#: src/object/tilemap.cpp:275 msgid "Speed y" msgstr "Скорость по Y" -#: src/object/tilemap.cpp:238 +#: src/object/tilemap.cpp:276 msgid "Tint" msgstr "Оттенок" -#: src/object/tilemap.cpp:257 src/supertux/menu/editor_tilegroup_menu.cpp:26 -#: src/editor/toolbox_widget.cpp:90 +#: src/object/tilemap.cpp:296 src/supertux/menu/editor_tilegroup_menu.cpp:26 +#: src/editor/toolbox_widget.cpp:98 msgid "Tiles" msgstr "Плитки" -#: src/object/gradient.cpp:128 -msgid "Left Colour" -msgstr "Левый цвет" - -#: src/object/gradient.cpp:129 -msgid "Right Colour" -msgstr "Правый цвет" +#: src/object/gradient.cpp:98 +msgid "Primary Colour" +msgstr "Первичный цвет" -#: src/object/gradient.cpp:131 -msgid "Top Colour" -msgstr "Верхний цвет" +#: src/object/gradient.cpp:99 +msgid "Secondary Colour" +msgstr "Вторичный цвет" -#: src/object/gradient.cpp:132 -msgid "Bottom Colour" -msgstr "Нижний цвет" - -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Vertical" msgstr "Вертикальный" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Horizontal" msgstr "Горизонтальный" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Vertical (whole sector)" msgstr "Вертикальный (весь сектор)" -#: src/object/gradient.cpp:138 +#: src/object/gradient.cpp:104 msgid "Horizontal (whole sector)" msgstr "Горизонтальный (весь сектор)" -#: src/object/gradient.cpp:148 +#: src/object/gradient.cpp:114 msgid "Blend mode" msgstr "Режим смешивания" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Blend" msgstr "Смешивание" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Additive" msgstr "Добавочный" -#: src/object/gradient.cpp:149 +#: src/object/gradient.cpp:115 msgid "Modulate" msgstr "Модулировать" -#: src/object/bumper.hpp:35 +#: src/object/bumper.hpp:38 msgid "Bumper" msgstr "Бампер" -#: src/object/unstable_tile.hpp:37 +#: src/object/conveyor_belt.cpp:63 +msgid "Length" +msgstr "Длина" + +#: src/object/moving_sprite.cpp:192 src/object/pneumatic_platform.cpp:161 +msgid "Sprite" +msgstr "Спрайт" + +#: src/object/unstable_tile.hpp:42 msgid "Unstable Tile" msgstr "Нестабильная плитка" -#: src/object/brick.hpp:31 -msgid "Brick" -msgstr "Кирпич" +#: src/object/brick.hpp:70 +msgid "Heavy Brick" +msgstr "Тяжёлый кирпич" -#: src/object/invisible_wall.hpp:34 +#: src/object/invisible_wall.hpp:37 msgid "Invisible Wall" msgstr "Невидимая стена" -#: src/object/spotlight.hpp:51 +#: src/object/spotlight.hpp:52 msgid "Spotlight" msgstr "Прожектор" -#: src/object/scripted_object.hpp:39 +#: src/object/scripted_object.hpp:40 msgid "Scripted Object" msgstr "Субъект сценария" -#: src/object/custom_particle_system_file.hpp:39 +#: src/object/custom_particle_system_file.hpp:40 msgid "Custom Particles from file" msgstr "Настраиваемые частицы из файла" -#: src/object/coin.hpp:78 +#: src/object/coin.hpp:97 msgid "Heavy Coin" msgstr "Тяжёлая монета" -#: src/object/bonus_block.hpp:56 +#: src/object/explosion.hpp:35 +msgid "Explosion" +msgstr "Взрыв" + +#: src/object/bonus_block.hpp:62 msgid "Bonus Block" msgstr "Бонусный блок" -#: src/object/magicblock.hpp:41 +#: src/object/magicblock.hpp:42 msgid "Magic Tile" msgstr "Волшебная плитка" -#: src/object/camera.hpp:67 +#: src/object/camera.hpp:61 msgid "Camera" msgstr "Камера" -#: src/object/textscroller.hpp:44 +#: src/object/textscroller.hpp:45 msgid "Text Scroller" msgstr "Прокрутка текста" -#: src/gui/menu_badguy_select.cpp:94 -msgid "List of enemies" -msgstr "Список противников" +#: src/gui/notification.cpp:57 +msgid "Click for more details." +msgstr "Щелчок для подробностей." + +#: src/gui/notification.cpp:150 +msgid "Do not show again" +msgstr "Больше не показывать" + +#: src/gui/notification.cpp:157 src/supertux/menu/download_dialog.cpp:124 +msgid "Close" +msgstr "Закрыть" -#: src/gui/menu_badguy_select.cpp:96 -msgid "Select enemy" -msgstr "Выберите противника" +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#, c++-format +msgid "Selected item: {}" +msgstr "Выбрать объект: {}" -#: src/gui/menu_badguy_select.cpp:97 +#: src/gui/menu_string_array.cpp:70 +msgid "Edit string array" +msgstr "Править массив строк" + +#: src/gui/menu_string_array.cpp:79 src/gui/menu_object_select.cpp:50 +#: src/supertux/menu/profile_menu.cpp:88 msgid "Add" msgstr "Добавить" -#: src/gui/menu_badguy_select.cpp:107 src/gui/menu_color.cpp:37 -#: src/gui/dialog.hpp:81 src/gui/menu_script.cpp:47 -#: src/supertux/menu/editor_sector_menu.cpp:46 -#: src/supertux/menu/editor_levelset_menu.cpp:62 -#: src/supertux/menu/addon_menu.cpp:349 +#: src/gui/menu_string_array.cpp:80 +msgid "Insert" +msgstr "Вставить" + +#: src/gui/menu_string_array.cpp:81 +#: src/supertux/menu/addon_preview_menu.cpp:177 src/editor/object_menu.cpp:61 +msgid "Update" +msgstr "Обновить" + +#: src/gui/menu_string_array.cpp:82 src/supertux/menu/profile_menu.cpp:108 +#: src/supertux/menu/profile_menu.cpp:110 +msgid "Delete" +msgstr "Удалить" + +#: src/gui/menu_string_array.cpp:84 src/gui/menu_object_select.cpp:61 +#: src/gui/menu_color.cpp:37 src/gui/dialog.hpp:87 src/gui/menu_script.cpp:46 +#: src/supertux/menu/editor_sector_menu.cpp:48 +#: src/supertux/menu/editor_levelset_menu.cpp:58 #: src/supertux/menu/editor_new_levelset_menu.cpp:37 -#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:43 +#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:71 msgid "OK" -msgstr "ОК" +msgstr "Хорошо" -#: src/gui/menu_badguy_select.cpp:136 -msgid "Do you want to delete this badguy from the list?" -msgstr "Вы хотите удалить этого плохиша из списка?" +#: src/gui/menu_object_select.cpp:46 +msgid "List of objects" +msgstr "Список объектов" -#: src/gui/menu_badguy_select.cpp:137 src/gui/dialog.hpp:90 -#: src/supertux/menu/editor_level_select_menu.cpp:164 -#: src/supertux/menu/editor_menu.cpp:164 src/editor/editor.cpp:583 -msgid "Yes" -msgstr "Да" +#: src/gui/menu_object_select.cpp:48 +#, c++-format +msgid "Select object ({})" +msgstr "Выбрать объект ({})" -#: src/gui/menu_badguy_select.cpp:140 src/gui/dialog.hpp:91 -#: src/supertux/menu/editor_level_select_menu.cpp:168 -#: src/supertux/menu/editor_menu.cpp:167 src/editor/particle_editor.cpp:780 -#: src/editor/editor.cpp:590 -msgid "No" -msgstr "Нет" +#: src/gui/menu_object_select.cpp:114 +msgid "Are you sure you want to remove this object from the list?" +msgstr "Уверены, что хотите удалить этот объект из списка?" #: src/gui/menu_color.cpp:24 msgid "Mix the colour" msgstr "Смешать цвета" -#: src/gui/menu_filesystem.cpp:112 src/gui/menu_paths.cpp:44 -#: src/supertux/menu/particle_editor_save_as.cpp:42 +#: src/gui/dialog.hpp:96 src/supertux/menu/editor_level_select_menu.cpp:181 +#: src/editor/editor.cpp:663 +msgid "Yes" +msgstr "Да" + +#: src/gui/dialog.hpp:97 src/supertux/menu/editor_level_select_menu.cpp:185 +#: src/editor/particle_editor.cpp:781 src/editor/editor.cpp:670 +msgid "No" +msgstr "Нет" + +#: src/gui/menu_list.cpp:38 src/gui/menu_filesystem.cpp:120 +#: src/gui/menu_paths.cpp:48 src/supertux/menu/particle_editor_save_as.cpp:42 #: src/supertux/menu/editor_sectors_menu.cpp:45 -#: src/supertux/menu/editor_sectors_menu.cpp:95 -#: src/supertux/menu/editor_sectors_menu.cpp:100 +#: src/supertux/menu/editor_sectors_menu.cpp:94 +#: src/supertux/menu/editor_sectors_menu.cpp:99 #: src/supertux/menu/editor_objectgroup_menu.cpp:42 #: src/supertux/menu/editor_tilegroup_menu.cpp:36 -#: src/supertux/menu/editor_level_select_menu.cpp:173 +#: src/supertux/menu/editor_level_select_menu.cpp:190 #: src/supertux/menu/editor_save_as.cpp:42 #: src/supertux/menu/particle_editor_open.cpp:43 -#: src/editor/particle_editor.cpp:784 src/editor/editor.cpp:594 +#: src/editor/particle_editor.cpp:785 src/editor/editor.cpp:674 msgid "Cancel" msgstr "Отмена" +#: src/gui/menu_filesystem.cpp:118 +msgid "Open Directory" +msgstr "Открыть каталог" + #: src/gui/menu_script.cpp:28 msgid "Edit script" msgstr "Изменить сценарий" -#: src/gui/menu_paths.cpp:30 +#: src/gui/menu_paths.cpp:32 msgid "Clone" msgstr "Клонировать" -#: src/gui/menu_paths.cpp:38 +#: src/gui/menu_paths.cpp:41 msgid "" -"An error occured and the game could\n" +"An error occurred and the game could\n" "not clone the path. Please contact\n" "the developers for support." msgstr "Произошла ошибка, игра не смогла\nклонировать путь. Пожалуйста, обратитесь\nк разработчикам за поддержкой." -#: src/gui/menu_paths.cpp:41 +#: src/gui/menu_paths.cpp:44 msgid "Bind" msgstr "Назначить" -#: src/gui/menu_paths.cpp:63 src/supertux/menu/integrations_menu.cpp:60 -#: src/supertux/menu/contrib_menu.cpp:161 src/supertux/menu/debug_menu.cpp:75 -#: src/supertux/menu/editor_level_select_menu.cpp:88 -#: src/supertux/menu/worldmap_cheat_menu.cpp:55 -#: src/supertux/menu/worldmap_cheat_menu.cpp:153 +#: src/gui/menu_paths.cpp:49 +msgid "" +"Do you wish to clone the path to edit it separately,\n" +"or do you want to bind both paths together\n" +"so that any edit on one edits the other?" +msgstr "Хотите клонировать путь, чтобы править его отдельно,\nили вы хотите связать оба пути вместе,\nчтобы при правке одного из них изменялся и другой?" + +#: src/gui/menu_paths.cpp:56 +#, c++-format +msgid "Path {}" +msgstr "Путь {}" + +#: src/gui/menu_paths.cpp:67 src/supertux/menu/integrations_menu.cpp:60 +#: src/supertux/menu/editor_converters_menu.cpp:79 +#: src/supertux/menu/video_system_menu.cpp:45 +#: src/supertux/menu/contrib_menu.cpp:102 src/supertux/menu/debug_menu.cpp:77 +#: src/supertux/menu/multiplayer_menu.cpp:39 +#: src/supertux/menu/custom_menu_menu.cpp:65 +#: src/supertux/menu/editor_level_select_menu.cpp:98 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:63 +#: src/supertux/menu/worldmap_cheat_menu.cpp:57 +#: src/supertux/menu/worldmap_cheat_menu.cpp:196 #: src/supertux/menu/editor_levelset_select_menu.cpp:114 -#: src/supertux/menu/options_menu.cpp:442 -#: src/supertux/menu/profile_menu.cpp:54 src/supertux/menu/addon_menu.cpp:213 +#: src/supertux/menu/options_menu.cpp:223 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:69 +#: src/supertux/menu/addon_preview_menu.cpp:193 +#: src/supertux/menu/profile_menu.cpp:118 +#: src/supertux/menu/multiplayer_players_menu.cpp:91 +#: src/supertux/menu/addon_menu.cpp:153 #: src/supertux/menu/editor_new_levelset_menu.cpp:40 +#: src/supertux/menu/options_select_menu.cpp:44 #: src/supertux/menu/world_set_menu.cpp:33 +#: src/supertux/menu/addon_browse_menu.cpp:162 #: src/supertux/menu/web_asset_menu.cpp:48 -#: src/supertux/menu/keyboard_menu.cpp:49 -#: src/supertux/menu/language_menu.cpp:56 -#: src/supertux/menu/joystick_menu.cpp:97 +#: src/supertux/menu/profile_name_menu.cpp:45 +#: src/supertux/menu/keyboard_menu.cpp:71 +#: src/supertux/menu/sorted_contrib_menu.cpp:51 +#: src/supertux/menu/language_menu.cpp:63 +#: src/supertux/menu/joystick_menu.cpp:99 #: src/supertux/menu/contrib_levelset_menu.cpp:67 -#: src/supertux/menu/cheat_menu.cpp:44 -#: src/supertux/menu/editor_delete_level_menu.cpp:43 +#: src/supertux/menu/cheat_menu.cpp:58 +#: src/supertux/menu/addon_file_install_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:43 +#: src/supertux/menu/cheat_apply_menu.cpp:63 +#: src/supertux/menu/multiplayer_player_menu.cpp:205 +#: src/supertux/menu/editor_delete_level_menu.cpp:68 msgid "Back" msgstr "Назад" -#: src/badguy/toad.hpp:37 +#: src/addon/addon_manager.cpp:562 +msgid "Only one resource pack is allowed to be enabled at a time." +msgstr "Одновременно можно включить только один пакет ресурсов." + +#: src/addon/addon_manager.cpp:837 +#, c++-format +msgid "Add-on {} by {} is already installed." +msgstr "Дополнение {} от {} уже установлено." + +#: src/addon/addon_manager.cpp:857 +#, c++-format +msgid "Add-on {} by {} successfully installed." +msgstr "Дополнение {} от {} успешно установлено." + +#: src/addon/addon.cpp:71 src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Levelset" +msgstr "Набор уровней" + +#: src/addon/addon.cpp:74 src/supertux/menu/editor_levelset_menu.cpp:54 +#: data//images/engine/editor/objects.stoi:389 +msgid "Worldmap" +msgstr "Карта мира" + +#: src/addon/addon.cpp:77 +msgid "World" +msgstr "Мир" + +#: src/addon/addon.cpp:80 +msgid "Add-on" +msgstr "Дополнение" + +#: src/addon/addon.cpp:83 +msgid "Language Pack" +msgstr "Языковой пакет" + +#: src/addon/addon.cpp:86 +msgid "Resource Pack" +msgstr "Пакет ресурсов" + +#: src/addon/addon.cpp:89 +msgid "Unknown" +msgstr "Неизвестно" + +#: src/addon/addon.cpp:100 +#, c++-format +msgid "{} \"{}\" by \"{}\"" +msgstr "{} «{}» от «{}»" + +#: src/addon/addon.cpp:114 +msgid "add-on" +msgstr "дополнение" + +#: src/addon/addon.cpp:114 +msgid "add-ons" +msgstr "дополнения" + +#: src/badguy/toad.hpp:38 msgid "Toad" msgstr "Жаба" -#: src/badguy/mrtree.hpp:29 -msgid "Walking Tree" -msgstr "Гуляющее дерево" +#: src/badguy/mrtree.hpp:32 +msgid "Mr. Tree" +msgstr "Мистер Дерево" -#: src/badguy/plant.hpp:33 +#: src/badguy/plant.hpp:34 msgid "Plant" msgstr "Завод" -#: src/badguy/crystallo.hpp:30 +#: src/badguy/tarantula.hpp:39 src/badguy/tarantula.cpp:353 +msgid "Tarantula" +msgstr "Тарантул" + +#: src/badguy/granito_giant.cpp:71 +msgid "Awake" +msgstr "Бодрый" + +#: src/badguy/granito_giant.cpp:72 +msgid "Sleeping" +msgstr "Спящий" + +#: src/badguy/granito_giant.cpp:73 +msgid "Corrupted A" +msgstr "Повреждённый A" + +#: src/badguy/granito_giant.cpp:74 +msgid "Corrupted B" +msgstr "Повреждённый B" + +#: src/badguy/granito_giant.cpp:75 +msgid "Corrupted C" +msgstr "Повреждённый C" + +#: src/badguy/crystallo.hpp:33 msgid "Crystallo" msgstr "Кристалло" -#: src/badguy/totem.hpp:36 +#: src/badguy/viciousivy.cpp:45 src/badguy/snail.cpp:70 +#: src/badguy/kamikazesnowball.cpp:118 src/badguy/walkingleaf.cpp:36 +#: src/badguy/jumpy.cpp:46 src/badguy/igel.cpp:189 src/badguy/mrtree.cpp:51 +msgid "Corrupted" +msgstr "Повреждённый" + +#: src/badguy/totem.hpp:37 msgid "Totem" msgstr "Тотем" -#: src/badguy/stalactite.hpp:38 +#: src/badguy/stalactite.hpp:42 msgid "Stalactite" msgstr "Сталактит" -#: src/badguy/haywire.hpp:45 +#: src/badguy/fish_chasing.cpp:198 +msgid "Tracking Distance" +msgstr "Расстояние отслеживания" + +#: src/badguy/fish_chasing.cpp:199 +msgid "Losing Distance" +msgstr "Расстояние потери" + +#: src/badguy/fish_chasing.cpp:200 +msgid "Chase Speed" +msgstr "Скорость преследования" + +#: src/badguy/root_sapling.hpp:41 +msgid "Root Sapling" +msgstr "Корневой саженец" + +#: src/badguy/haywire.hpp:46 msgid "Haywire" msgstr "Непредсказуемый" -#: src/badguy/dispenser.hpp:48 +#: src/badguy/dispenser.hpp:52 msgid "Dispenser" msgstr "Раздатчик" -#: src/badguy/short_fuse.hpp:29 +#: src/badguy/short_fuse.hpp:30 msgid "Short Fuse" msgstr "Вспыльчивый" -#: src/badguy/zeekling.hpp:36 +#: src/badguy/zeekling.hpp:39 msgid "Zeekling" msgstr "Зиклинг" -#: src/badguy/mriceblock.hpp:46 -msgid "Iceblock" -msgstr "Ледяной блок" - -#: src/badguy/scrystallo.cpp:52 -msgid "Walk Radius" -msgstr "Радиус ходьбы" +#: src/badguy/smartball.cpp:35 +msgid "Pumpkin" +msgstr "Тыква" -#: src/badguy/scrystallo.cpp:53 -msgid "Awakening Radius" -msgstr "Радиус пробуждения" +#: src/badguy/bouncing_snowball.cpp:82 +msgid "Fatbat" +msgstr "Толстая летучая мышь" -#: src/badguy/jumpy.hpp:36 -msgid "Jumpy" -msgstr "Попрыгунчик" +#: src/badguy/dive_mine.hpp:50 +msgid "Dive Mine" +msgstr "Шахта для погружения" -#: src/badguy/captainsnowball.hpp:31 -msgid "Captain Snowball" -msgstr "Капитан Снежок" +#: src/badguy/granito_big.hpp:33 +msgid "Big Granito" +msgstr "Большой Гранито" -#: src/badguy/ghosttree.hpp:42 -msgid "Ghost Tree" -msgstr "Призрачное дерево" +#: src/badguy/mriceblock.hpp:49 +msgid "Mr. Iceblock" +msgstr "Мистер Ледышка" -#: src/badguy/willowisp.cpp:323 -msgid "Track range" -msgstr "Диапазон трассировки" +#: src/badguy/granito.hpp:39 src/badguy/darttrap.cpp:163 +#: src/badguy/corrupted_granito.cpp:175 src/badguy/dispenser.cpp:438 +msgid "Granito" +msgstr "Гранито" -#: src/badguy/willowisp.cpp:324 -msgid "Vanish range" -msgstr "Диапазон развеивания" +#: src/badguy/fish_swimming.cpp:54 src/badguy/jumpy.cpp:44 +#: data//images/ice_world.strf:10 data//images/tiles.strf:28 +#: data//images/worldmap.strf:41 +msgid "Snow" +msgstr "Снег" + +#: src/badguy/fish_swimming.cpp:55 data//images/ice_world.strf:211 +#: data//images/tiles.strf:366 data//images/worldmap.strf:67 +msgid "Forest" +msgstr "Лес" + +#: src/badguy/crusher.hpp:71 +msgid "Crusher" +msgstr "Дробилка" + +#: src/badguy/flame.cpp:84 +msgid "Fire" +msgstr "Огонь" + +#: src/badguy/flame.cpp:85 +msgid "Ghost" +msgstr "Призрак" + +#: src/badguy/corrupted_granito_big.hpp:35 +msgid "Corrupted Big Granito" +msgstr "Повреждённый Большой Гранито" + +#: src/badguy/scrystallo.cpp:57 +msgid "Walk Radius" +msgstr "Радиус ходьбы" + +#: src/badguy/scrystallo.cpp:58 +msgid "Awakening Radius" +msgstr "Радиус пробуждения" + +#: src/badguy/scrystallo.cpp:59 +msgid "Roof-attached" +msgstr "Крепящийся к крыше" + +#: src/badguy/jumpy.hpp:40 +msgid "Jumpy" +msgstr "Попрыгунчик" + +#: src/badguy/captainsnowball.hpp:32 +msgid "Captain Snowball" +msgstr "Капитан Снежок" + +#: src/badguy/ghosttree.hpp:43 +msgid "Ghost Tree" +msgstr "Призрачное дерево" + +#: src/badguy/willowisp.cpp:314 +msgid "Track range" +msgstr "Диапазон трассировки" + +#: src/badguy/willowisp.cpp:315 +msgid "Vanish range" +msgstr "Диапазон исчезновения" -#: src/badguy/willowisp.cpp:325 +#: src/badguy/willowisp.cpp:316 msgid "Fly speed" msgstr "Скорость полёта" -#: src/badguy/kugelblitz.hpp:39 +#: src/badguy/kugelblitz.hpp:40 msgid "Kugelblitz" msgstr "Шаровая молния" -#: src/badguy/mole_rock.hpp:43 +#: src/badguy/mole_rock.hpp:44 msgid "Mole's rock" msgstr "Кротовья скала" -#: src/badguy/badguy.cpp:849 +#: src/badguy/badguy.cpp:1064 msgid "Death script" msgstr "Сценарий смерти" -#: src/badguy/sspiky.hpp:36 +#: src/badguy/sspiky.hpp:37 msgid "Sleeping Spiky" msgstr "Спящая колючка" -#: src/badguy/yeti_stalactite.hpp:33 +#: src/badguy/yeti_stalactite.hpp:34 msgid "Yeti's Stalactite" msgstr "Сталактит Йети" -#: src/badguy/livefire.hpp:37 +#: src/badguy/fish_harmless.hpp:30 +msgid "Harmless Fish" +msgstr "Безобидная рыба" + +#: src/badguy/livefire.hpp:38 msgid "Walking Flame" msgstr "Гуляющий огонь" -#: src/badguy/livefire.hpp:68 +#: src/badguy/livefire.hpp:71 msgid "Sleeping Flame" msgstr "Спящий огонь" -#: src/badguy/livefire.hpp:84 +#: src/badguy/livefire.hpp:89 msgid "Dormant Flame" msgstr "Дремлющий огонь" -#: src/badguy/owl.hpp:39 +#: src/badguy/owl.hpp:45 msgid "Owl" msgstr "Сова" -#: src/badguy/igel.hpp:34 +#: src/badguy/igel.hpp:38 msgid "Igel" msgstr "Игель" -#: src/badguy/darttrap.cpp:126 +#: src/badguy/darttrap.cpp:148 msgid "Initial delay" msgstr "Начальная задержка" -#: src/badguy/darttrap.cpp:128 +#: src/badguy/darttrap.cpp:150 msgid "Fire delay" msgstr "Задержка огня" -#: src/badguy/darttrap.cpp:129 +#: src/badguy/darttrap.cpp:151 msgid "Ammo" msgstr "Боеприпасы" -#: src/badguy/snowball.hpp:29 -msgid "Snowball" -msgstr "Снежок" +#: src/badguy/darttrap.cpp:152 +msgid "Dart sprite" +msgstr "Спрайт дартс" + +#: src/badguy/darttrap.cpp:164 +msgid "Skull" +msgstr "Череп" + +#: src/badguy/snowball.hpp:30 +msgid "Mr. Snowball" +msgstr "Мистер Снежок" -#: src/badguy/smartblock.hpp:29 -msgid "Smartblock" -msgstr "Умный блок" +#: src/badguy/smartblock.hpp:30 +msgid "Mrs. Iceblock" +msgstr "Миссис Ледышка" -#: src/badguy/yeti.cpp:369 +#: src/badguy/yeti.cpp:370 msgid "Fixed position" msgstr "Закреплённая позиция" -#: src/badguy/yeti.cpp:370 +#: src/badguy/yeti.cpp:371 msgid "Lives" msgstr "Жизни" -#: src/badguy/goldbomb.hpp:49 +#: src/badguy/goldbomb.hpp:50 msgid "Gold Bomb" msgstr "Золотая бомба" -#: src/badguy/flyingsnowball.hpp:32 +#: src/badguy/corrupted_granito.hpp:44 +msgid "Corrupted Granito" +msgstr "Повреждённый Гранито" + +#: src/badguy/mrbomb.cpp:48 +msgid "Classic" +msgstr "Классический" + +#: src/badguy/flyingsnowball.hpp:33 msgid "Flying Snowball" msgstr "Парящий снежок" -#: src/badguy/skullyhop.hpp:37 -msgid "Skullyhop" -msgstr "Прыгающий череп" +#: src/badguy/crusher.cpp:75 +msgid "Ice (normal)" +msgstr "Лёд (обычный)" + +#: src/badguy/crusher.cpp:76 +msgid "Ice (big)" +msgstr "Лёд (большой)" + +#: src/badguy/crusher.cpp:77 +msgid "Rock (normal)" +msgstr "Скала (обычная)" -#: src/badguy/kamikazesnowball.hpp:32 -msgid "Snowshot" -msgstr "Снежный выстрел" +#: src/badguy/crusher.cpp:78 +msgid "Rock (big)" +msgstr "Скала (большая)" -#: src/badguy/kamikazesnowball.hpp:52 +#: src/badguy/crusher.cpp:79 +msgid "Corrupted (normal)" +msgstr "Повреждённый (обычный)" + +#: src/badguy/crusher.cpp:80 +msgid "Corrupted (big)" +msgstr "Повреждённый (большой)" + +#: src/badguy/crusher.cpp:492 +msgid "Sideways" +msgstr "В сторону" + +#: src/badguy/kamikazesnowball.hpp:34 +msgid "Kamikaze Snowball" +msgstr "Снежок камикадзе" + +#: src/badguy/kamikazesnowball.hpp:64 msgid "Leafshot" msgstr "Листовой выстрел" -#: src/badguy/flame.hpp:41 +#: src/badguy/fish_swimming.hpp:40 +msgid "Swimming Fish" +msgstr "Плавающая рыба" + +#: src/badguy/flame.hpp:47 msgid "Flame" msgstr "Пламя" -#: src/badguy/scrystallo.hpp:30 +#: src/badguy/scrystallo.hpp:31 msgid "Sleeping Crystallo" msgstr "Спящий Кристалло" -#: src/badguy/poisonivy.hpp:30 -msgid "Spring Leaf" -msgstr "Весенний лист" +#: src/badguy/jumpy.cpp:45 +msgid "Wooden" +msgstr "Деревянный" + +#: src/badguy/jumpy.cpp:47 +msgid "Metal" +msgstr "Металл" + +#: src/badguy/jumpy.cpp:48 +msgid "Bag" +msgstr "Сумка" #: src/badguy/willowisp.hpp:57 msgid "Will o' Wisp" msgstr "Блуждающий огонёк" -#: src/badguy/badguy.hpp:53 +#: src/badguy/fish_jumping.hpp:41 +msgid "Jumping Fish" +msgstr "Прыгающая рыба" + +#: src/badguy/badguy.hpp:61 msgid "Badguy" msgstr "Плохиш" -#: src/badguy/ghostflame.hpp:30 -msgid "Ghost Flame" -msgstr "Призрачный огонь" - -#: src/badguy/rcrystallo.hpp:30 +#: src/badguy/rcrystallo.hpp:33 msgid "Roof Crystallo" msgstr "Кровельный Кристалло" -#: src/badguy/spiky.hpp:30 +#: src/badguy/spiky.hpp:31 msgid "Spiky" msgstr "Ёжик" -#: src/badguy/walkingleaf.hpp:30 -msgid "Autumn Leaf" -msgstr "Осенний лист" +#: src/badguy/walkingleaf.hpp:33 +msgid "Walking Leaf" +msgstr "Шагающий лист" + +#: src/badguy/root.hpp:39 +msgid "Root" +msgstr "Корешок" -#: src/badguy/owl.cpp:227 +#: src/badguy/owl.cpp:241 msgid "Carry" msgstr "Керри" -#: src/badguy/darttrap.hpp:33 +#: src/badguy/darttrap.hpp:35 msgid "Dart Trap" msgstr "Ловушка со стрелами" -#: src/badguy/skydive.hpp:38 +#: src/badguy/skydive.hpp:43 msgid "Skydive" msgstr "Прыжок с парашютом" -#: src/badguy/yeti.hpp:37 +#: src/badguy/yeti.hpp:38 msgid "Yeti" msgstr "Йети" -#: src/badguy/mole.hpp:39 +#: src/badguy/snowball.cpp:41 +msgid "Bumpkin" +msgstr "Шишка" + +#: src/badguy/snowball.cpp:42 +msgid "BSOD" +msgstr "Синий экран смерти" + +#: src/badguy/mole.hpp:38 msgid "Mole" msgstr "Крот" -#: src/badguy/mrbomb.hpp:42 -msgid "Bomb" -msgstr "Бомба" +#: src/badguy/corrupted_granito.cpp:176 +msgid "Skullyhop" +msgstr "Прыгающий череп" -#: src/badguy/walking_candle.hpp:40 +#: src/badguy/mrbomb.hpp:40 +msgid "Mr. Bomb" +msgstr "Бомбочка" + +#: src/badguy/walking_candle.hpp:41 msgid "Walking Candle" msgstr "Гуляющая свеча" -#: src/badguy/angrystone.hpp:34 +#: src/badguy/angrystone.hpp:39 msgid "Angry Stone" msgstr "Злой камень" -#: src/badguy/spidermite.hpp:35 -msgid "Spider" -msgstr "Паук" +#: src/badguy/tarantula.cpp:354 +msgid "Spidermite" +msgstr "Паутинный клещ" + +#: src/badguy/tarantula.cpp:374 +msgid "Static" +msgstr "Статический" #: src/badguy/ghoul.hpp:30 msgid "Ghoul" msgstr "Упырь" -#: src/badguy/snowman.hpp:28 +#: src/badguy/granito_giant.hpp:32 +msgid "Giant Granito" +msgstr "Гигансткий Гранито" + +#: src/badguy/snowman.hpp:29 msgid "Snowman" msgstr "Снеговик" -#: src/badguy/stumpy.hpp:35 -msgid "Walking Stump" -msgstr "Гуляющий пень" +#: src/badguy/viciousivy.hpp:33 +msgid "Vicious Ivy" +msgstr "Порочный плющ" -#: src/badguy/fish.hpp:40 -msgid "Fish" -msgstr "Рыбка" +#: src/badguy/stalactite.cpp:156 +msgid "ice" +msgstr "лёд" -#: src/badguy/dispenser.cpp:445 +#: src/badguy/stalactite.cpp:157 +msgid "rock" +msgstr "скала" + +#: src/badguy/fish_chasing.hpp:33 +msgid "Chasing Fish" +msgstr "Преследующая рыба" + +#: src/badguy/stumpy.hpp:38 +msgid "Stumpy" +msgstr "Пенёк" + +#: src/badguy/dispenser.cpp:412 msgid "Interval (seconds)" msgstr "Интервал (в секундах)" -#: src/badguy/dispenser.cpp:446 +#: src/badguy/dispenser.cpp:413 msgid "Random" msgstr "Случайно" -#: src/badguy/dispenser.cpp:447 data//images/engine/editor/objects.stoi:4 -msgid "Enemies" -msgstr "Противники" +#: src/badguy/dispenser.cpp:416 +#: src/supertux/menu/editor_objectgroup_menu.cpp:30 +#: src/editor/toolbox_widget.cpp:101 +msgid "Objects" +msgstr "Объекты" -#: src/badguy/dispenser.cpp:448 +#: src/badguy/dispenser.cpp:419 msgid "Limit dispensed badguys" msgstr "Лимит выпускаемых плохишей" -#: src/badguy/dispenser.cpp:450 +#: src/badguy/dispenser.cpp:421 msgid "Obey Gravity" msgstr "Подчиняться гравитации" -#: src/badguy/dispenser.cpp:452 +#: src/badguy/dispenser.cpp:423 msgid "Max concurrent badguys" msgstr "Макс. одновременных плохишей" -#: src/badguy/dispenser.cpp:454 src/supertux/menu/editor_levelset_menu.cpp:60 -msgid "Type" -msgstr "Тип" - -#: src/badguy/dispenser.cpp:455 -msgid "dropper" -msgstr "ловушка" - -#: src/badguy/dispenser.cpp:455 -msgid "rocket launcher" -msgstr "пусковая установка" +#: src/badguy/dispenser.cpp:435 +msgid "Dropper" +msgstr "Капельница" -#: src/badguy/dispenser.cpp:455 -msgid "cannon" -msgstr "пушка" +#: src/badguy/dispenser.cpp:436 +msgid "Cannon" +msgstr "Пушка" -#: src/badguy/dispenser.cpp:455 -msgid "invisible" -msgstr "невидимый" +#: src/badguy/dispenser.cpp:437 src/worldmap/special_tile.cpp:77 +msgid "Invisible" +msgstr "Невидимость" -#: src/badguy/snail.hpp:42 +#: src/badguy/snail.hpp:43 msgid "Snail" msgstr "Улитка" -#: src/badguy/smartball.hpp:31 -msgid "Smartball" -msgstr "Умный мяч" +#: src/badguy/smartball.hpp:32 +msgid "Mrs. Snowball" +msgstr "Миссис Снежок" -#: src/badguy/bouncing_snowball.hpp:32 +#: src/badguy/bouncing_snowball.hpp:39 msgid "Bouncing Snowball" -msgstr "Прыгающий снежок" +msgstr "Прыгающий Снежок" + +#: src/badguy/granito_big.cpp:52 src/badguy/granito.cpp:263 +msgid "Default" +msgstr "По умолчанию" + +#: src/badguy/granito_big.cpp:53 src/badguy/granito.cpp:264 +msgid "Standing" +msgstr "Стоящий" -#: src/badguy/iceflame.hpp:33 -msgid "Ice Flame" -msgstr "Ледяное пламя" +#: src/badguy/granito_big.cpp:54 src/badguy/granito.cpp:265 +msgid "Walking" +msgstr "Шагающий" -#: src/badguy/dart.hpp:43 +#: src/badguy/mriceblock.cpp:63 +msgid "Laptop" +msgstr "Ноутбук" + +#: src/badguy/dart.hpp:44 msgid "Dart" msgstr "Стрела" +#: src/badguy/granito.cpp:268 +msgid "Sitting" +msgstr "Сидящий" + #: src/supertux/statistics.cpp:54 msgid "Max coins collected:" msgstr "Максимум собранных монет:" @@ -1736,11 +2289,11 @@ msgstr "Лучшее время:" #: src/supertux/statistics.cpp:58 msgid "Level target time:" -msgstr "Заданное время уровня:" +msgstr "Целевое время уровня:" -#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:160 +#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:175 msgid "Best Level Statistics" -msgstr "Лучшая статистика миссии" +msgstr "Лучшая статистика уровня" #: src/supertux/statistics.cpp:238 msgid "You" @@ -1750,7 +2303,7 @@ msgstr "Ваше" msgid "Best" msgstr "Лучшее" -#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:166 +#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:181 msgid "Coins" msgstr "Монеты" @@ -1758,264 +2311,347 @@ msgstr "Монеты" msgid "Badguys" msgstr "Плохиши" -#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:172 +#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:187 msgid "Secrets" msgstr "Тайники" -#: src/supertux/game_object.hpp:78 +#: src/supertux/game_object.hpp:88 msgid "Unknown object" msgstr "Неизвестный объект" -#: src/supertux/sector.cpp:414 +#: src/supertux/sector.cpp:507 msgid "Press escape to skip" msgstr "Нажмите Escape для пропуска" -#: src/supertux/command_line_arguments.cpp:94 -#, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Использование: %s [ПАРАМЕТРЫ] [ФАЙЛ_УРОВНЯ]" +#: src/supertux/command_line_arguments.cpp:92 +#, c++-format +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Использование: {} [ПАРАМЕТРЫ] [ФАЙЛ_УРОВНЯ]" -#: src/supertux/command_line_arguments.cpp:95 +#: src/supertux/command_line_arguments.cpp:93 msgid "General Options:" msgstr "Основные настройки:" -#: src/supertux/command_line_arguments.cpp:96 +#: src/supertux/command_line_arguments.cpp:94 msgid " -h, --help Show this help message and quit" msgstr " -h, --help Показать эту справку и выйти" -#: src/supertux/command_line_arguments.cpp:97 +#: src/supertux/command_line_arguments.cpp:95 msgid " -v, --version Show SuperTux version and quit" msgstr " -v, --version Показать версию SuperTux и выйти" -#: src/supertux/command_line_arguments.cpp:98 +#: src/supertux/command_line_arguments.cpp:96 msgid " --verbose Print verbose messages" msgstr " --verbose Выводить подробные сообщения" -#: src/supertux/command_line_arguments.cpp:99 +#: src/supertux/command_line_arguments.cpp:97 msgid " --debug Print extra verbose messages" msgstr " --debug Выводить дополнительные подробные сообщения" -#: src/supertux/command_line_arguments.cpp:100 +#: src/supertux/command_line_arguments.cpp:98 msgid "" " --print-datadir Print SuperTux's primary data directory." msgstr " --print-datadir Вывести основной каталог данных SuperTux." -#: src/supertux/command_line_arguments.cpp:101 +#: src/supertux/command_line_arguments.cpp:99 msgid "" " --acknowledgements Print the licenses of libraries used by " "SuperTux." msgstr " --acknowledgements Вывести лицензии библиотек, используемых в SuperTux." -#: src/supertux/command_line_arguments.cpp:103 +#: src/supertux/command_line_arguments.cpp:101 msgid "Video Options:" msgstr "Настройки графики:" -#: src/supertux/command_line_arguments.cpp:104 +#: src/supertux/command_line_arguments.cpp:102 msgid " -f, --fullscreen Run in fullscreen mode" msgstr " -f, --fullscreen Запуск в полноэкранном режиме" -#: src/supertux/command_line_arguments.cpp:105 +#: src/supertux/command_line_arguments.cpp:103 msgid " -w, --window Run in window mode" msgstr " -w, --window Запуск в окне" -#: src/supertux/command_line_arguments.cpp:106 +#: src/supertux/command_line_arguments.cpp:104 msgid " -g, --geometry WIDTHxHEIGHT Run SuperTux in given resolution" msgstr " -g, --geometry ШИРИНАxВЫСОТА Запустить SuperTux в данном разрешении" -#: src/supertux/command_line_arguments.cpp:107 +#: src/supertux/command_line_arguments.cpp:105 msgid " -a, --aspect WIDTH:HEIGHT Run SuperTux with given aspect ratio" msgstr "-a, --aspect ШИРИНА:ВЫСОТА Запустить SuperTux с данным соотношением сторон" -#: src/supertux/command_line_arguments.cpp:108 +#: src/supertux/command_line_arguments.cpp:106 msgid " -d, --default Reset video settings to default values" msgstr " -d, --default Сбросить настройки графики" -#: src/supertux/command_line_arguments.cpp:109 +#: src/supertux/command_line_arguments.cpp:107 msgid " --renderer RENDERER Use sdl, opengl, or auto to render" msgstr " --renderer ИНТЕРФЕЙС Использовать интерфейсы sdl, opengl или auto для отрисовки" -#: src/supertux/command_line_arguments.cpp:111 +#: src/supertux/command_line_arguments.cpp:109 msgid "Audio Options:" msgstr "Настройки звука:" -#: src/supertux/command_line_arguments.cpp:112 +#: src/supertux/command_line_arguments.cpp:110 msgid " --disable-sound Disable sound effects" msgstr " --disable-sound Отключить звуковые эффекты" -#: src/supertux/command_line_arguments.cpp:113 +#: src/supertux/command_line_arguments.cpp:111 msgid " --disable-music Disable music" msgstr " --disable-music Отключить музыку" -#: src/supertux/command_line_arguments.cpp:115 +#: src/supertux/command_line_arguments.cpp:113 msgid "Game Options:" msgstr "Настройки игры:" -#: src/supertux/command_line_arguments.cpp:116 +#: src/supertux/command_line_arguments.cpp:114 msgid " --edit-level Open given level in editor" msgstr " --edit-level Открыть данный уровень в редакторе" -#: src/supertux/command_line_arguments.cpp:117 +#: src/supertux/command_line_arguments.cpp:115 msgid " --resave Loads given level and saves it" msgstr " --resave Загружает указанный уровень и сохраняет его" -#: src/supertux/command_line_arguments.cpp:118 +#: src/supertux/command_line_arguments.cpp:116 msgid " --show-fps Display framerate in levels" msgstr " --show-fps Выводить частоту кадров на уровнях" -#: src/supertux/command_line_arguments.cpp:119 +#: src/supertux/command_line_arguments.cpp:117 msgid " --no-show-fps Do not display framerate in levels" msgstr " --no-show-fps Не выводить частоту кадров на уровнях" -#: src/supertux/command_line_arguments.cpp:120 +#: src/supertux/command_line_arguments.cpp:118 msgid " --show-pos Display player's current position" msgstr " --show-pos Выводить текущее положение игрока" -#: src/supertux/command_line_arguments.cpp:121 +#: src/supertux/command_line_arguments.cpp:119 msgid " --no-show-pos Do not display player's position" msgstr " --no-show-pos Не выводить текущее положение игрока" -#: src/supertux/command_line_arguments.cpp:122 +#: src/supertux/command_line_arguments.cpp:120 msgid " --developer Switch on developer feature" msgstr " --developer Включить функции разработчика" -#: src/supertux/command_line_arguments.cpp:123 +#: src/supertux/command_line_arguments.cpp:121 msgid " -s, --debug-scripts Enable script debugger." msgstr " -s, --debug-scripts Включить отладчик сценариев" -#: src/supertux/command_line_arguments.cpp:124 +#: src/supertux/command_line_arguments.cpp:122 msgid "" " --spawn-pos X,Y Where in the level to spawn Tux. Only used if" " level is specified." msgstr " --spawn-pos X,Y Место возрождения Такса на уровне. Используется, только если уровень указан." -#: src/supertux/command_line_arguments.cpp:125 +#: src/supertux/command_line_arguments.cpp:123 msgid " --sector SECTOR Spawn Tux in SECTOR\n" msgstr " --sector SECTOR Возродить Такса в СЕКТОРЕ\n" -#: src/supertux/command_line_arguments.cpp:126 +#: src/supertux/command_line_arguments.cpp:124 msgid " --spawnpoint SPAWNPOINT Spawn Tux at SPAWNPOINT\n" msgstr " --spawnpoint SPAWNPOINT Поставить Такса на точке возрождения\n" -#: src/supertux/command_line_arguments.cpp:128 -msgid "Demo Recording Options:" -msgstr "Настройки записи повторов:" - -#: src/supertux/command_line_arguments.cpp:129 -msgid " --record-demo FILE LEVEL Record a demo to FILE" -msgstr " --record-demo ФАЙЛ УРОВЕНЬ Записывает повтор в ФАЙЛ" - -#: src/supertux/command_line_arguments.cpp:130 -msgid " --play-demo FILE LEVEL Play a recorded demo" -msgstr " --play-demo ФАЙЛ УРОВЕНЬ Проигрывает записанный повтор" - -#: src/supertux/command_line_arguments.cpp:132 +#: src/supertux/command_line_arguments.cpp:126 msgid "Directory Options:" msgstr "Настройка папок:" -#: src/supertux/command_line_arguments.cpp:133 +#: src/supertux/command_line_arguments.cpp:127 msgid "" " --datadir DIR Set the directory for the games datafiles" msgstr " --datadir ПУТЬ Устанавливает папку для данных игры" -#: src/supertux/command_line_arguments.cpp:134 +#: src/supertux/command_line_arguments.cpp:128 msgid "" " --userdir DIR Set the directory for user data (savegames, " "etc.)" msgstr " --userdir ПУТЬ Указывает папку для пользовательских данных (сохранения и т. д.)" -#: src/supertux/command_line_arguments.cpp:136 +#: src/supertux/command_line_arguments.cpp:130 msgid "Add-On Options:" msgstr "Настройки дополнений:" -#: src/supertux/command_line_arguments.cpp:137 +#: src/supertux/command_line_arguments.cpp:131 msgid " --repository-url URL Set the URL to the Add-On repository" msgstr " --repository-url АДРЕС Установить адрес сетевого хранилища дополнений" -#: src/supertux/command_line_arguments.cpp:139 +#: src/supertux/command_line_arguments.cpp:133 msgid "Environment variables:" msgstr "Переменные среды:" -#: src/supertux/command_line_arguments.cpp:140 +#: src/supertux/command_line_arguments.cpp:134 msgid "" " SUPERTUX2_USER_DIR Directory for user data (savegames, etc.)" msgstr " SUPERTUX2_USER_DIR Папка для пользовательских данных (сохранения и т. д.)" -#: src/supertux/command_line_arguments.cpp:141 +#: src/supertux/command_line_arguments.cpp:135 msgid " SUPERTUX2_DATA_DIR Directory for the games datafiles" msgstr " SUPERTUX2_DATA_DIR Папка для данных игры" -#: src/supertux/title_screen.cpp:44 +#: src/supertux/title_screen.cpp:272 msgid "Copyright" msgstr "Авторское право" -#: src/supertux/title_screen.cpp:45 +#: src/supertux/title_screen.cpp:273 msgid "" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to\n" "redistribute it under certain conditions; see the license file for details.\n" msgstr "Эта игра поставляется без КАКИХ-ЛИБО ГАРАНТИЙ. Это свободное программное обеспечение,\nи вы можете распространять его на определённых условиях, подробности смотрите в файле лицензии.\n" +#: src/supertux/game_object.cpp:114 +msgid "Version" +msgstr "Версия" + +#: src/supertux/game_object.cpp:129 +#: src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Type" +msgstr "Тип" + #: src/supertux/menu/integrations_menu.cpp:49 msgid "Integrations" msgstr "Интеграция" #: src/supertux/menu/integrations_menu.cpp:51 msgid "Do not share level names when editing" -msgstr "Не делиться названиями уровней из редактора" +msgstr "Не делиться именами уровней из редактора" + +#: src/supertux/menu/integrations_menu.cpp:52 +msgid "" +"Enable this if you want to work on secret levels and don't want the names to" +" be spoiled" +msgstr "Включите эту функцию, если вы хотите работать на секретных уровнях и не видеть спойлеры имён" #: src/supertux/menu/integrations_menu.cpp:54 msgid "Enable Discord integration" msgstr "Включить интеграцию с Discord" +#: src/supertux/menu/integrations_menu.cpp:55 +msgid "" +"Sends information to your Discord application about what you're doing in the" +" game." +msgstr "Отправляет в ваше приложение Discord информацию о том, что вы делаете в игре." + #: src/supertux/menu/integrations_menu.cpp:57 msgid "Discord (disabled; not compiled)" msgstr "Discord (отключён; не скомпилирован)" -#: src/supertux/menu/contrib_menu.cpp:80 +#: src/supertux/menu/editor_converters_menu.cpp:61 +#: src/supertux/menu/editor_menu.cpp:85 +msgid "Convert Tiles" +msgstr "Преобразовать плитки" + +#: src/supertux/menu/editor_converters_menu.cpp:64 +msgid "Select Tile Conversion File" +msgstr "Выбрать файл преобразования плитки" + +#: src/supertux/menu/editor_converters_menu.cpp:72 +#, c++-format +msgid "By: {}" +msgstr "Автор: {}" + +#: src/supertux/menu/editor_converters_menu.cpp:75 +msgid "Convert Tiles By File" +msgstr "Преобразовать плитки по файлу" + +#: src/supertux/menu/editor_converters_menu.cpp:76 +msgid "Convert all tiles in the current level by a file, specified above." +msgstr "Преобразовать все плитки текущего уровня по файлу, указанному выше." + +#: src/supertux/menu/editor_converters_menu.cpp:89 +msgid "No tile conversion file selected." +msgstr "Не выбран файл преобразования плиток." + +#: src/supertux/menu/editor_converters_menu.cpp:93 +msgid "" +"This will convert all tiles in the level. Proceed?\n" +"\n" +"Note: This should not be ran more than once on a level.\n" +"Creating a separate copy of the level is highly recommended." +msgstr "Это преобразует все плитки на уровне. Приступить?\n\nПримечание: Не следует запускать эту процедуру на уровне более одного раза.\nНастоятельно рекомендуется создать отдельную копию уровня." + +#: src/supertux/menu/video_system_menu.cpp:36 +msgid "Select Video System" +msgstr "Выбрать видеосистему" + +#: src/supertux/menu/video_system_menu.cpp:37 +#, c++-format +msgid "Used video system: {}" +msgstr "Текущая видеосистема: {}" + +#: src/supertux/menu/video_system_menu.cpp:54 +msgid "Restart game for the changes to take effect" +msgstr "Перезапустите игру для применения изменений" + +#: src/supertux/menu/contrib_menu.cpp:68 #: src/supertux/menu/world_set_menu.cpp:31 msgid "Contrib Levels" msgstr "Дополнительные уровни" -#: src/supertux/menu/debug_menu.cpp:32 +#: src/supertux/menu/contrib_menu.cpp:98 +#: src/supertux/menu/contrib_menu.cpp:112 +msgid "Official Contrib Levels" +msgstr "Официальные авторские уровни" + +#: src/supertux/menu/contrib_menu.cpp:99 +#: src/supertux/menu/contrib_menu.cpp:118 +msgid "Community Contrib Levels" +msgstr "Авторские уровни от сообщества" + +#: src/supertux/menu/contrib_menu.cpp:100 +#: src/supertux/menu/contrib_menu.cpp:124 +msgid "User Contrib Levels" +msgstr "Пользовательские авторские уровни" + +#: src/supertux/menu/contrib_menu.cpp:113 +msgid "How is this possible? There are no Official Contrib Levels!" +msgstr "Как такое возможно? Официальных авторских уровней нет!" + +#: src/supertux/menu/contrib_menu.cpp:119 +msgid "No Community Contrib Levels yet. Download them from the Add-ons Menu." +msgstr "Пока нет авторских уровней от сообщества. Загрузите их из меню дополнений." + +#: src/supertux/menu/contrib_menu.cpp:125 +msgid "No User Contrib Levels yet. Create some with the Level Editor." +msgstr "Пока нет авторских пользовательских уровней. Создайте их с помощью редактора уровней." + +#: src/supertux/menu/debug_menu.cpp:34 msgid "Debug" msgstr "Отладка" -#: src/supertux/menu/debug_menu.cpp:56 +#: src/supertux/menu/debug_menu.cpp:58 msgid "Game Speed" msgstr "Скорость игры" -#: src/supertux/menu/debug_menu.cpp:57 +#: src/supertux/menu/debug_menu.cpp:59 msgid "Adjust Game Speed" msgstr "Изменить скорость игры" -#: src/supertux/menu/debug_menu.cpp:63 +#: src/supertux/menu/debug_menu.cpp:65 msgid "Show Collision Rects" msgstr "Показать линии столкновения" -#: src/supertux/menu/debug_menu.cpp:64 +#: src/supertux/menu/debug_menu.cpp:66 msgid "Show Worldmap Path" msgstr "Показать путь карты мира" -#: src/supertux/menu/debug_menu.cpp:65 +#: src/supertux/menu/debug_menu.cpp:67 msgid "Show Controller" msgstr "Показывать контроллер" -#: src/supertux/menu/debug_menu.cpp:66 +#: src/supertux/menu/debug_menu.cpp:68 msgid "Show Framerate" msgstr "Показывать частоту кадров" -#: src/supertux/menu/debug_menu.cpp:67 +#: src/supertux/menu/debug_menu.cpp:69 msgid "Draw Redundant Frames" msgstr "Рисовать избыточные кадры" -#: src/supertux/menu/debug_menu.cpp:68 +#: src/supertux/menu/debug_menu.cpp:70 msgid "Show Player Position" msgstr "Показывать позицию игрока" -#: src/supertux/menu/debug_menu.cpp:69 +#: src/supertux/menu/debug_menu.cpp:71 msgid "Use Bitmap Fonts" msgstr "Использовать растровые шрифты" -#: src/supertux/menu/debug_menu.cpp:72 +#: src/supertux/menu/debug_menu.cpp:74 msgid "Dump Texture Cache" msgstr "Дамп кэша текстур" @@ -2029,10 +2665,37 @@ msgid "File name" msgstr "Имя файла" #: src/supertux/menu/particle_editor_save_as.cpp:38 -#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:766 +#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:767 msgid "Save" msgstr "Сохранить" +#: src/supertux/menu/multiplayer_menu.cpp:27 +#: src/supertux/menu/multiplayer_players_menu.cpp:34 +msgid "Multiplayer" +msgstr "Многопользовательская игра" + +#: src/supertux/menu/multiplayer_menu.cpp:30 +msgid "Auto-manage Players" +msgstr "Автоуправление игроками" + +#: src/supertux/menu/multiplayer_menu.cpp:31 +msgid "" +"Automatically add and remove players when controllers are plugged or " +"unplugged" +msgstr "Автоматически добавлять и удалять игроков при подключении и отключении контроллеров" + +#: src/supertux/menu/multiplayer_menu.cpp:33 +msgid "Allow Multibind" +msgstr "Разрешить множественные привязки" + +#: src/supertux/menu/multiplayer_menu.cpp:34 +msgid "Allow binding multiple joysticks to a single player" +msgstr "Разрешить привязки нескольких джойстиков к одному игроку" + +#: src/supertux/menu/multiplayer_menu.cpp:36 +msgid "Manage Players" +msgstr "Управление игроками" + #: src/supertux/menu/editor_sectors_menu.cpp:31 msgid "Choose Sector" msgstr "Выберите сектор" @@ -2049,556 +2712,924 @@ msgstr "Создать сектор" msgid "Delete Sector" msgstr "Удалить сектор" -#: src/supertux/menu/editor_sectors_menu.cpp:93 +#: src/supertux/menu/editor_sectors_menu.cpp:92 msgid "Each level must have at least one sector." msgstr "Каждый уровень должен иметь хотя бы один участок." -#: src/supertux/menu/editor_sectors_menu.cpp:98 +#: src/supertux/menu/editor_sectors_menu.cpp:97 msgid "Do you really want to delete this sector?" -msgstr "Вы действительно хотите удалить этот участок?" +msgstr "Уверены, что хотите удалить этот участок?" -#: src/supertux/menu/editor_sectors_menu.cpp:101 +#: src/supertux/menu/editor_sectors_menu.cpp:100 msgid "Delete sector" msgstr "Удалить участок" -#: src/supertux/menu/editor_objectgroup_menu.cpp:30 -#: src/editor/toolbox_widget.cpp:93 -msgid "Objects" -msgstr "Объекты" +#: src/supertux/menu/custom_menu_menu.cpp:49 +#: src/supertux/menu/options_menu.cpp:191 +msgid "Menu Customization" +msgstr "Персонализация меню" + +#: src/supertux/menu/custom_menu_menu.cpp:51 +msgid "Menu Back Color" +msgstr "Цвет задней части меню" -#: src/supertux/menu/editor_level_select_menu.cpp:62 +#: src/supertux/menu/custom_menu_menu.cpp:52 +msgid "Menu Front Color" +msgstr "Цвет передней части меню" + +#: src/supertux/menu/custom_menu_menu.cpp:53 +msgid "Menu Help Back Color" +msgstr "Вспомогательный цвет задней части меню" + +#: src/supertux/menu/custom_menu_menu.cpp:54 +msgid "Menu Help Front Color" +msgstr "Вспомогательный цвет передней части меню" + +#: src/supertux/menu/custom_menu_menu.cpp:55 +msgid "Label Text Color" +msgstr "Цвет текста метки" + +#: src/supertux/menu/custom_menu_menu.cpp:56 +msgid "Active Text Color" +msgstr "Цвет активного текста" + +#: src/supertux/menu/custom_menu_menu.cpp:57 +msgid "Divider Line Color" +msgstr "Цвет линии разделителя" + +#: src/supertux/menu/custom_menu_menu.cpp:58 +msgid "Menu Roundness" +msgstr "Округлость меню" + +#: src/supertux/menu/custom_menu_menu.cpp:60 +msgid "Editor Interface Color" +msgstr "Цвет интерфейса редактора" + +#: src/supertux/menu/custom_menu_menu.cpp:61 +msgid "Editor Hover Color" +msgstr "Цвет редактора в фокусе" + +#: src/supertux/menu/custom_menu_menu.cpp:62 +msgid "Editor Grab Color" +msgstr "Цвет захвата редактора" + +#: src/supertux/menu/custom_menu_menu.cpp:64 +msgid "Reset to defaults" +msgstr "Сброс к настройкам по умолчанию" + +#: src/supertux/menu/editor_level_select_menu.cpp:72 msgid "Empty World" msgstr "Пустой мир" -#: src/supertux/menu/editor_level_select_menu.cpp:77 +#: src/supertux/menu/editor_level_select_menu.cpp:87 msgid "Create Level" msgstr "Создать уровень" -#: src/supertux/menu/editor_level_select_menu.cpp:81 +#: src/supertux/menu/editor_level_select_menu.cpp:91 msgid "Edit Worldmap" msgstr "Изменить карту мира" -#: src/supertux/menu/editor_level_select_menu.cpp:83 +#: src/supertux/menu/editor_level_select_menu.cpp:93 msgid "Create Worldmap" msgstr "Создать карту мира" -#: src/supertux/menu/editor_level_select_menu.cpp:85 -#: src/supertux/menu/editor_delete_level_menu.cpp:33 +#: src/supertux/menu/editor_level_select_menu.cpp:95 +#: src/supertux/menu/editor_delete_level_menu.cpp:55 msgid "Delete level" msgstr "Удалить уровень" -#: src/supertux/menu/editor_level_select_menu.cpp:87 -#: src/supertux/menu/editor_levelset_menu.cpp:56 +#: src/supertux/menu/editor_level_select_menu.cpp:97 +#: src/supertux/menu/editor_levelset_menu.cpp:50 msgid "World Settings" msgstr "Настройки мира" -#: src/supertux/menu/editor_level_select_menu.cpp:127 +#: src/supertux/menu/editor_level_select_menu.cpp:141 msgid "" "Share this worldmap under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" "If you don't agree with this license, change it in worldmap properties.\n" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." -msgstr "Поделитесь этой картой мира под лицензией CC-BY-SA 4.0 International (желательно).\nОна позволяет третьими лицами вносить изменения и повторно распространять.\nЕсли вы не согласны с этой лицензией, смените её в свойствах карты мира.\nОГОВОРКА: авторы SuperTux не несут ответственности за ваш выбор лицензии." +msgstr "Поделитесь этой картой мира под лицензией CC-BY-SA 4.0 International (желательно).\nОна позволяет третьими лицами вносить изменения и повторно распространять.\nЕсли вы не согласны с этой лицензией, смените её в свойствах карты мира.\nОГОВОРКА: авторы SuperTux не несут никакой ответственности за ваш выбор лицензии." -#: src/supertux/menu/editor_level_select_menu.cpp:134 +#: src/supertux/menu/editor_level_select_menu.cpp:148 msgid "" "Share this level under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" "If you don't agree with this license, change it in level properties.\n" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." -msgstr "Поделитесь этим уровнем под лицензией CC-BY-SA 4.0 International (желательно).\nОна позволяет третьими лицами вносить изменения и повторно распространять.\nЕсли вы не согласны с этой лицензией, смените её в свойствах уровня.\nОГОВОРКА: авторы SuperTux не несут ответственности за ваш выбор лицензии." +msgstr "Поделитесь этим уровнем под лицензией CC-BY-SA 4.0 International (желательно).\nОна позволяет третьими лицами вносить изменения и повторно распространять.\nЕсли вы не согласны с этой лицензией, смените её в свойствах уровня.\nОГОВОРКА: авторы SuperTux не несут никакой ответственности за ваш выбор лицензии." -#: src/supertux/menu/editor_level_select_menu.cpp:162 +#: src/supertux/menu/editor_level_select_menu.cpp:179 msgid "" "An auto-save recovery file was found. Would you like to restore the recovery\n" "file and resume where you were before the editor crashed?" msgstr "Найден файл восстановления с автоматическим сохранением. Хотите восстановиться\nи вернуться к тому месту, где вы были до сбоя редактора?" -#: src/supertux/menu/editor_level_select_menu.cpp:169 +#: src/supertux/menu/editor_level_select_menu.cpp:186 msgid "This will delete the auto-save file. Are you sure?" msgstr "Это приведёт к удалению файла автоматического сохранения. Уверены?" -#: src/supertux/menu/worldmap_cheat_menu.cpp:34 -#: src/supertux/menu/cheat_menu.cpp:30 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:35 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:52 +#: src/supertux/menu/cheat_apply_menu.cpp:33 +#: src/supertux/menu/cheat_apply_menu.cpp:51 +msgid "Apply cheat to player" +msgstr "Применить чит к игроку" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:60 +#: src/supertux/menu/multiplayer_players_menu.cpp:39 +#: src/supertux/menu/keyboard_menu.cpp:63 +#: src/supertux/menu/cheat_apply_menu.cpp:39 +#: src/supertux/menu/cheat_apply_menu.cpp:59 +#: src/supertux/menu/multiplayer_player_menu.cpp:37 +#, c++-format +msgid "Player {}" +msgstr "Игрок {}" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:57 +#: src/supertux/menu/cheat_apply_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:56 +msgid "All Players" +msgstr "Все игроки" + +#: src/supertux/menu/worldmap_cheat_menu.cpp:36 +#: src/supertux/menu/cheat_menu.cpp:31 msgid "Cheats" msgstr "Читы" -#: src/supertux/menu/worldmap_cheat_menu.cpp:36 -#: src/supertux/menu/cheat_menu.cpp:32 +#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:33 msgid "Bonus: Grow" msgstr "Бонус: Рост" -#: src/supertux/menu/worldmap_cheat_menu.cpp:37 +#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:34 msgid "Bonus: Fire" msgstr "Бонус: Огонь" -#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/cheat_menu.cpp:35 msgid "Bonus: Ice" msgstr "Бонус: Лёд" -#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/cheat_menu.cpp:36 msgid "Bonus: Air" msgstr "Бонус: Воздух" -#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:42 +#: src/supertux/menu/cheat_menu.cpp:37 msgid "Bonus: Earth" msgstr "Бонус: Земля" -#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/worldmap_cheat_menu.cpp:43 msgid "Bonus: None" msgstr "Бонус: Нет" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:51 msgid "Leave Ghost Mode" msgstr "Покинуть режим призрака" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:50 msgid "Activate Ghost Mode" msgstr "Активировать режим призрака" -#: src/supertux/menu/worldmap_cheat_menu.cpp:46 -#: src/supertux/menu/cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:48 +#: src/supertux/menu/cheat_menu.cpp:41 msgid "Finish Level" msgstr "Завершить уровень" -#: src/supertux/menu/worldmap_cheat_menu.cpp:47 +#: src/supertux/menu/worldmap_cheat_menu.cpp:49 msgid "Reset Level" msgstr "Сбросить уровень" -#: src/supertux/menu/worldmap_cheat_menu.cpp:49 +#: src/supertux/menu/worldmap_cheat_menu.cpp:51 msgid "Finish Worldmap" msgstr "Закончить карту мира" -#: src/supertux/menu/worldmap_cheat_menu.cpp:50 +#: src/supertux/menu/worldmap_cheat_menu.cpp:52 msgid "Reset Worldmap" msgstr "Сбросить карту мира" -#: src/supertux/menu/worldmap_cheat_menu.cpp:52 +#: src/supertux/menu/worldmap_cheat_menu.cpp:54 msgid "Go to level" msgstr "Перейти к уровню" -#: src/supertux/menu/worldmap_cheat_menu.cpp:53 +#: src/supertux/menu/worldmap_cheat_menu.cpp:55 msgid "Go to main spawnpoint" msgstr "Перейти к основной точке возрождения" -#: src/supertux/menu/worldmap_cheat_menu.cpp:145 +#: src/supertux/menu/worldmap_cheat_menu.cpp:188 msgid "Select level" msgstr "Выбрать уровень" #: src/supertux/menu/editor_save_as.cpp:33 -#: src/supertux/menu/editor_menu.cpp:49 +#: src/supertux/menu/editor_menu.cpp:63 msgid "Save Level as" msgstr "Сохранить уровень в" #: src/supertux/menu/editor_save_as.cpp:33 -#: src/supertux/menu/editor_menu.cpp:50 +#: src/supertux/menu/editor_menu.cpp:64 msgid "Save Copy" msgstr "Сохранить копию" -#: src/supertux/menu/editor_levelset_select_menu.cpp:72 +#: src/supertux/menu/editor_levelset_select_menu.cpp:71 msgid "Choose World" msgstr "Выберите мир" -#: src/supertux/menu/editor_levelset_select_menu.cpp:100 -#, c-format -msgid "%d level" -msgid_plural "%d levels" -msgstr[0] "%d уровень" -msgstr[1] "%d уровня" -msgstr[2] "%d уровней" -msgstr[3] "%d уровней" +#: src/supertux/menu/editor_levelset_select_menu.cpp:99 +#, c++-format +msgid "{} level" +msgid_plural "{} levels" +msgstr[0] "{} уровень" +msgstr[1] "{} уровня" +msgstr[2] "{} уровней" +msgstr[3] "{} уровней" -#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_levelset_select_menu.cpp:112 msgid "Create World" msgstr "Создать мир" -#: src/supertux/menu/options_menu.cpp:98 src/supertux/menu/main_menu.cpp:64 -#: src/supertux/menu/game_menu.cpp:61 src/supertux/menu/worldmap_menu.cpp:31 -msgid "Options" -msgstr "Настройки" - -#: src/supertux/menu/options_menu.cpp:104 -#: src/supertux/menu/options_menu.cpp:142 -#: src/supertux/menu/options_menu.cpp:455 -#: src/supertux/menu/options_menu.cpp:476 src/editor/object_settings.cpp:119 -msgid "auto" -msgstr "автоматически" - -#: src/supertux/menu/options_menu.cpp:221 -msgid "Desktop" -msgstr "Рабочий стол" - -#: src/supertux/menu/options_menu.cpp:251 -msgid "on" -msgstr "вкл" - -#: src/supertux/menu/options_menu.cpp:252 -msgid "off" -msgstr "откл" +#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:41 +msgid "Delete World" +msgstr "Удалить мир" -#: src/supertux/menu/options_menu.cpp:253 -msgid "adaptive" -msgstr "адаптивная" +#: src/supertux/menu/options_menu.cpp:72 +#: src/supertux/menu/options_select_menu.cpp:35 +msgid "Locale" +msgstr "Язык" -#: src/supertux/menu/options_menu.cpp:347 +#: src/supertux/menu/options_menu.cpp:76 msgid "Select Language" msgstr "Выбор языка" -#: src/supertux/menu/options_menu.cpp:348 +#: src/supertux/menu/options_menu.cpp:77 msgid "Select a different language to display text in" msgstr "Выбрать язык для отображения текста" -#: src/supertux/menu/options_menu.cpp:350 +#: src/supertux/menu/options_menu.cpp:79 msgid "Language Packs" msgstr "Языковые пакеты" -#: src/supertux/menu/options_menu.cpp:351 +#: src/supertux/menu/options_menu.cpp:80 msgid "Language packs contain up-to-date translations" msgstr "Языковые пакеты содержат актуальные переводы" -#: src/supertux/menu/options_menu.cpp:353 -#: src/supertux/menu/profile_menu.cpp:34 -msgid "Select Profile" -msgstr "Выбор учётной записи" - -#: src/supertux/menu/options_menu.cpp:354 -msgid "Select a profile to play with" -msgstr "Выбрать учётную запись для игры" +#: src/supertux/menu/options_menu.cpp:88 +#: src/supertux/menu/options_select_menu.cpp:37 +msgid "Video" +msgstr "Видео" -#: src/supertux/menu/options_menu.cpp:358 +#: src/supertux/menu/options_menu.cpp:91 msgid "Window Resizable" msgstr "Изменяемый размер окна" -#: src/supertux/menu/options_menu.cpp:359 +#: src/supertux/menu/options_menu.cpp:92 msgid "Allow window resizing, might require a restart to take effect" msgstr "Разрешить изменение размера окна, может потребоваться перезагрузка для применения" -#: src/supertux/menu/options_menu.cpp:361 -msgid "Window Resolution" -msgstr "Разрешение окна" - -#: src/supertux/menu/options_menu.cpp:362 -msgid "Resize the window to the given size" -msgstr "Изменить размер окна до заданного" - -#: src/supertux/menu/options_menu.cpp:364 +#: src/supertux/menu/options_menu.cpp:96 msgid "Fullscreen" msgstr "Полный экран" -#: src/supertux/menu/options_menu.cpp:365 +#: src/supertux/menu/options_menu.cpp:97 msgid "Fill the entire screen" msgstr "Растянуть игру на весь экран" -#: src/supertux/menu/options_menu.cpp:367 -msgid "Fullscreen Resolution" -msgstr "Полноэкранное разрешение" - -#: src/supertux/menu/options_menu.cpp:368 -msgid "" -"Determine the resolution used in fullscreen mode (you must toggle fullscreen" -" to complete the change)" -msgstr "Разрешение полноэкранного режима (необходимо включить «Полный экран» для применения)" - -#: src/supertux/menu/options_menu.cpp:373 +#: src/supertux/menu/options_menu.cpp:104 msgid "Fit to browser" msgstr "По размеру браузера" -#: src/supertux/menu/options_menu.cpp:374 +#: src/supertux/menu/options_menu.cpp:105 msgid "Fit the resolution to the size of your browser" msgstr "Установить разрешение под размер вашего браузера" -#: src/supertux/menu/options_menu.cpp:378 -msgid "Magnification" -msgstr "Масштаб" - -#: src/supertux/menu/options_menu.cpp:379 -msgid "Change the magnification of the game area" -msgstr "Изменить масштаб игрового пространства" - -#: src/supertux/menu/options_menu.cpp:381 -msgid "VSync" -msgstr "Верт. синхронизация" - -#: src/supertux/menu/options_menu.cpp:382 -msgid "Set the VSync mode" -msgstr "Режим вертикальной синхронизации" +#: src/supertux/menu/options_menu.cpp:116 +msgid "Change Video System" +msgstr "Сменить видеосистему" -#: src/supertux/menu/options_menu.cpp:385 -msgid "Aspect Ratio" -msgstr "Соотношение сторон" +#: src/supertux/menu/options_menu.cpp:117 +msgid "Change video system used to render graphics" +msgstr "Сменить видеосистему, используемую для отрисовки графики" -#: src/supertux/menu/options_menu.cpp:386 -msgid "Adjust the aspect ratio" -msgstr "Выбрать соотношение сторон экрана" +#: src/supertux/menu/options_menu.cpp:124 +#: src/supertux/menu/options_select_menu.cpp:38 +msgid "Audio" +msgstr "Звук" -#: src/supertux/menu/options_menu.cpp:392 +#: src/supertux/menu/options_menu.cpp:129 msgid "Disable all sound effects" msgstr "Отключить все звуковые эффекты" -#: src/supertux/menu/options_menu.cpp:394 +#: src/supertux/menu/options_menu.cpp:131 msgid "Disable all music" msgstr "Отключить музыку" -#: src/supertux/menu/options_menu.cpp:396 -msgid "Sound Volume" -msgstr "Громкость звука" - -#: src/supertux/menu/options_menu.cpp:397 -msgid "Adjust sound volume" -msgstr "Настроить громкость звука" - -#: src/supertux/menu/options_menu.cpp:399 -msgid "Music Volume" -msgstr "Громкость музыки" - -#: src/supertux/menu/options_menu.cpp:400 -msgid "Adjust music volume" -msgstr "Настроить громкость музыки" - -#: src/supertux/menu/options_menu.cpp:404 +#: src/supertux/menu/options_menu.cpp:138 msgid "Sound (disabled)" msgstr "Звуки (отключено)" -#: src/supertux/menu/options_menu.cpp:405 +#: src/supertux/menu/options_menu.cpp:139 msgid "Music (disabled)" msgstr "Музыка (отключено)" -#: src/supertux/menu/options_menu.cpp:408 -#: src/supertux/menu/keyboard_menu.cpp:30 +#: src/supertux/menu/options_menu.cpp:147 +#: src/supertux/menu/options_select_menu.cpp:39 +msgid "Controls" +msgstr "Управление" + +#: src/supertux/menu/options_menu.cpp:151 +msgid "Enable Rumbling Controllers" +msgstr "Включить вибрацию контроллеров" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "Enable vibrating the game controllers." +msgstr "Включить вибрацию игровых контроллеров." + +#: src/supertux/menu/options_menu.cpp:152 +msgid "This feature is currently only used in the multiplayer options menu." +msgstr "Пока эта функция используется только в меню параметров многопользовательской игры." + +#: src/supertux/menu/options_menu.cpp:154 +#: src/supertux/menu/keyboard_menu.cpp:34 msgid "Setup Keyboard" msgstr "Настройка клавиатуры" -#: src/supertux/menu/options_menu.cpp:409 +#: src/supertux/menu/options_menu.cpp:155 msgid "Configure key-action mappings" msgstr "Настроить функции клавиш" -#: src/supertux/menu/options_menu.cpp:412 -#: src/supertux/menu/joystick_menu.cpp:52 +#: src/supertux/menu/options_menu.cpp:158 +#: src/supertux/menu/joystick_menu.cpp:54 msgid "Setup Joystick" msgstr "Настройка контроллера" -#: src/supertux/menu/options_menu.cpp:413 +#: src/supertux/menu/options_menu.cpp:159 msgid "Configure joystick control-action mappings" msgstr "Сопоставить функции контроллера с действиями в игре" -#: src/supertux/menu/options_menu.cpp:417 -msgid "On-screen controls" -msgstr "Экранные элементы управления" +#: src/supertux/menu/options_menu.cpp:167 +#: src/supertux/menu/options_select_menu.cpp:40 +msgid "Extras" +msgstr "Особые" + +#: src/supertux/menu/options_menu.cpp:170 +#: src/supertux/menu/profile_menu.cpp:56 +msgid "Select Profile" +msgstr "Выбор учётной записи" + +#: src/supertux/menu/options_menu.cpp:171 +msgid "Select a profile to play with" +msgstr "Выбрать учётную запись для игры" -#: src/supertux/menu/options_menu.cpp:418 -msgid "Toggle on-screen controls for mobile devices" -msgstr "Включить элементы управления на экране для мобильных устройств" +#: src/supertux/menu/options_menu.cpp:174 +msgid "Multiplayer settings" +msgstr "Настройки многопользовательской игры" -#: src/supertux/menu/options_menu.cpp:420 +#: src/supertux/menu/options_menu.cpp:175 +msgid "Configure settings specific to multiplayer" +msgstr "Настройка особых параметров многопользовательской игры" + +#: src/supertux/menu/options_menu.cpp:178 msgid "Enable transitions" msgstr "Включить переходы" -#: src/supertux/menu/options_menu.cpp:421 +#: src/supertux/menu/options_menu.cpp:179 msgid "Enable screen transitions and smooth menu animation" msgstr "Включить переходы и плавную анимацию в меню" -#: src/supertux/menu/options_menu.cpp:425 -msgid "Developer Mode" -msgstr "Режим разработчика" +#: src/supertux/menu/options_menu.cpp:181 +msgid "Custom title screen levels" +msgstr "Пользовательские уровни титульного экрана" + +#: src/supertux/menu/options_menu.cpp:182 +msgid "Allow overriding the title screen level, when loading certain worlds" +msgstr "Разрешить переопределение уровня титульного экрана при загрузке некоторых миров" -#: src/supertux/menu/options_menu.cpp:430 +#: src/supertux/menu/options_menu.cpp:185 msgid "Christmas Mode" msgstr "Рождественский режим" -#: src/supertux/menu/options_menu.cpp:433 +#: src/supertux/menu/options_menu.cpp:187 +msgid "Integrations and presence" +msgstr "Интеграция и представление" + +#: src/supertux/menu/options_menu.cpp:188 +msgid "" +"Manage whether SuperTux should display the levels you play on your social " +"media profiles (Discord)" +msgstr "Отображение уровней SuperTux, на которых вы играете, в ваших соцсетях (Discord)" + +#: src/supertux/menu/options_menu.cpp:192 +msgid "Customize the appearance of the menus" +msgstr "Настроить внешний вид меню" + +#: src/supertux/menu/options_menu.cpp:199 +#: src/supertux/menu/options_select_menu.cpp:41 +msgid "Advanced" +msgstr "Расширенные" + +#: src/supertux/menu/options_menu.cpp:204 +msgid "Developer Mode" +msgstr "Режим разработчика" + +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirmation Dialog" msgstr "Окно подтверждения" -#: src/supertux/menu/options_menu.cpp:433 +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirm aborting level" msgstr "Подтверждать прекращение уровня" -#: src/supertux/menu/options_menu.cpp:434 +#: src/supertux/menu/options_menu.cpp:208 msgid "Pause on focus loss" msgstr "Пауза при потери фокуса" -#: src/supertux/menu/options_menu.cpp:435 +#: src/supertux/menu/options_menu.cpp:209 msgid "Automatically pause the game when the window loses focus" msgstr "Автоматически ставить игру на паузу, когда окно теряет фокус" -#: src/supertux/menu/options_menu.cpp:436 +#: src/supertux/menu/options_menu.cpp:211 msgid "Use custom mouse cursor" -msgstr "Использовать игровой указатель мыши" +msgstr "Заменить указатель мыши игровым" -#: src/supertux/menu/options_menu.cpp:436 +#: src/supertux/menu/options_menu.cpp:211 msgid "Whether the game renders its own cursor or uses the system's cursor" -msgstr "Использовать внутриигровой либо системный указатель мыши" +msgstr "Использовать внутриигровой или системный указатель мыши" -#: src/supertux/menu/options_menu.cpp:438 -msgid "Integrations and presence" -msgstr "Интеграция и представление" +#: src/supertux/menu/options_menu.cpp:214 +msgid "Check for new releases" +msgstr "Проверять наличие новых версий" -#: src/supertux/menu/options_menu.cpp:439 +#: src/supertux/menu/options_menu.cpp:215 msgid "" -"Manage whether SuperTux should display the levels you play on your social " -"media profiles (Discord)" -msgstr "Отображение уровней SuperTux, на которых вы играете, в ваших соцсетях (Discord)" +"Allows the game to perform checks for new SuperTux releases on startup and " +"notify if any found." +msgstr "Позволяет игре при запуске выполнять проверку на наличие новых версий SuperTux и уведомлять о них." + +#: src/supertux/menu/options_menu.cpp:245 +#: src/supertux/menu/options_menu.cpp:288 src/supertux/direction.cpp:76 +msgid "auto" +msgstr "автоматически" + +#: src/supertux/menu/options_menu.cpp:281 +msgid "Magnification" +msgstr "Масштаб" + +#: src/supertux/menu/options_menu.cpp:282 +msgid "Change the magnification of the game area" +msgstr "Изменить масштаб игрового пространства" + +#: src/supertux/menu/options_menu.cpp:318 +msgid "Aspect Ratio" +msgstr "Соотношение сторон" + +#: src/supertux/menu/options_menu.cpp:319 +msgid "Adjust the aspect ratio" +msgstr "Выбрать соотношение сторон экрана" + +#: src/supertux/menu/options_menu.cpp:346 +msgid "Window Resolution" +msgstr "Разрешение окна" + +#: src/supertux/menu/options_menu.cpp:347 +msgid "Resize the window to the given size" +msgstr "Изменить размер окна до заданного" + +#: src/supertux/menu/options_menu.cpp:377 +msgid "Desktop" +msgstr "Рабочий стол" + +#: src/supertux/menu/options_menu.cpp:404 +msgid "Fullscreen Resolution" +msgstr "Полноэкранное разрешение" + +#: src/supertux/menu/options_menu.cpp:405 +msgid "" +"Determine the resolution used in fullscreen mode (you must toggle fullscreen" +" to complete the change)" +msgstr "Разрешение полноэкранного режима (необходимо включить «Полный экран» для применения)" + +#: src/supertux/menu/options_menu.cpp:411 +msgid "on" +msgstr "вкл" + +#: src/supertux/menu/options_menu.cpp:412 +msgid "off" +msgstr "откл" + +#: src/supertux/menu/options_menu.cpp:413 +msgid "adaptive" +msgstr "адаптивная" + +#: src/supertux/menu/options_menu.cpp:431 +msgid "VSync" +msgstr "Верт. синхронизация" + +#: src/supertux/menu/options_menu.cpp:432 +msgid "Set the VSync mode" +msgstr "Режим вертикальной синхронизации" + +#: src/supertux/menu/options_menu.cpp:467 +msgid "Sound Volume" +msgstr "Громкость звука" -#: src/supertux/menu/options_menu.cpp:559 +#: src/supertux/menu/options_menu.cpp:468 +msgid "Adjust sound volume" +msgstr "Настроить громкость звука" + +#: src/supertux/menu/options_menu.cpp:503 +msgid "Music Volume" +msgstr "Громкость музыки" + +#: src/supertux/menu/options_menu.cpp:504 +msgid "Adjust music volume" +msgstr "Настроить громкость музыки" + +#: src/supertux/menu/options_menu.cpp:517 +msgid "On-screen controls scale" +msgstr "Масштаб экранных элементов управления" + +#: src/supertux/menu/options_menu.cpp:638 msgid "" "The game couldn't detect your browser resolution.\n" "This most likely happens because it is not embedded\n" "in the SuperTux custom HTML template.\n" msgstr "Игре не удалось определить разрешение вашего браузера.\nСкорее всего из-за того, что оно не встроено\nв пользовательский HTML-шаблон SuperTux.\n" -#: src/supertux/menu/main_menu.cpp:56 src/supertux/menu/world_set_menu.cpp:28 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:80 +msgid "You cannot delete the world that you are editing" +msgstr "Нельзя удалить мир, который вы редактируете" + +#: src/supertux/menu/editor_delete_levelset_menu.cpp:83 +#, c++-format +msgid "You are about to delete world \"{}\". Are you sure?" +msgstr "Вы собираетесь удалить мир «{}». Уверены?" + +#: src/supertux/menu/addon_preview_menu.cpp:82 +#, c++-format +msgid "{} \"{}\"" +msgstr "{} «{}»" + +#: src/supertux/menu/addon_preview_menu.cpp:87 +msgid "Some information about this add-on is not available." +msgstr "Некоторые сведения об этом дополнении недоступны." + +#: src/supertux/menu/addon_preview_menu.cpp:88 +msgid "Perform a \"Check Online\" to try retrieving it." +msgstr "Выполните «Проверить в сети», чтобы попытаться восстановить его." + +#: src/supertux/menu/addon_preview_menu.cpp:92 +msgid "No author specified." +msgstr "Автор не указан." + +#: src/supertux/menu/addon_preview_menu.cpp:92 +#, c++-format +msgid "Author: {}" +msgstr "Автор: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:93 +#, c++-format +msgid "Type: {}" +msgstr "Тип: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:94 +msgid "No license specified." +msgstr "Лицензия не указана." + +#: src/supertux/menu/addon_preview_menu.cpp:94 +#, c++-format +msgid "License: {}" +msgstr "Лицензия: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:99 +msgid "Dependencies:" +msgstr "Зависимости:" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Installed" +msgstr "Установлено" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Not installed" +msgstr "Не установлено" + +#: src/supertux/menu/addon_preview_menu.cpp:113 +msgid "Not available!" +msgstr "Недоступно!" + +#: src/supertux/menu/addon_preview_menu.cpp:120 +msgid "Description:" +msgstr "Описание:" + +#: src/supertux/menu/addon_preview_menu.cpp:123 +msgid "No description available." +msgstr "Описание недоступно." + +#: src/supertux/menu/addon_preview_menu.cpp:147 +msgid "Failed to load all available screenshot previews." +msgstr "Не удалось загрузить все доступные снимки предпросмотра." + +#: src/supertux/menu/addon_preview_menu.cpp:152 +msgid "Show screenshots" +msgstr "Показать снимки экрана" + +#: src/supertux/menu/addon_preview_menu.cpp:165 +msgid "Screenshot previews are disabled for automatic installs." +msgstr "Снимки предпросмотра отключены при автоматических установках." + +#: src/supertux/menu/addon_preview_menu.cpp:169 +msgid "No screenshot previews available." +msgstr "Снимки предпросмотра не доступны." + +#: src/supertux/menu/addon_preview_menu.cpp:177 +msgid "Install" +msgstr "Установить" + +#: src/supertux/menu/addon_preview_menu.cpp:190 +msgid "Uninstall" +msgstr "Удалить" + +#: src/supertux/menu/addon_preview_menu.cpp:214 +#, c++-format +msgid "Are you sure you want to uninstall \"{}\"?" +msgstr "Уверены, что хотите удалить «{}»?" + +#: src/supertux/menu/addon_preview_menu.cpp:215 +msgid "" +"\n" +"Your progress won't be lost." +msgstr "\nВаш прогресс не потеряется." + +#: src/supertux/menu/addon_preview_menu.cpp:227 +#, c++-format +msgid "" +"NOTE: The add-on \"{}\" is a dependency of {} other installed {}.\n" +"Are you sure you wish to uninstall?" +msgstr "ПРИМЕЧАНИЕ: Дополнение «{}» является зависимостью от {} других установленных {}.\nУверены, что хотите удалить?" + +#: src/supertux/menu/addon_preview_menu.cpp:246 +#, c++-format +msgid "" +"Cannot toggle add-on \"{}\":\n" +"{}" +msgstr "Не удаётся переключить дополнение «{}»:\n{}" + +#: src/supertux/menu/addon_preview_menu.cpp:279 +msgid "Fetching screenshot previews..." +msgstr "Извлекаются снимки предпросмотра…" + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Updating" +msgstr "Обновляется" + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Downloading" +msgstr "Скачивается" + +#: src/supertux/menu/addon_preview_menu.cpp:328 +msgid "Add-on uninstalled successfully." +msgstr "Дополнение успешно удалено." + +#: src/supertux/menu/addon_preview_menu.cpp:333 +#, c++-format +msgid "" +"Error uninstalling add-on:\n" +"{}" +msgstr "Ошибки удаления дополнения:\n{}" + +#: src/supertux/menu/addon_preview_menu.cpp:361 +msgid "" +"Please restart SuperTux\n" +"for these changes to take effect." +msgstr "Пожалуйста, перезапустите SuperTux\nдля применения изменений." + +#: src/supertux/menu/main_menu.cpp:51 src/supertux/menu/world_set_menu.cpp:28 msgid "Start Game" msgstr "Начать игру" -#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/addon_menu.cpp:122 +#: src/supertux/menu/main_menu.cpp:55 msgid "Add-ons" msgstr "Дополнения" -#: src/supertux/menu/main_menu.cpp:62 src/supertux/menu/web_asset_menu.cpp:38 +#: src/supertux/menu/main_menu.cpp:57 src/supertux/menu/web_asset_menu.cpp:38 msgid "Manage Assets" msgstr "Управление наборами" -#: src/supertux/menu/main_menu.cpp:65 src/supertux/menu/editor_menu.cpp:43 +#: src/supertux/menu/main_menu.cpp:59 +#: src/supertux/menu/options_select_menu.cpp:29 +#: src/supertux/menu/game_menu.cpp:58 src/supertux/menu/worldmap_menu.cpp:31 +#: src/supertux/menu/editor_menu.cpp:70 +msgid "Options" +msgstr "Настройки" + +#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/editor_menu.cpp:58 msgid "Level Editor" msgstr "Редактор уровней" -#: src/supertux/menu/main_menu.cpp:66 +#: src/supertux/menu/main_menu.cpp:61 msgid "Credits" msgstr "Титры" -#: src/supertux/menu/main_menu.cpp:67 +#: src/supertux/menu/main_menu.cpp:64 msgid "Donate" msgstr "Поддержать" -#: src/supertux/menu/main_menu.cpp:69 +#: src/supertux/menu/main_menu.cpp:67 msgid "Quit" msgstr "Выход" -#: src/supertux/menu/editor_sector_menu.cpp:35 +#: src/supertux/menu/main_menu.cpp:106 +msgid "" +"This will take you to the SuperTux donation page. Are you sure you want to " +"continue?" +msgstr "Вы будете направлены на страницу пожертвований SuperTux.\nХотите продолжить?" + +#: src/supertux/menu/editor_sector_menu.cpp:34 +#, c++-format +msgid "Sector {}" +msgstr "Сектор {}" + +#: src/supertux/menu/editor_sector_menu.cpp:37 msgid "Initialization script" msgstr "Сценарий инициализации" -#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_sector_menu.cpp:38 msgid "Gravity" msgstr "Притяжение" -#: src/supertux/menu/editor_sector_menu.cpp:41 +#: src/supertux/menu/editor_sector_menu.cpp:43 msgid "Resize offset X" msgstr "Масштаб смещения по X" -#: src/supertux/menu/editor_sector_menu.cpp:42 +#: src/supertux/menu/editor_sector_menu.cpp:44 msgid "Resize offset Y" msgstr "Масштаб смещения по Y" -#: src/supertux/menu/editor_sector_menu.cpp:43 +#: src/supertux/menu/editor_sector_menu.cpp:45 msgid "Resize" msgstr "Изменить размер" -#: src/supertux/menu/profile_menu.cpp:41 -#, c-format -msgid "[Profile %s]" -msgstr "[Учётная запись %s]" - -#: src/supertux/menu/profile_menu.cpp:45 -#, c-format -msgid "Profile %s" -msgstr "Учётная запись %s" - -#: src/supertux/menu/profile_menu.cpp:50 -msgid "Reset profile" -msgstr "Сбросить учётную запись" +#: src/supertux/menu/profile_menu.cpp:60 +msgid "No profiles found." +msgstr "Профили не обнаружены." + +#: src/supertux/menu/profile_menu.cpp:68 +#: src/supertux/menu/profile_menu.cpp:149 +#: src/supertux/menu/profile_menu.cpp:168 +#, c++-format +msgid "Profile {}" +msgstr "Профиль {}" + +#: src/supertux/menu/profile_menu.cpp:69 +#, c++-format +msgid "{} (Profile {})" +msgstr "{} (Профиль {})" + +#: src/supertux/menu/profile_menu.cpp:84 +msgid "No profile selected." +msgstr "Профили не выбраны." + +#: src/supertux/menu/profile_menu.cpp:91 src/supertux/menu/profile_menu.cpp:93 +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Rename" +msgstr "Переименовать" + +#: src/supertux/menu/profile_menu.cpp:98 +#: src/supertux/menu/profile_menu.cpp:100 +msgid "Reset" +msgstr "Сбросить" + +#: src/supertux/menu/profile_menu.cpp:103 +#: src/supertux/menu/profile_menu.cpp:105 +msgid "Reset all" +msgstr "Сбросить все" + +#: src/supertux/menu/profile_menu.cpp:113 +#: src/supertux/menu/profile_menu.cpp:115 +msgid "Delete all" +msgstr "Удалить все" + +#: src/supertux/menu/profile_menu.cpp:148 +#, c++-format +msgid "" +"This will reset all game progress on the profile \"{}\".\n" +"Are you sure?" +msgstr "Это сбросит весь игровой прогресс на профиле «{}».\nУверены?" -#: src/supertux/menu/profile_menu.cpp:51 -msgid "Reset all profiles" -msgstr "Сбросить все учётные записи" +#: src/supertux/menu/profile_menu.cpp:157 +msgid "This will reset your game progress on all profiles. Are you sure?" +msgstr "Это приведёт к сбросу Вашего игрового развития во всех учётных записях. Уверены?" -#: src/supertux/menu/profile_menu.cpp:67 -msgid "Deleting your profile will reset your game progress. Are you sure?" -msgstr "Удаление Вашей учётной записи приведёт к сбросу развития в игре. Вы уверены?" +#: src/supertux/menu/profile_menu.cpp:167 +#, c++-format +msgid "" +"This will delete the profile \"{}\",\n" +"including all game progress on it. Are you sure?" +msgstr "Это приведёт к удалению профиля «{}»,\nвключая весь игровой прогресс на нём. Уверены?" -#: src/supertux/menu/profile_menu.cpp:73 -msgid "This will reset your game progress on all profiles. Are you sure?" -msgstr "Это приведёт к сбросу Вашего игрового развития во всех учётных записях. Вы уверены?" +#: src/supertux/menu/profile_menu.cpp:178 +msgid "" +"This will delete all profiles, including all game progress on them.\n" +"Are you sure?" +msgstr "Это приведёт к удалению всех профилей, включая весь игровой прогресс в них.\nУверены?" -#: src/supertux/menu/editor_levelset_menu.cpp:59 +#: src/supertux/menu/editor_levelset_menu.cpp:53 #: src/supertux/menu/editor_new_levelset_menu.cpp:35 msgid "Description" msgstr "Описание" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:48 -#: data//images/engine/editor/objects.stoi:371 -msgid "Worldmap" -msgstr "Карта мира" +#: src/supertux/menu/editor_levelset_menu.cpp:55 +msgid "Title Screen Level" +msgstr "Уровень экрана заголовка" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:45 -msgid "Levelset" -msgstr "Набор уровней" +#: src/supertux/menu/editor_levelset_menu.cpp:56 +msgid "A level to be used for the title screen, after exiting the world." +msgstr "Уровень, который будет использоваться для титульного экрана после выхода из мира." -#: src/supertux/menu/addon_menu.cpp:51 -msgid "World" -msgstr "Мир" +#: src/supertux/menu/multiplayer_players_menu.cpp:46 +msgid "Add Player" +msgstr "Добавить игрока" -#: src/supertux/menu/addon_menu.cpp:54 -msgid "Add-on" -msgstr "Дополнение" +#: src/supertux/menu/multiplayer_players_menu.cpp:59 +msgid "Remove Last Player" +msgstr "Удалить последнего игрока" -#: src/supertux/menu/addon_menu.cpp:60 -msgid "Unknown" -msgstr "Неизвестно" +#: src/supertux/menu/multiplayer_players_menu.cpp:62 +msgid "" +"Warning: The player you are trying to\n" +"remove is currently in-game.\n" +"\n" +"Do you wish to remove them anyways?" +msgstr "Предупреждение: Игрок, которого вы пытаетесь\nудалить, находится в игре.\n\nХотите удалить его в любом случае?" -#: src/supertux/menu/addon_menu.cpp:71 -#, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s %s от %s" +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Language Packs" +msgstr "Установленные языковые пакеты" -#: src/supertux/menu/addon_menu.cpp:129 +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Add-ons" +msgstr "Установленные дополнения" + +#: src/supertux/menu/addon_menu.cpp:76 src/supertux/menu/addon_menu.cpp:117 +msgid "No language packs installed" +msgstr "Нет установленных языковых пакетов" + +#: src/supertux/menu/addon_menu.cpp:76 msgid "No Add-ons installed" msgstr "Нет установленных дополнений" -#: src/supertux/menu/addon_menu.cpp:133 -msgid "No Add-ons found" -msgstr "Дополнения не найдены" +#: src/supertux/menu/addon_menu.cpp:124 +#, c++-format +msgid "{} {}*UPDATE*" +msgstr "{} {}*ОБНОВЛЕНИЕ*" -#: src/supertux/menu/addon_menu.cpp:179 -#, c-format -msgid "Install %s *NEW*" -msgstr "Установить %s *НОВИНКА*" +#: src/supertux/menu/addon_menu.cpp:130 +#, c++-format +msgid "{}{}" +msgstr "{}{}" -#: src/supertux/menu/addon_menu.cpp:190 -#, c-format -msgid "Install %s" -msgstr "Установить %s" +#: src/supertux/menu/addon_menu.cpp:140 +msgid "No updates available." +msgstr "Обновлений нет." -#: src/supertux/menu/addon_menu.cpp:199 -msgid "No new Add-ons found" -msgstr "Новые дополнения не найдены" +#: src/supertux/menu/addon_menu.cpp:144 +#, c++-format +msgid "{} {} available" +msgstr "{} {} доступно" -#: src/supertux/menu/addon_menu.cpp:205 -msgid "Check Online (disabled)" -msgstr "Проверить в сети (отключено)" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "update" +msgstr "обновление" -#: src/supertux/menu/addon_menu.cpp:209 -msgid "Check Online" -msgstr "Проверить в сети" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "updates" +msgstr "обновления" -#: src/supertux/menu/addon_menu.cpp:286 -msgid "Downloading Add-On Repository Index" -msgstr "Загрузка индекса сетевого хранилища дополнений" +#: src/supertux/menu/addon_menu.cpp:146 +msgid "Check for updates" +msgstr "Проверить наличие обновлений" -#: src/supertux/menu/addon_menu.cpp:301 -#, c-format -msgid "Downloading %s" -msgstr "Загружается %s" +#: src/supertux/menu/addon_menu.cpp:150 +msgid "Browse language packs" +msgstr "Обзор языковых пакетов" -#: src/supertux/menu/addon_menu.cpp:348 -msgid "" -"Please restart SuperTux\n" -"for these changes to take effect." -msgstr "Для применения изменений\nперезапустите SuperTux." +#: src/supertux/menu/addon_menu.cpp:150 +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Add-ons" +msgstr "Обзор дополнений" + +#: src/supertux/menu/addon_menu.cpp:151 +msgid "Install from file" +msgstr "Установить из файла" + +#: src/supertux/menu/addon_menu.cpp:208 +msgid "Checking for updates..." +msgstr "Проверяются обновления…" #: src/supertux/menu/editor_new_levelset_menu.cpp:31 msgid "New World" @@ -2612,6 +3643,53 @@ msgstr "Пожалуйста, введите название этой подг msgid "Story Mode" msgstr "Режим истории" +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Language Packs" +msgstr "Обзор языковых пакетов" + +#: src/supertux/menu/addon_browse_menu.cpp:112 +#, c++-format +msgid "Page {}/{}" +msgstr "Страница {}/{}" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new language packs available" +msgstr "Новые языковые пакеты не доступны" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new Add-ons available" +msgstr "Новые дополнения не доступны" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No language packs available" +msgstr "Новые языковые пакеты не доступны" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No Add-ons available" +msgstr "Дополнения не доступны" + +#: src/supertux/menu/addon_browse_menu.cpp:135 +#: src/supertux/menu/addon_browse_menu.cpp:139 +msgid "Previous page" +msgstr "Предыдущая страница" + +#: src/supertux/menu/addon_browse_menu.cpp:143 +#: src/supertux/menu/addon_browse_menu.cpp:147 +msgid "Next page" +msgstr "Следующая страница" + +#: src/supertux/menu/addon_browse_menu.cpp:154 +msgid "Check Online (disabled)" +msgstr "Проверить в сети (отключено)" + +#: src/supertux/menu/addon_browse_menu.cpp:158 +msgid "Check Online" +msgstr "Проверить в сети" + +#: src/supertux/menu/addon_browse_menu.cpp:195 +msgid "Downloading Add-On Repository Index" +msgstr "Загрузка индекса сетевого хранилища дополнений" + #: src/supertux/menu/web_asset_menu.cpp:42 msgid "New files location" msgstr "Расположение новых файлов" @@ -2632,207 +3710,235 @@ msgstr "Подгрузить файл частицы" msgid "Open" msgstr "Открыть" -#: src/supertux/menu/game_menu.cpp:31 -msgid "Are you sure?" -msgstr "Вы уверены?" - -#: src/supertux/menu/game_menu.cpp:54 src/supertux/menu/worldmap_menu.cpp:30 +#: src/supertux/menu/game_menu.cpp:51 src/supertux/menu/worldmap_menu.cpp:30 msgid "Continue" msgstr "Продолжить" -#: src/supertux/menu/game_menu.cpp:55 +#: src/supertux/menu/game_menu.cpp:52 msgid "Restart Level" msgstr "Перезапуск уровня" -#: src/supertux/menu/game_menu.cpp:58 +#: src/supertux/menu/game_menu.cpp:55 msgid "Restart from Checkpoint" msgstr "Перезапуск с контрольной точки" -#: src/supertux/menu/game_menu.cpp:63 +#: src/supertux/menu/game_menu.cpp:60 msgid "Abort Level" msgstr "Покинуть уровень" -#: src/supertux/menu/keyboard_menu.cpp:32 -#: src/supertux/menu/joystick_menu.cpp:69 +#: src/supertux/menu/game_menu.cpp:76 src/supertux/menu/game_menu.cpp:87 +#: src/supertux/menu/game_menu.cpp:99 +msgid "Are you sure?" +msgstr "Уверены?" + +#: src/supertux/menu/profile_name_menu.cpp:36 +#, c++-format +msgid "Rename \"{}\"" +msgstr "Переименовать «{}»" + +#: src/supertux/menu/profile_name_menu.cpp:36 +msgid "Add profile" +msgstr "Добавить учётную запись" + +#: src/supertux/menu/profile_name_menu.cpp:40 +msgid "Profile names must have a maximum of 20 characters." +msgstr "Имена профилей должны быть не более 20 символов." + +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Create" +msgstr "Создать" + +#: src/supertux/menu/profile_name_menu.cpp:56 +msgid "" +"Profile names must have a maximum of 20 characters.\n" +"Please choose a different name." +msgstr "Имена профилей должны быть не более 20 символов.\nПожалуйста, выберите другое имя." + +#: src/supertux/menu/profile_name_menu.cpp:77 +msgid "An error occurred while creating the profile." +msgstr "При создании профиля возникла ошибка." + +#: src/supertux/menu/keyboard_menu.cpp:36 +#: src/supertux/menu/joystick_menu.cpp:71 msgid "Up" msgstr "Вверх" -#: src/supertux/menu/keyboard_menu.cpp:33 -#: src/supertux/menu/joystick_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:37 +#: src/supertux/menu/joystick_menu.cpp:72 msgid "Down" msgstr "Вниз" - -#: src/supertux/menu/keyboard_menu.cpp:36 -#: src/supertux/menu/joystick_menu.cpp:73 + +#: src/supertux/menu/keyboard_menu.cpp:40 +#: src/supertux/menu/joystick_menu.cpp:75 msgid "Jump" msgstr "Прыжок" -#: src/supertux/menu/keyboard_menu.cpp:38 -#: src/supertux/menu/joystick_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:43 +#: src/supertux/menu/joystick_menu.cpp:78 msgid "Peek Left" msgstr "Взгляд влево" -#: src/supertux/menu/keyboard_menu.cpp:39 -#: src/supertux/menu/joystick_menu.cpp:77 +#: src/supertux/menu/keyboard_menu.cpp:44 +#: src/supertux/menu/joystick_menu.cpp:79 msgid "Peek Right" msgstr "Взгляд вправо" -#: src/supertux/menu/keyboard_menu.cpp:40 -#: src/supertux/menu/joystick_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:45 +#: src/supertux/menu/joystick_menu.cpp:80 msgid "Peek Up" msgstr "Взгляд вверх" -#: src/supertux/menu/keyboard_menu.cpp:41 -#: src/supertux/menu/joystick_menu.cpp:79 +#: src/supertux/menu/keyboard_menu.cpp:46 +#: src/supertux/menu/joystick_menu.cpp:81 msgid "Peek Down" msgstr "Взгляд вниз" -#: src/supertux/menu/keyboard_menu.cpp:43 -#: src/supertux/menu/joystick_menu.cpp:81 +#: src/supertux/menu/keyboard_menu.cpp:51 +#: src/supertux/menu/joystick_menu.cpp:83 msgid "Console" msgstr "Консоль" -#: src/supertux/menu/keyboard_menu.cpp:44 -#: src/supertux/menu/joystick_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:52 +#: src/supertux/menu/joystick_menu.cpp:84 msgid "Cheat Menu" msgstr "Меню читов" -#: src/supertux/menu/keyboard_menu.cpp:45 -#: src/supertux/menu/joystick_menu.cpp:83 +#: src/supertux/menu/keyboard_menu.cpp:53 +#: src/supertux/menu/joystick_menu.cpp:85 msgid "Debug Menu" msgstr "Меню отладки" -#: src/supertux/menu/keyboard_menu.cpp:47 -#: src/supertux/menu/joystick_menu.cpp:85 +#: src/supertux/menu/keyboard_menu.cpp:56 +#: src/supertux/menu/joystick_menu.cpp:87 msgid "Jump with Up" msgstr "Прыжок = Вверх" -#: src/supertux/menu/keyboard_menu.cpp:60 +#: src/supertux/menu/keyboard_menu.cpp:82 msgid "Up cursor" msgstr "Стрелка вверх" -#: src/supertux/menu/keyboard_menu.cpp:62 +#: src/supertux/menu/keyboard_menu.cpp:84 msgid "Down cursor" msgstr "Стрелка вниз" -#: src/supertux/menu/keyboard_menu.cpp:64 +#: src/supertux/menu/keyboard_menu.cpp:86 msgid "Left cursor" msgstr "Стрелка влево" -#: src/supertux/menu/keyboard_menu.cpp:66 +#: src/supertux/menu/keyboard_menu.cpp:88 msgid "Right cursor" msgstr "Стрелка вправо" -#: src/supertux/menu/keyboard_menu.cpp:68 +#: src/supertux/menu/keyboard_menu.cpp:90 msgid "Return" msgstr "Ввод" -#: src/supertux/menu/keyboard_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:92 msgid "Space" msgstr "Пробел" -#: src/supertux/menu/keyboard_menu.cpp:72 +#: src/supertux/menu/keyboard_menu.cpp:94 msgid "Right Shift" msgstr "Правый Shift" -#: src/supertux/menu/keyboard_menu.cpp:74 +#: src/supertux/menu/keyboard_menu.cpp:96 msgid "Left Shift" msgstr "Левый Shift" -#: src/supertux/menu/keyboard_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:98 msgid "Right Control" msgstr "Правый Control" -#: src/supertux/menu/keyboard_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:100 msgid "Left Control" msgstr "Левый Control" -#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/keyboard_menu.cpp:102 msgid "Right Alt" msgstr "Правый Alt" -#: src/supertux/menu/keyboard_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:104 msgid "Left Alt" msgstr "Левый Alt" -#: src/supertux/menu/keyboard_menu.cpp:84 +#: src/supertux/menu/keyboard_menu.cpp:106 msgid "Right Command" msgstr "Правая клавиша" -#: src/supertux/menu/keyboard_menu.cpp:86 +#: src/supertux/menu/keyboard_menu.cpp:108 msgid "Left Command" msgstr "Левая клавиша" -#: src/supertux/menu/keyboard_menu.cpp:100 +#: src/supertux/menu/keyboard_menu.cpp:122 msgid "Press Key" msgstr "Нажмите клавишу" -#: src/supertux/menu/language_menu.cpp:40 +#: src/supertux/menu/language_menu.cpp:43 msgid "Language" msgstr "Язык" -#: src/supertux/menu/language_menu.cpp:42 +#: src/supertux/menu/language_menu.cpp:45 msgid "" msgstr "<автоопределение>" -#: src/supertux/menu/joystick_menu.cpp:55 +#: src/supertux/menu/joystick_menu.cpp:57 msgid "Manual Configuration" msgstr "Ручная конфигурация" -#: src/supertux/menu/joystick_menu.cpp:57 +#: src/supertux/menu/joystick_menu.cpp:59 msgid "" "Use manual configuration instead of SDL2's automatic GameController support" msgstr "Использовать свою конфигурацию контроллера вместо SDL2" -#: src/supertux/menu/joystick_menu.cpp:75 +#: src/supertux/menu/joystick_menu.cpp:77 msgid "Pause/Menu" msgstr "Пауза/Меню" -#: src/supertux/menu/joystick_menu.cpp:91 +#: src/supertux/menu/joystick_menu.cpp:93 msgid "No Joysticks found" msgstr "Контроллер не найден" -#: src/supertux/menu/joystick_menu.cpp:92 +#: src/supertux/menu/joystick_menu.cpp:94 msgid "Scan for Joysticks" msgstr "Найти контроллер" -#: src/supertux/menu/joystick_menu.cpp:125 +#: src/supertux/menu/joystick_menu.cpp:127 msgid "Press Button" msgstr "Нажмите кнопку" -#: src/supertux/menu/joystick_menu.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:164 msgid "Axis " msgstr "Ось" -#: src/supertux/menu/joystick_menu.cpp:165 +#: src/supertux/menu/joystick_menu.cpp:167 msgid "-" msgstr "-" -#: src/supertux/menu/joystick_menu.cpp:167 +#: src/supertux/menu/joystick_menu.cpp:169 msgid "+" msgstr "+" -#: src/supertux/menu/joystick_menu.cpp:174 +#: src/supertux/menu/joystick_menu.cpp:176 msgid "X2" msgstr "X2" -#: src/supertux/menu/joystick_menu.cpp:176 +#: src/supertux/menu/joystick_menu.cpp:178 msgid "Y2" msgstr "Y2" -#: src/supertux/menu/joystick_menu.cpp:189 +#: src/supertux/menu/joystick_menu.cpp:191 msgid "Hat Up" msgstr "Стик вверх" -#: src/supertux/menu/joystick_menu.cpp:193 +#: src/supertux/menu/joystick_menu.cpp:195 msgid "Hat Down" msgstr "Стик вниз" -#: src/supertux/menu/joystick_menu.cpp:197 +#: src/supertux/menu/joystick_menu.cpp:199 msgid "Hat Left" msgstr "Стик влево" -#: src/supertux/menu/joystick_menu.cpp:201 +#: src/supertux/menu/joystick_menu.cpp:203 msgid "Hat Right" msgstr "Стик вправо" @@ -2844,52 +3950,47 @@ msgstr "Пауза" msgid "Leave World" msgstr "Покинуть мир" -#: src/supertux/menu/download_dialog.cpp:27 +#: src/supertux/menu/download_dialog.cpp:42 msgid "Abort Download" msgstr "Отменить загрузку" -#: src/supertux/menu/download_dialog.cpp:42 -msgid "Error:\n" -msgstr "Ошибка:\n" - -#: src/supertux/menu/download_dialog.cpp:96 -msgid "Close" -msgstr "Закрыть" - -#: src/supertux/menu/cheat_menu.cpp:33 -msgid "Bonus: Fire x 64" -msgstr "Бонус: Огонь x 64" - -#: src/supertux/menu/cheat_menu.cpp:34 -msgid "Bonus: Ice x 64" -msgstr "Бонус: Лёд x 64" - -#: src/supertux/menu/cheat_menu.cpp:35 -msgid "Bonus: Air x 64" -msgstr "Бонус: Воздух x 64" - -#: src/supertux/menu/cheat_menu.cpp:36 -msgid "Bonus: Earth x 64" -msgstr "Бонус: Земля x 64" +#: src/supertux/menu/download_dialog.cpp:59 +#, c++-format +msgid "" +"Error:\n" +"{}" +msgstr "Ошибка:\n{}" -#: src/supertux/menu/cheat_menu.cpp:37 +#: src/supertux/menu/cheat_menu.cpp:38 msgid "Bonus: Star" msgstr "Бонус: Звезда" -#: src/supertux/menu/cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:39 msgid "Shrink Tux" msgstr "Уменьшить Такса" -#: src/supertux/menu/cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:40 msgid "Kill Tux" msgstr "Убить Такса" +#: src/supertux/menu/cheat_menu.cpp:55 +msgid "Prevent Death" +msgstr "Предотвратить смерть" + +#: src/supertux/menu/addon_file_install_menu.cpp:32 +msgid "Install Add-on from file" +msgstr "Установка дополнения из файла" + +#: src/supertux/menu/addon_file_install_menu.cpp:34 +msgid "Drag and drop add-on ZIP archive" +msgstr "Перетащите и добавьте ZIP-архив дополнения" + #: src/supertux/menu/particle_editor_menu.cpp:32 msgid "Particle Editor" msgstr "Редактор частиц" #: src/supertux/menu/particle_editor_menu.cpp:36 -#: src/supertux/menu/editor_menu.cpp:45 +#: src/supertux/menu/editor_menu.cpp:60 msgid "Return to Editor" msgstr "Вернуться в редактор" @@ -2914,7 +4015,7 @@ msgid "Open Particle Directory" msgstr "Открыть папку частиц" #: src/supertux/menu/particle_editor_menu.cpp:45 -#: src/supertux/menu/editor_menu.cpp:88 +#: src/supertux/menu/editor_menu.cpp:118 msgid "Keyboard Shortcuts" msgstr "Горячие клавиши" @@ -2922,7 +4023,7 @@ msgstr "Горячие клавиши" msgid "Exit Particle Editor" msgstr "Выйти из редактора частиц" -#: src/supertux/menu/particle_editor_menu.cpp:120 +#: src/supertux/menu/particle_editor_menu.cpp:121 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -2934,18 +4035,18 @@ msgid "" "Ctrl+Y = Redo" msgstr "Горячие клавиши:\n---------------------\nEsc = Открыть меню\nCtrl+S = Сохранить\nCtrl+Shift+S = Сохранить в\nCtrl+O = Открыть\nCtrl+Z = Отменить\nCtrl+Y = Повторить" -#: src/supertux/menu/particle_editor_menu.cpp:121 -#: src/supertux/menu/editor_menu.cpp:176 +#: src/supertux/menu/particle_editor_menu.cpp:122 +#: src/supertux/menu/editor_menu.cpp:206 msgid "Got it!" msgstr "Понятно!" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:86 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Worldmap Settings" msgstr "Настройки карты мира" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:86 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Level Settings" msgstr "Настройки уровня" @@ -2953,7 +4054,7 @@ msgstr "Настройки уровня" msgid "Author" msgstr "Автор" -#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1166 +#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1253 msgid "Contact" msgstr "Контакты" @@ -2971,7 +4072,7 @@ msgstr "Набор плиток" #: src/supertux/menu/editor_level_menu.cpp:41 msgid "Target Time" -msgstr "Заданное время" +msgstr "Целевое время" #: src/supertux/menu/editor_level_menu.cpp:83 msgid "Please enter a name for this level." @@ -2985,99 +4086,129 @@ msgstr "Пожалуйста, укажите автора этого уровн msgid "Please enter a license for this level." msgstr "Пожалуйста, укажите лицензию для этого уровня." -#: src/supertux/menu/editor_menu.cpp:38 +#: src/supertux/menu/editor_menu.cpp:53 msgid "tiny tile (4px)" msgstr "крошечная плитка (4px)" -#: src/supertux/menu/editor_menu.cpp:39 +#: src/supertux/menu/editor_menu.cpp:54 msgid "small tile (8px)" msgstr "маленькая плитка (8px)" -#: src/supertux/menu/editor_menu.cpp:40 +#: src/supertux/menu/editor_menu.cpp:55 msgid "medium tile (16px)" msgstr "средняя плитка (16px)" -#: src/supertux/menu/editor_menu.cpp:41 +#: src/supertux/menu/editor_menu.cpp:56 msgid "big tile (32px)" msgstr "большая плитка (32px)" -#: src/supertux/menu/editor_menu.cpp:46 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Worldmap" msgstr "Сохранить карту мира" -#: src/supertux/menu/editor_menu.cpp:46 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Level" msgstr "Сохранить уровень" -#: src/supertux/menu/editor_menu.cpp:55 +#: src/supertux/menu/editor_menu.cpp:65 msgid "Test Level" msgstr "Тест уровня" -#: src/supertux/menu/editor_menu.cpp:59 +#: src/supertux/menu/editor_menu.cpp:67 msgid "Test Worldmap" msgstr "Тест карты мира" -#: src/supertux/menu/editor_menu.cpp:62 +#: src/supertux/menu/editor_menu.cpp:72 msgid "Share Level" msgstr "Поделиться уровнем" -#: src/supertux/menu/editor_menu.cpp:64 +#: src/supertux/menu/editor_menu.cpp:74 msgid "Package Add-On" msgstr "Упаковать дополнение" -#: src/supertux/menu/editor_menu.cpp:66 +#: src/supertux/menu/editor_menu.cpp:76 msgid "Open Level Directory" msgstr "Открыть папку уровня" -#: src/supertux/menu/editor_menu.cpp:70 +#: src/supertux/menu/editor_menu.cpp:79 msgid "Edit Another Level" msgstr "Изменить другой уровень" -#: src/supertux/menu/editor_menu.cpp:73 +#: src/supertux/menu/editor_menu.cpp:81 msgid "Edit Another World" msgstr "Изменить другой мир" -#: src/supertux/menu/editor_menu.cpp:77 +#: src/supertux/menu/editor_menu.cpp:86 +msgid "Convert all tiles in the level using converters." +msgstr "Преобразовать все плитки в уровне с помощью конвертеров." + +#: src/supertux/menu/editor_menu.cpp:90 msgid "Grid Size" msgstr "Размер сетки" -#: src/supertux/menu/editor_menu.cpp:78 +#: src/supertux/menu/editor_menu.cpp:91 msgid "Show Grid" msgstr "Показать сетку" -#: src/supertux/menu/editor_menu.cpp:79 +#: src/supertux/menu/editor_menu.cpp:92 msgid "Grid Snapping" msgstr "Привязка к сетке" -#: src/supertux/menu/editor_menu.cpp:80 +#: src/supertux/menu/editor_menu.cpp:93 msgid "Render Background" msgstr "Отрисовать задний план" -#: src/supertux/menu/editor_menu.cpp:81 +#: src/supertux/menu/editor_menu.cpp:94 msgid "Render Light" msgstr "Отрисовать свет" -#: src/supertux/menu/editor_menu.cpp:82 +#: src/supertux/menu/editor_menu.cpp:95 msgid "Autotile Mode" msgstr "Режим автозаполнения" -#: src/supertux/menu/editor_menu.cpp:83 +#: src/supertux/menu/editor_menu.cpp:96 msgid "Enable Autotile Help" msgstr "Включить справку автозаполнения" -#: src/supertux/menu/editor_menu.cpp:84 +#: src/supertux/menu/editor_menu.cpp:97 +msgid "Enable Object Undo Tracking" +msgstr "Включить отслеживание отмены объекта" + +#: src/supertux/menu/editor_menu.cpp:100 +msgid "Undo Stack Size" +msgstr "Размер стека отмены" + +#: src/supertux/menu/editor_menu.cpp:102 msgid "Autosave Frequency" msgstr "Частота автосохранений" -#: src/supertux/menu/editor_menu.cpp:91 +#: src/supertux/menu/editor_menu.cpp:108 +msgid "Check for Deprecated Tiles" +msgstr "Проверить наличие устаревших плиток" + +#: src/supertux/menu/editor_menu.cpp:109 +msgid "Check if any deprecated tiles are currently present in the level." +msgstr "Проверить, присутствуют ли на уровне устаревшие плитки." + +#: src/supertux/menu/editor_menu.cpp:110 +msgid "Show Deprecated Tiles" +msgstr "Показать устаревшие плитки" + +#: src/supertux/menu/editor_menu.cpp:111 +msgid "" +"Indicate all deprecated tiles on the active tilemap, without the need of " +"hovering over." +msgstr "Показывает все устаревшие плитки на активной карте плиток без необходимости наведения курсора." + +#: src/supertux/menu/editor_menu.cpp:121 msgid "Exit Level Editor" msgstr "Выйти из редактора уровней" -#: src/supertux/menu/editor_menu.cpp:140 +#: src/supertux/menu/editor_menu.cpp:170 msgid "Do you want to package this world as an add-on?" msgstr "Хотите упаковать этот мир в качестве дополнения?" -#: src/supertux/menu/editor_menu.cpp:163 +#: src/supertux/menu/editor_menu.cpp:196 msgid "" "We encourage you to share your levels in the SuperTux forum.\n" "To find your level, click the\n" @@ -3085,7 +4216,7 @@ msgid "" "Do you want to go to the forum now?" msgstr "Мы рекомендуем вам поделиться своими уровнями на форуме SuperTux.\nЧтобы найти свой уровень, выберите\nпункт меню «Открыть выходной каталог».\nВы хотите перейти на форум прямо сейчас?" -#: src/supertux/menu/editor_menu.cpp:175 +#: src/supertux/menu/editor_menu.cpp:205 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -3096,54 +4227,217 @@ msgid "" "Ctrl+Y = Redo\n" "F6 = Render Light\n" "F7 = Grid Snapping\n" -"F8 = Show Grid" -msgstr "Горячие клавиши:\n---------------------\nEsc = Открыть меню\nCtrl+S = Сохранить\nCtrl+T = Тестировать\nCtrl+Z = Отмена\nCtrl+Y = Повтор\nF6 = Отрисовать свет\nF7 = Привязка к сетке\nF8 = Показать сетку" +"F8 = Show Grid\n" +"Ctrl++ or Ctrl+Scroll Up = Zoom In\n" +"Ctrl+- or Ctrl+Scroll Down = Zoom Out\n" +"Ctrl+D = Reset Zoom\n" +"\n" +"Scripting Shortcuts:\n" +" ------------- \n" +"Home = Go to beginning of line\n" +"End = Go to end of line\n" +"Left arrow = Go back in text\n" +"Right arrow = Go forward in text\n" +"Backspace = Delete in front of text cursor\n" +"Delete = Delete behind text cursor\n" +"Ctrl+X = Cut whole line\n" +"Ctrl+C = Copy whole line\n" +"Ctrl+V = Paste\n" +"Ctrl+D = Duplicate line\n" +"Ctrl+Z = Undo\n" +"Ctrl+Y = Redo" +msgstr "Сочетания клавиш:\n---------------------\nEsc = Открыть меню\nCtrl+S = Сохранить\nCtrl+T = Проверить\nCtrl+Z = Отменить\nCtrl+Y = Повторить\nF6 = Отрисовать свет\nF7 = Привязка к сетке\nF8 = Показать сетку\nCtrl++ или Ctrl+Scroll Up = Увеличить масштаб\nCtrl+- или Ctrl+прокрутка вниз = Уменьшить масштаб\nCtrl+D = Сбросить масштаб\n\nКлавиши сценариев:\n------------- \nHome = Перейти к началу строки\nКонец = Перейти к концу строки\nСтрелка влево = вернуться назад по тексту\nСтрелка вправо = перейти вперёд по тексту\nBackspace = Удалить перед текстовым курсором\nDelete = Удалить за текстовым курсором\nCtrl+X = Вырезать всю строку\nCtrl+C = Копировать всю строку\nCtrl+V = Вставить\nCtrl+D = Дублировать строку\nCtrl+Z = Отменить\nCtrl+Y = Повторить" + +#: src/supertux/menu/editor_menu.cpp:232 +msgid "Deprecated tiles are still present in the level." +msgstr "Устаревшие плитки всё ещё представлены в этом уровне." + +#: src/supertux/menu/editor_menu.cpp:239 +msgid "Do you want to show all deprecated tiles on active tilemaps?" +msgstr "Хотите показывать все устаревшие плитки на активных картах плиток?" + +#: src/supertux/menu/editor_menu.cpp:246 +msgid "There are no more deprecated tiles in the level!" +msgstr "В уровне больше нет устаревших плиток!" + +#: src/supertux/menu/multiplayer_player_menu.cpp:40 +msgid "Play with the keyboard" +msgstr "Играть с клавиатурой" + +#: src/supertux/menu/multiplayer_player_menu.cpp:58 +msgid "Remove Player" +msgstr "Удалить игрока" + +#: src/supertux/menu/multiplayer_player_menu.cpp:82 +msgid "Respawn Player" +msgstr "Возродить игрока" + +#: src/supertux/menu/multiplayer_player_menu.cpp:108 +msgid "Spawn Player" +msgstr "Породить игрока" + +#: src/supertux/menu/multiplayer_player_menu.cpp:136 +msgid "Controllers" +msgstr "Контроллеры" + +#: src/supertux/menu/multiplayer_player_menu.cpp:152 +msgid "" +"This controller does not support rumbling;\n" +"please check the controllers manually." +msgstr "Этот контроллер не поддерживает вибрацию;\nпожалуйста, проверьте контроллеры вручную." + +#: src/supertux/menu/multiplayer_player_menu.cpp:157 +msgid "" +"This SuperTux build does not support rumbling\n" +"controllers; please check the controllers manually." +msgstr "Эта сборка SuperTux не поддерживает вибрацию\nконтроллеров; пожалуйста, проверьте контроллеры вручную." + +#: src/supertux/menu/multiplayer_player_menu.cpp:184 +msgid "" +"This joystick does not support rumbling;\n" +"please check the joysticks manually." +msgstr "Этот джойстик не поддерживает вибрацию;\nпожалуйста, проверьте джойстики вручную." + +#: src/supertux/menu/multiplayer_player_menu.cpp:189 +msgid "" +"This SuperTux build does not support rumbling\n" +"joysticks; please check the joysticks manually." +msgstr "Эта сборка SuperTux не поддерживает вибрацию\nджойстиков; пожалуйста, проверьте джойстики вручную." + +#: src/supertux/menu/editor_delete_level_menu.cpp:59 +msgid "No levels available" +msgstr "Уровни не доступны" -#: src/supertux/menu/editor_delete_level_menu.cpp:53 -msgid "You cannot delete level that you are editing!" +#: src/supertux/menu/editor_delete_level_menu.cpp:79 +msgid "You cannot delete the level that you are editing!" msgstr "Нельзя удалить уровень, который вы редактируете!" -#: src/supertux/levelintro.cpp:136 -#, c-format -msgid "contributed by %s" -msgstr "автор: %s" +#: src/supertux/menu/editor_delete_level_menu.cpp:82 +#, c++-format +msgid "You are about to delete level \"{}\". Are you sure?" +msgstr "Вы собираетесь удалить уровень «{}». Уверены?" -#: src/supertux/levelintro.cpp:169 +#: src/supertux/levelintro.cpp:137 +#, c++-format +msgid "contributed by {}" +msgstr "представлено {}" + +#: src/supertux/levelintro.cpp:184 msgid "Badguys killed" msgstr "Убито плохишей" -#: src/supertux/levelintro.cpp:177 +#: src/supertux/levelintro.cpp:192 msgid "Best time" msgstr "Лучшее время" -#: src/supertux/levelintro.cpp:181 +#: src/supertux/levelintro.cpp:196 msgid "Level target time" -msgstr "Заданное время уровня" +msgstr "Целевое время уровня" -#: src/supertux/tile_set.cpp:118 +#: src/supertux/tile_set.cpp:113 msgid "Others" msgstr "Другие" -#: src/supertux/moving_object.cpp:55 +#: src/supertux/direction.cpp:67 +msgid "up" +msgstr "верх" + +#: src/supertux/direction.cpp:69 +msgid "down" +msgstr "низ" + +#: src/supertux/moving_object.cpp:63 msgid "Region" msgstr "Регион" -#: src/supertux/main.cpp:563 +#: src/supertux/main.cpp:801 +#, c++-format +msgid "New release: SuperTux v{}!" +msgstr "Новый выпуск: SuperTux v{}!" + +#: src/supertux/main.cpp:804 +#, c++-format msgid "" -"The UBports version is under heavy development!\n" -"If you encounter issues, PLEASE contact the maintainter\n" -"at https://github.com/supertux/supertux/issues or on the\n" -"Open Store's Telegram at https://open-store.io/telegram" -msgstr "Версия для Ubuntu Touch находится в разработке!\nЕсли у вас возникнут вопросы, ПОЖАЛУЙСТА, свяжитесь с\nсопровождающим через https://github.com/supertux/supertux/issues\nили в Телеграме Open Store: https://open-store.io/telegram" +"A new release of SuperTux (v{}) is available!\n" +"For more information, you can visit the SuperTux website.\n" +"\n" +"Do you want to visit the website now?" +msgstr "Вышла новая версия SuperTux (v{})!\nДля подробностей вы можете посетить веб-сайт SuperTux.\n\nХотите посетить сайт прямо сейчас?" + +#: src/supertux/main.cpp:815 +msgid "Checking for new releases..." +msgstr "Поиск новых версий…" #: src/control/joystick_config.cpp:85 msgid "Joystick Mappings" msgstr "Функции контроллера" -#: src/worldmap/worldmap_parser.cpp:167 +#: src/worldmap/sprite_change.cpp:91 +msgid "Stay action" +msgstr "Действие при остановке" + +#: src/worldmap/sprite_change.cpp:92 +msgid "Initial stay action" +msgstr "Начальное действие при остановке" + +#: src/worldmap/sprite_change.cpp:93 +msgid "Stay group" +msgstr "Группа остановки" + +#: src/worldmap/sprite_change.cpp:94 +msgid "Change on touch" +msgstr "Сменить при контакте" + +#: src/worldmap/special_tile.hpp:36 +msgid "Special Tile" +msgstr "Особенная плитка" + +#: src/worldmap/level_tile.hpp:36 src/worldmap/level_tile.cpp:161 +msgid "Level" +msgstr "Уровень" + +#: src/worldmap/teleporter.cpp:50 +msgid "Automatic" +msgstr "Автоматический" + +#: src/worldmap/teleporter.cpp:51 +msgid "Target worldmap" +msgstr "Целевая карта мира" + +#: src/worldmap/sprite_change.hpp:35 +msgid "Sprite Change" +msgstr "Смена спрайта" + +#: src/worldmap/special_tile.cpp:75 +msgid "Show message" +msgstr "Показать сообщение" + +#: src/worldmap/level_tile.cpp:84 msgid "" msgstr "<нет заголовка>" +#: src/worldmap/level_tile.cpp:162 +msgid "Outro script" +msgstr "Сценарий концовки" + +#: src/worldmap/level_tile.cpp:163 +msgid "Auto play" +msgstr "Автовоспроизведение" + +#: src/worldmap/level_tile.cpp:164 +msgid "Title colour" +msgstr "Цвет заголовка" + +#: src/worldmap/teleporter.hpp:34 +msgid "Teleporter" +msgstr "Телепорт" + +#: src/editor/tip.cpp:80 +msgid "" +"This object's current functionality is deprecated.\n" +"Updating to get its latest functionality is recommended." +msgstr "Текущая функциональность этого объекта устарела.\nРекомендуется обновить его, чтобы работы последней функциональности." + #: src/editor/node_marker.cpp:122 msgid "Path Node" msgstr "Узел пути" @@ -3156,85 +4450,82 @@ msgstr "Нажмите CTRL, чтобы переместить маркеры Б msgid "Easing" msgstr "Облегчение" -#: src/editor/object_settings.cpp:119 -msgid "up" -msgstr "верх" - -#: src/editor/object_settings.cpp:119 -msgid "down" -msgstr "низ" - -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "West" msgstr "Запад" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "East" msgstr "Восток" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "North" msgstr "Север" -#: src/editor/object_settings.cpp:131 +#: src/editor/object_settings.cpp:129 msgid "South" msgstr "Юг" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "One shot" msgstr "Один выстрел" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "Ping-pong" msgstr "Пинг-понг" -#: src/editor/object_settings.cpp:144 +#: src/editor/object_settings.cpp:142 msgid "Circular" msgstr "Круговой" -#: src/editor/object_settings.cpp:144 -msgid "Unordered" -msgstr "Неупорядоченный" +#: src/editor/layers_widget.cpp:331 +#, c++-format +msgid "Sector: {}" +msgstr "Сектор: {}" -#: src/editor/object_option.cpp:85 +#: src/editor/object_option.cpp:92 msgid "true" msgstr "истина" -#: src/editor/object_option.cpp:85 +#: src/editor/object_option.cpp:92 msgid "false" msgstr "ложь" -#: src/editor/object_option.cpp:271 src/editor/object_option.cpp:320 +#: src/editor/object_option.cpp:308 src/editor/object_option.cpp:356 msgid "invalid" msgstr "недопустимый" -#: src/editor/object_option.cpp:580 +#: src/editor/object_option.cpp:665 +msgid "Scale X" +msgstr "Масштаб X" + +#: src/editor/object_option.cpp:666 +msgid "Scale Y" +msgstr "Масштаб Y" + +#: src/editor/object_option.cpp:667 +msgid "Offset X" +msgstr "Смещение по X" + +#: src/editor/object_option.cpp:668 +msgid "Offset Y" +msgstr "Смещение по Y" + +#: src/editor/object_option.cpp:672 src/editor/object_menu.cpp:67 msgid "Remove" msgstr "Убрать" -#: src/editor/object_option.cpp:597 +#: src/editor/object_option.cpp:689 msgid "Test from here" msgstr "Протестировать отсюда" -#: src/editor/object_option.cpp:614 +#: src/editor/object_option.cpp:706 msgid "Open Particle Editor" msgstr "Открыть редактор частиц" -#: src/editor/worldmap_objects.hpp:56 src/editor/worldmap_objects.cpp:127 -msgid "Level" -msgstr "Уровень" - -#: src/editor/worldmap_objects.hpp:79 -msgid "Teleporter" -msgstr "Телепорт" - -#: src/editor/worldmap_objects.hpp:119 -msgid "Sprite Change" -msgstr "Смена спрайта" - -#: src/editor/worldmap_objects.hpp:140 -msgid "Special tile" -msgstr "Специальная плитка" +#: src/editor/particle_editor.cpp:114 +msgid "Change texture... ->" +msgstr "Сменить текстуру… ->" #: src/editor/particle_editor.cpp:126 msgid "Max amount" @@ -3316,17 +4607,60 @@ msgstr "Всегда разрушать" msgid "Offscreen mode" msgstr "Внеэкранный режим" -#: src/editor/particle_editor.cpp:765 +#: src/editor/particle_editor.cpp:229 +msgid "Clear" +msgstr "Очистить" + +#: src/editor/particle_editor.cpp:245 +msgid "<- General settings" +msgstr "<- Общие настройки" + +#: src/editor/particle_editor.cpp:255 +msgid "Likeliness" +msgstr "Сходство" + +#: src/editor/particle_editor.cpp:266 +msgid "Color (RGBA)" +msgstr "Цвет (RGBA)" + +#: src/editor/particle_editor.cpp:311 +msgid "Scale (x, y)" +msgstr "Масштаб (x, y)" + +#: src/editor/particle_editor.cpp:332 +msgid "Hitbox scale (x, y)" +msgstr "Масштаб хитбокса (x, y)" + +#: src/editor/particle_editor.cpp:353 +msgid "Hitbox offset relative to scale" +msgstr "Смещение хитбокса относительно масштаба" + +#: src/editor/particle_editor.cpp:372 +msgid "Change texture..." +msgstr "Сменить текстуру…" + +#: src/editor/particle_editor.cpp:766 msgid "" "This particle configuration contains unsaved changes,\n" "do you want to save?" msgstr "Эта конфигурация частицы содержит несохранённые\nизменения, хотите сохранить?" -#: src/editor/particle_editor.cpp:773 +#: src/editor/particle_editor.cpp:774 msgid "Save as" msgstr "Сохранить в" -#: src/editor/editor.cpp:566 +#: src/editor/editor.cpp:577 +msgid "" +"This level contains deprecated tiles.\n" +"It is strongly recommended to replace all deprecated tiles\n" +"to avoid loss of compatibility in future versions." +msgstr "Этот уровень содержит устаревшие плитки.\nНастоятельно рекомендуется заменить все устаревшие плитки,\nчтобы избежать потери совместимости в будущих версиях." + +#: src/editor/editor.cpp:579 +msgid "Tip: Turn on \"Show Deprecated Tiles\" from the level editor menu." +msgstr "Совет: включите «Показывать устаревшие плитки» в меню редактора уровней." + +#: src/editor/editor.cpp:626 msgid "" "Don't forget that your levels and assets\n" "aren't saved between sessions!\n" @@ -3334,11 +4668,15 @@ msgid "" "from the \"Manage Assets\" menu." msgstr "Не забывайте, что ваши уровни и наборы\nне сохраняются между сессиями!\nЕсли вы хотите сохранить свои уровни, загрузите\nих из меню «Управление наборами»." -#: src/editor/editor.cpp:582 +#: src/editor/editor.cpp:661 msgid "This level contains unsaved changes, do you want to save?" msgstr "Уровень содержит несохранённые изменения, хотите сохранить?" -#: src/editor/editor.cpp:622 +#: src/editor/editor.cpp:662 +msgid "This level may contain unsaved changes, do you want to save?" +msgstr "Этот уровень содержит несохранённые изменения, хотите сохранить?" + +#: src/editor/editor.cpp:797 msgid "" "Some obsolete add-ons are still active\n" "and might cause collisions with default Super Tux structure.\n" @@ -3346,93 +4684,71 @@ msgid "" "Disabling these add-ons will not delete your game progress." msgstr "Некоторые устаревшие дополнения\nвсё ещё активны и могут создавать проблемы в текущей структуре игры.\nВы всё ещё можете включить их из меню.\nОтключение этих дополнений не повлияет на игровое развитие." -#: src/editor/editor.cpp:625 +#: src/editor/editor.cpp:800 msgid "Disable add-ons" msgstr "Отключить дополнения" -#: src/editor/editor.cpp:630 +#: src/editor/editor.cpp:805 msgid "Ignore (not advised)" msgstr "Игнорировать (не рекомендуется)" -#: src/editor/editor.cpp:634 +#: src/editor/editor.cpp:809 msgid "Leave editor" msgstr "Выйти из редактора" -#: src/editor/editor.cpp:853 +#: src/editor/editor.cpp:1023 msgid "" "Couldn't find a \"main\" sector.\n" "Please change the name of the sector where\n" "you'd like the player to start to \"main\"" -msgstr "Не удалось найти сектор \"main\".\nПожалуйста, измените название стартового\nсектора игрока на \"main\"" +msgstr "Не удалось найти сектор «main».\nПожалуйста, измените название стартового\nсектора игрока на «main»" -#: src/editor/editor.cpp:857 +#: src/editor/editor.cpp:1027 msgid "" "Couldn't find a \"main\" spawnpoint.\n" " Please change the name of the spawnpoint where\n" "you'd like the player to start to \"main\"" -msgstr "Не удалось найти точку возрождения \"main\".\nПожалуйста, измените название\nстартовой точки игрока на \"main\"" - -#: src/editor/worldmap_objects.cpp:128 -msgid "Outro script" -msgstr "Сценарий концовки" - -#: src/editor/worldmap_objects.cpp:129 -msgid "Auto play" -msgstr "Автовоспроизведение" - -#: src/editor/worldmap_objects.cpp:131 -msgid "Title colour" -msgstr "Цвет заголовка" - -#: src/editor/worldmap_objects.cpp:173 -msgid "Automatic" -msgstr "Автоматический" - -#: src/editor/worldmap_objects.cpp:175 -msgid "Target worldmap" -msgstr "Целевая карта мира" - -#: src/editor/worldmap_objects.cpp:238 -msgid "Stay action" -msgstr "Действие при остановке" - -#: src/editor/worldmap_objects.cpp:239 -msgid "Initial stay action" -msgstr "Начальное действие при остановке" +msgstr "Не удалось найти точку возрождения «main».\n Пожалуйста, смените название\nстартовой точки игрока на «main»" -#: src/editor/worldmap_objects.cpp:240 -msgid "Stay group" -msgstr "Группа остановки" - -#: src/editor/worldmap_objects.cpp:241 -msgid "Change on touch" -msgstr "Сменить при контакте" - -#: src/editor/worldmap_objects.cpp:271 -msgid "Show message" -msgstr "Показать сообщение" +#: src/editor/object_menu.cpp:60 +msgid "Patch Notes" +msgstr "Примечания к выпуску" -#: src/editor/worldmap_objects.cpp:273 -msgid "Invisible" -msgstr "Невидимость" - -#: src/editor/overlay_widget.cpp:1297 +#: src/editor/object_menu.cpp:84 +msgid "" +"This will update the object to its latest functionality.\n" +"Check the \"Patch Notes\" for more information.\n" +"\n" +"Keep in mind this is very likely to break the proper behaviour of the object.\n" +"Make sure to re-check any behaviour, related to the object." +msgstr "Это позволит обновить объект до последней версии.\nПодробности можно найти в «Примечаниях к выпуску».\n\nИмейте в виду, что это, скорее всего, нарушит правильное поведение объекта.\nОбязательно перепроверьте любое поведение, связанное с объектом." + +#: src/editor/object_menu.cpp:98 +#, c++-format +msgid "Patch notes for v{}:" +msgstr "Примечания к выпуску v{}:" + +#: src/editor/overlay_widget.cpp:1062 +msgid "Cannot select deprecated tiles" +msgstr "Невозможно выбрать устаревшие плитки" + +#: src/editor/overlay_widget.cpp:1567 msgid "Autotile mode is on" msgstr "Режим автозаполнения включён" -#: src/editor/overlay_widget.cpp:1299 +#: src/editor/overlay_widget.cpp:1571 msgid "Hold Ctrl to enable autotile" msgstr "Держите Ctrl, чтобы включить автозаполнение" -#: src/editor/overlay_widget.cpp:1303 +#: src/editor/overlay_widget.cpp:1578 msgid "Autotile erasing mode is on" msgstr "Режим стирания с автозаполнением включён" -#: src/editor/overlay_widget.cpp:1305 +#: src/editor/overlay_widget.cpp:1582 msgid "Selected tile isn't autotileable" msgstr "Выбранная плитка недоступна для автозаполнения" -#: src/editor/overlay_widget.cpp:1308 +#: src/editor/overlay_widget.cpp:1587 msgid "Hold Ctrl to enable autotile erasing" msgstr "Держите Ctrl, чтобы включить стирание с автозаполнением" @@ -3441,8 +4757,8 @@ msgid "Current SuperTux Team" msgstr "Текущая команда SuperTux" #: data//credits.stxt:30 -msgid "Programming, project lead ad interim" -msgstr "Программирование, временный лидер проекта " +msgid "Maintainer, Programming" +msgstr "Куратор, программист" #: data//credits.stxt:35 msgid "Graphics, Level Design, Story" @@ -3452,12 +4768,12 @@ msgstr "Графика, дизайн уровней, история" msgid "Level Design, Story, Optimisation, Coordination" msgstr "Дизайн уровней, сюжет, оптимизация, координация" -#: data//credits.stxt:45 data//credits.stxt:105 data//credits.stxt:191 -#: data//credits.stxt:519 +#: data//credits.stxt:45 data//credits.stxt:120 data//credits.stxt:206 +#: data//credits.stxt:538 msgid "Graphics" msgstr "Графика" -#: data//credits.stxt:50 data//credits.stxt:87 data//credits.stxt:93 +#: data//credits.stxt:50 data//credits.stxt:102 data//credits.stxt:108 msgid "Graphics, Programming, Level Design" msgstr "Графика, программирование, дизайн уровней" @@ -3466,256 +4782,266 @@ msgid "Features and Programming" msgstr "Функции и программирование" #: data//credits.stxt:60 +msgid "Minor features and programming" +msgstr "Незначительные функции и программирование" + +#: data//credits.stxt:65 msgid "Programming, Level Updates" msgstr "Программирование, обновления уровней" -#: data//credits.stxt:65 +#: data//credits.stxt:70 msgid "Graphics, Programming" msgstr "Графика, программирование" -#: data//credits.stxt:70 data//credits.stxt:135 data//credits.stxt:140 -#: data//credits.stxt:145 data//credits.stxt:150 data//credits.stxt:165 -#: data//credits.stxt:170 data//credits.stxt:515 data//credits.stxt:527 +#: data//credits.stxt:75 data//credits.stxt:85 data//credits.stxt:150 +#: data//credits.stxt:155 data//credits.stxt:160 data//credits.stxt:165 +#: data//credits.stxt:180 data//credits.stxt:185 data//credits.stxt:534 +#: data//credits.stxt:546 msgid "Programming" msgstr "Программирование" -#: data//credits.stxt:76 +#: data//credits.stxt:80 data//credits.stxt:266 +msgid "Level Design" +msgstr "Дизайн уровней" + +#: data//credits.stxt:91 msgid "Original Developers" msgstr "Изначальные разработчики" -#: data//credits.stxt:81 +#: data//credits.stxt:96 msgid "Original Developer" msgstr "Изначальный разработчик" -#: data//credits.stxt:99 +#: data//credits.stxt:114 msgid "Music, Level Design" msgstr "Музыка, дизайн уровней" -#: data//credits.stxt:111 +#: data//credits.stxt:126 msgid "Programming, Graphics, Level Design" msgstr "Программирование, графика, дизайн уровней" -#: data//credits.stxt:117 +#: data//credits.stxt:132 msgid "Programming, Level Design" msgstr "Программирование, дизайн уровней" -#: data//credits.stxt:123 +#: data//credits.stxt:138 msgid "Graphics, Story" msgstr "Графика, история" -#: data//credits.stxt:129 +#: data//credits.stxt:144 msgid "Programming, Documentation" msgstr "Программирование, Документация" -#: data//credits.stxt:155 +#: data//credits.stxt:170 msgid "Coordination" msgstr "Координация" -#: data//credits.stxt:160 +#: data//credits.stxt:175 msgid "Programming, \"Flexlay\" Level editor" -msgstr "Программирование, редактор уровней \"Flexlay\"" +msgstr "Программирование, редактор уровней «Flexlay»" -#: data//credits.stxt:175 +#: data//credits.stxt:190 msgid "Windows build fixes" msgstr "Исправления сборок для Windows" -#: data//credits.stxt:180 +#: data//credits.stxt:195 msgid "Packaging, Nightly builds" msgstr "Подготовка пакетов, ночные сборки" -#: data//credits.stxt:185 +#: data//credits.stxt:200 msgid "Translation Guru (and many details anyone else could have done)" msgstr "Гуру перевода (и другие мелочи, которыми мог заняться кто угодно)" -#: data//credits.stxt:251 -msgid "Level Design" -msgstr "Дизайн уровней" - -#: data//credits.stxt:431 +#: data//credits.stxt:450 msgid "Additional contributors" msgstr "Дополнительные участники" -#: data//credits.stxt:436 +#: data//credits.stxt:455 msgid "Bug fixes" msgstr "Исправления ошибок" -#: data//credits.stxt:440 +#: data//credits.stxt:459 msgid "Scripting functions, Level fixes" msgstr "Скриптовые функции, исправления уровней" -#: data//credits.stxt:444 +#: data//credits.stxt:463 msgid "Code quality fixes" msgstr "Исправление качества кода" -#: data//credits.stxt:448 data//credits.stxt:452 data//credits.stxt:456 -#: data//credits.stxt:483 +#: data//credits.stxt:467 data//credits.stxt:471 data//credits.stxt:475 +#: data//credits.stxt:502 msgid "Various contributions" msgstr "Различные вклады" -#: data//credits.stxt:460 +#: data//credits.stxt:479 msgid "Build issue fix" msgstr "Исправление ошибки сборки" -#: data//credits.stxt:464 data//credits.stxt:468 +#: data//credits.stxt:483 data//credits.stxt:487 msgid "Code contributions" msgstr "Помощь в разработке" -#: data//credits.stxt:471 +#: data//credits.stxt:490 msgid "Code contribution, AppData file" msgstr "Помощь в разработке, файл AppData" -#: data//credits.stxt:475 +#: data//credits.stxt:494 msgid "Bug fix" msgstr "Исправление ошибок" -#: data//credits.stxt:479 +#: data//credits.stxt:498 msgid "Menu reorganization" msgstr "Реорганизация меню" -#: data//credits.stxt:487 +#: data//credits.stxt:506 msgid "Fixing tile bugs" msgstr "Исправление ошибок плиток" -#: data//credits.stxt:491 +#: data//credits.stxt:510 msgid "Build error fix" msgstr "Исправление ошибки при сборке" -#: data//credits.stxt:495 +#: data//credits.stxt:514 msgid "Scripting function fix" msgstr "Исправление скриптовых функций" -#: data//credits.stxt:499 +#: data//credits.stxt:518 msgid "New features and notable updates" msgstr "Новые функции и заметные обновления" -#: data//credits.stxt:503 +#: data//credits.stxt:522 msgid "Support for \"glbinding\" as optional OpenGL binding" -msgstr "Поддержка \"glbinding\" в качестве дополнительной привязки OpenGL" +msgstr "Поддержка «glbinding» в качестве дополнительной привязки OpenGL" -#: data//credits.stxt:507 +#: data//credits.stxt:526 msgid "New menu code" msgstr "Новый код меню" -#: data//credits.stxt:511 +#: data//credits.stxt:530 msgid "Big Tux Walking Sprites improvements" msgstr "Улучшения спрайтов хождения большого Такса" -#: data//credits.stxt:523 data//credits.stxt:531 +#: data//credits.stxt:542 data//credits.stxt:550 msgid "Contrib Programming" msgstr "Программирование дополнений" -#: data//credits.stxt:535 +#: data//credits.stxt:554 msgid "Programming, Previous Maintainer" msgstr "Программирование, прошлый координатор" -#: data//credits.stxt:539 +#: data//credits.stxt:558 msgid "Various Contributions" msgstr "Различная помощь" -#: data//credits.stxt:543 -msgid "Minor features and programming" -msgstr "Незначительные функции и программирование" - -#: data//credits.stxt:547 data//credits.stxt:551 data//credits.stxt:555 -#: data//credits.stxt:559 data//credits.stxt:563 data//credits.stxt:567 -#: data//credits.stxt:571 data//credits.stxt:575 data//credits.stxt:579 -#: data//credits.stxt:583 data//credits.stxt:587 data//credits.stxt:591 +#: data//credits.stxt:562 data//credits.stxt:566 data//credits.stxt:570 +#: data//credits.stxt:574 data//credits.stxt:578 data//credits.stxt:582 +#: data//credits.stxt:586 data//credits.stxt:590 data//credits.stxt:594 +#: data//credits.stxt:598 data//credits.stxt:602 data//credits.stxt:606 +#: data//credits.stxt:610 data//credits.stxt:614 data//credits.stxt:618 +#: data//credits.stxt:622 data//credits.stxt:626 data//credits.stxt:630 +#: data//credits.stxt:634 data//credits.stxt:638 data//credits.stxt:642 +#: data//credits.stxt:646 data//credits.stxt:650 data//credits.stxt:654 +#: data//credits.stxt:658 data//credits.stxt:662 msgid "Contributions" msgstr "Участие" -#: data//credits.stxt:597 +#: data//credits.stxt:668 msgid "Localization" msgstr "Локализация" -#: data//credits.stxt:1144 +#: data//credits.stxt:1231 msgid " Special Thanks to" msgstr "Отдельная благодарность" -#: data//credits.stxt:1149 +#: data//credits.stxt:1236 msgid "Creator of Tux, the Linux penguin" msgstr "Создатель Такса, пингвина талисмана Linux`а" -#: data//credits.stxt:1153 +#: data//credits.stxt:1240 msgid "SDL, OpenAL and OpenGL" msgstr "SDL, OpenAL и OpenGL" -#: data//credits.stxt:1154 +#: data//credits.stxt:1241 msgid "" "For making such a great gaming experience\n" " possible on Linux" msgstr "За помощь в создании прекрасной игры\n для Линукса" -#: data//credits.stxt:1159 +#: data//credits.stxt:1246 msgid "and you, the player" msgstr "и тебе, игрок," -#: data//credits.stxt:1160 +#: data//credits.stxt:1247 msgid "for giving this game a chance and playing it" msgstr "за то, что попробовал эту игру." -#: data//credits.stxt:1171 +#: data//credits.stxt:1258 msgid "Visit our webpage at" msgstr "Посетите нашу страницу на" -#: data//credits.stxt:1180 +#: data//credits.stxt:1267 msgid "Or visit us directly at IRC:" msgstr "Или непосредственно по IRC:" -#: data//credits.stxt:1184 +#: data//credits.stxt:1271 msgid "#supertux at web.libera.chat" msgstr "#supertux в web.libera.chat" -#: data//credits.stxt:1189 +#: data//credits.stxt:1276 msgid "Or at our Forum:" msgstr "Или на нашем Форуме:" -#: data//credits.stxt:1198 +#: data//credits.stxt:1285 msgid "Comments, ideas and suggestions" msgstr "Комментарии, идеи и предложения" -#: data//credits.stxt:1202 +#: data//credits.stxt:1289 msgid "go to our mailing list" msgstr "направляйте в наш список рассылки" #. l10n: typo contact -#: data//credits.stxt:1212 +#: data//credits.stxt:1299 msgid "Typographical errors can be" msgstr "Типографские ошибки можно" #. l10n: typo contact -#: data//credits.stxt:1217 +#: data//credits.stxt:1304 msgid "reported to" msgstr "сообщить" #. l10n: typo contact, see -#: data//credits.stxt:1222 +#: data//credits.stxt:1309 msgid "supertux-devel@lists.lethargik.org" msgstr "supertux-devel@lists.lethargik.org" -#: data//credits.stxt:1229 +#: data//credits.stxt:1316 msgid "Want to help…" msgstr "Желаете помочь…" -#: data//credits.stxt:1234 +#: data//credits.stxt:1321 msgid "…with localization?" msgstr "…с переводом?" -#: data//credits.stxt:1244 +#: data//credits.stxt:1331 msgid "…with something else?" msgstr "…с чем-то ещё?" -#: data//credits.stxt:1255 +#: data//credits.stxt:1342 msgid "Thank you for" msgstr "Спасибо за" -#: data//credits.stxt:1259 +#: data//credits.stxt:1346 msgid "playing" msgstr "игру" -#: data//credits.stxt:1269 +#: data//credits.stxt:1356 msgid "Penny awaits you in warmer temperatures!" msgstr "Пенни ждёт вас в более тёплых условиях!" +#: data//images/engine/editor/objects.stoi:4 +msgid "Enemies" +msgstr "Противники" + #: data//images/engine/editor/objects.stoi:162 msgid "Bosses" msgstr "Боссы" @@ -3724,15 +5050,10 @@ msgstr "Боссы" msgid "Projectiles" msgstr "Снаряды" -#: data//images/engine/editor/objects.stoi:187 +#: data//images/engine/editor/objects.stoi:184 msgid "Environment" msgstr "Окружение" -#: data//images/ice_world.strf:10 data//images/tiles.strf:28 -#: data//images/worldmap.strf:41 -msgid "Snow" -msgstr "Снег" - #: data//images/ice_world.strf:80 msgid "Ice Cave & Crystal" msgstr "Ледяная пещера и кристалл" @@ -3741,11 +5062,6 @@ msgstr "Ледяная пещера и кристалл" msgid "Embellishments" msgstr "Украшения" -#: data//images/ice_world.strf:211 data//images/tiles.strf:386 -#: data//images/worldmap.strf:67 -msgid "Forest" -msgstr "Лес" - #: data//images/ice_world.strf:320 msgid "Underground Forest" msgstr "Подземный лес" @@ -3770,57 +5086,61 @@ msgstr "Маршрут" msgid "Water" msgstr "Вода" -#: data//images/tiles.strf:176 +#: data//images/tiles.strf:252 msgid "Snow Background" msgstr "Снежный задний план" -#: data//images/tiles.strf:231 -msgid "Snow Mountain" -msgstr "Снежная гора" - -#: data//images/tiles.strf:305 +#: data//images/tiles.strf:300 msgid "Crystal" msgstr "Хрусталь" -#: data//images/tiles.strf:532 +#: data//images/tiles.strf:539 msgid "Forest Background" msgstr "Задний план леса" -#: data//images/tiles.strf:663 +#: data//images/tiles.strf:690 +msgid "Corrupted Forest" +msgstr "Испорченный лес" + +#: data//images/tiles.strf:868 +msgid "Corrupted Background" +msgstr "Испорченный фон" + +#: data//images/tiles.strf:991 msgid "Block + Bonus" msgstr "Блок + бонус" -#: data//images/tiles.strf:715 +#: data//images/tiles.strf:1069 msgid "Pole + Signs" msgstr "Полюс + знаки" -#: data//images/tiles.strf:760 +#: data//images/tiles.strf:1113 msgid "Liquid" msgstr "Жидкость" -#: data//images/tiles.strf:793 +#: data//images/tiles.strf:1131 msgid "Castle" msgstr "Замок" -#: data//images/tiles.strf:930 data//images/worldmap.strf:199 +#: data//images/tiles.strf:1231 data//images/worldmap.strf:199 msgid "Halloween" msgstr "Хэллоуин" -#: data//images/tiles.strf:958 +#: data//images/tiles.strf:1272 msgid "Industrial" msgstr "Промышленный" -#: data//images/tiles.strf:973 +#: data//images/tiles.strf:1287 msgid "Unisolid + Lightmap" msgstr "Нецельный снизу + карта освещённости" -#: data//images/tiles.strf:1000 +#: data//images/tiles.strf:1314 msgid "Miscellaneous" msgstr "Разное" -#: data//images/tiles.strf:1043 -msgid "Retro Snow" -msgstr "Ретро снег" +#: data//images/tiles.strf:1342 +msgid "Retro Tiles" +msgstr "Ретро плитка" #: data//images/worldmap.strf:24 msgid "Water paths" @@ -3833,3 +5153,19 @@ msgstr "Пути около замка" #: data//images/worldmap.strf:135 msgid "Darker Forest" msgstr "Тёмный лес" + +#: data//images/converters/data.stcd:3 +msgid "Nightly Tiles" +msgstr "Ночные плитки" + +#: data//images/converters/data.stcd:5 +msgid "For levels, created in previous Nightly builds." +msgstr "Для уровней, созданных в предыдущих ночных сборках." + +#: data//images/converters/data.stcd:8 +msgid "Pre-0.6.3 Crystal Tiles" +msgstr "Кристаллические плитки до 0.6.3" + +#: data//images/converters/data.stcd:10 +msgid "For levels, created in pre-0.6.3 versions, which use crystal tiles." +msgstr "Для уровней, созданных в версиях до 0.6.3, в которых используются кристаллические плитки." diff --git a/data/locale/sk.po b/data/locale/sk.po index 0e0780c1b63..b3d7421a6ae 100644 --- a/data/locale/sk.po +++ b/data/locale/sk.po @@ -1769,8 +1769,8 @@ msgstr "Pre preskočenie stlačte Esc" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Použitie: %s [MOŽNOSTI] [SÚBORÚROVNE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Použitie: {} [MOŽNOSTI] [SÚBORÚROVNE]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2495,13 +2495,13 @@ msgstr "Zmeniť veľkosť" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[Profil %s]" +msgid "[Profile {}]" +msgstr "[Profil {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "Profil %s" +msgid "Profile {}" +msgstr "Profil {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2549,8 +2549,8 @@ msgstr "Neznámy" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" od autora \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" od autora \"{}\"" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2562,13 +2562,13 @@ msgstr "Nenašli sa žiadne doplnky" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "Nainštalovať %s *NOVINKA*" +msgid "Install {} *NEW*" +msgstr "Nainštalovať {} *NOVINKA*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Nainštalovať %s" +msgid "Install {}" +msgstr "Nainštalovať {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2588,8 +2588,8 @@ msgstr "Sťahuje sa zoznam doplnkov" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "Sťahuje sa %s" +msgid "Downloading {}" +msgstr "Sťahuje sa {}" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3102,8 +3102,8 @@ msgstr "Úroveň, ktorú upravujete, nemôžete odstrániť!" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "prispel %s" +msgid "contributed by {}" +msgstr "prispel {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/sl.po b/data/locale/sl.po index 2c19580c11b..9bc0653ecec 100644 --- a/data/locale/sl.po +++ b/data/locale/sl.po @@ -4,250 +4,378 @@ # # Translators: # Andrej Mernik , 2017 -# Gorzy Gorup , 2016,2018-2020 +# Gorzy Gorup , 2016,2018-2020,2022,2024 # Marko Burjek , 2005-2007 -# Nwolfy , 2014 +# 6b5e68206c0968137af5e40628fab09c_45f21e2 <2184c0f6d900f44833440361ba2f7322_103239>, 2014 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2020-04-13 17:25+0200\n" -"PO-Revision-Date: 2020-04-25 20:20+0000\n" -"Last-Translator: Gorzy Gorup \n" -"Language-Team: Slovenian (http://www.transifex.com/arctic-games/supertux/language/sl/)\n" +"POT-Creation-Date: 2024-05-30 16:19+0200\n" +"PO-Revision-Date: 2013-08-10 22:56+0000\n" +"Last-Translator: Gorzy Gorup , 2016,2018-2020,2022,2024\n" +"Language-Team: Slovenian (http://app.transifex.com/arctic-games/supertux/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: src/trigger/secretarea_trigger.cpp:53 src/trigger/secretarea_trigger.cpp:61 +#: src/trigger/secretarea_trigger.cpp:47 msgid "You found a secret area!" -msgstr "Odkril/a si skrito območje!" +msgstr "Odkril/a si skrito sobo!" -#: src/trigger/secretarea_trigger.cpp:77 src/trigger/scripttrigger.cpp:75 -#: src/supertux/game_object.cpp:88 src/supertux/menu/editor_sector_menu.cpp:34 -#: src/supertux/menu/editor_levelset_menu.cpp:58 +#: src/trigger/secretarea_trigger.cpp:55 src/supertux/game_object.cpp:115 +#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_levelset_menu.cpp:52 #: src/supertux/menu/editor_new_levelset_menu.cpp:34 +#: src/supertux/menu/profile_name_menu.cpp:39 #: src/supertux/menu/editor_level_menu.cpp:33 msgid "Name" msgstr "Ime" -#: src/trigger/secretarea_trigger.cpp:78 +#: src/trigger/secretarea_trigger.cpp:56 msgid "Fade tilemap" -msgstr "Prelij načrt podlage" +msgstr "Prekrivni zaris podlage" -#: src/trigger/secretarea_trigger.cpp:79 src/trigger/climbable.cpp:81 -#: src/object/infoblock.cpp:57 src/editor/worldmap_objects.cpp:174 -#: src/editor/worldmap_objects.cpp:272 +#: src/trigger/secretarea_trigger.cpp:57 src/trigger/climbable.cpp:59 +#: src/object/infoblock.cpp:76 src/worldmap/teleporter.cpp:49 +#: src/worldmap/special_tile.cpp:74 msgid "Message" msgstr "Sporočilo" -#: src/trigger/secretarea_trigger.cpp:80 src/trigger/scripttrigger.cpp:80 -#: src/trigger/door.cpp:73 src/object/ispy.cpp:67 -#: src/object/bonus_block.cpp:203 src/object/bonus_block.cpp:207 -#: src/object/pushbutton.cpp:49 src/object/powerup.cpp:190 -#: src/editor/worldmap_objects.cpp:274 +#: src/trigger/secretarea_trigger.cpp:58 src/trigger/scripttrigger.cpp:51 +#: src/trigger/door.cpp:79 src/object/ispy.cpp:53 +#: src/object/bonus_block.cpp:264 src/object/bonus_block.cpp:268 +#: src/object/pushbutton.cpp:62 src/object/powerup.cpp:301 +#: src/worldmap/special_tile.cpp:76 msgid "Script" -msgstr "Zapis" - -#: src/trigger/scripttrigger.cpp:73 -msgid "Script Trigger" -msgstr "Sprožilec skripte" - -#: src/trigger/scripttrigger.cpp:76 src/object/tilemap.cpp:220 -#: src/supertux/menu/editor_sector_menu.cpp:39 -#: src/editor/object_option.cpp:148 -msgid "Width" -msgstr "Širina" - -#: src/trigger/scripttrigger.cpp:77 src/object/tilemap.cpp:221 -#: src/supertux/menu/editor_sector_menu.cpp:40 -#: src/editor/object_option.cpp:149 -msgid "Height" -msgstr "Višina" - -#: src/trigger/scripttrigger.cpp:78 src/object/bicycle_platform.cpp:187 -#: src/object/background.cpp:160 src/object/pneumatic_platform.cpp:145 -#: src/supertux/menu/joystick_menu.cpp:170 src/supertux/moving_object.cpp:47 -#: src/editor/worldmap_objects.cpp:73 -msgid "X" -msgstr "X" - -#: src/trigger/scripttrigger.cpp:79 src/object/bicycle_platform.cpp:188 -#: src/object/background.cpp:161 src/object/pneumatic_platform.cpp:146 -#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:48 -#: src/editor/worldmap_objects.cpp:74 -msgid "Y" -msgstr "Y" +msgstr "Skripta" -#: src/trigger/scripttrigger.cpp:81 src/object/pushbutton.hpp:31 +#: src/trigger/scripttrigger.cpp:52 src/object/pushbutton.hpp:32 msgid "Button" msgstr "Gumb" -#: src/trigger/scripttrigger.cpp:82 +#: src/trigger/scripttrigger.cpp:53 msgid "Oneshot" -msgstr "Enkratno" +msgstr "Ustavi na koncu" -#: src/trigger/sequence_trigger.hpp:33 +#: src/trigger/sequence_trigger.hpp:31 msgid "Sequence Trigger" msgstr "Sprožilec sekvence" -#: src/trigger/door.cpp:74 src/badguy/willowisp.cpp:280 -#: src/supertux/menu/editor_sector_menu.cpp:32 -#: src/editor/layers_widget.cpp:274 -#: data//images/engine/editor/objects.stoi:300 +#: src/trigger/text_area.cpp:141 +msgid "Once" +msgstr "Enkrat" + +#: src/trigger/text_area.cpp:142 +msgid "Text change time" +msgstr "Čas spremembe besedila" + +#: src/trigger/text_area.cpp:143 +msgid "Fade time" +msgstr "Čas bledenja" + +#: src/trigger/text_area.cpp:144 src/object/textscroller.cpp:353 +msgid "Anchor" +msgstr "Sidranje" + +#: src/trigger/text_area.cpp:148 +msgid "Anchor offset X" +msgstr "Odmik sidrišča po X" + +#: src/trigger/text_area.cpp:149 +msgid "Anchor offset Y" +msgstr "Odmik sidrišča po Y" + +#: src/trigger/text_area.cpp:150 +msgid "Texts" +msgstr "Besedila" + +#: src/trigger/door.cpp:80 src/badguy/willowisp.cpp:311 +#: src/worldmap/teleporter.cpp:47 data//images/engine/editor/objects.stoi:342 msgid "Sector" msgstr "Predel" -#: src/trigger/door.cpp:75 src/editor/worldmap_objects.hpp:101 +#: src/trigger/door.cpp:81 src/worldmap/spawn_point.hpp:58 msgid "Spawn point" msgstr "Začetna točka" -#: src/trigger/switch.cpp:61 src/object/block.cpp:212 src/object/torch.cpp:91 -#: src/object/moving_sprite.cpp:156 src/object/pneumatic_platform.cpp:144 -msgid "Sprite" -msgstr "Animirane sličice" +#: src/trigger/door.cpp:82 +msgid "Locked?" +msgstr "Zaklenjena?" + +#: src/trigger/door.cpp:83 +msgid "Lock Color" +msgstr "Barva ključavnice" + +#: src/trigger/switch.cpp:62 src/object/ispy.cpp:54 src/object/bumper.cpp:53 +#: src/object/spotlight.cpp:106 src/object/pushbutton.cpp:61 +#: src/object/gradient.cpp:103 src/object/conveyor_belt.cpp:60 +#: src/badguy/badguy.cpp:1063 src/worldmap/spawn_point.cpp:79 +#: src/worldmap/special_tile.cpp:78 +msgid "Direction" +msgstr "Smer" -#: src/trigger/switch.cpp:62 +#: src/trigger/switch.cpp:65 msgid "Turn on script" -msgstr "Vklopi skripto" +msgstr "Sprožitvena skripta" -#: src/trigger/switch.cpp:63 +#: src/trigger/switch.cpp:66 msgid "Turn off script" -msgstr "Izklopi skripto" +msgstr "Izklopna skripta" + +#: src/trigger/scripttrigger.hpp:29 +msgid "Script Trigger" +msgstr "Sprožilec skripte" -#: src/trigger/sequence_trigger.cpp:75 +#: src/trigger/sequence_trigger.cpp:48 msgid "Sequence" -msgstr "Zaporedje" +msgstr "Sekvenca" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "end sequence" -msgstr "konec zaporedja" +msgstr "končna sekvenca" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "stop Tux" -msgstr "ustavi Tuxa" +msgstr "ustavi Tuksa" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "fireworks" msgstr "ognjemet" -#: src/trigger/sequence_trigger.cpp:80 +#: src/trigger/sequence_trigger.cpp:53 msgid "New worldmap spawnpoint" msgstr "Nova začetna točka" -#: src/trigger/sequence_trigger.cpp:81 +#: src/trigger/sequence_trigger.cpp:54 msgid "Worldmap fade tilemap" -msgstr "Prelij načrt podlage" +msgstr "Prekrivni zaris sveta" -#: src/trigger/sequence_trigger.cpp:82 +#: src/trigger/sequence_trigger.cpp:55 +#: src/object/custom_particle_system.cpp:430 +#: src/object/custom_particle_system.cpp:465 msgid "Fade" -msgstr "Prelij" +msgstr "Zatemni" -#: src/trigger/sequence_trigger.cpp:83 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:161 msgid "Fade in" msgstr "Prikaži" -#: src/trigger/sequence_trigger.cpp:83 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:167 +#: src/editor/particle_editor.cpp:212 msgid "Fade out" -msgstr "Zamegli" +msgstr "Skrij" -#: src/trigger/climbable.hpp:37 +#: src/trigger/climbable.hpp:46 msgid "Climbable" msgstr "Plezljivo" -#: src/trigger/door.hpp:34 +#: src/trigger/text_area.hpp:47 +msgid "Text Area" +msgstr "Besedilno polje" + +#: src/trigger/door.hpp:31 msgid "Door" msgstr "Vrata" -#: src/trigger/switch.hpp:33 +#: src/trigger/switch.hpp:30 msgid "Switch" msgstr "Vzvod" #: src/trigger/secretarea_trigger.hpp:36 msgid "Secret Area" -msgstr "Skrivno območje" +msgstr "Skrita soba" + +#: src/math/anchor_point.cpp:33 +msgid "Top Left" +msgstr "Zgoraj levo" + +#: src/math/anchor_point.cpp:34 +msgid "Top" +msgstr "Zgoraj" + +#: src/math/anchor_point.cpp:35 +msgid "Top Right" +msgstr "Zgoraj desno" + +#: src/math/anchor_point.cpp:36 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:38 +#: src/supertux/menu/joystick_menu.cpp:73 +msgid "Left" +msgstr "Levo" + +#: src/math/anchor_point.cpp:37 +msgid "Middle" +msgstr "Na sredini" + +#: src/math/anchor_point.cpp:38 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:39 +#: src/supertux/menu/joystick_menu.cpp:74 +msgid "Right" +msgstr "Desno" + +#: src/math/anchor_point.cpp:39 +msgid "Bottom Left" +msgstr "Spodaj levo" + +#: src/math/anchor_point.cpp:40 +msgid "Bottom" +msgstr "Spodaj" + +#: src/math/anchor_point.cpp:41 +msgid "Bottom Right" +msgstr "Spodaj desno" -#: src/object/thunderstorm.hpp:40 +#: src/object/thunderstorm.hpp:44 msgid "Thunderstorm" msgstr "Neurje" -#: src/object/ispy.cpp:66 -msgid "Facing Down" -msgstr "Obrnjeno navzdol" +#: src/object/cloud_particle_system.cpp:77 +#: src/object/rain_particle_system.cpp:100 +msgid "Intensity" +msgstr "Jakost" -#: src/object/ispy.cpp:68 src/object/gradient.cpp:124 -#: src/badguy/willowisp.cpp:279 src/badguy/badguy.cpp:840 -#: src/editor/worldmap_objects.cpp:209 src/editor/worldmap_objects.cpp:276 -msgid "Direction" -msgstr "Smer" +#: src/object/custom_particle_system.hpp:46 +msgid "Custom Particles" +msgstr "Delci po meri" -#: src/object/path_gameobject.hpp:44 src/object/coin.cpp:262 -#: src/object/camera.cpp:212 src/object/platform.cpp:65 -#: src/object/path_gameobject.cpp:168 src/object/tilemap.cpp:234 -#: src/badguy/willowisp.cpp:286 +#: src/object/particle_zone.hpp:41 +msgid "Particle zone" +msgstr "Območje delcev" + +#: src/object/path_gameobject.hpp:45 src/object/coin.cpp:324 +#: src/object/camera.cpp:168 src/object/platform.cpp:76 +#: src/object/path_gameobject.cpp:175 src/object/tilemap.cpp:284 +#: src/badguy/willowisp.cpp:317 msgid "Path" msgstr "Pot" -#: src/object/decal.cpp:41 src/object/scripted_object.cpp:67 -#: src/object/particlesystem.cpp:62 src/object/background.cpp:164 -#: src/object/thunderstorm.cpp:68 src/object/tilemap.cpp:227 -#: src/object/gradient.cpp:122 -msgid "Z-pos" -msgstr "Z-položaj" - -#: src/object/decal.cpp:42 src/object/scripted_object.cpp:70 -#: src/object/tilemap.cpp:216 +#: src/object/decal.cpp:48 src/object/scripted_object.cpp:70 +#: src/object/tilemap.cpp:266 msgid "Solid" msgstr "Trdno" -#: src/object/decal.cpp:43 src/supertux/menu/keyboard_menu.cpp:37 -#: src/supertux/menu/joystick_menu.cpp:74 +#: src/object/decal.cpp:49 src/supertux/menu/keyboard_menu.cpp:41 +#: src/supertux/menu/joystick_menu.cpp:76 msgid "Action" msgstr "Dejanje" -#: src/object/weak_block.hpp:35 +#: src/object/weak_block.hpp:36 msgid "Weak Tile" msgstr "Šibka podlaga" -#: src/object/gradient.hpp:42 +#: src/object/gradient.hpp:43 msgid "Gradient" -msgstr "Naklon" +msgstr "Preliv" -#: src/object/tilemap.hpp:53 +#: src/object/tilemap.hpp:58 msgid "Tilemap" -msgstr "Načrt podlage" +msgstr "Zaris podlage" + +#: src/object/sound_object.cpp:69 src/object/ambient_sound.cpp:85 +#: src/object/sound_object.hpp:42 src/supertux/menu/options_menu.cpp:128 +#: data//credits.stxt:367 +msgid "Sound" +msgstr "Zvok" + +#: src/object/sound_object.cpp:70 src/object/ambient_sound.cpp:87 +msgid "Volume" +msgstr "Glasnost" + +#: src/object/conveyor_belt.hpp:39 +msgid "Conveyor Belt" +msgstr "Tekoči trak" + +#: src/object/unstable_tile.cpp:70 src/object/weak_block.cpp:97 +#: src/badguy/flame.cpp:86 +msgid "Ice" +msgstr "Led" + +#: src/object/unstable_tile.cpp:71 src/object/brick.hpp:34 +msgid "Brick" +msgstr "Opeka" + +#: src/object/unstable_tile.cpp:72 +msgid "Delayed" +msgstr "Zakasnjena" + +#: src/object/circleplatform.hpp:35 +msgid "Circular Platform" +msgstr "Krožna ploščad" + +#: src/object/brick.cpp:59 src/object/coin.cpp:69 +#: src/object/invisible_block.cpp:37 src/object/background.cpp:200 +#: src/object/tilemap.cpp:279 src/object/gradient.cpp:109 +#: src/badguy/viciousivy.cpp:44 src/badguy/snail.cpp:69 +#: src/badguy/smartball.cpp:34 src/badguy/bouncing_snowball.cpp:81 +#: src/badguy/kamikazesnowball.cpp:117 src/badguy/walkingleaf.cpp:35 +#: src/badguy/mrbomb.cpp:47 src/badguy/igel.cpp:188 src/badguy/snowball.cpp:40 +#: src/badguy/mrtree.cpp:50 src/badguy/mriceblock.cpp:62 +msgid "Normal" +msgstr "Običajno" + +#: src/object/brick.cpp:60 src/object/bonus_block.cpp:175 +#: src/object/coin.cpp:70 src/object/invisible_block.cpp:38 +msgid "Retro" +msgstr "Retro" -#: src/object/brick.cpp:133 +#: src/object/brick.cpp:166 msgid "Breakable" -msgstr "Uničljivo" +msgstr "Uničljiva" -#: src/object/trampoline.cpp:136 src/object/rusty_trampoline.cpp:66 +#: src/object/trampoline.cpp:66 src/object/rusty_trampoline.cpp:66 msgid "Portable" -msgstr "Prenosljiva" +msgstr "Prenosljiv" -#: src/object/spotlight.cpp:62 +#: src/object/trampoline.cpp:67 +msgid "Stationary" +msgstr "Nepremičen" + +#: src/object/key.hpp:38 +msgid "Key" +msgstr "Ključ" + +#: src/object/spotlight.cpp:102 src/object/particlesystem.cpp:64 +#: src/object/particle_zone.cpp:50 src/badguy/darttrap.cpp:149 +#: src/supertux/menu/addon_preview_menu.cpp:189 +msgid "Enabled" +msgstr "Omogočeno" + +#: src/object/spotlight.cpp:103 src/object/rain_particle_system.cpp:101 msgid "Angle" msgstr "Kot" -#: src/object/spotlight.cpp:63 src/object/magicblock.cpp:94 -#: src/object/candle.cpp:77 src/object/lantern.cpp:62 -#: src/object/ambient_light.cpp:131 src/badguy/walking_candle.cpp:82 +#: src/object/spotlight.cpp:104 src/object/magicblock.cpp:95 +#: src/object/candle.cpp:75 src/object/torch.cpp:96 src/object/rublight.cpp:55 +#: src/object/lantern.cpp:62 src/object/ambient_light.cpp:122 +#: src/object/key.cpp:192 src/badguy/willowisp.cpp:319 +#: src/badguy/walking_candle.cpp:91 msgid "Color" msgstr "Barva" -#: src/object/spotlight.cpp:64 src/object/textscroller.cpp:279 -#: src/badguy/flame.cpp:59 +#: src/object/spotlight.cpp:105 src/object/textscroller.cpp:350 +#: src/object/rain_particle_system.cpp:102 src/object/conveyor_belt.cpp:61 +#: src/object/circleplatform.cpp:58 src/badguy/flame.cpp:110 +#: src/editor/node_marker.cpp:125 msgid "Speed" msgstr "Hitrost" -#: src/object/spotlight.cpp:65 +#: src/object/spotlight.cpp:107 +msgid "Clockwise" +msgstr "V smeri urinega kazalca" + +#: src/object/spotlight.cpp:107 msgid "Counter-clockwise" -msgstr "V levo" +msgstr "Proti smeri urinega kazalca" -#: src/object/spotlight.cpp:66 src/object/candle.cpp:78 -#: src/object/torch.cpp:92 +#: src/object/spotlight.cpp:107 +msgid "Stopped" +msgstr "Stoji" + +#: src/object/spotlight.cpp:110 src/object/lit_object.cpp:69 +#: src/object/candle.cpp:76 src/object/torch.cpp:95 msgid "Layer" msgstr "Plast" @@ -257,371 +385,599 @@ msgstr "Fizika omogočena" #: src/object/scripted_object.cpp:72 msgid "Visible" -msgstr "Viden" +msgstr "Vidno" -#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:282 +#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:313 msgid "Hit script" -msgstr "Skripta udarca" +msgstr "Skripta ob stiku" + +#: src/object/custom_particle_system_file.cpp:53 +#: src/object/textscroller.cpp:348 src/object/music_object.cpp:109 +#: src/supertux/menu/particle_editor_open.cpp:38 +msgid "File" +msgstr "Datoteka" + +#: src/object/bonus_block.cpp:154 +msgid "Only one custom object is allowed inside bonus blocks." +msgstr "V bonus kockah je dovoljen le en predmet po meri." + +#: src/object/bonus_block.cpp:172 +msgid "Blue" +msgstr "Modra" -#: src/object/bonus_block.cpp:204 +#: src/object/bonus_block.cpp:173 +msgid "Orange" +msgstr "Oranžna" + +#: src/object/bonus_block.cpp:174 +msgid "Purple" +msgstr "Vijolična" + +#: src/object/bonus_block.cpp:265 src/supertux/menu/cheat_apply_menu.cpp:54 msgid "Count" -msgstr "Štetje" +msgstr "Količina" -#: src/object/bonus_block.cpp:205 +#: src/object/bonus_block.cpp:266 msgid "Content" msgstr "Vsebina" -#: src/object/bonus_block.cpp:206 src/object/coin.hpp:43 +#: src/object/bonus_block.cpp:267 src/object/coin.hpp:44 msgid "Coin" msgstr "Kovanec" -#: src/object/bonus_block.cpp:206 +#: src/object/bonus_block.cpp:267 msgid "Growth (fire flower)" msgstr "Rast (ognjena roža)" -#: src/object/bonus_block.cpp:206 +#: src/object/bonus_block.cpp:267 msgid "Growth (ice flower)" msgstr "Rast (ledena roža)" -#: src/object/bonus_block.cpp:206 +#: src/object/bonus_block.cpp:267 msgid "Growth (air flower)" msgstr "Rast (vetrna roža)" -#: src/object/bonus_block.cpp:207 +#: src/object/bonus_block.cpp:268 msgid "Growth (earth flower)" msgstr "Rast (zemeljska roža)" -#: src/object/bonus_block.cpp:207 +#: src/object/bonus_block.cpp:268 +msgid "Growth (retro)" +msgstr "Rast (retro)" + +#: src/object/bonus_block.cpp:268 src/object/powerup.cpp:66 msgid "Star" msgstr "Zvezda" -#: src/object/bonus_block.cpp:207 +#: src/object/bonus_block.cpp:268 +msgid "Star (retro)" +msgstr "Zvezda (retro)" + +#: src/object/bonus_block.cpp:268 msgid "Tux doll" -msgstr "Lutka Tuxa" +msgstr "Lutka Tuksa" -#: src/object/bonus_block.cpp:207 +#: src/object/bonus_block.cpp:268 msgid "Custom" msgstr "Po meri" -#: src/object/bonus_block.cpp:207 +#: src/object/bonus_block.cpp:268 msgid "Light" msgstr "Svetloba" -#: src/object/bonus_block.cpp:208 src/object/trampoline.hpp:35 +#: src/object/bonus_block.cpp:268 +msgid "Light (On)" +msgstr "Svetloba (vključena)" + +#: src/object/bonus_block.cpp:269 src/object/trampoline.hpp:37 msgid "Trampoline" msgstr "Trampolin" -#: src/object/bonus_block.cpp:208 +#: src/object/bonus_block.cpp:269 +msgid "Portable trampoline" +msgstr "Prenosljiv trampolin" + +#: src/object/bonus_block.cpp:269 msgid "Coin rain" -msgstr "Dež kovancev" +msgstr "Vsuvanje kovancev" -#: src/object/bonus_block.cpp:208 +#: src/object/bonus_block.cpp:269 msgid "Coin explosion" msgstr "Eksplozija kovancev" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 src/object/rock.hpp:43 +msgid "Rock" +msgstr "Skala" + +#: src/object/bonus_block.cpp:269 +msgid "Potion" +msgstr "Napoj" + +#: src/object/bonus_block.cpp:275 msgid "Custom Content" msgstr "Vsebina po meri" -#: src/object/pneumatic_platform.hpp:62 +#: src/object/bonus_block.cpp:278 +msgid "Coin sprite" +msgstr "Izrezek kovanca" + +#: src/object/pneumatic_platform.hpp:65 msgid "Pneumatic Platform" msgstr "Pnevmatična ploščad" -#: src/object/coin.cpp:264 src/object/tilemap.cpp:236 +#: src/object/coin.cpp:326 src/object/tilemap.cpp:287 msgid "Following path" -msgstr "Sledenje stezi" +msgstr "Pot premika" -#: src/object/coin.cpp:267 src/object/camera.cpp:215 -#: src/object/platform.cpp:66 src/object/tilemap.cpp:240 +#: src/object/coin.cpp:329 src/object/camera.cpp:171 +#: src/object/platform.cpp:77 src/object/tilemap.cpp:290 msgid "Path Mode" msgstr "Način poti" -#: src/object/coin.cpp:270 src/object/coin.cpp:298 +#: src/object/coin.cpp:330 src/object/camera.cpp:172 +#: src/object/platform.cpp:78 src/object/tilemap.cpp:291 +#: src/badguy/willowisp.cpp:322 +msgid "Adapt Speed" +msgstr "Prilagodi hitrost" + +#: src/object/coin.cpp:331 src/object/platform.cpp:81 +#: src/object/tilemap.cpp:285 src/badguy/willowisp.cpp:318 +msgid "Starting Node" +msgstr "Začetno vozlišče" + +#: src/object/coin.cpp:332 src/object/camera.cpp:173 +#: src/object/platform.cpp:82 src/object/tilemap.cpp:293 +#: src/badguy/willowisp.cpp:323 +msgid "Handle" +msgstr "Ročica" + +#: src/object/coin.cpp:335 src/object/coin.cpp:371 msgid "Collect script" msgstr "Zbiralna skripta" -#: src/object/ghost_particle_system.hpp:36 +#: src/object/ghost_particle_system.hpp:37 msgid "Ghost Particles" -msgstr "Duhovni delci" +msgstr "Strahčevski delci" -#: src/object/camera.cpp:207 +#: src/object/camera.cpp:163 msgid "Mode" msgstr "Način" -#: src/object/camera.cpp:208 +#: src/object/camera.cpp:164 msgid "normal" -msgstr "običajen" +msgstr "običajno" -#: src/object/camera.cpp:208 +#: src/object/camera.cpp:164 msgid "manual" msgstr "ročno" -#: src/object/camera.cpp:208 +#: src/object/camera.cpp:164 msgid "autoscroll" -msgstr "samodejno pomikanje" +msgstr "samodejno drsenje" -#: src/object/textscroller.cpp:280 src/object/music_object.cpp:109 -msgid "File" -msgstr "Datoteka" +#: src/object/textscroller.cpp:349 +msgid "Finish Script" +msgstr "Zaključna skripta" + +#: src/object/textscroller.cpp:351 +msgid "X-offset" +msgstr "Odmik X" + +#: src/object/textscroller.cpp:352 +msgid "Controllable" +msgstr "Krmiljeno" + +#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 +msgid "Center" +msgstr "Sredinsko" + +#: src/object/textscroller.cpp:357 +msgid "Text Alignment" +msgstr "Poravnava besedila" -#: src/object/spawnpoint.hpp:46 src/badguy/willowisp.cpp:281 -#: src/editor/worldmap_objects.cpp:173 +#: src/object/lit_object.hpp:40 +msgid "Lit object" +msgstr "Osvetljen predmet" + +#: src/object/spawnpoint.hpp:48 src/badguy/willowisp.cpp:312 +#: src/worldmap/teleporter.cpp:48 msgid "Spawnpoint" msgstr "Točka začetka" #: src/object/rusty_trampoline.cpp:65 msgid "Counter" -msgstr "Števec" +msgstr "Preostalih skokov" -#: src/object/candle.hpp:36 +#: src/object/candle.hpp:37 msgid "Candle" msgstr "Sveča" -#: src/object/particlesystem.cpp:61 src/badguy/darttrap.cpp:127 -msgid "Enabled" -msgstr "Omogočeno" +#: src/object/particlesystem.cpp:65 src/object/background.cpp:184 +#: src/object/thunderstorm.cpp:76 src/object/tilemap.cpp:277 +#: src/object/gradient.cpp:101 src/object/moving_sprite.cpp:193 +msgid "Z-pos" +msgstr "Globina" -#: src/object/invisible_block.hpp:31 +#: src/object/invisible_block.hpp:30 msgid "Invisible Block" msgstr "Nevidna kocka" -#: src/object/snow_particle_system.hpp:35 +#: src/object/snow_particle_system.hpp:37 msgid "Snow Particles" msgstr "Snežni delci" -#: src/object/powerup.hpp:35 +#: src/object/powerup.hpp:40 msgid "Powerup" msgstr "Izboljšava" -#: src/object/level_time.hpp:55 -msgid "Time Limit" -msgstr "Časovna omejitev" +#: src/object/infoblock.cpp:78 +msgid "Front Color" +msgstr "Čelna barva" -#: src/object/ambient_sound.cpp:119 src/supertux/menu/options_menu.cpp:365 -#: data//credits.stxt:335 -msgid "Sound" -msgstr "Zvok" +#: src/object/infoblock.cpp:80 +msgid "Back Color" +msgstr "Hrbtna barva" -#: src/object/ambient_sound.cpp:120 -msgid "Distance factor" -msgstr "Dejavnik razdalje" +#: src/object/infoblock.cpp:82 +msgid "Roundness" +msgstr "Okroglost" -#: src/object/ambient_sound.cpp:121 -msgid "Distance bias" -msgstr "Težnja razdalje" +#: src/object/infoblock.cpp:84 +msgid "Fade Transition" +msgstr "Bledenje" -#: src/object/ambient_sound.cpp:122 -msgid "Volume" -msgstr "Glasnost" +#: src/object/fallblock.hpp:41 +msgid "Falling Platform" +msgstr "Padajoča ploščad" + +#: src/object/level_time.hpp:56 +msgid "Time Limit" +msgstr "Časovna omejitev" + +#: src/object/ambient_sound.cpp:86 +msgid "Radius (in tiles)" +msgstr "Polmer (v podlagah)" #: src/object/torch.hpp:41 msgid "Torch" msgstr "Bakla" -#: src/object/icecrusher.hpp:48 -msgid "Icecrusher" -msgstr "Ledolomilec" +#: src/object/rublight.hpp:34 +msgid "Rublight" +msgstr "Svetlenka" -#: src/object/background.hpp:42 +#: src/object/background.hpp:45 msgid "Background" msgstr "Ozadje" -#: src/object/firefly.hpp:36 +#: src/object/text_object.hpp:44 src/gui/menu_string_array.cpp:77 +msgid "Text" +msgstr "Besedilo" + +#: src/object/firefly.hpp:38 msgid "Checkpoint" -msgstr "Nadzorna točka" +msgstr "Varna točka" -#: src/object/ambient_light.hpp:36 +#: src/object/ambient_light.hpp:37 msgid "Ambient Light" -msgstr "Ambientalna svetloba" +msgstr "Okoljska svetloba" -#: src/object/lantern.hpp:37 +#: src/object/lantern.hpp:38 msgid "Lantern" msgstr "Svetilka" -#: src/object/wind.hpp:40 +#: src/object/wind.hpp:43 msgid "Wind" msgstr "Veter" -#: src/object/bicycle_platform.cpp:190 +#: src/object/bicycle_platform.cpp:203 src/object/background.cpp:180 +#: src/object/pneumatic_platform.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:65 +#: src/worldmap/worldmap_object.cpp:77 +msgid "X" +msgstr "X" + +#: src/object/bicycle_platform.cpp:204 src/object/background.cpp:181 +#: src/object/pneumatic_platform.cpp:163 +#: src/supertux/menu/joystick_menu.cpp:174 src/supertux/moving_object.cpp:66 +#: src/worldmap/worldmap_object.cpp:78 +msgid "Y" +msgstr "Y" + +#: src/object/bicycle_platform.cpp:206 msgid "Platforms" msgstr "Ploščadi" -#: src/object/bicycle_platform.cpp:191 src/badguy/flame.cpp:58 -#: src/badguy/crystallo.cpp:36 +#: src/object/bicycle_platform.cpp:207 src/object/circleplatform.cpp:57 +#: src/badguy/fish_swimming.cpp:76 src/badguy/flame.cpp:109 +#: src/badguy/rcrystallo.cpp:83 src/badguy/crystallo.cpp:50 msgid "Radius" -msgstr "Radij" +msgstr "Doseg" -#: src/object/bicycle_platform.cpp:192 +#: src/object/bicycle_platform.cpp:208 msgid "Momentum change rate" -msgstr "Razmerje spremembe zagona" +msgstr "Hitrost spremembe gibanja" -#: src/object/rain_particle_system.hpp:34 +#: src/object/rain_particle_system.hpp:41 msgid "Rain Particles" msgstr "Dežne kaplje" -#: src/object/platform.hpp:45 +#: src/object/platform.hpp:46 msgid "Platform" msgstr "Ploščad" -#: src/object/rock.hpp:42 -msgid "Rock" -msgstr "Skala" - -#: src/object/music_object.hpp:41 src/supertux/menu/options_menu.cpp:367 -#: data//credits.stxt:277 +#: src/object/music_object.hpp:42 src/supertux/menu/options_menu.cpp:130 +#: data//credits.stxt:309 msgid "Music" msgstr "Glasba" -#: src/object/rusty_trampoline.hpp:39 +#: src/object/lit_object.cpp:68 +msgid "Light sprite" +msgstr "Izrezek luči" + +#: src/object/lit_object.cpp:71 +msgid "Sprite starting action" +msgstr "Začetno dejanje izrezka" + +#: src/object/lit_object.cpp:72 +msgid "Light sprite starting action" +msgstr "Začetno dejanje izrezka luči" + +#: src/object/lit_object.cpp:74 +msgid "Light sprite offset X" +msgstr "Zamik izrezka luči po X" + +#: src/object/lit_object.cpp:75 +msgid "Light sprite offset Y" +msgstr "Zamik izrezka luči po Y" + +#: src/object/rusty_trampoline.hpp:40 msgid "Rusty Trampoline" -msgstr "Rjasti trampulin" +msgstr "Zarjaveli trampolin" -#: src/object/particlesystem.hpp:57 +#: src/object/particlesystem.hpp:58 msgid "Particle system" msgstr "Sistem delcev" -#: src/object/candle.cpp:75 src/object/torch.cpp:90 +#: src/object/candle.cpp:73 src/object/torch.cpp:94 msgid "Burning" -msgstr "Gorenje" +msgstr "Gori" -#: src/object/candle.cpp:76 +#: src/object/candle.cpp:74 msgid "Flicker" -msgstr "Migetanje" +msgstr "Migeta" + +#: src/object/snow_particle_system.cpp:104 +msgid "Epsilon" +msgstr "Epsilon" + +#: src/object/snow_particle_system.cpp:105 +msgid "Spin Speed" +msgstr "Hitrost vrtenja" + +#: src/object/snow_particle_system.cpp:106 +msgid "State Length" +msgstr "Trajanje stanja" -#: src/object/text_array_object.hpp:50 +#: src/object/snow_particle_system.cpp:107 +msgid "Wind Speed" +msgstr "Hitrost vetra" + +#: src/object/text_array_object.hpp:47 msgid "Text array" -msgstr "Razpored besedila" +msgstr "Besedilno polje" -#: src/object/infoblock.hpp:36 +#: src/object/infoblock.hpp:37 msgid "Info Block" -msgstr "Kocka za informacije" +msgstr "Poučna kocka" + +#: src/object/powerup.cpp:61 +msgid "Egg" +msgstr "Jajce" + +#: src/object/powerup.cpp:62 +msgid "Fire Flower" +msgstr "Ognjena roža" + +#: src/object/powerup.cpp:63 +msgid "Ice Flower" +msgstr "Ledena roža" + +#: src/object/powerup.cpp:64 +msgid "Air Flower" +msgstr "Vetrna roža" + +#: src/object/powerup.cpp:65 +msgid "Earth Flower" +msgstr "Zemeljska roža" + +#: src/object/powerup.cpp:67 +msgid "Tux Doll" +msgstr "Lutka Tuksa" + +#: src/object/powerup.cpp:68 +msgid "Flip Potion" +msgstr "Obrnitveni napoj" -#: src/object/powerup.cpp:191 +#: src/object/powerup.cpp:69 +msgid "Mints" +msgstr "Bonbončki" + +#: src/object/powerup.cpp:70 +msgid "Coffee" +msgstr "Kofe" + +#: src/object/powerup.cpp:71 +msgid "Herring" +msgstr "Sled" + +#: src/object/powerup.cpp:302 msgid "Disable gravity" msgstr "Onemogoči težnost" -#: src/object/ambient_sound.hpp:62 +#: src/object/powerup.cpp:312 src/object/weak_block.cpp:266 +msgid "" +"Sprites no longer define the behaviour of the object.\n" +"Object types are used instead." +msgstr "Animirani izrezki ne določajo več obnašanja predmeta.\nNamesto tega uporabljamo tipe predmetov." + +#: src/object/ambient_sound.hpp:43 msgid "Ambient Sound" -msgstr "Ambientalni zvok" +msgstr "Okoljski zvok" -#: src/object/level_time.cpp:51 src/supertux/statistics.cpp:288 -#: src/editor/node_marker.cpp:80 +#: src/object/level_time.cpp:52 src/supertux/statistics.cpp:297 +#: src/editor/node_marker.cpp:124 msgid "Time" msgstr "Čas" -#: src/object/hurting_platform.hpp:30 +#: src/object/hurting_platform.hpp:31 msgid "Hurting Platform" -msgstr "Ploščad za škodovanje" +msgstr "Škodljiva ploščad" -#: src/object/background.cpp:163 +#: src/object/background.cpp:183 msgid "Fill" msgstr "Zapolni" -#: src/object/background.cpp:165 +#: src/object/background.cpp:185 msgid "Alignment" msgstr "Poravnava" -#: src/object/background.cpp:166 +#: src/object/background.cpp:186 src/supertux/direction.cpp:61 msgid "none" -msgstr "nič" +msgstr "brez" -#: src/object/background.cpp:166 src/editor/object_settings.cpp:112 +#: src/object/background.cpp:186 src/supertux/direction.cpp:63 msgid "left" msgstr "levo" -#: src/object/background.cpp:166 src/editor/object_settings.cpp:112 +#: src/object/background.cpp:186 src/supertux/direction.cpp:65 msgid "right" msgstr "desno" -#: src/object/background.cpp:166 +#: src/object/background.cpp:186 msgid "top" msgstr "zgoraj" -#: src/object/background.cpp:166 +#: src/object/background.cpp:186 msgid "bottom" msgstr "spodaj" -#: src/object/background.cpp:169 +#: src/object/background.cpp:189 msgid "Scroll offset x" msgstr "Premakni po x" -#: src/object/background.cpp:170 +#: src/object/background.cpp:190 msgid "Scroll offset y" msgstr "Premakni po y" -#: src/object/background.cpp:171 +#: src/object/background.cpp:191 msgid "Scroll speed x" -msgstr "Hitrost premika v x" +msgstr "Hitrost premika po x" -#: src/object/background.cpp:172 +#: src/object/background.cpp:192 msgid "Scroll speed y" -msgstr "Hitrost premika v y" +msgstr "Hitrost premika po y" -#: src/object/background.cpp:173 +#: src/object/background.cpp:193 msgid "Parallax Speed x" -msgstr "Paralaksa x" +msgstr "Paralaksa po x" -#: src/object/background.cpp:174 +#: src/object/background.cpp:194 msgid "Parallax Speed y" -msgstr "Paralaksa y" +msgstr "Paralaksa po y" -#: src/object/background.cpp:175 +#: src/object/background.cpp:195 msgid "Top image" msgstr "Zgornja slika" -#: src/object/background.cpp:176 +#: src/object/background.cpp:196 msgid "Image" msgstr "Slika" -#: src/object/background.cpp:177 +#: src/object/background.cpp:197 msgid "Bottom image" msgstr "Spodnja slika" -#: src/object/background.cpp:178 src/object/tilemap.cpp:228 -#: src/object/gradient.cpp:129 -msgid "Draw target" -msgstr "Nariši tarčo" +#: src/object/background.cpp:198 +msgid "Colour" +msgstr "Barva" -#: src/object/background.cpp:179 src/object/tilemap.cpp:229 -#: src/object/gradient.cpp:130 -msgid "Normal" -msgstr "Običajno" +#: src/object/background.cpp:199 src/object/tilemap.cpp:278 +#: src/object/gradient.cpp:108 +msgid "Draw target" +msgstr "Tarča izrisa" -#: src/object/background.cpp:179 src/object/tilemap.cpp:229 -#: src/object/gradient.cpp:130 +#: src/object/background.cpp:200 src/object/tilemap.cpp:279 +#: src/object/gradient.cpp:109 msgid "Lightmap" msgstr "Svetilna tekstura" -#: src/object/wind.cpp:63 +#: src/object/shard.hpp:35 +msgid "Shard" +msgstr "Drobec" + +#: src/object/rublight.cpp:56 +msgid "Fading Speed" +msgstr "Hitrost zatemnitve" + +#: src/object/rublight.cpp:57 +msgid "Glowing Strength" +msgstr "Jakost žarenja" + +#: src/object/wind.cpp:78 src/object/custom_particle_system.cpp:499 msgid "Speed X" msgstr "Hitrost X" -#: src/object/wind.cpp:64 +#: src/object/wind.cpp:79 src/object/custom_particle_system.cpp:500 msgid "Speed Y" msgstr "Hitrost Y" -#: src/object/wind.cpp:65 +#: src/object/wind.cpp:80 msgid "Acceleration" msgstr "Pospešek" -#: src/object/wind.cpp:66 +#: src/object/wind.cpp:81 msgid "Blowing" -msgstr "Pihanje" +msgstr "Dejansko piha" + +#: src/object/wind.cpp:82 +msgid "Affects Badguys" +msgstr "Vpliva na pridaniče" + +#: src/object/wind.cpp:83 +msgid "Affects Objects" +msgstr "Vpliva na predmete" + +#: src/object/wind.cpp:84 +msgid "Affects Player" +msgstr "Vpliva na igralca" -#: src/object/bicycle_platform.hpp:64 +#: src/object/wind.cpp:85 +msgid "Fancy Particles" +msgstr "Okrasni delci" + +#: src/object/bicycle_platform.hpp:67 msgid "Bicycle Platform" -msgstr "Ploščad za kolo" +msgstr "Kolesna ploščad" -#: src/object/platform.cpp:67 src/object/thunderstorm.cpp:69 -#: src/object/tilemap.cpp:241 +#: src/object/platform.cpp:80 src/object/thunderstorm.cpp:77 +#: src/object/tilemap.cpp:292 src/object/conveyor_belt.cpp:62 msgid "Running" -msgstr "Tek" +msgstr "V teku" + +#: src/object/rock.cpp:71 +msgid "Small" +msgstr "Majhna" -#: src/object/rock.cpp:182 +#: src/object/rock.cpp:72 +msgid "Large" +msgstr "Velika" + +#: src/object/rock.cpp:234 msgid "On-grab script" msgstr "Skripta ob prijemu" -#: src/object/rock.cpp:183 +#: src/object/rock.cpp:235 msgid "On-ungrab script" msgstr "Skripta ob odlaganju" @@ -629,1271 +985,2647 @@ msgstr "Skripta ob odlaganju" msgid "Interactive particle system" msgstr "Interaktivni sistem delcev" -#: src/object/thunderstorm.cpp:70 +#: src/object/thunderstorm.cpp:78 msgid "Interval" msgstr "Interval" -#: src/object/thunderstorm.cpp:71 +#: src/object/thunderstorm.cpp:79 msgid "Strike Script" -msgstr "Skripta za udarec" +msgstr "Skripta ob udarcu" -#: src/object/cloud_particle_system.hpp:36 +#: src/object/cloud_particle_system.hpp:42 msgid "Cloud Particles" msgstr "Oblačni delci" -#: src/object/ispy.hpp:33 +#: src/object/custom_particle_system.cpp:423 +msgid "Texture" +msgstr "Tekstura" + +#: src/object/custom_particle_system.cpp:425 +msgid "Amount" +msgstr "Količina" + +#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:59 +#: src/editor/particle_editor.cpp:141 +msgid "Delay" +msgstr "Zamik" + +#: src/object/custom_particle_system.cpp:427 +msgid "Lifetime" +msgstr "Čas obstoja" + +#: src/object/custom_particle_system.cpp:428 +msgid "Lifetime variation" +msgstr "Razlike v času obstoja" + +#: src/object/custom_particle_system.cpp:429 +#: src/editor/particle_editor.cpp:164 +msgid "Birth mode" +msgstr "Način nastajanja" + +#: src/object/custom_particle_system.cpp:430 +#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:115 +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/joystick_menu.cpp:108 +#: src/supertux/menu/joystick_menu.cpp:215 src/editor/object_settings.cpp:129 +#: src/editor/particle_editor.cpp:162 src/editor/particle_editor.cpp:168 +msgid "None" +msgstr "Brez" + +#: src/object/custom_particle_system.cpp:430 +#: src/object/custom_particle_system.cpp:465 +#: src/editor/particle_editor.cpp:166 +msgid "Shrink" +msgstr "Krčenje" + +#: src/object/custom_particle_system.cpp:434 +#: src/editor/particle_editor.cpp:172 +msgid "Birth easing" +msgstr "Umerjeno nastajanje" + +#: src/object/custom_particle_system.cpp:436 +#: src/object/custom_particle_system.cpp:471 src/editor/node_marker.cpp:129 +msgid "No easing" +msgstr "Brez umerjanja" + +#: src/object/custom_particle_system.cpp:437 +#: src/object/custom_particle_system.cpp:472 src/editor/node_marker.cpp:130 +msgid "Quad in" +msgstr "Kvadratni prihod" + +#: src/object/custom_particle_system.cpp:437 +#: src/object/custom_particle_system.cpp:472 src/editor/node_marker.cpp:130 +msgid "Quad out" +msgstr "Kvadratni iztek" + +#: src/object/custom_particle_system.cpp:437 +#: src/object/custom_particle_system.cpp:472 src/editor/node_marker.cpp:130 +msgid "Quad in/out" +msgstr "Kvadratni prihod/iztek" + +#: src/object/custom_particle_system.cpp:438 +#: src/object/custom_particle_system.cpp:473 src/editor/node_marker.cpp:131 +msgid "Cubic in" +msgstr "Kubični prihod" + +#: src/object/custom_particle_system.cpp:438 +#: src/object/custom_particle_system.cpp:473 src/editor/node_marker.cpp:131 +msgid "Cubic out" +msgstr "Kubični iztek" + +#: src/object/custom_particle_system.cpp:438 +#: src/object/custom_particle_system.cpp:473 src/editor/node_marker.cpp:131 +msgid "Cubic in/out" +msgstr "Kubični prihod/iztek" + +#: src/object/custom_particle_system.cpp:439 +#: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 +msgid "Quart in" +msgstr "Kvartični prihod" + +#: src/object/custom_particle_system.cpp:439 +#: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 +msgid "Quart out" +msgstr "Kvartični iztek" + +#: src/object/custom_particle_system.cpp:439 +#: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 +msgid "Quart in/out" +msgstr "Kvartični prihod/iztek" + +#: src/object/custom_particle_system.cpp:440 +#: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 +msgid "Quint in" +msgstr "Kvintični prihod" + +#: src/object/custom_particle_system.cpp:440 +#: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 +msgid "Quint out" +msgstr "Kvintični iztek" + +#: src/object/custom_particle_system.cpp:440 +#: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 +msgid "Quint in/out" +msgstr "Kvintični prihod/iztek" + +#: src/object/custom_particle_system.cpp:441 +#: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 +msgid "Sine in" +msgstr "Sinusni prihod" + +#: src/object/custom_particle_system.cpp:441 +#: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 +msgid "Sine out" +msgstr "Sinusni iztek" + +#: src/object/custom_particle_system.cpp:441 +#: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 +msgid "Sine in/out" +msgstr "Sinusni prihod/iztek" + +#: src/object/custom_particle_system.cpp:442 +#: src/object/custom_particle_system.cpp:477 src/editor/node_marker.cpp:135 +msgid "Circular in" +msgstr "Krožni prihod" + +#: src/object/custom_particle_system.cpp:442 +#: src/object/custom_particle_system.cpp:477 src/editor/node_marker.cpp:135 +msgid "Circular out" +msgstr "Krožni iztek" + +#: src/object/custom_particle_system.cpp:442 +#: src/object/custom_particle_system.cpp:477 src/editor/node_marker.cpp:135 +msgid "Circular in/out" +msgstr "Krožni prihod/iztek" + +#: src/object/custom_particle_system.cpp:443 +#: src/object/custom_particle_system.cpp:478 src/editor/node_marker.cpp:136 +msgid "Exponential in" +msgstr "Eksponenten prihod" + +#: src/object/custom_particle_system.cpp:443 +#: src/object/custom_particle_system.cpp:478 src/editor/node_marker.cpp:136 +msgid "Exponential out" +msgstr "Eksponenten iztek" + +#: src/object/custom_particle_system.cpp:443 +#: src/object/custom_particle_system.cpp:478 src/editor/node_marker.cpp:136 +msgid "Exponential in/out" +msgstr "Eksponenten prihod/iztek" + +#: src/object/custom_particle_system.cpp:444 +#: src/object/custom_particle_system.cpp:479 src/editor/node_marker.cpp:137 +msgid "Elastic in" +msgstr "Elastičen prihod" + +#: src/object/custom_particle_system.cpp:444 +#: src/object/custom_particle_system.cpp:479 src/editor/node_marker.cpp:137 +msgid "Elastic out" +msgstr "Elastičen iztek" + +#: src/object/custom_particle_system.cpp:444 +#: src/object/custom_particle_system.cpp:479 src/editor/node_marker.cpp:137 +msgid "Elastic in/out" +msgstr "Elastičen prihod/iztek" + +#: src/object/custom_particle_system.cpp:445 +#: src/object/custom_particle_system.cpp:480 src/editor/node_marker.cpp:138 +msgid "Back in" +msgstr "Zadnji prihod" + +#: src/object/custom_particle_system.cpp:445 +#: src/object/custom_particle_system.cpp:480 src/editor/node_marker.cpp:138 +msgid "Back out" +msgstr "Zadnji iztek" + +#: src/object/custom_particle_system.cpp:445 +#: src/object/custom_particle_system.cpp:480 src/editor/node_marker.cpp:138 +msgid "Back in/out" +msgstr "Zadnji prihod/iztek" + +#: src/object/custom_particle_system.cpp:446 +#: src/object/custom_particle_system.cpp:481 src/editor/node_marker.cpp:139 +msgid "Bounce in" +msgstr "Odbojni prihod" + +#: src/object/custom_particle_system.cpp:446 +#: src/object/custom_particle_system.cpp:481 src/editor/node_marker.cpp:139 +msgid "Bounce out" +msgstr "Odbojni iztek" + +#: src/object/custom_particle_system.cpp:446 +#: src/object/custom_particle_system.cpp:481 src/editor/node_marker.cpp:139 +msgid "Bounce in/out" +msgstr "Odbojni prihod/iztek" + +#: src/object/custom_particle_system.cpp:462 +msgid "Birth time" +msgstr "Čas nastajanja" + +#: src/object/custom_particle_system.cpp:463 +msgid "Birth time variation" +msgstr "Razlike v času nastajanja" + +#: src/object/custom_particle_system.cpp:464 +#: src/editor/particle_editor.cpp:170 +msgid "Death mode" +msgstr "Način odmiranja" + +#: src/object/custom_particle_system.cpp:469 +#: src/editor/particle_editor.cpp:173 +msgid "Death easing" +msgstr "Umerjeno odmiranje" + +#: src/object/custom_particle_system.cpp:497 +msgid "Death time" +msgstr "Čas smrti" + +#: src/object/custom_particle_system.cpp:498 +msgid "Death time variation" +msgstr "Razlike v času odmiranja" + +#: src/object/custom_particle_system.cpp:501 +msgid "Speed X (variation)" +msgstr "Hitrost X (razlike)" + +#: src/object/custom_particle_system.cpp:502 +msgid "Speed Y (variation)" +msgstr "Hitrost Y (razlike)" + +#: src/object/custom_particle_system.cpp:503 +msgid "Acceleration X" +msgstr "Pospešek X" + +#: src/object/custom_particle_system.cpp:504 +msgid "Acceleration Y" +msgstr "Pospešek Y" + +#: src/object/custom_particle_system.cpp:505 +msgid "Friction X" +msgstr "Trenje X" + +#: src/object/custom_particle_system.cpp:506 +msgid "Friction Y" +msgstr "Trenje Y" + +#: src/object/custom_particle_system.cpp:507 +#: src/editor/particle_editor.cpp:189 +msgid "Feather factor" +msgstr "Vpliv peresa" + +#: src/object/custom_particle_system.cpp:508 +msgid "Rotation" +msgstr "Zasuk" + +#: src/object/custom_particle_system.cpp:509 +msgid "Rotation (variation)" +msgstr "Zasuk (razlike)" + +#: src/object/custom_particle_system.cpp:510 +#: src/editor/particle_editor.cpp:195 +msgid "Rotation speed" +msgstr "Hitrost zasuka" + +#: src/object/custom_particle_system.cpp:511 +msgid "Rotation speed (variation)" +msgstr "Hitrost zasuka (razlike)" + +#: src/object/custom_particle_system.cpp:512 +#: src/editor/particle_editor.cpp:200 +msgid "Rotation acceleration" +msgstr "Pospešek zasuka" + +#: src/object/custom_particle_system.cpp:513 +msgid "Rotation friction" +msgstr "Trenje zasuka" + +#: src/object/custom_particle_system.cpp:514 +#: src/editor/particle_editor.cpp:208 +msgid "Rotation mode" +msgstr "Način zasuka" + +#: src/object/custom_particle_system.cpp:515 +#: src/editor/particle_editor.cpp:206 +msgid "Fixed" +msgstr "Brez zasuka" + +#: src/object/custom_particle_system.cpp:515 +#: src/editor/particle_editor.cpp:205 +msgid "Facing" +msgstr "V smeri gibanja" + +#: src/object/custom_particle_system.cpp:515 +#: src/editor/particle_editor.cpp:204 +msgid "Wiggling" +msgstr "Naključno" + +#: src/object/custom_particle_system.cpp:519 +#: src/editor/particle_editor.cpp:219 +msgid "Collision mode" +msgstr "Način kolizije" + +#: src/object/custom_particle_system.cpp:520 +msgid "None (pass through)" +msgstr "Je ni (prehajanje skozi)" + +#: src/object/custom_particle_system.cpp:520 +msgid "Stick" +msgstr "Ustavi" + +#: src/object/custom_particle_system.cpp:520 +msgid "Stick Forever" +msgstr "Trajno ustavi" + +#: src/object/custom_particle_system.cpp:520 +#: src/editor/particle_editor.cpp:214 +msgid "Bounce (heavy)" +msgstr "Odbij (težji delec)" + +#: src/object/custom_particle_system.cpp:520 +#: src/editor/particle_editor.cpp:213 +msgid "Bounce (light)" +msgstr "Odbij (lahek delec)" + +#: src/object/custom_particle_system.cpp:520 +msgid "Kill particle" +msgstr "Uniči delec" + +#: src/object/custom_particle_system.cpp:520 +msgid "Fade out particle" +msgstr "Razblini delec" + +#: src/object/custom_particle_system.cpp:524 +msgid "Delete if off-screen" +msgstr "Izbriši, če ni na zaslonu" + +#: src/object/custom_particle_system.cpp:525 +#: src/editor/particle_editor.cpp:224 +msgid "Never" +msgstr "Nikoli" + +#: src/object/custom_particle_system.cpp:525 +#: src/editor/particle_editor.cpp:223 +msgid "Only on exit" +msgstr "Le ob izhodu" + +#: src/object/custom_particle_system.cpp:525 +msgid "Always" +msgstr "Vedno" + +#: src/object/custom_particle_system.cpp:529 +msgid "Cover screen" +msgstr "Prekrij zaslon" + +#: src/object/ispy.hpp:35 msgid "Ispy" msgstr "Nadležno oko" -#: src/object/skull_tile.hpp:31 -msgid "Skull Tile" -msgstr "Podlaga lobanje" +#: src/object/particle_zone.cpp:51 +msgid "Particle Name" +msgstr "Ime delca" + +#: src/object/particle_zone.cpp:62 +msgid "Spawn" +msgstr "Kraj nastajanja" + +#: src/object/particle_zone.cpp:63 +msgid "Life zone" +msgstr "Območje obstoja" -#: src/object/weak_block.cpp:211 -msgid "Linked" -msgstr "Povezano" +#: src/object/particle_zone.cpp:64 +msgid "Life zone (clear)" +msgstr "Območje obstoja (izbris)" -#: src/object/decal.hpp:34 +#: src/object/particle_zone.cpp:65 +msgid "Kill particles" +msgstr "Uniči delce" + +#: src/object/particle_zone.cpp:66 +msgid "Clear particles" +msgstr "Izbriši delce" + +#: src/object/weak_block.cpp:98 +msgid "Hay" +msgstr "Seno" + +#: src/object/decal.hpp:41 msgid "Decal" -msgstr "Dekorativna slika" +msgstr "Okrasna slika" -#: src/object/tilemap.cpp:217 +#: src/object/tilemap.cpp:267 msgid "Resize offset x" msgstr "Spremeni odmik x" -#: src/object/tilemap.cpp:218 +#: src/object/tilemap.cpp:268 msgid "Resize offset y" msgstr "Spremeni odmik y" -#: src/object/tilemap.cpp:223 +#: src/object/tilemap.cpp:270 src/supertux/menu/editor_sector_menu.cpp:41 +#: src/editor/object_option.cpp:178 +msgid "Width" +msgstr "Širina" + +#: src/object/tilemap.cpp:271 src/supertux/menu/editor_sector_menu.cpp:42 +#: src/editor/object_option.cpp:179 +msgid "Height" +msgstr "Višina" + +#: src/object/tilemap.cpp:273 msgid "Alpha" msgstr "Alfa" -#: src/object/tilemap.cpp:224 +#: src/object/tilemap.cpp:274 msgid "Speed x" msgstr "Hitrost x" -#: src/object/tilemap.cpp:225 +#: src/object/tilemap.cpp:275 msgid "Speed y" msgstr "Hitrost y" -#: src/object/tilemap.cpp:226 +#: src/object/tilemap.cpp:276 msgid "Tint" msgstr "Odtenek" -#: src/object/tilemap.cpp:244 src/supertux/menu/editor_tilegroup_menu.cpp:26 -#: src/editor/toolbox_widget.cpp:90 +#: src/object/tilemap.cpp:296 src/supertux/menu/editor_tilegroup_menu.cpp:26 +#: src/editor/toolbox_widget.cpp:98 msgid "Tiles" msgstr "Podlage" -#: src/object/gradient.cpp:115 -msgid "Left Colour" -msgstr "Leva barva" - -#: src/object/gradient.cpp:116 -msgid "Right Colour" -msgstr "Desna barva" - -#: src/object/gradient.cpp:118 -msgid "Top Colour" -msgstr "Zgornja barva" +#: src/object/gradient.cpp:98 +msgid "Primary Colour" +msgstr "Osnovna barva" -#: src/object/gradient.cpp:119 -msgid "Bottom Colour" -msgstr "Spodnja barva" +#: src/object/gradient.cpp:99 +msgid "Secondary Colour" +msgstr "Sekundarna barva" -#: src/object/gradient.cpp:125 +#: src/object/gradient.cpp:104 msgid "Vertical" -msgstr "Navpično" +msgstr "Navpičen" -#: src/object/gradient.cpp:125 +#: src/object/gradient.cpp:104 msgid "Horizontal" -msgstr "Vodoravno" +msgstr "Vodoraven" -#: src/object/gradient.cpp:125 +#: src/object/gradient.cpp:104 msgid "Vertical (whole sector)" -msgstr "Navpično (celotna cona)" +msgstr "Navpičen (ves predel)" -#: src/object/gradient.cpp:125 +#: src/object/gradient.cpp:104 msgid "Horizontal (whole sector)" -msgstr "Vodoravno (celotna cona)" +msgstr "Vodoraven (ves predel)" -#: src/object/gradient.cpp:135 +#: src/object/gradient.cpp:114 msgid "Blend mode" msgstr "Način mešanja" -#: src/object/gradient.cpp:136 +#: src/object/gradient.cpp:115 msgid "Blend" msgstr "Mešanje" -#: src/object/gradient.cpp:136 +#: src/object/gradient.cpp:115 msgid "Additive" msgstr "Aditivno" -#: src/object/gradient.cpp:136 +#: src/object/gradient.cpp:115 msgid "Modulate" msgstr "Blaženo" -#: src/object/gradient.cpp:136 src/supertux/menu/keyboard_menu.cpp:60 -#: src/supertux/menu/joystick_menu.cpp:106 -#: src/supertux/menu/joystick_menu.cpp:213 src/editor/object_settings.cpp:124 -msgid "None" -msgstr "Nič" +#: src/object/bumper.hpp:38 +msgid "Bumper" +msgstr "Odbijač" -#: src/object/unstable_tile.hpp:34 +#: src/object/conveyor_belt.cpp:63 +msgid "Length" +msgstr "Dolžina" + +#: src/object/moving_sprite.cpp:192 src/object/pneumatic_platform.cpp:161 +msgid "Sprite" +msgstr "Animiran izrezek" + +#: src/object/unstable_tile.hpp:42 msgid "Unstable Tile" -msgstr "Neuravnovešena podloga" +msgstr "Majava podlaga" -#: src/object/brick.hpp:31 -msgid "Brick" -msgstr "Opeka" +#: src/object/brick.hpp:70 +msgid "Heavy Brick" +msgstr "Težka opeka" -#: src/object/invisible_wall.hpp:34 +#: src/object/invisible_wall.hpp:37 msgid "Invisible Wall" msgstr "Nevidni zid" -#: src/object/spotlight.hpp:38 +#: src/object/spotlight.hpp:52 msgid "Spotlight" -msgstr "Žarišče" +msgstr "Žaromet" -#: src/object/scripted_object.hpp:39 +#: src/object/scripted_object.hpp:40 msgid "Scripted Object" msgstr "Predmet s skripto" -#: src/object/coin.hpp:75 +#: src/object/custom_particle_system_file.hpp:40 +msgid "Custom Particles from file" +msgstr "Delci iz datoteke" + +#: src/object/coin.hpp:97 msgid "Heavy Coin" msgstr "Težek kovanec" -#: src/object/bonus_block.hpp:55 +#: src/object/explosion.hpp:35 +msgid "Explosion" +msgstr "Eksplozija" + +#: src/object/bonus_block.hpp:62 msgid "Bonus Block" msgstr "Bonus kocka" -#: src/object/magicblock.hpp:41 +#: src/object/magicblock.hpp:42 msgid "Magic Tile" msgstr "Čarobna podlaga" -#: src/object/camera.hpp:67 +#: src/object/camera.hpp:61 msgid "Camera" msgstr "Kamera" -#: src/object/textscroller.hpp:44 -msgid "TextScroller" -msgstr "Premik po besedilu" +#: src/object/textscroller.hpp:45 +msgid "Text Scroller" +msgstr "Besedilni drsnik" + +#: src/gui/notification.cpp:57 +msgid "Click for more details." +msgstr "Klikni za podrobnosti." + +#: src/gui/notification.cpp:150 +msgid "Do not show again" +msgstr "Ne pokaži več" + +#: src/gui/notification.cpp:157 src/supertux/menu/download_dialog.cpp:124 +msgid "Close" +msgstr "Zapri" -#: src/gui/menu_badguy_select.cpp:93 -msgid "List of enemies" -msgstr "Seznam sovragov" +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#, c++-format +msgid "Selected item: {}" +msgstr "Izbrano: {}" -#: src/gui/menu_badguy_select.cpp:95 -msgid "Enemy" -msgstr "Sovrag" +#: src/gui/menu_string_array.cpp:70 +msgid "Edit string array" +msgstr "Uredi polje nizov" -#: src/gui/menu_badguy_select.cpp:96 +#: src/gui/menu_string_array.cpp:79 src/gui/menu_object_select.cpp:50 +#: src/supertux/menu/profile_menu.cpp:88 msgid "Add" msgstr "Dodaj" -#: src/gui/menu_badguy_select.cpp:106 src/gui/menu_color.cpp:34 -#: src/gui/dialog.hpp:80 src/gui/menu_script.cpp:47 -#: src/supertux/menu/editor_sector_menu.cpp:46 -#: src/supertux/menu/editor_levelset_menu.cpp:62 -#: src/supertux/menu/addon_menu.cpp:349 +#: src/gui/menu_string_array.cpp:80 +msgid "Insert" +msgstr "Vstavi" + +#: src/gui/menu_string_array.cpp:81 +#: src/supertux/menu/addon_preview_menu.cpp:177 src/editor/object_menu.cpp:61 +msgid "Update" +msgstr "Posodobi" + +#: src/gui/menu_string_array.cpp:82 src/supertux/menu/profile_menu.cpp:108 +#: src/supertux/menu/profile_menu.cpp:110 +msgid "Delete" +msgstr "Izbriši" + +#: src/gui/menu_string_array.cpp:84 src/gui/menu_object_select.cpp:61 +#: src/gui/menu_color.cpp:37 src/gui/dialog.hpp:87 src/gui/menu_script.cpp:46 +#: src/supertux/menu/editor_sector_menu.cpp:48 +#: src/supertux/menu/editor_levelset_menu.cpp:58 #: src/supertux/menu/editor_new_levelset_menu.cpp:37 -#: src/supertux/menu/editor_level_menu.cpp:44 src/editor/object_menu.cpp:43 +#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:71 msgid "OK" msgstr "V redu" -#: src/gui/menu_badguy_select.cpp:135 -msgid "Do you want to delete this badguy from the list?" -msgstr "Ali hočeš odstraniti tega pridaniča s seznama?" +#: src/gui/menu_object_select.cpp:46 +msgid "List of objects" +msgstr "Seznam predmetov" -#: src/gui/menu_badguy_select.cpp:136 src/gui/dialog.hpp:89 -#: src/supertux/menu/editor_menu.cpp:123 src/editor/editor.cpp:478 -msgid "Yes" -msgstr "Da" +#: src/gui/menu_object_select.cpp:48 +#, c++-format +msgid "Select object ({})" +msgstr "Izberi predmet ({})" -#: src/gui/menu_badguy_select.cpp:139 src/gui/dialog.hpp:90 -#: src/supertux/menu/editor_menu.cpp:126 src/editor/editor.cpp:485 -msgid "No" -msgstr "Ne" +#: src/gui/menu_object_select.cpp:114 +msgid "Are you sure you want to remove this object from the list?" +msgstr "Ali res želiš odstraniti ta predmet s seznama?" #: src/gui/menu_color.cpp:24 msgid "Mix the colour" msgstr "Zmešaj barvo" -#: src/gui/menu_filesystem.cpp:111 +#: src/gui/dialog.hpp:96 src/supertux/menu/editor_level_select_menu.cpp:181 +#: src/editor/editor.cpp:663 +msgid "Yes" +msgstr "Da" + +#: src/gui/dialog.hpp:97 src/supertux/menu/editor_level_select_menu.cpp:185 +#: src/editor/particle_editor.cpp:781 src/editor/editor.cpp:670 +msgid "No" +msgstr "Ne" + +#: src/gui/menu_list.cpp:38 src/gui/menu_filesystem.cpp:120 +#: src/gui/menu_paths.cpp:48 src/supertux/menu/particle_editor_save_as.cpp:42 #: src/supertux/menu/editor_sectors_menu.cpp:45 -#: src/supertux/menu/editor_sectors_menu.cpp:95 -#: src/supertux/menu/editor_sectors_menu.cpp:100 +#: src/supertux/menu/editor_sectors_menu.cpp:94 +#: src/supertux/menu/editor_sectors_menu.cpp:99 #: src/supertux/menu/editor_objectgroup_menu.cpp:42 -#: src/supertux/menu/editor_tilegroup_menu.cpp:36 src/editor/editor.cpp:489 +#: src/supertux/menu/editor_tilegroup_menu.cpp:36 +#: src/supertux/menu/editor_level_select_menu.cpp:190 +#: src/supertux/menu/editor_save_as.cpp:42 +#: src/supertux/menu/particle_editor_open.cpp:43 +#: src/editor/particle_editor.cpp:785 src/editor/editor.cpp:674 msgid "Cancel" msgstr "Prekliči" +#: src/gui/menu_filesystem.cpp:118 +msgid "Open Directory" +msgstr "Odpri imenik" + #: src/gui/menu_script.cpp:28 msgid "Edit script" -msgstr "Uredi zapis" +msgstr "Uredi skripto" -#: src/badguy/toad.hpp:37 -msgid "Toad" -msgstr "Krastača" +#: src/gui/menu_paths.cpp:32 +msgid "Clone" +msgstr "Ustvari dvojnik" -#: src/badguy/mrtree.hpp:29 -msgid "Walking Tree" -msgstr "Hodeče drevo" +#: src/gui/menu_paths.cpp:41 +msgid "" +"An error occurred and the game could\n" +"not clone the path. Please contact\n" +"the developers for support." +msgstr "Zaradi napake igri ni uspelo ustvariti\ndvojnika poti. Lepo prosimo, da to\nsporočite razvijalcem." -#: src/badguy/plant.hpp:33 -msgid "Plant" -msgstr "Rastlina" +#: src/gui/menu_paths.cpp:44 +msgid "Bind" +msgstr "Poveži" -#: src/badguy/crystallo.hpp:30 -msgid "Crystallo" -msgstr "Kristalij" +#: src/gui/menu_paths.cpp:49 +msgid "" +"Do you wish to clone the path to edit it separately,\n" +"or do you want to bind both paths together\n" +"so that any edit on one edits the other?" +msgstr "Bi želeli podvojiti pot in urediti dvojnika\nali bi raje povezali obe poti, da urejanje\nene poti spremeni tudi drugo?" + +#: src/gui/menu_paths.cpp:56 +#, c++-format +msgid "Path {}" +msgstr "Pot {}" + +#: src/gui/menu_paths.cpp:67 src/supertux/menu/integrations_menu.cpp:60 +#: src/supertux/menu/editor_converters_menu.cpp:79 +#: src/supertux/menu/video_system_menu.cpp:45 +#: src/supertux/menu/contrib_menu.cpp:102 src/supertux/menu/debug_menu.cpp:77 +#: src/supertux/menu/multiplayer_menu.cpp:39 +#: src/supertux/menu/custom_menu_menu.cpp:65 +#: src/supertux/menu/editor_level_select_menu.cpp:98 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:63 +#: src/supertux/menu/worldmap_cheat_menu.cpp:57 +#: src/supertux/menu/worldmap_cheat_menu.cpp:196 +#: src/supertux/menu/editor_levelset_select_menu.cpp:114 +#: src/supertux/menu/options_menu.cpp:223 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:69 +#: src/supertux/menu/addon_preview_menu.cpp:193 +#: src/supertux/menu/profile_menu.cpp:118 +#: src/supertux/menu/multiplayer_players_menu.cpp:91 +#: src/supertux/menu/addon_menu.cpp:153 +#: src/supertux/menu/editor_new_levelset_menu.cpp:40 +#: src/supertux/menu/options_select_menu.cpp:44 +#: src/supertux/menu/world_set_menu.cpp:33 +#: src/supertux/menu/addon_browse_menu.cpp:162 +#: src/supertux/menu/web_asset_menu.cpp:48 +#: src/supertux/menu/profile_name_menu.cpp:45 +#: src/supertux/menu/keyboard_menu.cpp:71 +#: src/supertux/menu/sorted_contrib_menu.cpp:51 +#: src/supertux/menu/language_menu.cpp:63 +#: src/supertux/menu/joystick_menu.cpp:99 +#: src/supertux/menu/contrib_levelset_menu.cpp:67 +#: src/supertux/menu/cheat_menu.cpp:58 +#: src/supertux/menu/addon_file_install_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:43 +#: src/supertux/menu/cheat_apply_menu.cpp:63 +#: src/supertux/menu/multiplayer_player_menu.cpp:205 +#: src/supertux/menu/editor_delete_level_menu.cpp:68 +msgid "Back" +msgstr "Nazaj" -#: src/badguy/totem.hpp:36 -msgid "Totem" -msgstr "Totem" +#: src/addon/addon_manager.cpp:562 +msgid "Only one resource pack is allowed to be enabled at a time." +msgstr "Naenkrat je lahko omogočen le en paket virov." -#: src/badguy/stalactite.hpp:38 -msgid "Stalactite" -msgstr "Stalaktit" +#: src/addon/addon_manager.cpp:837 +#, c++-format +msgid "Add-on {} by {} is already installed." +msgstr "Dodatek {} avtorja/ice {} je že nameščen." -#: src/badguy/haywire.hpp:42 -msgid "Haywire" -msgstr "Ponorela bomba" +#: src/addon/addon_manager.cpp:857 +#, c++-format +msgid "Add-on {} by {} successfully installed." +msgstr "Dodatek {} avtorja/ice {} je uspešno nameščen." -#: src/badguy/dispenser.hpp:48 -msgid "Dispenser" -msgstr "Avtomat" +#: src/addon/addon.cpp:71 src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Levelset" +msgstr "Zbirka stopenj" -#: src/badguy/short_fuse.hpp:29 -msgid "Short Fuse" -msgstr "Besna bomba" +#: src/addon/addon.cpp:74 src/supertux/menu/editor_levelset_menu.cpp:54 +#: data//images/engine/editor/objects.stoi:389 +msgid "Worldmap" +msgstr "Zaris sveta" -#: src/badguy/zeekling.hpp:36 +#: src/addon/addon.cpp:77 +msgid "World" +msgstr "Svet" + +#: src/addon/addon.cpp:80 +msgid "Add-on" +msgstr "Dodatek" + +#: src/addon/addon.cpp:83 +msgid "Language Pack" +msgstr "Jezikovni paket" + +#: src/addon/addon.cpp:86 +msgid "Resource Pack" +msgstr "Paket virov" + +#: src/addon/addon.cpp:89 +msgid "Unknown" +msgstr "Neznano" + +#: src/addon/addon.cpp:100 +#, c++-format +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" avtorja/ice \"{}\"" + +#: src/addon/addon.cpp:114 +msgid "add-on" +msgstr "dodatek" + +#: src/addon/addon.cpp:114 +msgid "add-ons" +msgstr "dodatki" + +#: src/badguy/toad.hpp:38 +msgid "Toad" +msgstr "Krastača" + +#: src/badguy/mrtree.hpp:32 +msgid "Mr. Tree" +msgstr "Gospod Drevo" + +#: src/badguy/plant.hpp:34 +msgid "Plant" +msgstr "Rastlina" + +#: src/badguy/tarantula.hpp:39 src/badguy/tarantula.cpp:353 +msgid "Tarantula" +msgstr "Tarantela" + +#: src/badguy/granito_giant.cpp:71 +msgid "Awake" +msgstr "Buden" + +#: src/badguy/granito_giant.cpp:72 +msgid "Sleeping" +msgstr "Speč" + +#: src/badguy/granito_giant.cpp:73 +msgid "Corrupted A" +msgstr "Skvarjen A" + +#: src/badguy/granito_giant.cpp:74 +msgid "Corrupted B" +msgstr "Skvarjen B" + +#: src/badguy/granito_giant.cpp:75 +msgid "Corrupted C" +msgstr "Skvarjen C" + +#: src/badguy/crystallo.hpp:33 +msgid "Crystallo" +msgstr "Kristalko" + +#: src/badguy/viciousivy.cpp:45 src/badguy/snail.cpp:70 +#: src/badguy/kamikazesnowball.cpp:118 src/badguy/walkingleaf.cpp:36 +#: src/badguy/jumpy.cpp:46 src/badguy/igel.cpp:189 src/badguy/mrtree.cpp:51 +msgid "Corrupted" +msgstr "Skvarjen" + +#: src/badguy/totem.hpp:37 +msgid "Totem" +msgstr "Totem" + +#: src/badguy/stalactite.hpp:42 +msgid "Stalactite" +msgstr "Stalaktit" + +#: src/badguy/fish_chasing.cpp:198 +msgid "Tracking Distance" +msgstr "Razdalja sledenja" + +#: src/badguy/fish_chasing.cpp:199 +msgid "Losing Distance" +msgstr "Razdalja zaostanka" + +#: src/badguy/fish_chasing.cpp:200 +msgid "Chase Speed" +msgstr "Hitrost zasledovanja" + +#: src/badguy/root_sapling.hpp:41 +msgid "Root Sapling" +msgstr "Sadika" + +#: src/badguy/haywire.hpp:46 +msgid "Haywire" +msgstr "Ponorela bomba" + +#: src/badguy/dispenser.hpp:52 +msgid "Dispenser" +msgstr "Avtomat" + +#: src/badguy/short_fuse.hpp:30 +msgid "Short Fuse" +msgstr "Pulferček" + +#: src/badguy/zeekling.hpp:39 msgid "Zeekling" -msgstr "Žverca" +msgstr "Zverinica" + +#: src/badguy/smartball.cpp:35 +msgid "Pumpkin" +msgstr "Buča" + +#: src/badguy/bouncing_snowball.cpp:82 +msgid "Fatbat" +msgstr "Netopirko" + +#: src/badguy/dive_mine.hpp:50 +msgid "Dive Mine" +msgstr "Potapljaška mina" + +#: src/badguy/granito_big.hpp:33 +msgid "Big Granito" +msgstr "Veliki Granitek" + +#: src/badguy/mriceblock.hpp:49 +msgid "Mr. Iceblock" +msgstr "Gospod Ledeni" + +#: src/badguy/granito.hpp:39 src/badguy/darttrap.cpp:163 +#: src/badguy/corrupted_granito.cpp:175 src/badguy/dispenser.cpp:438 +msgid "Granito" +msgstr "Granitek" + +#: src/badguy/fish_swimming.cpp:54 src/badguy/jumpy.cpp:44 +#: data//images/ice_world.strf:10 data//images/tiles.strf:28 +#: data//images/worldmap.strf:41 +msgid "Snow" +msgstr "Sneg" + +#: src/badguy/fish_swimming.cpp:55 data//images/ice_world.strf:211 +#: data//images/tiles.strf:366 data//images/worldmap.strf:67 +msgid "Forest" +msgstr "Gozd" + +#: src/badguy/crusher.hpp:71 +msgid "Crusher" +msgstr "Drobilec" + +#: src/badguy/flame.cpp:84 +msgid "Fire" +msgstr "Ogenj" + +#: src/badguy/flame.cpp:85 +msgid "Ghost" +msgstr "Strahec" + +#: src/badguy/corrupted_granito_big.hpp:35 +msgid "Corrupted Big Granito" +msgstr "Skvarjeni veliki Granitek" -#: src/badguy/mriceblock.hpp:46 -msgid "Iceblock" -msgstr "Ledena kocka" +#: src/badguy/scrystallo.cpp:57 +msgid "Walk Radius" +msgstr "Doseg hoje" -#: src/badguy/jumpy.hpp:36 +#: src/badguy/scrystallo.cpp:58 +msgid "Awakening Radius" +msgstr "Doseg zbujanja" + +#: src/badguy/scrystallo.cpp:59 +msgid "Roof-attached" +msgstr "Na stropu" + +#: src/badguy/jumpy.hpp:40 msgid "Jumpy" msgstr "Skokec" -#: src/badguy/captainsnowball.hpp:31 +#: src/badguy/captainsnowball.hpp:32 msgid "Captain Snowball" msgstr "Kapitan Snežko" -#: src/badguy/ghosttree.hpp:42 +#: src/badguy/ghosttree.hpp:43 msgid "Ghost Tree" -msgstr "Drevo strahov" +msgstr "Drevoduh" -#: src/badguy/willowisp.cpp:283 +#: src/badguy/willowisp.cpp:314 msgid "Track range" -msgstr "Obseg sledenja" +msgstr "Oddaljenost za sledenje" -#: src/badguy/willowisp.cpp:284 +#: src/badguy/willowisp.cpp:315 msgid "Vanish range" -msgstr "Obseg izginjanja" +msgstr "Oddaljenost za izginjanje" -#: src/badguy/willowisp.cpp:285 +#: src/badguy/willowisp.cpp:316 msgid "Fly speed" msgstr "Hitrost letenja" -#: src/badguy/kugelblitz.hpp:39 +#: src/badguy/kugelblitz.hpp:40 msgid "Kugelblitz" -msgstr "Svetikugla" +msgstr "Kugelblitz" -#: src/badguy/mole_rock.hpp:42 +#: src/badguy/mole_rock.hpp:44 msgid "Mole's rock" msgstr "Krtkova skala" -#: src/badguy/badguy.cpp:841 +#: src/badguy/badguy.cpp:1064 msgid "Death script" -msgstr "Smrtni zapis" +msgstr "Skripta ob smrti" -#: src/badguy/sspiky.hpp:36 +#: src/badguy/sspiky.hpp:37 msgid "Sleeping Spiky" msgstr "Speči Špikamož" -#: src/badguy/yeti_stalactite.hpp:33 +#: src/badguy/yeti_stalactite.hpp:34 msgid "Yeti's Stalactite" msgstr "Jetijev stalaktit" -#: src/badguy/livefire.hpp:37 +#: src/badguy/fish_harmless.hpp:30 +msgid "Harmless Fish" +msgstr "Neškodljiva riba" + +#: src/badguy/livefire.hpp:38 msgid "Walking Flame" msgstr "Hodeči plamen" -#: src/badguy/livefire.hpp:67 +#: src/badguy/livefire.hpp:71 msgid "Sleeping Flame" msgstr "Speči plamen" -#: src/badguy/livefire.hpp:83 +#: src/badguy/livefire.hpp:89 msgid "Dormant Flame" msgstr "Mirujoči plamen" -#: src/badguy/owl.hpp:39 +#: src/badguy/owl.hpp:45 msgid "Owl" msgstr "Sova" -#: src/badguy/igel.hpp:34 +#: src/badguy/igel.hpp:38 msgid "Igel" msgstr "Igel" -#: src/badguy/darttrap.cpp:126 +#: src/badguy/darttrap.cpp:148 msgid "Initial delay" msgstr "Začetna zakasnitev" -#: src/badguy/darttrap.cpp:128 +#: src/badguy/darttrap.cpp:150 msgid "Fire delay" msgstr "Zakasnitev ognja" -#: src/badguy/darttrap.cpp:129 +#: src/badguy/darttrap.cpp:151 msgid "Ammo" msgstr "Strelivo" -#: src/badguy/snowball.hpp:29 -msgid "Snowball" -msgstr "Snežna kepica" +#: src/badguy/darttrap.cpp:152 +msgid "Dart sprite" +msgstr "Animiran izrezek puščice" -#: src/badguy/smartblock.hpp:29 -msgid "Smartblock" -msgstr "Pametna kocka" +#: src/badguy/darttrap.cpp:164 +msgid "Skull" +msgstr "Lobanja" -#: src/badguy/yeti.cpp:369 -msgid "Fixed position" -msgstr "Stalni položaj" +#: src/badguy/snowball.hpp:30 +msgid "Mr. Snowball" +msgstr "Gospod Snežko" + +#: src/badguy/smartblock.hpp:30 +msgid "Mrs. Iceblock" +msgstr "Gospa Ledena" #: src/badguy/yeti.cpp:370 +msgid "Fixed position" +msgstr "Nepremičen" + +#: src/badguy/yeti.cpp:371 msgid "Lives" msgstr "Življenja" -#: src/badguy/goldbomb.hpp:49 +#: src/badguy/goldbomb.hpp:50 msgid "Gold Bomb" msgstr "Zlata bomba" -#: src/badguy/flyingsnowball.hpp:32 +#: src/badguy/corrupted_granito.hpp:44 +msgid "Corrupted Granito" +msgstr "Skvarjeni Granitek" + +#: src/badguy/mrbomb.cpp:48 +msgid "Classic" +msgstr "Klasičen" + +#: src/badguy/flyingsnowball.hpp:33 msgid "Flying Snowball" msgstr "Leteča kepica" -#: src/badguy/skullyhop.hpp:37 -msgid "Skullyhop" -msgstr "Glavakost" +#: src/badguy/crusher.cpp:75 +msgid "Ice (normal)" +msgstr "Ledeni (navaden)" + +#: src/badguy/crusher.cpp:76 +msgid "Ice (big)" +msgstr "Ledeni (velik)" + +#: src/badguy/crusher.cpp:77 +msgid "Rock (normal)" +msgstr "Kameni (navaden)" + +#: src/badguy/crusher.cpp:78 +msgid "Rock (big)" +msgstr "Kameni (velik)" + +#: src/badguy/crusher.cpp:79 +msgid "Corrupted (normal)" +msgstr "Skvarjen (navaden)" + +#: src/badguy/crusher.cpp:80 +msgid "Corrupted (big)" +msgstr "Skvarjen (velik)" -#: src/badguy/kamikazesnowball.hpp:32 -msgid "Snowshot" -msgstr "Hitra kepa" +#: src/badguy/crusher.cpp:492 +msgid "Sideways" +msgstr "Vstran" -#: src/badguy/kamikazesnowball.hpp:52 +#: src/badguy/kamikazesnowball.hpp:34 +msgid "Kamikaze Snowball" +msgstr "Samomorilska kepica" + +#: src/badguy/kamikazesnowball.hpp:64 msgid "Leafshot" msgstr "Hitri list" -#: src/badguy/flame.hpp:41 +#: src/badguy/fish_swimming.hpp:40 +msgid "Swimming Fish" +msgstr "Plavajoča riba" + +#: src/badguy/flame.hpp:47 msgid "Flame" msgstr "Plamen" -#: src/badguy/poisonivy.hpp:30 -msgid "Spring Leaf" -msgstr "Pomladni list" +#: src/badguy/scrystallo.hpp:31 +msgid "Sleeping Crystallo" +msgstr "Speči Kristalko" + +#: src/badguy/jumpy.cpp:45 +msgid "Wooden" +msgstr "Leseni" + +#: src/badguy/jumpy.cpp:47 +msgid "Metal" +msgstr "Kovinski" -#: src/badguy/willowisp.hpp:55 +#: src/badguy/jumpy.cpp:48 +msgid "Bag" +msgstr "Mošnjiček" + +#: src/badguy/willowisp.hpp:57 msgid "Will o' Wisp" msgstr "Blodeča lučka" -#: src/badguy/badguy.hpp:53 +#: src/badguy/fish_jumping.hpp:41 +msgid "Jumping Fish" +msgstr "Skakajoča riba" + +#: src/badguy/badguy.hpp:61 msgid "Badguy" msgstr "Pridanič" -#: src/badguy/ghostflame.hpp:30 -msgid "Ghost Flame" -msgstr "Duševni plamen" +#: src/badguy/rcrystallo.hpp:33 +msgid "Roof Crystallo" +msgstr "Stropni Kristalko" -#: src/badguy/spiky.hpp:30 +#: src/badguy/spiky.hpp:31 msgid "Spiky" msgstr "Špikamož" -#: src/badguy/walkingleaf.hpp:30 -msgid "Autumn Leaf" -msgstr "Jesenski list" +#: src/badguy/walkingleaf.hpp:33 +msgid "Walking Leaf" +msgstr "Hodeči list" -#: src/badguy/owl.cpp:227 +#: src/badguy/root.hpp:39 +msgid "Root" +msgstr "Korenina" + +#: src/badguy/owl.cpp:241 msgid "Carry" -msgstr "Nosi" +msgstr "Prenaša" -#: src/badguy/darttrap.hpp:33 +#: src/badguy/darttrap.hpp:35 msgid "Dart Trap" -msgstr "Metalec puščic" +msgstr "Pljuvač puščic" -#: src/badguy/skydive.hpp:38 +#: src/badguy/skydive.hpp:43 msgid "Skydive" msgstr "Prosti pad" -#: src/badguy/yeti.hpp:37 +#: src/badguy/yeti.hpp:38 msgid "Yeti" msgstr "Jeti" -#: src/badguy/mole.hpp:39 +#: src/badguy/snowball.cpp:41 +msgid "Bumpkin" +msgstr "Buča" + +#: src/badguy/snowball.cpp:42 +msgid "BSOD" +msgstr "Modri zaslonček smrti" + +#: src/badguy/mole.hpp:38 msgid "Mole" msgstr "Krtek" -#: src/badguy/mrbomb.hpp:42 -msgid "Bomb" -msgstr "Bomba" +#: src/badguy/corrupted_granito.cpp:176 +msgid "Skullyhop" +msgstr "Glavakost" + +#: src/badguy/mrbomb.hpp:40 +msgid "Mr. Bomb" +msgstr "Gospod Bum" -#: src/badguy/walking_candle.hpp:40 +#: src/badguy/walking_candle.hpp:41 msgid "Walking Candle" -msgstr "Hodeča sveča" +msgstr "Sveča na nogah" -#: src/badguy/angrystone.hpp:34 +#: src/badguy/angrystone.hpp:39 msgid "Angry Stone" msgstr "Jezni kamen" -#: src/badguy/spidermite.hpp:35 -msgid "Spider" -msgstr "Pajek" +#: src/badguy/tarantula.cpp:354 +msgid "Spidermite" +msgstr "Pršica prelka" -#: src/badguy/ghoul.hpp:28 +#: src/badguy/tarantula.cpp:374 +msgid "Static" +msgstr "Nepremična" + +#: src/badguy/ghoul.hpp:30 msgid "Ghoul" msgstr "Prikazen" -#: src/badguy/snowman.hpp:28 +#: src/badguy/granito_giant.hpp:32 +msgid "Giant Granito" +msgstr "Velikanski Granitek" + +#: src/badguy/snowman.hpp:29 msgid "Snowman" msgstr "Snežak" -#: src/badguy/stumpy.hpp:35 -msgid "Walking Stump" -msgstr "Hodeči štor" +#: src/badguy/viciousivy.hpp:33 +msgid "Vicious Ivy" +msgstr "Vražja vitica" + +#: src/badguy/stalactite.cpp:156 +msgid "ice" +msgstr "ledeni" + +#: src/badguy/stalactite.cpp:157 +msgid "rock" +msgstr "kameni" -#: src/badguy/fish.hpp:40 -msgid "Fish" -msgstr "Riba" +#: src/badguy/fish_chasing.hpp:33 +msgid "Chasing Fish" +msgstr "Loveča riba" -#: src/badguy/dispenser.cpp:439 +#: src/badguy/stumpy.hpp:38 +msgid "Stumpy" +msgstr "Štor" + +#: src/badguy/dispenser.cpp:412 msgid "Interval (seconds)" msgstr "Interval (v sekundah)" -#: src/badguy/dispenser.cpp:440 +#: src/badguy/dispenser.cpp:413 msgid "Random" msgstr "Naključno" -#: src/badguy/dispenser.cpp:441 data//images/engine/editor/objects.stoi:4 -msgid "Enemies" -msgstr "Sovragi" +#: src/badguy/dispenser.cpp:416 +#: src/supertux/menu/editor_objectgroup_menu.cpp:30 +#: src/editor/toolbox_widget.cpp:101 +msgid "Objects" +msgstr "Predmeti" -#: src/badguy/dispenser.cpp:442 +#: src/badguy/dispenser.cpp:419 msgid "Limit dispensed badguys" msgstr "Omeji ustvarjene pridaniče" -#: src/badguy/dispenser.cpp:444 +#: src/badguy/dispenser.cpp:421 +msgid "Obey Gravity" +msgstr "Upoštevaj težnost" + +#: src/badguy/dispenser.cpp:423 msgid "Max concurrent badguys" msgstr "Največ pridaničev hkrati" -#: src/badguy/dispenser.cpp:446 src/supertux/menu/editor_levelset_menu.cpp:60 -msgid "Type" -msgstr "Vrsta" - -#: src/badguy/dispenser.cpp:447 -msgid "dropper" -msgstr "kapalkar" +#: src/badguy/dispenser.cpp:435 +msgid "Dropper" +msgstr "Kapalkar" -#: src/badguy/dispenser.cpp:447 -msgid "rocket launcher" -msgstr "raketometalec" +#: src/badguy/dispenser.cpp:436 +msgid "Cannon" +msgstr "Top" -#: src/badguy/dispenser.cpp:447 -msgid "cannon" -msgstr "topničar" - -#: src/badguy/dispenser.cpp:447 -msgid "invisible" -msgstr "nevidnež" +#: src/badguy/dispenser.cpp:437 src/worldmap/special_tile.cpp:77 +msgid "Invisible" +msgstr "Neviden" -#: src/badguy/snail.hpp:42 +#: src/badguy/snail.hpp:43 msgid "Snail" msgstr "Polž" -#: src/badguy/smartball.hpp:31 -msgid "Smartball" -msgstr "Pametna kepa" +#: src/badguy/smartball.hpp:32 +msgid "Mrs. Snowball" +msgstr "Gospa kepica" -#: src/badguy/bouncing_snowball.hpp:31 +#: src/badguy/bouncing_snowball.hpp:39 msgid "Bouncing Snowball" -msgstr "Poskakujoča snežna kepica" +msgstr "Poskakujoča kepica" + +#: src/badguy/granito_big.cpp:52 src/badguy/granito.cpp:263 +msgid "Default" +msgstr "V privzetem položaju" + +#: src/badguy/granito_big.cpp:53 src/badguy/granito.cpp:264 +msgid "Standing" +msgstr "Stoječ" + +#: src/badguy/granito_big.cpp:54 src/badguy/granito.cpp:265 +msgid "Walking" +msgstr "Hodeč" -#: src/badguy/iceflame.hpp:33 -msgid "Ice Flame" -msgstr "Ledeni plamen" +#: src/badguy/mriceblock.cpp:63 +msgid "Laptop" +msgstr "Prenosnik" -#: src/badguy/dart.hpp:43 +#: src/badguy/dart.hpp:44 msgid "Dart" msgstr "Puščica" -#: src/supertux/statistics.cpp:47 +#: src/badguy/granito.cpp:268 +msgid "Sitting" +msgstr "Sedeč" + +#: src/supertux/statistics.cpp:54 msgid "Max coins collected:" msgstr "Največ zbranih kovancev:" -#: src/supertux/statistics.cpp:48 +#: src/supertux/statistics.cpp:55 msgid "Max fragging:" -msgstr "Največ pobitih:" +msgstr "Največ premaganih:" -#: src/supertux/statistics.cpp:49 +#: src/supertux/statistics.cpp:56 msgid "Max secrets found:" msgstr "Največ najdenih skrivnosti:" -#: src/supertux/statistics.cpp:50 +#: src/supertux/statistics.cpp:57 msgid "Best time completed:" msgstr "Najboljši čas:" -#: src/supertux/statistics.cpp:51 +#: src/supertux/statistics.cpp:58 msgid "Level target time:" msgstr "Ciljni čas stopnje:" -#: src/supertux/statistics.cpp:139 src/supertux/levelintro.cpp:160 +#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:175 msgid "Best Level Statistics" -msgstr "Statistika Najboljše Stopnje" +msgstr "Najboljša statistika" -#: src/supertux/statistics.cpp:228 +#: src/supertux/statistics.cpp:238 msgid "You" msgstr "Ti" -#: src/supertux/statistics.cpp:230 +#: src/supertux/statistics.cpp:240 msgid "Best" msgstr "Najboljši" -#: src/supertux/statistics.cpp:232 src/supertux/levelintro.cpp:166 +#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:181 msgid "Coins" msgstr "Kovanci" -#: src/supertux/statistics.cpp:255 +#: src/supertux/statistics.cpp:265 msgid "Badguys" msgstr "Pridaniči" -#: src/supertux/statistics.cpp:271 src/supertux/levelintro.cpp:172 +#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:187 msgid "Secrets" -msgstr "Skrivnosti" +msgstr "Skrivne dragotine" -#: src/supertux/game_object.hpp:77 +#: src/supertux/game_object.hpp:88 msgid "Unknown object" msgstr "Neznan predmet" -#: src/supertux/command_line_arguments.cpp:74 -#, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Uporaba: %s [MOŽNOSTI] [DATOTEKA STOPNJE]" +#: src/supertux/sector.cpp:507 +msgid "Press escape to skip" +msgstr "Preskoči s pritiskom na ubežnico (Esc)" + +#: src/supertux/command_line_arguments.cpp:92 +#, c++-format +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Uporaba: {} [MOŽNOSTI] [DATOTEKA_STOPNJE]" -#: src/supertux/command_line_arguments.cpp:75 +#: src/supertux/command_line_arguments.cpp:93 msgid "General Options:" -msgstr "Osnovne možnosti:" +msgstr "Splošne možnosti:" -#: src/supertux/command_line_arguments.cpp:76 +#: src/supertux/command_line_arguments.cpp:94 msgid " -h, --help Show this help message and quit" -msgstr "-h, --pomoč Prikaži sporočilo s pomočjo in ugasni igro" +msgstr "-h, --help : Prikaži sporočilo s pomočjo in ustavi program" -#: src/supertux/command_line_arguments.cpp:77 +#: src/supertux/command_line_arguments.cpp:95 msgid " -v, --version Show SuperTux version and quit" -msgstr "-v, --različica Prikaži različico SuperTux in ugasni igro" +msgstr "-v, --version : Izpiši različico igre in ustavi program" -#: src/supertux/command_line_arguments.cpp:78 +#: src/supertux/command_line_arguments.cpp:96 msgid " --verbose Print verbose messages" -msgstr "-verobse Prikaži verbose sporočilo" +msgstr "--verobse : Izpiši informativna sporočila" -#: src/supertux/command_line_arguments.cpp:79 +#: src/supertux/command_line_arguments.cpp:97 msgid " --debug Print extra verbose messages" -msgstr "-odpravi napake Prikaži dodatna verbose sporočila" +msgstr "--debug : Izpiši dodatna informativna sporočila" -#: src/supertux/command_line_arguments.cpp:80 +#: src/supertux/command_line_arguments.cpp:98 msgid "" " --print-datadir Print SuperTux's primary data directory." -msgstr "-print-datadir Prikaži primaren direktorij Supetux podatkov" +msgstr "--print-datadir : Izpiši glavni podatkovni imenik igre" -#: src/supertux/command_line_arguments.cpp:82 +#: src/supertux/command_line_arguments.cpp:99 +msgid "" +" --acknowledgements Print the licenses of libraries used by " +"SuperTux." +msgstr "--acknowledgements : Izpiši licence vseh knjižnic, ki jih uporablja SuperTux." + +#: src/supertux/command_line_arguments.cpp:101 msgid "Video Options:" msgstr "Nastavitve slike:" -#: src/supertux/command_line_arguments.cpp:83 +#: src/supertux/command_line_arguments.cpp:102 msgid " -f, --fullscreen Run in fullscreen mode" -msgstr "-f, --celoten zaslon Igraj čez cel zaslon" +msgstr "-f, --fullscreen : Igra zapolni ves zaslon" -#: src/supertux/command_line_arguments.cpp:84 +#: src/supertux/command_line_arguments.cpp:103 msgid " -w, --window Run in window mode" -msgstr "-w, --okno Igro prikaži v oknu" +msgstr "-w, --window : Igra teče v oknu" -#: src/supertux/command_line_arguments.cpp:85 +#: src/supertux/command_line_arguments.cpp:104 msgid " -g, --geometry WIDTHxHEIGHT Run SuperTux in given resolution" -msgstr "-g, --geometrija ŠIRINAxVIŠINA Igraj SuperTux v dani ločljivosti" +msgstr "-g, --geometry ŠIRINAxVIŠINA : SuperTux teče v dani ločljivosti" -#: src/supertux/command_line_arguments.cpp:86 +#: src/supertux/command_line_arguments.cpp:105 msgid " -a, --aspect WIDTH:HEIGHT Run SuperTux with given aspect ratio" -msgstr "-a, --razmerje ŠIRINA:VIŠINA Igraj SuperTux v danem razmerju" +msgstr "-a, --aspect ŠIRINA:VIŠINA : SuperTux teče v danem razmerju" -#: src/supertux/command_line_arguments.cpp:87 +#: src/supertux/command_line_arguments.cpp:106 msgid " -d, --default Reset video settings to default values" -msgstr "-d, --privzeto Ponastavi nastavitve slike na privzete vrednosti" +msgstr "-d, --default : Ponastavi nastavitve slike na privzete vrednosti" -#: src/supertux/command_line_arguments.cpp:88 +#: src/supertux/command_line_arguments.cpp:107 msgid " --renderer RENDERER Use sdl, opengl, or auto to render" -msgstr "--poganjanje GONILNIK Za poganjanje igre lahko uporabiš SDL, OpenGL ali samodejno." +msgstr "--renderer IZRISOVALNIK : Za poganjanje igre uporabi sdl, opengl ali auto" -#: src/supertux/command_line_arguments.cpp:90 +#: src/supertux/command_line_arguments.cpp:109 msgid "Audio Options:" msgstr "Možnosti zvoka:" -#: src/supertux/command_line_arguments.cpp:91 +#: src/supertux/command_line_arguments.cpp:110 msgid " --disable-sound Disable sound effects" -msgstr "--onemogoči-zvok Onemogoči zvočne učinke" +msgstr "--disable-sound : Onemogoči zvočne učinke" -#: src/supertux/command_line_arguments.cpp:92 +#: src/supertux/command_line_arguments.cpp:111 msgid " --disable-music Disable music" -msgstr "--onemogoči-glasbo Onemogoči glasbo" +msgstr "--disable-music : Onemogoči glasbo" -#: src/supertux/command_line_arguments.cpp:94 +#: src/supertux/command_line_arguments.cpp:113 msgid "Game Options:" msgstr "Možnosti igre:" -#: src/supertux/command_line_arguments.cpp:95 +#: src/supertux/command_line_arguments.cpp:114 msgid " --edit-level Open given level in editor" -msgstr "--edit-level Odpri dano stopnjo v urejevalniku" +msgstr "--edit-level : Odpri dano stopnjo v urejevalniku" -#: src/supertux/command_line_arguments.cpp:96 +#: src/supertux/command_line_arguments.cpp:115 msgid " --resave Loads given level and saves it" -msgstr " --ponovno shrani Naloži dano stopnjo in jo shrani" +msgstr " --resave : Naloži dano stopnjo in jo shrani" -#: src/supertux/command_line_arguments.cpp:97 +#: src/supertux/command_line_arguments.cpp:116 msgid " --show-fps Display framerate in levels" -msgstr " --show-fps Med igranjem pokaži hitrost sličic" +msgstr " --show-fps : Med igranjem pokaži hitrost sličic" -#: src/supertux/command_line_arguments.cpp:98 +#: src/supertux/command_line_arguments.cpp:117 msgid " --no-show-fps Do not display framerate in levels" -msgstr " --no-show-fps Med igranjem ne pokaži hitrosti sličic" +msgstr " --no-show-fps : Med igranjem ne pokaži hitrosti sličic" -#: src/supertux/command_line_arguments.cpp:99 +#: src/supertux/command_line_arguments.cpp:118 msgid " --show-pos Display player's current position" -msgstr "--show-pos Prikaže igralčev trenutni položaj" +msgstr "--show-pos : Prikaže igralčev trenutni položaj" -#: src/supertux/command_line_arguments.cpp:100 +#: src/supertux/command_line_arguments.cpp:119 msgid " --no-show-pos Do not display player's position" -msgstr "--no-show-pos Skrije igralčev položaj" +msgstr "--no-show-pos : Skrije igralčev položaj" -#: src/supertux/command_line_arguments.cpp:101 +#: src/supertux/command_line_arguments.cpp:120 msgid " --developer Switch on developer feature" -msgstr "-razvijalec Preklopi na razvijalski dodatek" +msgstr "--developer : Vklopi razvijalske pripomočke" -#: src/supertux/command_line_arguments.cpp:102 +#: src/supertux/command_line_arguments.cpp:121 msgid " -s, --debug-scripts Enable script debugger." -msgstr "-s, --popravi-napake Omogoči popravljanje ukaznih datotek" +msgstr "-s, --debug-scripts : Omogoči razhroščevanje ukaznih datotek" -#: src/supertux/command_line_arguments.cpp:103 +#: src/supertux/command_line_arguments.cpp:122 msgid "" " --spawn-pos X,Y Where in the level to spawn Tux. Only used if" " level is specified." -msgstr "--spawn-pos X,Y Kje v stopnji se bo prikazal Tux. Uporabi le, če je stopnja določena." +msgstr "--spawn-pos X,Y : Kje v stopnji se bo prikazal Tuks. Uporabi se le, če je stopnja določena." -#: src/supertux/command_line_arguments.cpp:104 +#: src/supertux/command_line_arguments.cpp:123 msgid " --sector SECTOR Spawn Tux in SECTOR\n" -msgstr " --sector SECTOR Ustvari Tuxa v CONI\n" +msgstr " --sector PREDEL : Udejanji Tuksa v PREDELU\n" -#: src/supertux/command_line_arguments.cpp:105 +#: src/supertux/command_line_arguments.cpp:124 msgid " --spawnpoint SPAWNPOINT Spawn Tux at SPAWNPOINT\n" -msgstr " --spawnpoint SPAWNPOINT Ustvari Tuxa na ZAČETNI TOČKI \n" - -#: src/supertux/command_line_arguments.cpp:107 -msgid "Demo Recording Options:" -msgstr "Možnosti zapisovanja demo glasbe:" - -#: src/supertux/command_line_arguments.cpp:108 -msgid " --record-demo FILE LEVEL Record a demo to FILE" -msgstr "--zapiši-demo DATOTEKA STOPNJA Zapiši demo glasbo v DATOTEKO" +msgstr " --spawnpoint ZAČETNA TOČKA : Udejanji Tuksa na ZAČETNI TOČKI \n" -#: src/supertux/command_line_arguments.cpp:109 -msgid " --play-demo FILE LEVEL Play a recorded demo" -msgstr "--predvajaj-demo DATOTEKA STOPNJA Predvajaj zapisano demo glasbo" - -#: src/supertux/command_line_arguments.cpp:111 +#: src/supertux/command_line_arguments.cpp:126 msgid "Directory Options:" -msgstr "Možnosti direktorija:" +msgstr "Možnosti imenika:" -#: src/supertux/command_line_arguments.cpp:112 +#: src/supertux/command_line_arguments.cpp:127 msgid "" " --datadir DIR Set the directory for the games datafiles" -msgstr "--datadir DIREKTORIJ Nastavi direktorij za podatke igre" +msgstr "--datadir IMENIK : Nastavi imenik za podatke igre" -#: src/supertux/command_line_arguments.cpp:113 +#: src/supertux/command_line_arguments.cpp:128 msgid "" " --userdir DIR Set the directory for user data (savegames, " "etc.)" -msgstr "--userdir DIREKTORIJ Nastavi direktorij za uporabniške podatke (savegames, itd.)" +msgstr "--userdir IMENIK : Nastavi imenik za uporabniške podatke (hrambene datoteke itd.)" -#: src/supertux/command_line_arguments.cpp:115 +#: src/supertux/command_line_arguments.cpp:130 msgid "Add-On Options:" msgstr "Možnosti dodatkov:" -#: src/supertux/command_line_arguments.cpp:116 +#: src/supertux/command_line_arguments.cpp:131 msgid " --repository-url URL Set the URL to the Add-On repository" -msgstr "--repozitorij-url URL Nastavi povezavo do repozitorija za dodatek" +msgstr "--repository-url URL : Nastavi povezavo do repozitorija za dodatek" -#: src/supertux/command_line_arguments.cpp:118 +#: src/supertux/command_line_arguments.cpp:133 msgid "Environment variables:" msgstr "Okoljske spremenljivke:" -#: src/supertux/command_line_arguments.cpp:119 +#: src/supertux/command_line_arguments.cpp:134 msgid "" " SUPERTUX2_USER_DIR Directory for user data (savegames, etc.)" -msgstr "SUPERTUX2_USER_DIR Direktorij za uporabniške podatke (savegames, itd.)" +msgstr "SUPERTUX2_USER_DIR : Imenik za uporabniške podatke (hrambene datoteke itd.)" -#: src/supertux/command_line_arguments.cpp:120 +#: src/supertux/command_line_arguments.cpp:135 msgid " SUPERTUX2_DATA_DIR Directory for the games datafiles" -msgstr "SUPERTUX2_DATA_DIR Direktorij za podatke igre" +msgstr "SUPERTUX2_DATA_DIR : Imenik za podatke igre" -#: src/supertux/title_screen.cpp:43 +#: src/supertux/title_screen.cpp:272 msgid "Copyright" msgstr "Avtorske pravice" -#: src/supertux/title_screen.cpp:44 +#: src/supertux/title_screen.cpp:273 msgid "" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to\n" "redistribute it under certain conditions; see the license file for details.\n" -msgstr "Za to igro NIKAKOR NE JAMČIMO. Ta program je zastonj in dovoljeno ti ga je deliti in razmnoževati pod\ndoločenimi pogoji; več o tem si preberi v datoteki za licenco.\n" +msgstr "Za to igro NIKAKOR NE JAMČIMO. To je brezplačna in prosta programska oprema in dovoljeno ti jo je deliti in razmnoževati pod\ndoločenimi pogoji; več o tem si preberi v datoteki za licenco.\n" + +#: src/supertux/game_object.cpp:114 +msgid "Version" +msgstr "Različica" + +#: src/supertux/game_object.cpp:129 +#: src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Type" +msgstr "Vrsta" + +#: src/supertux/menu/integrations_menu.cpp:49 +msgid "Integrations" +msgstr "Integracije" + +#: src/supertux/menu/integrations_menu.cpp:51 +msgid "Do not share level names when editing" +msgstr "Med urejanjem ne deli imen stopenj" + +#: src/supertux/menu/integrations_menu.cpp:52 +msgid "" +"Enable this if you want to work on secret levels and don't want the names to" +" be spoiled" +msgstr "Omogoči to možnost, če se želiš ukvarjati s skrivnimi stopnjami, pa nočeš razkriti imen" + +#: src/supertux/menu/integrations_menu.cpp:54 +msgid "Enable Discord integration" +msgstr "Omogoči integracijo Discorda" + +#: src/supertux/menu/integrations_menu.cpp:55 +msgid "" +"Sends information to your Discord application about what you're doing in the" +" game." +msgstr "Svoj Discord obveščaj, kaj počneš v igri." + +#: src/supertux/menu/integrations_menu.cpp:57 +msgid "Discord (disabled; not compiled)" +msgstr "Discord (onemogočen; nepreveden)" + +#: src/supertux/menu/editor_converters_menu.cpp:61 +#: src/supertux/menu/editor_menu.cpp:85 +msgid "Convert Tiles" +msgstr "Pretvori podlage" + +#: src/supertux/menu/editor_converters_menu.cpp:64 +msgid "Select Tile Conversion File" +msgstr "Izberi datoteko za pretvarjanje podlag" + +#: src/supertux/menu/editor_converters_menu.cpp:72 +#, c++-format +msgid "By: {}" +msgstr "Avtor/ica: {}" -#: src/supertux/menu/contrib_menu.cpp:79 +#: src/supertux/menu/editor_converters_menu.cpp:75 +msgid "Convert Tiles By File" +msgstr "Pretvori podlage z datoteko" + +#: src/supertux/menu/editor_converters_menu.cpp:76 +msgid "Convert all tiles in the current level by a file, specified above." +msgstr "Pretvrori vse podlage v trenutni stopnji z zgoraj navedeno datoteko." + +#: src/supertux/menu/editor_converters_menu.cpp:89 +msgid "No tile conversion file selected." +msgstr "Pretvorbena datoteka ni izbrana." + +#: src/supertux/menu/editor_converters_menu.cpp:93 +msgid "" +"This will convert all tiles in the level. Proceed?\n" +"\n" +"Note: This should not be ran more than once on a level.\n" +"Creating a separate copy of the level is highly recommended." +msgstr "To bo pretvorilo vse podlage v stopnji. Vseeno nadaljujem?\n\nPozor: Idealno naj tega za posamezno stopnjo ne bi izvedli več\nkot enkrat. Priporočljivo je, da ustvariš ločeno kopijo stopnje." + +#: src/supertux/menu/video_system_menu.cpp:36 +msgid "Select Video System" +msgstr "Izberi video sistem" + +#: src/supertux/menu/video_system_menu.cpp:37 +#, c++-format +msgid "Used video system: {}" +msgstr "Uporabljen video sistem: {}" + +#: src/supertux/menu/video_system_menu.cpp:54 +msgid "Restart game for the changes to take effect" +msgstr "Spremembe se bodo poznale šele po ponovnem zagonu igre." + +#: src/supertux/menu/contrib_menu.cpp:68 #: src/supertux/menu/world_set_menu.cpp:31 msgid "Contrib Levels" msgstr "Prispevane stopnje" +#: src/supertux/menu/contrib_menu.cpp:98 +#: src/supertux/menu/contrib_menu.cpp:112 +msgid "Official Contrib Levels" +msgstr "Uradne prispevane stopnje" + +#: src/supertux/menu/contrib_menu.cpp:99 +#: src/supertux/menu/contrib_menu.cpp:118 +msgid "Community Contrib Levels" +msgstr "Prispevane stopnje skupnosti" + +#: src/supertux/menu/contrib_menu.cpp:100 +#: src/supertux/menu/contrib_menu.cpp:124 +msgid "User Contrib Levels" +msgstr "Prispevane stopnje uporabnika" + +#: src/supertux/menu/contrib_menu.cpp:113 +msgid "How is this possible? There are no Official Contrib Levels!" +msgstr "Kako je to mogoče? Ni uradnih prispevanih stopenj!" + #: src/supertux/menu/contrib_menu.cpp:119 -#: src/supertux/menu/contrib_menu.cpp:150 -msgid "*NEW*" -msgstr "*NOVO*" +msgid "No Community Contrib Levels yet. Download them from the Add-ons Menu." +msgstr "Ni še stopenj, ki bi jih prispevala skupnost. Prenesi si jih prek menija dodatkov." -#: src/supertux/menu/contrib_menu.cpp:172 src/supertux/menu/debug_menu.cpp:75 -#: src/supertux/menu/editor_level_select_menu.cpp:84 -#: src/supertux/menu/worldmap_cheat_menu.cpp:55 -#: src/supertux/menu/worldmap_cheat_menu.cpp:153 -#: src/supertux/menu/editor_levelset_select_menu.cpp:96 -#: src/supertux/menu/options_menu.cpp:405 -#: src/supertux/menu/profile_menu.cpp:47 src/supertux/menu/addon_menu.cpp:213 -#: src/supertux/menu/editor_new_levelset_menu.cpp:40 -#: src/supertux/menu/world_set_menu.cpp:33 -#: src/supertux/menu/keyboard_menu.cpp:51 -#: src/supertux/menu/language_menu.cpp:56 -#: src/supertux/menu/joystick_menu.cpp:97 -#: src/supertux/menu/contrib_levelset_menu.cpp:67 -#: src/supertux/menu/cheat_menu.cpp:44 -msgid "Back" -msgstr "Nazaj" +#: src/supertux/menu/contrib_menu.cpp:125 +msgid "No User Contrib Levels yet. Create some with the Level Editor." +msgstr "Nimaš še svojih prispevanih stopenj. Ustvari jih z urejevalnikom stopenj." -#: src/supertux/menu/debug_menu.cpp:32 +#: src/supertux/menu/debug_menu.cpp:34 msgid "Debug" -msgstr "Razhrošči" +msgstr "Razhroščevanje" -#: src/supertux/menu/debug_menu.cpp:56 +#: src/supertux/menu/debug_menu.cpp:58 msgid "Game Speed" msgstr "Hitrost igre" -#: src/supertux/menu/debug_menu.cpp:57 +#: src/supertux/menu/debug_menu.cpp:59 msgid "Adjust Game Speed" msgstr "Nastavi hitrost igre" -#: src/supertux/menu/debug_menu.cpp:63 +#: src/supertux/menu/debug_menu.cpp:65 msgid "Show Collision Rects" msgstr "Pokaži trkovne meje" -#: src/supertux/menu/debug_menu.cpp:64 +#: src/supertux/menu/debug_menu.cpp:66 msgid "Show Worldmap Path" -msgstr "Pokaži pot zemljevida sveta" +msgstr "Pokaži pot zarisa sveta" -#: src/supertux/menu/debug_menu.cpp:65 +#: src/supertux/menu/debug_menu.cpp:67 msgid "Show Controller" msgstr "Pokaži krmilnik" -#: src/supertux/menu/debug_menu.cpp:66 +#: src/supertux/menu/debug_menu.cpp:68 msgid "Show Framerate" msgstr "Pokaži hitrost sličic" -#: src/supertux/menu/debug_menu.cpp:67 +#: src/supertux/menu/debug_menu.cpp:69 msgid "Draw Redundant Frames" -msgstr "Nariši nepotrebne sličice" +msgstr "Izriši odvečne sličice" -#: src/supertux/menu/debug_menu.cpp:68 +#: src/supertux/menu/debug_menu.cpp:70 msgid "Show Player Position" msgstr "Pokaži igralčev položaj" -#: src/supertux/menu/debug_menu.cpp:69 +#: src/supertux/menu/debug_menu.cpp:71 msgid "Use Bitmap Fonts" -msgstr "Uporabi pisave Bitmap" +msgstr "Uporabi bitmap pisave" -#: src/supertux/menu/debug_menu.cpp:72 +#: src/supertux/menu/debug_menu.cpp:74 msgid "Dump Texture Cache" -msgstr "Shrani teksture v predpomnilnik" +msgstr "Shrani stanje predpomnilnika tekstur" + +#: src/supertux/menu/particle_editor_save_as.cpp:33 +msgid "Save particle as" +msgstr "Shrani delec kot" + +#: src/supertux/menu/particle_editor_save_as.cpp:37 +#: src/supertux/menu/editor_save_as.cpp:37 +msgid "File name" +msgstr "Datotečno ime" + +#: src/supertux/menu/particle_editor_save_as.cpp:38 +#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:767 +msgid "Save" +msgstr "Shrani" + +#: src/supertux/menu/multiplayer_menu.cpp:27 +#: src/supertux/menu/multiplayer_players_menu.cpp:34 +msgid "Multiplayer" +msgstr "Večigralski način" + +#: src/supertux/menu/multiplayer_menu.cpp:30 +msgid "Auto-manage Players" +msgstr "Samodejno upravljanje igralcev" + +#: src/supertux/menu/multiplayer_menu.cpp:31 +msgid "" +"Automatically add and remove players when controllers are plugged or " +"unplugged" +msgstr "Samodejno doda in odstrani igralce, ko zazna priklop ali odklop krmilnikov" + +#: src/supertux/menu/multiplayer_menu.cpp:33 +msgid "Allow Multibind" +msgstr "Dovoli večvezavo" + +#: src/supertux/menu/multiplayer_menu.cpp:34 +msgid "Allow binding multiple joysticks to a single player" +msgstr "Omogoči vezavo več igralnih palic na enega igralca" + +#: src/supertux/menu/multiplayer_menu.cpp:36 +msgid "Manage Players" +msgstr "Upravljanje igralcev" #: src/supertux/menu/editor_sectors_menu.cpp:31 msgid "Choose Sector" -msgstr "Izberi cono" +msgstr "Izberi predel" #: src/supertux/menu/editor_sectors_menu.cpp:41 msgid "Sector Settings" -msgstr "Nastavitve cone" +msgstr "Nastavitve predela" #: src/supertux/menu/editor_sectors_menu.cpp:42 msgid "Create Sector" -msgstr "Ustvari cono" +msgstr "Ustvari predel" #: src/supertux/menu/editor_sectors_menu.cpp:43 msgid "Delete Sector" -msgstr "Izbriši cono" +msgstr "Izbriši predel" -#: src/supertux/menu/editor_sectors_menu.cpp:93 +#: src/supertux/menu/editor_sectors_menu.cpp:92 msgid "Each level must have at least one sector." -msgstr "Vsaka stopnja mora imeti vsaj eno cono." +msgstr "Vsaka stopnja mora imeti vsaj en predel." -#: src/supertux/menu/editor_sectors_menu.cpp:98 +#: src/supertux/menu/editor_sectors_menu.cpp:97 msgid "Do you really want to delete this sector?" -msgstr "Ali res hočeš izbrisati to cono?" +msgstr "Ali res hočeš izbrisati ta predel?" -#: src/supertux/menu/editor_sectors_menu.cpp:101 +#: src/supertux/menu/editor_sectors_menu.cpp:100 msgid "Delete sector" -msgstr "Izbriši cono" +msgstr "Izbriši predel" -#: src/supertux/menu/editor_objectgroup_menu.cpp:30 -#: src/editor/toolbox_widget.cpp:93 -msgid "Objects" -msgstr "Predmeti" +#: src/supertux/menu/custom_menu_menu.cpp:49 +#: src/supertux/menu/options_menu.cpp:191 +msgid "Menu Customization" +msgstr "Prilagajanje menija" + +#: src/supertux/menu/custom_menu_menu.cpp:51 +msgid "Menu Back Color" +msgstr "Barva ozadja menija" + +#: src/supertux/menu/custom_menu_menu.cpp:52 +msgid "Menu Front Color" +msgstr "Barva ospredja menija" + +#: src/supertux/menu/custom_menu_menu.cpp:53 +msgid "Menu Help Back Color" +msgstr "Barva ozadja pomagalskega menija" + +#: src/supertux/menu/custom_menu_menu.cpp:54 +msgid "Menu Help Front Color" +msgstr "Barva ospredja pomagalskega menija" + +#: src/supertux/menu/custom_menu_menu.cpp:55 +msgid "Label Text Color" +msgstr "Barva oznake" + +#: src/supertux/menu/custom_menu_menu.cpp:56 +msgid "Active Text Color" +msgstr "Barva dejavnega besedila" + +#: src/supertux/menu/custom_menu_menu.cpp:57 +msgid "Divider Line Color" +msgstr "Barva ločilne črte" + +#: src/supertux/menu/custom_menu_menu.cpp:58 +msgid "Menu Roundness" +msgstr "Zglajenost menija" -#: src/supertux/menu/editor_level_select_menu.cpp:58 +#: src/supertux/menu/custom_menu_menu.cpp:60 +msgid "Editor Interface Color" +msgstr "Barva vmesnika v urejevalniku" + +#: src/supertux/menu/custom_menu_menu.cpp:61 +msgid "Editor Hover Color" +msgstr "Kazalna barva v urejevalniku" + +#: src/supertux/menu/custom_menu_menu.cpp:62 +msgid "Editor Grab Color" +msgstr "Izbiralna barva v urejevalniku" + +#: src/supertux/menu/custom_menu_menu.cpp:64 +msgid "Reset to defaults" +msgstr "Ponastavi na privzeto" + +#: src/supertux/menu/editor_level_select_menu.cpp:72 msgid "Empty World" msgstr "Prazen svet" -#: src/supertux/menu/editor_level_select_menu.cpp:73 +#: src/supertux/menu/editor_level_select_menu.cpp:87 msgid "Create Level" msgstr "Ustvari stopnjo" -#: src/supertux/menu/editor_level_select_menu.cpp:77 +#: src/supertux/menu/editor_level_select_menu.cpp:91 msgid "Edit Worldmap" -msgstr "Uredi zemljevid sveti" +msgstr "Uredi zaris sveti" -#: src/supertux/menu/editor_level_select_menu.cpp:79 +#: src/supertux/menu/editor_level_select_menu.cpp:93 msgid "Create Worldmap" -msgstr "Ustvari zemljevid sveta" +msgstr "Ustvari zaris sveta" -#: src/supertux/menu/editor_level_select_menu.cpp:83 -#: src/supertux/menu/editor_levelset_menu.cpp:56 +#: src/supertux/menu/editor_level_select_menu.cpp:95 +#: src/supertux/menu/editor_delete_level_menu.cpp:55 +msgid "Delete level" +msgstr "Izbriši stopnjo" + +#: src/supertux/menu/editor_level_select_menu.cpp:97 +#: src/supertux/menu/editor_levelset_menu.cpp:50 msgid "World Settings" msgstr "Nastavitve sveta" -#: src/supertux/menu/editor_level_select_menu.cpp:123 +#: src/supertux/menu/editor_level_select_menu.cpp:141 msgid "" "Share this worldmap under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" "If you don't agree with this license, change it in worldmap properties.\n" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." -msgstr "Ta zemljevid sveta deli pod licenco CC-BY-SA 4.0 International (priporočljivo).\nS tem je drugim omogočeno preurejanje in redistribucija.\nČe se s to licenco ne strinjaš, jo spremeni v lastnostih stopnje.\nOPOZORILO: Avtorji SuperTuxa ne prevzemajo odgovornosti za tvojo izbiro licence." +msgstr "Ta zaris sveta lahko deliš pod licenco CC-BY-SA 4.0 International (priporočljivo).\nS tem sta drugim omogočena preurejanje in ponovno deljenje.\nČe se s to licenco ne strinjaš, jo spremeni v nastavitvah sveta.\nOPOZORILO: Avtorji SuperTuxa ne prevzemajo odgovornosti za tvojo izbiro licence." -#: src/supertux/menu/editor_level_select_menu.cpp:130 +#: src/supertux/menu/editor_level_select_menu.cpp:148 msgid "" "Share this level under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" "If you don't agree with this license, change it in level properties.\n" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." -msgstr "To stopnjo deli pod licenco CC-BY-SA 4.0 International (priporočljivo).\nS tem je drugim omogočeno preurejanje in redistribucija.\nČe se s to licenco ne strinjaš, jo spremeni v lastnostih stopnje.\nOPOZORILO: Avtorji SuperTuxa ne prevzemajo odgovornosti za tvojo izbiro licence." +msgstr "To stopnjo deli pod licenco CC-BY-SA 4.0 International (priporočljivo).\nS tem sta drugim omogočena preurejanje in ponovno deljenje.\nČe se s to licenco ne strinjaš, jo spremeni v nastavitvah stopnje.\nOPOZORILO: Avtorji SuperTuxa ne prevzemajo odgovornosti za tvojo izbiro licence." -#: src/supertux/menu/worldmap_cheat_menu.cpp:34 -#: src/supertux/menu/cheat_menu.cpp:30 -msgid "Cheats" -msgstr "Goljufije" +#: src/supertux/menu/editor_level_select_menu.cpp:179 +msgid "" +"An auto-save recovery file was found. Would you like to restore the recovery\n" +"file and resume where you were before the editor crashed?" +msgstr "Igra je odkrila obnovitveno shrambeno datoteko. Ali želiš obnoviti shranjeno stanje\nin nadaljevati tam, kjer si ostal/a, preden se je program sesul?" + +#: src/supertux/menu/editor_level_select_menu.cpp:186 +msgid "This will delete the auto-save file. Are you sure?" +msgstr "To bo izbrisalo shrambeno datoteko. Želiš nadaljevati?" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:35 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:52 +#: src/supertux/menu/cheat_apply_menu.cpp:33 +#: src/supertux/menu/cheat_apply_menu.cpp:51 +msgid "Apply cheat to player" +msgstr "Omogoči švindlanje za igralca" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:60 +#: src/supertux/menu/multiplayer_players_menu.cpp:39 +#: src/supertux/menu/keyboard_menu.cpp:63 +#: src/supertux/menu/cheat_apply_menu.cpp:39 +#: src/supertux/menu/cheat_apply_menu.cpp:59 +#: src/supertux/menu/multiplayer_player_menu.cpp:37 +#, c++-format +msgid "Player {}" +msgstr "Igralec/ka {}" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:57 +#: src/supertux/menu/cheat_apply_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:56 +msgid "All Players" +msgstr "Vsi igralci" #: src/supertux/menu/worldmap_cheat_menu.cpp:36 -#: src/supertux/menu/cheat_menu.cpp:32 -msgid "Bonus: Grow" -msgstr "Bonus: Rasti" +#: src/supertux/menu/cheat_menu.cpp:31 +msgid "Cheats" +msgstr "Švindlanje" -#: src/supertux/menu/worldmap_cheat_menu.cpp:37 +#: src/supertux/menu/worldmap_cheat_menu.cpp:38 #: src/supertux/menu/cheat_menu.cpp:33 -msgid "Bonus: Fire" -msgstr "Bonus: Plameni" +msgid "Bonus: Grow" +msgstr "Bonus: Rast" -#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/worldmap_cheat_menu.cpp:39 #: src/supertux/menu/cheat_menu.cpp:34 +msgid "Bonus: Fire" +msgstr "Bonus: Ogenj" + +#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/cheat_menu.cpp:35 msgid "Bonus: Ice" msgstr "Bonus: Led" -#: src/supertux/menu/worldmap_cheat_menu.cpp:39 -#: src/supertux/menu/cheat_menu.cpp:35 +#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/cheat_menu.cpp:36 msgid "Bonus: Air" msgstr "Bonus: Zrak" -#: src/supertux/menu/worldmap_cheat_menu.cpp:40 -#: src/supertux/menu/cheat_menu.cpp:36 +#: src/supertux/menu/worldmap_cheat_menu.cpp:42 +#: src/supertux/menu/cheat_menu.cpp:37 msgid "Bonus: Earth" -msgstr "Bonus: Prst" +msgstr "Bonus: Zemlja" -#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/worldmap_cheat_menu.cpp:43 msgid "Bonus: None" msgstr "Bonus: Nič" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:51 msgid "Leave Ghost Mode" -msgstr "Zapusti način za duhove" +msgstr "Prenehaj biti duhec" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:50 msgid "Activate Ghost Mode" -msgstr "Vključi način za duhove" +msgstr "Postani duhec" -#: src/supertux/menu/worldmap_cheat_menu.cpp:46 -#: src/supertux/menu/cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:48 +#: src/supertux/menu/cheat_menu.cpp:41 msgid "Finish Level" msgstr "Končaj stopnjo" -#: src/supertux/menu/worldmap_cheat_menu.cpp:47 +#: src/supertux/menu/worldmap_cheat_menu.cpp:49 msgid "Reset Level" msgstr "Ponastavi stopnjo" -#: src/supertux/menu/worldmap_cheat_menu.cpp:49 +#: src/supertux/menu/worldmap_cheat_menu.cpp:51 msgid "Finish Worldmap" -msgstr "Končaj zemljevid sveta" +msgstr "Končaj zaris sveta" -#: src/supertux/menu/worldmap_cheat_menu.cpp:50 +#: src/supertux/menu/worldmap_cheat_menu.cpp:52 msgid "Reset Worldmap" -msgstr "Ponastavi zemljevid sveta" +msgstr "Ponastavi zaris sveta" -#: src/supertux/menu/worldmap_cheat_menu.cpp:52 +#: src/supertux/menu/worldmap_cheat_menu.cpp:54 msgid "Go to level" msgstr "Pojdi na stopnjo" -#: src/supertux/menu/worldmap_cheat_menu.cpp:53 +#: src/supertux/menu/worldmap_cheat_menu.cpp:55 msgid "Go to main spawnpoint" msgstr "Pojdi na glavno začetno točko" -#: src/supertux/menu/worldmap_cheat_menu.cpp:145 +#: src/supertux/menu/worldmap_cheat_menu.cpp:188 msgid "Select level" msgstr "Izberi stopnjo" -#: src/supertux/menu/editor_levelset_select_menu.cpp:54 +#: src/supertux/menu/editor_save_as.cpp:33 +#: src/supertux/menu/editor_menu.cpp:63 +msgid "Save Level as" +msgstr "Shrani stopnjo kot" + +#: src/supertux/menu/editor_save_as.cpp:33 +#: src/supertux/menu/editor_menu.cpp:64 +msgid "Save Copy" +msgstr "Shrani kopijo" + +#: src/supertux/menu/editor_levelset_select_menu.cpp:71 msgid "Choose World" msgstr "Izberi svet" -#: src/supertux/menu/editor_levelset_select_menu.cpp:82 -#, c-format -msgid "%d level" -msgid_plural "%d levels" -msgstr[0] "%d stopnja" -msgstr[1] "%d stopnji" -msgstr[2] "%d stopnje" -msgstr[3] "%d stopenj" +#: src/supertux/menu/editor_levelset_select_menu.cpp:99 +#, c++-format +msgid "{} level" +msgid_plural "{} levels" +msgstr[0] "{} stopnja" +msgstr[1] "{} stopnji" +msgstr[2] "{} stopnje" +msgstr[3] "{} stopenj" -#: src/supertux/menu/editor_levelset_select_menu.cpp:95 +#: src/supertux/menu/editor_levelset_select_menu.cpp:112 msgid "Create World" msgstr "Ustvari svet" -#: src/supertux/menu/options_menu.cpp:85 src/supertux/menu/main_menu.cpp:53 -#: src/supertux/menu/game_menu.cpp:61 src/supertux/menu/worldmap_menu.cpp:31 -msgid "Options" -msgstr "Nastavitve" +#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:41 +msgid "Delete World" +msgstr "Izbriši svet" -#: src/supertux/menu/options_menu.cpp:91 -#: src/supertux/menu/options_menu.cpp:127 -#: src/supertux/menu/options_menu.cpp:418 -#: src/supertux/menu/options_menu.cpp:439 src/editor/object_settings.cpp:112 -msgid "auto" -msgstr "auto" +#: src/supertux/menu/options_menu.cpp:72 +#: src/supertux/menu/options_select_menu.cpp:35 +msgid "Locale" +msgstr "Jezikovne nastavitve" -#: src/supertux/menu/options_menu.cpp:206 -msgid "Desktop" -msgstr "Namizje" - -#: src/supertux/menu/options_menu.cpp:332 +#: src/supertux/menu/options_menu.cpp:76 msgid "Select Language" msgstr "Izberi jezik" -#: src/supertux/menu/options_menu.cpp:333 +#: src/supertux/menu/options_menu.cpp:77 msgid "Select a different language to display text in" msgstr "Izberi drug jezik" -#: src/supertux/menu/options_menu.cpp:335 +#: src/supertux/menu/options_menu.cpp:79 msgid "Language Packs" msgstr "Jezikovni paketi" -#: src/supertux/menu/options_menu.cpp:336 +#: src/supertux/menu/options_menu.cpp:80 msgid "Language packs contain up-to-date translations" -msgstr "Jezikovni paketi vsebujejo posodobljene prevode" - -#: src/supertux/menu/options_menu.cpp:338 -#: src/supertux/menu/profile_menu.cpp:30 -msgid "Select Profile" -msgstr "Izberi profil" +msgstr "Jezikovni paketi vsebujejo najnovejše prevode" -#: src/supertux/menu/options_menu.cpp:339 -msgid "Select a profile to play with" -msgstr "Izberi profil za igranje" +#: src/supertux/menu/options_menu.cpp:88 +#: src/supertux/menu/options_select_menu.cpp:37 +msgid "Video" +msgstr "Slika" -#: src/supertux/menu/options_menu.cpp:342 +#: src/supertux/menu/options_menu.cpp:91 msgid "Window Resizable" -msgstr "Okno prilagodljivo" +msgstr "Razširljivost okno" -#: src/supertux/menu/options_menu.cpp:343 +#: src/supertux/menu/options_menu.cpp:92 msgid "Allow window resizing, might require a restart to take effect" msgstr "Omogoči spreminjanje velikosti okna; morda bo potreben ponoven zagon igre" -#: src/supertux/menu/options_menu.cpp:345 -msgid "Window Resolution" -msgstr "Ločljivost okna" - -#: src/supertux/menu/options_menu.cpp:346 -msgid "Resize the window to the given size" -msgstr "Povečaj/zmanjšaj okno na dano velikost" - -#: src/supertux/menu/options_menu.cpp:348 +#: src/supertux/menu/options_menu.cpp:96 msgid "Fullscreen" -msgstr "Celoten zaslon" +msgstr "Čez cel zaslon" -#: src/supertux/menu/options_menu.cpp:349 +#: src/supertux/menu/options_menu.cpp:97 msgid "Fill the entire screen" -msgstr "Zapolni celoten zaslon" - -#: src/supertux/menu/options_menu.cpp:351 -msgid "Fullscreen Resolution" -msgstr "Celozaslonska ločljivost" +msgstr "Zapolni cel zaslon" -#: src/supertux/menu/options_menu.cpp:352 -msgid "" -"Determine the resolution used in fullscreen mode (you must toggle fullscreen" -" to complete the change)" -msgstr "Ugotovi ločljivost za celoten zaslon (igra mora biti čez cel zaslon, da se bo sprememba pokazala)" - -#: src/supertux/menu/options_menu.cpp:354 -msgid "Magnification" -msgstr "Povečava" +#: src/supertux/menu/options_menu.cpp:104 +msgid "Fit to browser" +msgstr "Prilagodi brskalniku" -#: src/supertux/menu/options_menu.cpp:355 -msgid "Change the magnification of the game area" -msgstr "Spremeni povečavo igralne površine" +#: src/supertux/menu/options_menu.cpp:105 +msgid "Fit the resolution to the size of your browser" +msgstr "Prilagodi ločljivost velikosti tvojega brskalnika" -#: src/supertux/menu/options_menu.cpp:357 -msgid "VSync" -msgstr "VSync" +#: src/supertux/menu/options_menu.cpp:116 +msgid "Change Video System" +msgstr "Spremeni video sistem" -#: src/supertux/menu/options_menu.cpp:358 -msgid "Set the VSync mode" -msgstr "Nastavi VSync način" +#: src/supertux/menu/options_menu.cpp:117 +msgid "Change video system used to render graphics" +msgstr "Spremeni sistem za grafično upodabljanje" -#: src/supertux/menu/options_menu.cpp:360 -msgid "Aspect Ratio" -msgstr "Razmerje" - -#: src/supertux/menu/options_menu.cpp:361 -msgid "Adjust the aspect ratio" -msgstr "Spremeni razmerje" +#: src/supertux/menu/options_menu.cpp:124 +#: src/supertux/menu/options_select_menu.cpp:38 +msgid "Audio" +msgstr "Zvok" -#: src/supertux/menu/options_menu.cpp:366 +#: src/supertux/menu/options_menu.cpp:129 msgid "Disable all sound effects" msgstr "Onemogoči vse zvočne učinke" -#: src/supertux/menu/options_menu.cpp:368 +#: src/supertux/menu/options_menu.cpp:131 msgid "Disable all music" msgstr "Onemogoči vso glasbo" -#: src/supertux/menu/options_menu.cpp:370 -msgid "Sound Volume" -msgstr "Glasnost zvoka" - -#: src/supertux/menu/options_menu.cpp:371 -msgid "Adjust sound volume" -msgstr "Nastavi glasnost zvoka" - -#: src/supertux/menu/options_menu.cpp:373 -msgid "Music Volume" -msgstr "Glasnost glasbe" - -#: src/supertux/menu/options_menu.cpp:374 -msgid "Adjust music volume" -msgstr "Nastavi glasnost glasbe" - -#: src/supertux/menu/options_menu.cpp:378 +#: src/supertux/menu/options_menu.cpp:138 msgid "Sound (disabled)" msgstr "Zvok (onemogočen)" -#: src/supertux/menu/options_menu.cpp:379 +#: src/supertux/menu/options_menu.cpp:139 msgid "Music (disabled)" msgstr "Glasba (onemogočena)" -#: src/supertux/menu/options_menu.cpp:382 -#: src/supertux/menu/keyboard_menu.cpp:30 +#: src/supertux/menu/options_menu.cpp:147 +#: src/supertux/menu/options_select_menu.cpp:39 +msgid "Controls" +msgstr "Krmilniki" + +#: src/supertux/menu/options_menu.cpp:151 +msgid "Enable Rumbling Controllers" +msgstr "Omogoči vibriranje krmilnikov" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "Enable vibrating the game controllers." +msgstr "Omogoči vibriranje krmilnikov." + +#: src/supertux/menu/options_menu.cpp:152 +msgid "This feature is currently only used in the multiplayer options menu." +msgstr "Ta funkcionalnost je uporabljena edinole v večigralskih nastavitvah." + +#: src/supertux/menu/options_menu.cpp:154 +#: src/supertux/menu/keyboard_menu.cpp:34 msgid "Setup Keyboard" msgstr "Nastavitve tipkovnice" -#: src/supertux/menu/options_menu.cpp:383 +#: src/supertux/menu/options_menu.cpp:155 msgid "Configure key-action mappings" -msgstr "Spremeni razporeditev tipk" +msgstr "Spremeni pomen tipk" -#: src/supertux/menu/options_menu.cpp:385 -#: src/supertux/menu/joystick_menu.cpp:52 +#: src/supertux/menu/options_menu.cpp:158 +#: src/supertux/menu/joystick_menu.cpp:54 msgid "Setup Joystick" -msgstr "Nastavitve užitkarske palice" +msgstr "Nastavitve igralne palice" -#: src/supertux/menu/options_menu.cpp:386 +#: src/supertux/menu/options_menu.cpp:159 msgid "Configure joystick control-action mappings" msgstr "Spremeni nastavitve igralne palice" -#: src/supertux/menu/options_menu.cpp:388 +#: src/supertux/menu/options_menu.cpp:167 +#: src/supertux/menu/options_select_menu.cpp:40 +msgid "Extras" +msgstr "Dodatno" + +#: src/supertux/menu/options_menu.cpp:170 +#: src/supertux/menu/profile_menu.cpp:56 +msgid "Select Profile" +msgstr "Izberi profil" + +#: src/supertux/menu/options_menu.cpp:171 +msgid "Select a profile to play with" +msgstr "Izberi profil za igranje" + +#: src/supertux/menu/options_menu.cpp:174 +msgid "Multiplayer settings" +msgstr "Večigralske nastavitve" + +#: src/supertux/menu/options_menu.cpp:175 +msgid "Configure settings specific to multiplayer" +msgstr "Posebej prilagodi večigralske nastavitve" + +#: src/supertux/menu/options_menu.cpp:178 msgid "Enable transitions" msgstr "Omogoči prehode" -#: src/supertux/menu/options_menu.cpp:389 +#: src/supertux/menu/options_menu.cpp:179 msgid "Enable screen transitions and smooth menu animation" msgstr "Omogoči zaslonske prehode in gladko animacijo menija" -#: src/supertux/menu/options_menu.cpp:393 -msgid "Developer Mode" -msgstr "Razvijalski način" +#: src/supertux/menu/options_menu.cpp:181 +msgid "Custom title screen levels" +msgstr "Naslovne stopnje po meri" + +#: src/supertux/menu/options_menu.cpp:182 +msgid "Allow overriding the title screen level, when loading certain worlds" +msgstr "Med nalaganjem določenih svetov omogoča spremembo stopnje, prikazane na naslovnici." -#: src/supertux/menu/options_menu.cpp:398 +#: src/supertux/menu/options_menu.cpp:185 msgid "Christmas Mode" msgstr "Božični način" -#: src/supertux/menu/options_menu.cpp:401 +#: src/supertux/menu/options_menu.cpp:187 +msgid "Integrations and presence" +msgstr "Integracije in prisotnost" + +#: src/supertux/menu/options_menu.cpp:188 +msgid "" +"Manage whether SuperTux should display the levels you play on your social " +"media profiles (Discord)" +msgstr "Omogoča, da SuperTux prikaže stopnje, ki jih igraš, na tvojih družbenih omrežjih (Discord)" + +#: src/supertux/menu/options_menu.cpp:192 +msgid "Customize the appearance of the menus" +msgstr "Prilagodi videz menijev" + +#: src/supertux/menu/options_menu.cpp:199 +#: src/supertux/menu/options_select_menu.cpp:41 +msgid "Advanced" +msgstr "Napredno" + +#: src/supertux/menu/options_menu.cpp:204 +msgid "Developer Mode" +msgstr "Razvijalski način" + +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirmation Dialog" msgstr "Potrditveni dialog" -#: src/supertux/menu/options_menu.cpp:401 +#: src/supertux/menu/options_menu.cpp:206 msgid "Confirm aborting level" msgstr "Potrdi izhod iz stopnje" -#: src/supertux/menu/options_menu.cpp:402 +#: src/supertux/menu/options_menu.cpp:208 msgid "Pause on focus loss" msgstr "Premor ob izgubi fokusa" +#: src/supertux/menu/options_menu.cpp:209 +msgid "Automatically pause the game when the window loses focus" +msgstr "Ko igra ni več v ospredju namizja, se samodejno sproži premor" + +#: src/supertux/menu/options_menu.cpp:211 +msgid "Use custom mouse cursor" +msgstr "Uporabi miškin kazalnik po meri" + +#: src/supertux/menu/options_menu.cpp:211 +msgid "Whether the game renders its own cursor or uses the system's cursor" +msgstr "Določi, ali naj igra izriše svoj kazalnik ali uporabi uporabnikov sistemski kazalnik" + +#: src/supertux/menu/options_menu.cpp:214 +msgid "Check for new releases" +msgstr "Preveri za nove izdaje" + +#: src/supertux/menu/options_menu.cpp:215 +msgid "" +"Allows the game to perform checks for new SuperTux releases on startup and " +"notify if any found." +msgstr "Omogoča igri, da ob zagonu preveri, ali obstaja kakšna novejša izdaja, in te obvesti." + +#: src/supertux/menu/options_menu.cpp:245 +#: src/supertux/menu/options_menu.cpp:288 src/supertux/direction.cpp:76 +msgid "auto" +msgstr "samodejno" + +#: src/supertux/menu/options_menu.cpp:281 +msgid "Magnification" +msgstr "Povečava" + +#: src/supertux/menu/options_menu.cpp:282 +msgid "Change the magnification of the game area" +msgstr "Spremeni povečavo igralne površine" + +#: src/supertux/menu/options_menu.cpp:318 +msgid "Aspect Ratio" +msgstr "Razmerje" + +#: src/supertux/menu/options_menu.cpp:319 +msgid "Adjust the aspect ratio" +msgstr "Spremeni razmerje" + +#: src/supertux/menu/options_menu.cpp:346 +msgid "Window Resolution" +msgstr "Ločljivost okna" + +#: src/supertux/menu/options_menu.cpp:347 +msgid "Resize the window to the given size" +msgstr "Poveča/zmanjša okno na dano velikost" + +#: src/supertux/menu/options_menu.cpp:377 +msgid "Desktop" +msgstr "Namizje" + +#: src/supertux/menu/options_menu.cpp:404 +msgid "Fullscreen Resolution" +msgstr "Celozaslonska ločljivost" + +#: src/supertux/menu/options_menu.cpp:405 +msgid "" +"Determine the resolution used in fullscreen mode (you must toggle fullscreen" +" to complete the change)" +msgstr "Določi ločljivost za celoten zaslon (igra mora biti čez ves zaslon, da se bo sprememba pokazala)" + +#: src/supertux/menu/options_menu.cpp:411 +msgid "on" +msgstr "vključena" + +#: src/supertux/menu/options_menu.cpp:412 +msgid "off" +msgstr "izključena" + +#: src/supertux/menu/options_menu.cpp:413 +msgid "adaptive" +msgstr "prilagodljiva" + +#: src/supertux/menu/options_menu.cpp:431 +msgid "VSync" +msgstr "Vertikalna sinhronizacija" + +#: src/supertux/menu/options_menu.cpp:432 +msgid "Set the VSync mode" +msgstr "Nastavi vertikalno sinhronizacijo" + +#: src/supertux/menu/options_menu.cpp:467 +msgid "Sound Volume" +msgstr "Glasnost zvoka" + +#: src/supertux/menu/options_menu.cpp:468 +msgid "Adjust sound volume" +msgstr "Nastavi glasnost zvoka" + +#: src/supertux/menu/options_menu.cpp:503 +msgid "Music Volume" +msgstr "Glasnost glasbe" + +#: src/supertux/menu/options_menu.cpp:504 +msgid "Adjust music volume" +msgstr "Nastavi glasnost glasbe" + +#: src/supertux/menu/options_menu.cpp:517 +msgid "On-screen controls scale" +msgstr "Velikost krmilnih elementov" + +#: src/supertux/menu/options_menu.cpp:638 +msgid "" +"The game couldn't detect your browser resolution.\n" +"This most likely happens because it is not embedded\n" +"in the SuperTux custom HTML template.\n" +msgstr "Igra ni uspela zaznati ločljivosti tvojega brskalnika.\nTo se je najverjetneje zgodilo, ker ni vpeta\nv SuperTuxovo šablono HTML.\n" + +#: src/supertux/menu/editor_delete_levelset_menu.cpp:80 +msgid "You cannot delete the world that you are editing" +msgstr "Ne moreš izbrisati sveta, ki ga urejaš" + +#: src/supertux/menu/editor_delete_levelset_menu.cpp:83 +#, c++-format +msgid "You are about to delete world \"{}\". Are you sure?" +msgstr "Nameravaš izbrisati svet \"{}\". Ali si gotov/a?" + +#: src/supertux/menu/addon_preview_menu.cpp:82 +#, c++-format +msgid "{} \"{}\"" +msgstr "{} \"{}\"" + +#: src/supertux/menu/addon_preview_menu.cpp:87 +msgid "Some information about this add-on is not available." +msgstr "Nekaterih informacij o tem dodatku ni na voljo." + +#: src/supertux/menu/addon_preview_menu.cpp:88 +msgid "Perform a \"Check Online\" to try retrieving it." +msgstr "S klikom na \"Preveri na spletu\" jih lahko poskusiš pridobiti." + +#: src/supertux/menu/addon_preview_menu.cpp:92 +msgid "No author specified." +msgstr "Avtor ni naveden." + +#: src/supertux/menu/addon_preview_menu.cpp:92 +#, c++-format +msgid "Author: {}" +msgstr "Avtor/ica: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:93 +#, c++-format +msgid "Type: {}" +msgstr "Vrsta: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:94 +msgid "No license specified." +msgstr "Licenca ni določena." + +#: src/supertux/menu/addon_preview_menu.cpp:94 +#, c++-format +msgid "License: {}" +msgstr "Licenca: {}" + +#: src/supertux/menu/addon_preview_menu.cpp:99 +msgid "Dependencies:" +msgstr "Odvisnosti:" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Installed" +msgstr "Nameščen" + +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Not installed" +msgstr "Ni nameščen" + +#: src/supertux/menu/addon_preview_menu.cpp:113 +msgid "Not available!" +msgstr "Ni na voljo!" + +#: src/supertux/menu/addon_preview_menu.cpp:120 +msgid "Description:" +msgstr "Opis:" + +#: src/supertux/menu/addon_preview_menu.cpp:123 +msgid "No description available." +msgstr "Opis ni na voljo." + +#: src/supertux/menu/addon_preview_menu.cpp:147 +msgid "Failed to load all available screenshot previews." +msgstr "Nalaganje vseh zaslonskih predogledov ni uspelo." + +#: src/supertux/menu/addon_preview_menu.cpp:152 +msgid "Show screenshots" +msgstr "Prikaži zaslonske predoglede" + +#: src/supertux/menu/addon_preview_menu.cpp:165 +msgid "Screenshot previews are disabled for automatic installs." +msgstr "Zaslonski predogledi so onemogočeni pri samodejnih namestitvah." + +#: src/supertux/menu/addon_preview_menu.cpp:169 +msgid "No screenshot previews available." +msgstr "Zaslonski predogledi niso na voljo." + +#: src/supertux/menu/addon_preview_menu.cpp:177 +msgid "Install" +msgstr "Namesti" + +#: src/supertux/menu/addon_preview_menu.cpp:190 +msgid "Uninstall" +msgstr "Odstrani" + +#: src/supertux/menu/addon_preview_menu.cpp:214 +#, c++-format +msgid "Are you sure you want to uninstall \"{}\"?" +msgstr "Ali si prepričan/a, da želiš odstraniti \"{}\"?" + +#: src/supertux/menu/addon_preview_menu.cpp:215 +msgid "" +"\n" +"Your progress won't be lost." +msgstr "\nTvoj napredek se bo ohranil." + +#: src/supertux/menu/addon_preview_menu.cpp:227 +#, c++-format +msgid "" +"NOTE: The add-on \"{}\" is a dependency of {} other installed {}.\n" +"Are you sure you wish to uninstall?" +msgstr "POZOR: Dodatek \"{}\" je pomemben gradnik {} {}.\nAli ga zares želiš odstraniti?" + +#: src/supertux/menu/addon_preview_menu.cpp:246 +#, c++-format +msgid "" +"Cannot toggle add-on \"{}\":\n" +"{}" +msgstr "Ne morem preklopiti dodatka \"{}\":\n{}" + +#: src/supertux/menu/addon_preview_menu.cpp:279 +msgid "Fetching screenshot previews..." +msgstr "Pridobivam zaslonske predoglede ..." + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Updating" +msgstr "Posodabljam" + +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Downloading" +msgstr "Prenašam" + +#: src/supertux/menu/addon_preview_menu.cpp:328 +msgid "Add-on uninstalled successfully." +msgstr "Dodatek je uspešno odstranjen." + +#: src/supertux/menu/addon_preview_menu.cpp:333 +#, c++-format +msgid "" +"Error uninstalling add-on:\n" +"{}" +msgstr "Napaka pri odstranjevanju dodatka:\n{}" + +#: src/supertux/menu/addon_preview_menu.cpp:361 +msgid "" +"Please restart SuperTux\n" +"for these changes to take effect." +msgstr "Prosimo, ponovno zaženi SuperTux,\nda bodo spremembe delovale." + #: src/supertux/menu/main_menu.cpp:51 src/supertux/menu/world_set_menu.cpp:28 msgid "Start Game" -msgstr "Zaženi igro" +msgstr "Igraj" -#: src/supertux/menu/main_menu.cpp:52 src/supertux/menu/addon_menu.cpp:122 +#: src/supertux/menu/main_menu.cpp:55 msgid "Add-ons" msgstr "Dodatki" -#: src/supertux/menu/main_menu.cpp:54 src/supertux/menu/editor_menu.cpp:39 +#: src/supertux/menu/main_menu.cpp:57 src/supertux/menu/web_asset_menu.cpp:38 +msgid "Manage Assets" +msgstr "Upravljaj s sredstvi" + +#: src/supertux/menu/main_menu.cpp:59 +#: src/supertux/menu/options_select_menu.cpp:29 +#: src/supertux/menu/game_menu.cpp:58 src/supertux/menu/worldmap_menu.cpp:31 +#: src/supertux/menu/editor_menu.cpp:70 +msgid "Options" +msgstr "Nastavitve" + +#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/editor_menu.cpp:58 msgid "Level Editor" msgstr "Urejevalnik stopenj" -#: src/supertux/menu/main_menu.cpp:55 +#: src/supertux/menu/main_menu.cpp:61 msgid "Credits" msgstr "Zasluge" -#: src/supertux/menu/main_menu.cpp:56 +#: src/supertux/menu/main_menu.cpp:64 msgid "Donate" msgstr "Doniraj" -#: src/supertux/menu/main_menu.cpp:57 +#: src/supertux/menu/main_menu.cpp:67 msgid "Quit" msgstr "Končaj" -#: src/supertux/menu/editor_sector_menu.cpp:35 +#: src/supertux/menu/main_menu.cpp:106 +msgid "" +"This will take you to the SuperTux donation page. Are you sure you want to " +"continue?" +msgstr "To te bo preusmerilo na spletno stran za donacije SuperTuksu. Ali želiš nadaljevati?" + +#: src/supertux/menu/editor_sector_menu.cpp:34 +#, c++-format +msgid "Sector {}" +msgstr "Predel {}" + +#: src/supertux/menu/editor_sector_menu.cpp:37 msgid "Initialization script" -msgstr "Zapis začetka" +msgstr "Skripta ob zagonu" -#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_sector_menu.cpp:38 msgid "Gravity" msgstr "Težnost" -#: src/supertux/menu/editor_sector_menu.cpp:41 +#: src/supertux/menu/editor_sector_menu.cpp:43 msgid "Resize offset X" msgstr "Spremeni odmik X" -#: src/supertux/menu/editor_sector_menu.cpp:42 +#: src/supertux/menu/editor_sector_menu.cpp:44 msgid "Resize offset Y" msgstr "Spremeni odmik Y" -#: src/supertux/menu/editor_sector_menu.cpp:43 +#: src/supertux/menu/editor_sector_menu.cpp:45 msgid "Resize" msgstr "Spremeni velikost" -#: src/supertux/menu/profile_menu.cpp:37 -#, c-format -msgid "[Profile %s]" -msgstr "[Profil %s]" +#: src/supertux/menu/profile_menu.cpp:60 +msgid "No profiles found." +msgstr "Ne najdem profilov." + +#: src/supertux/menu/profile_menu.cpp:68 +#: src/supertux/menu/profile_menu.cpp:149 +#: src/supertux/menu/profile_menu.cpp:168 +#, c++-format +msgid "Profile {}" +msgstr "Profil {}" + +#: src/supertux/menu/profile_menu.cpp:69 +#, c++-format +msgid "{} (Profile {})" +msgstr "{} (Profil {})" + +#: src/supertux/menu/profile_menu.cpp:84 +msgid "No profile selected." +msgstr "Profil ni izbran." + +#: src/supertux/menu/profile_menu.cpp:91 src/supertux/menu/profile_menu.cpp:93 +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Rename" +msgstr "Preimenuj" + +#: src/supertux/menu/profile_menu.cpp:98 +#: src/supertux/menu/profile_menu.cpp:100 +msgid "Reset" +msgstr "Ponastavi" + +#: src/supertux/menu/profile_menu.cpp:103 +#: src/supertux/menu/profile_menu.cpp:105 +msgid "Reset all" +msgstr "Ponastavi vse" + +#: src/supertux/menu/profile_menu.cpp:113 +#: src/supertux/menu/profile_menu.cpp:115 +msgid "Delete all" +msgstr "Izbriši vse" + +#: src/supertux/menu/profile_menu.cpp:148 +#, c++-format +msgid "" +"This will reset all game progress on the profile \"{}\".\n" +"Are you sure?" +msgstr "To bo ponastavilo ves igralni napredek za profil \"{}\".\nAli si prepričan/a?" + +#: src/supertux/menu/profile_menu.cpp:157 +msgid "This will reset your game progress on all profiles. Are you sure?" +msgstr "To bo izničilo tvoj napredek v vseh profilih. Ali res želiš nadaljevati?" -#: src/supertux/menu/profile_menu.cpp:41 -#, c-format -msgid "Profile %s" -msgstr "Profil %s" +#: src/supertux/menu/profile_menu.cpp:167 +#, c++-format +msgid "" +"This will delete the profile \"{}\",\n" +"including all game progress on it. Are you sure?" +msgstr "To bo izbrisalo profil \"{}\",\nvključno z vsem igralnim napredkom. Ali si prepričan/a?" + +#: src/supertux/menu/profile_menu.cpp:178 +msgid "" +"This will delete all profiles, including all game progress on them.\n" +"Are you sure?" +msgstr "To bo izbrisalo vse profile, vključno z njihovim igralnim napredkom.\nAli si prepričan/a?" -#: src/supertux/menu/editor_levelset_menu.cpp:59 +#: src/supertux/menu/editor_levelset_menu.cpp:53 #: src/supertux/menu/editor_new_levelset_menu.cpp:35 msgid "Description" msgstr "Opis" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:48 -#: data//images/engine/editor/objects.stoi:332 -msgid "Worldmap" -msgstr "Zemljevid sveta" +#: src/supertux/menu/editor_levelset_menu.cpp:55 +msgid "Title Screen Level" +msgstr "Naslovna stopnja" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:45 -msgid "Levelset" -msgstr "Zbirka stopenj" +#: src/supertux/menu/editor_levelset_menu.cpp:56 +msgid "A level to be used for the title screen, after exiting the world." +msgstr "Stopnja na naslovnici po izhodu iz sveta." -#: src/supertux/menu/addon_menu.cpp:51 -msgid "World" -msgstr "Svet" +#: src/supertux/menu/multiplayer_players_menu.cpp:46 +msgid "Add Player" +msgstr "Dodaj igralca" -#: src/supertux/menu/addon_menu.cpp:54 -msgid "Add-on" -msgstr "Dodatek" +#: src/supertux/menu/multiplayer_players_menu.cpp:59 +msgid "Remove Last Player" +msgstr "Odstrani zadnjega igralca" -#: src/supertux/menu/addon_menu.cpp:60 -msgid "Unknown" -msgstr "Neznano" +#: src/supertux/menu/multiplayer_players_menu.cpp:62 +msgid "" +"Warning: The player you are trying to\n" +"remove is currently in-game.\n" +"\n" +"Do you wish to remove them anyways?" +msgstr "Pozor: Igralec, ki ga želiš odstraniti,\nje trenutno sredi igre.\n\nNaj ga vseeno odstranim?" + +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Language Packs" +msgstr "Nameščeni jezikovni paketi" -#: src/supertux/menu/addon_menu.cpp:71 -#, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" od \"%s\"" +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Add-ons" +msgstr "Nameščeni dodatki" -#: src/supertux/menu/addon_menu.cpp:129 +#: src/supertux/menu/addon_menu.cpp:76 src/supertux/menu/addon_menu.cpp:117 +msgid "No language packs installed" +msgstr "Ni nameščenih jezikovnih paketov" + +#: src/supertux/menu/addon_menu.cpp:76 msgid "No Add-ons installed" -msgstr "Dodatki niso nameščeni" +msgstr "Ni nameščenih dodatkov" -#: src/supertux/menu/addon_menu.cpp:133 -msgid "No Add-ons found" -msgstr "Ne najdem dodatkov" +#: src/supertux/menu/addon_menu.cpp:124 +#, c++-format +msgid "{} {}*UPDATE*" +msgstr "{} {}*POSODOBITEV*" -#: src/supertux/menu/addon_menu.cpp:179 -#, c-format -msgid "Install %s *NEW*" -msgstr "Namesti %s *NOVO*" +#: src/supertux/menu/addon_menu.cpp:130 +#, c++-format +msgid "{}{}" +msgstr "{}{}" -#: src/supertux/menu/addon_menu.cpp:190 -#, c-format -msgid "Install %s" -msgstr "Namesti %s" +#: src/supertux/menu/addon_menu.cpp:140 +msgid "No updates available." +msgstr "Na voljo ni posodobitev." -#: src/supertux/menu/addon_menu.cpp:199 -msgid "No new Add-ons found" -msgstr "Ne najdem novih dodatkov" +#: src/supertux/menu/addon_menu.cpp:144 +#, c++-format +msgid "{} {} available" +msgstr "{} {} na voljo" -#: src/supertux/menu/addon_menu.cpp:205 -msgid "Check Online (disabled)" -msgstr "Preveri na spletu (onemogočeno)" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "update" +msgstr "posodobitev" -#: src/supertux/menu/addon_menu.cpp:209 -msgid "Check Online" -msgstr "Preveri na spletu" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "updates" +msgstr "posodobitev" -#: src/supertux/menu/addon_menu.cpp:286 -msgid "Downloading Add-On Repository Index" -msgstr "Prenašam seznam dodatkov v zbirališču" +#: src/supertux/menu/addon_menu.cpp:146 +msgid "Check for updates" +msgstr "Preveri za posodobitve" -#: src/supertux/menu/addon_menu.cpp:301 -#, c-format -msgid "Downloading %s" -msgstr "Prenašam %s" +#: src/supertux/menu/addon_menu.cpp:150 +msgid "Browse language packs" +msgstr "Brskaj po jezikovnih paketih" -#: src/supertux/menu/addon_menu.cpp:348 -msgid "" -"Please restart SuperTux\n" -"for these changes to take effect." -msgstr "Prosimo, ponovno zaženite SuperTux,\nda bodo spremembe delovale." +#: src/supertux/menu/addon_menu.cpp:150 +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Add-ons" +msgstr "Brskaj po dodatkih" + +#: src/supertux/menu/addon_menu.cpp:151 +msgid "Install from file" +msgstr "Namesti iz datoteke" + +#: src/supertux/menu/addon_menu.cpp:208 +msgid "Checking for updates..." +msgstr "Preverjam za posodobitve ..." #: src/supertux/menu/editor_new_levelset_menu.cpp:31 msgid "New World" @@ -1901,265 +3633,416 @@ msgstr "Nov svet" #: src/supertux/menu/editor_new_levelset_menu.cpp:51 msgid "Please enter a name for this level subset." -msgstr "Prosim, vnesi ime te podskupine" +msgstr "Prosim, vnesi ime te podskupine stopenj." #: src/supertux/menu/world_set_menu.cpp:30 msgid "Story Mode" msgstr "Pripovedni način" -#: src/supertux/menu/game_menu.cpp:31 -msgid "Are you sure?" -msgstr "Si prepričan?" +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Language Packs" +msgstr "Brskaj po jezikovnih paketih" + +#: src/supertux/menu/addon_browse_menu.cpp:112 +#, c++-format +msgid "Page {}/{}" +msgstr "Stran {}/{}" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new language packs available" +msgstr "Na voljo ni novih jezikovnih paketov" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new Add-ons available" +msgstr "Na voljo ni novih dodatkov" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No language packs available" +msgstr "Na voljo ni jezikovnih paketov" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No Add-ons available" +msgstr "Na voljo ni dodatkov" + +#: src/supertux/menu/addon_browse_menu.cpp:135 +#: src/supertux/menu/addon_browse_menu.cpp:139 +msgid "Previous page" +msgstr "Prejšnja stran" + +#: src/supertux/menu/addon_browse_menu.cpp:143 +#: src/supertux/menu/addon_browse_menu.cpp:147 +msgid "Next page" +msgstr "Naslednja stran" + +#: src/supertux/menu/addon_browse_menu.cpp:154 +msgid "Check Online (disabled)" +msgstr "Preveri na spletu (onemogočeno)" + +#: src/supertux/menu/addon_browse_menu.cpp:158 +msgid "Check Online" +msgstr "Preveri na spletu" + +#: src/supertux/menu/addon_browse_menu.cpp:195 +msgid "Downloading Add-On Repository Index" +msgstr "Prenašam seznam dodatkov v zbirališču" + +#: src/supertux/menu/web_asset_menu.cpp:42 +msgid "New files location" +msgstr "Lokacija za nove datoteke" -#: src/supertux/menu/game_menu.cpp:54 src/supertux/menu/worldmap_menu.cpp:30 +#: src/supertux/menu/web_asset_menu.cpp:43 +msgid "Add Files" +msgstr "Dodaj datoteke" + +#: src/supertux/menu/web_asset_menu.cpp:44 +msgid "Download Files" +msgstr "Prenesi datoteke" + +#: src/supertux/menu/particle_editor_open.cpp:32 +msgid "Load particle file" +msgstr "Naloži datoteko z delci" + +#: src/supertux/menu/particle_editor_open.cpp:39 +msgid "Open" +msgstr "Odpri" + +#: src/supertux/menu/game_menu.cpp:51 src/supertux/menu/worldmap_menu.cpp:30 msgid "Continue" msgstr "Nadaljuj" -#: src/supertux/menu/game_menu.cpp:55 +#: src/supertux/menu/game_menu.cpp:52 msgid "Restart Level" msgstr "Znova zaženi stopnjo" -#: src/supertux/menu/game_menu.cpp:58 +#: src/supertux/menu/game_menu.cpp:55 msgid "Restart from Checkpoint" -msgstr "Začni ponovno na nadzorni točki" +msgstr "Začni ponovno na varni točki" -#: src/supertux/menu/game_menu.cpp:63 +#: src/supertux/menu/game_menu.cpp:60 msgid "Abort Level" -msgstr "Prekliči stopnjo" +msgstr "Zapusti stopnjo" -#: src/supertux/menu/keyboard_menu.cpp:32 -#: src/supertux/menu/joystick_menu.cpp:69 -msgid "Up" -msgstr "Gor" +#: src/supertux/menu/game_menu.cpp:76 src/supertux/menu/game_menu.cpp:87 +#: src/supertux/menu/game_menu.cpp:99 +msgid "Are you sure?" +msgstr "Si prepričan/a?" -#: src/supertux/menu/keyboard_menu.cpp:33 -#: src/supertux/menu/joystick_menu.cpp:70 -msgid "Down" -msgstr "Dol" +#: src/supertux/menu/profile_name_menu.cpp:36 +#, c++-format +msgid "Rename \"{}\"" +msgstr "Preimenuj \"{}\"" -#: src/supertux/menu/keyboard_menu.cpp:34 +#: src/supertux/menu/profile_name_menu.cpp:36 +msgid "Add profile" +msgstr "Dodaj profil" + +#: src/supertux/menu/profile_name_menu.cpp:40 +msgid "Profile names must have a maximum of 20 characters." +msgstr "Imena profilov imajo lahko največ 20 znakov." + +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Create" +msgstr "Ustvari" + +#: src/supertux/menu/profile_name_menu.cpp:56 +msgid "" +"Profile names must have a maximum of 20 characters.\n" +"Please choose a different name." +msgstr "Imena profilov imajo lahko največ 20 znakov.\nProsim, izberi drugačno ime." + +#: src/supertux/menu/profile_name_menu.cpp:77 +msgid "An error occurred while creating the profile." +msgstr "Med ustvarjanjem profila je prišlo do napake." + +#: src/supertux/menu/keyboard_menu.cpp:36 #: src/supertux/menu/joystick_menu.cpp:71 -msgid "Left" -msgstr "Levo" +msgid "Up" +msgstr "Gor" -#: src/supertux/menu/keyboard_menu.cpp:35 +#: src/supertux/menu/keyboard_menu.cpp:37 #: src/supertux/menu/joystick_menu.cpp:72 -msgid "Right" -msgstr "Desno" +msgid "Down" +msgstr "Dol" -#: src/supertux/menu/keyboard_menu.cpp:36 -#: src/supertux/menu/joystick_menu.cpp:73 +#: src/supertux/menu/keyboard_menu.cpp:40 +#: src/supertux/menu/joystick_menu.cpp:75 msgid "Jump" msgstr "Skok" -#: src/supertux/menu/keyboard_menu.cpp:38 -#: src/supertux/menu/joystick_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:43 +#: src/supertux/menu/joystick_menu.cpp:78 msgid "Peek Left" -msgstr "Pokukaj Levo" +msgstr "Pokukaj levo" -#: src/supertux/menu/keyboard_menu.cpp:39 -#: src/supertux/menu/joystick_menu.cpp:77 +#: src/supertux/menu/keyboard_menu.cpp:44 +#: src/supertux/menu/joystick_menu.cpp:79 msgid "Peek Right" -msgstr "Pokukaj Desno" +msgstr "Pokukaj desno" -#: src/supertux/menu/keyboard_menu.cpp:40 -#: src/supertux/menu/joystick_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:45 +#: src/supertux/menu/joystick_menu.cpp:80 msgid "Peek Up" -msgstr "Pokukaj Gor" +msgstr "Pokukaj gor" -#: src/supertux/menu/keyboard_menu.cpp:41 -#: src/supertux/menu/joystick_menu.cpp:79 +#: src/supertux/menu/keyboard_menu.cpp:46 +#: src/supertux/menu/joystick_menu.cpp:81 msgid "Peek Down" -msgstr "Pokukaj Dol" +msgstr "Pokukaj dol" -#: src/supertux/menu/keyboard_menu.cpp:43 -#: src/supertux/menu/joystick_menu.cpp:81 +#: src/supertux/menu/keyboard_menu.cpp:51 +#: src/supertux/menu/joystick_menu.cpp:83 msgid "Console" msgstr "Konzola" -#: src/supertux/menu/keyboard_menu.cpp:46 -#: src/supertux/menu/joystick_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:52 +#: src/supertux/menu/joystick_menu.cpp:84 msgid "Cheat Menu" -msgstr "Meni goljufij" +msgstr "Meni švindlanja" -#: src/supertux/menu/keyboard_menu.cpp:47 -#: src/supertux/menu/joystick_menu.cpp:83 +#: src/supertux/menu/keyboard_menu.cpp:53 +#: src/supertux/menu/joystick_menu.cpp:85 msgid "Debug Menu" msgstr "Razhroščevalni meni" -#: src/supertux/menu/keyboard_menu.cpp:49 -#: src/supertux/menu/joystick_menu.cpp:85 +#: src/supertux/menu/keyboard_menu.cpp:56 +#: src/supertux/menu/joystick_menu.cpp:87 msgid "Jump with Up" -msgstr "Skoči z Gor" +msgstr "Skoči z \"gor\"" -#: src/supertux/menu/keyboard_menu.cpp:62 +#: src/supertux/menu/keyboard_menu.cpp:82 msgid "Up cursor" msgstr "Tipka navzgor" -#: src/supertux/menu/keyboard_menu.cpp:64 +#: src/supertux/menu/keyboard_menu.cpp:84 msgid "Down cursor" msgstr "Tipka navzdol" -#: src/supertux/menu/keyboard_menu.cpp:66 +#: src/supertux/menu/keyboard_menu.cpp:86 msgid "Left cursor" msgstr "Tipka levo" -#: src/supertux/menu/keyboard_menu.cpp:68 +#: src/supertux/menu/keyboard_menu.cpp:88 msgid "Right cursor" msgstr "Tipka desno" -#: src/supertux/menu/keyboard_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:90 msgid "Return" -msgstr "Enter" +msgstr "Vnašalka" -#: src/supertux/menu/keyboard_menu.cpp:72 +#: src/supertux/menu/keyboard_menu.cpp:92 msgid "Space" msgstr "Preslednica" -#: src/supertux/menu/keyboard_menu.cpp:74 +#: src/supertux/menu/keyboard_menu.cpp:94 msgid "Right Shift" -msgstr "Desni Shift" +msgstr "Desna dvigalka" -#: src/supertux/menu/keyboard_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:96 msgid "Left Shift" -msgstr "Levi Shift" +msgstr "Leva dvigalka" -#: src/supertux/menu/keyboard_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:98 msgid "Right Control" -msgstr "Desni Control" +msgstr "Desna krmilka" -#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/keyboard_menu.cpp:100 msgid "Left Control" -msgstr "Levi Control" +msgstr "Leva krmilka" -#: src/supertux/menu/keyboard_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:102 msgid "Right Alt" -msgstr "Desni Alt" +msgstr "Desna izmenjevalka" -#: src/supertux/menu/keyboard_menu.cpp:84 +#: src/supertux/menu/keyboard_menu.cpp:104 msgid "Left Alt" -msgstr "Levi Alt" +msgstr "Leva izmenjevalka" -#: src/supertux/menu/keyboard_menu.cpp:86 +#: src/supertux/menu/keyboard_menu.cpp:106 msgid "Right Command" -msgstr "Desni Command" +msgstr "Desni Cmd" -#: src/supertux/menu/keyboard_menu.cpp:88 +#: src/supertux/menu/keyboard_menu.cpp:108 msgid "Left Command" -msgstr "Levi Command" +msgstr "Levi Cmd" -#: src/supertux/menu/keyboard_menu.cpp:102 +#: src/supertux/menu/keyboard_menu.cpp:122 msgid "Press Key" -msgstr "Pritisnite tipko" +msgstr "Pritisni tipko" -#: src/supertux/menu/language_menu.cpp:40 +#: src/supertux/menu/language_menu.cpp:43 msgid "Language" msgstr "Jezik" -#: src/supertux/menu/language_menu.cpp:42 +#: src/supertux/menu/language_menu.cpp:45 msgid "" msgstr "" -#: src/supertux/menu/joystick_menu.cpp:55 +#: src/supertux/menu/joystick_menu.cpp:57 msgid "Manual Configuration" msgstr "Ročna konfiguracija" -#: src/supertux/menu/joystick_menu.cpp:57 +#: src/supertux/menu/joystick_menu.cpp:59 msgid "" "Use manual configuration instead of SDL2's automatic GameController support" -msgstr "Uporabi ročno konfiguracijo namesto SDL2 samodejne GameController podpore" +msgstr "Uporabi ročno konfiguracijo namesto SDL2-jeve samodejne podpore GameController" -#: src/supertux/menu/joystick_menu.cpp:75 +#: src/supertux/menu/joystick_menu.cpp:77 msgid "Pause/Menu" msgstr "Premor/Meni" -#: src/supertux/menu/joystick_menu.cpp:91 +#: src/supertux/menu/joystick_menu.cpp:93 msgid "No Joysticks found" -msgstr "Ne najdem užitkarske palice" +msgstr "Ne najdem igralne palice" -#: src/supertux/menu/joystick_menu.cpp:92 +#: src/supertux/menu/joystick_menu.cpp:94 msgid "Scan for Joysticks" -msgstr "Poišči užitkarske palice" +msgstr "Poišči igralne palice" -#: src/supertux/menu/joystick_menu.cpp:125 +#: src/supertux/menu/joystick_menu.cpp:127 msgid "Press Button" msgstr "Pritisnite gumb" -#: src/supertux/menu/joystick_menu.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:164 msgid "Axis " msgstr "Os" -#: src/supertux/menu/joystick_menu.cpp:165 +#: src/supertux/menu/joystick_menu.cpp:167 msgid "-" msgstr "-" -#: src/supertux/menu/joystick_menu.cpp:167 +#: src/supertux/menu/joystick_menu.cpp:169 msgid "+" msgstr "+" -#: src/supertux/menu/joystick_menu.cpp:174 +#: src/supertux/menu/joystick_menu.cpp:176 msgid "X2" msgstr "X2" -#: src/supertux/menu/joystick_menu.cpp:176 +#: src/supertux/menu/joystick_menu.cpp:178 msgid "Y2" msgstr "Y2" -#: src/supertux/menu/joystick_menu.cpp:189 +#: src/supertux/menu/joystick_menu.cpp:191 msgid "Hat Up" msgstr "Poglej gor" -#: src/supertux/menu/joystick_menu.cpp:193 +#: src/supertux/menu/joystick_menu.cpp:195 msgid "Hat Down" msgstr "Poglej dol" -#: src/supertux/menu/joystick_menu.cpp:197 +#: src/supertux/menu/joystick_menu.cpp:199 msgid "Hat Left" msgstr "Poglej levo" -#: src/supertux/menu/joystick_menu.cpp:201 -msgid "Hat Right" -msgstr "Poglej desno" +#: src/supertux/menu/joystick_menu.cpp:203 +msgid "Hat Right" +msgstr "Poglej desno" + +#: src/supertux/menu/worldmap_menu.cpp:28 +msgid "Pause" +msgstr "Premor" + +#: src/supertux/menu/worldmap_menu.cpp:33 +msgid "Leave World" +msgstr "Zapusti svet" + +#: src/supertux/menu/download_dialog.cpp:42 +msgid "Abort Download" +msgstr "Prekliči prenos" + +#: src/supertux/menu/download_dialog.cpp:59 +#, c++-format +msgid "" +"Error:\n" +"{}" +msgstr "Napaka:\n{}" + +#: src/supertux/menu/cheat_menu.cpp:38 +msgid "Bonus: Star" +msgstr "Bonus: Zvezda" + +#: src/supertux/menu/cheat_menu.cpp:39 +msgid "Shrink Tux" +msgstr "Pomanjšaj Tuksa" + +#: src/supertux/menu/cheat_menu.cpp:40 +msgid "Kill Tux" +msgstr "Ubij Tuksa" + +#: src/supertux/menu/cheat_menu.cpp:55 +msgid "Prevent Death" +msgstr "Prepreči smrt" + +#: src/supertux/menu/addon_file_install_menu.cpp:32 +msgid "Install Add-on from file" +msgstr "Namesti dodatek iz datoteke" + +#: src/supertux/menu/addon_file_install_menu.cpp:34 +msgid "Drag and drop add-on ZIP archive" +msgstr "Povleci in spusti dodatek v obliki arhiva ZIP" + +#: src/supertux/menu/particle_editor_menu.cpp:32 +msgid "Particle Editor" +msgstr "Urejevalnik delcev" + +#: src/supertux/menu/particle_editor_menu.cpp:36 +#: src/supertux/menu/editor_menu.cpp:60 +msgid "Return to Editor" +msgstr "Nazaj v urejevalnik" + +#: src/supertux/menu/particle_editor_menu.cpp:37 +msgid "New Particle Config" +msgstr "Nova konfiguracija delcev" -#: src/supertux/menu/worldmap_menu.cpp:28 -msgid "Pause" -msgstr "Premor" +#: src/supertux/menu/particle_editor_menu.cpp:38 +msgid "Save Particle Config" +msgstr "Shrani konfiguracijo delcev" -#: src/supertux/menu/worldmap_menu.cpp:33 -msgid "Leave World" -msgstr "Zapusti svet" +#: src/supertux/menu/particle_editor_menu.cpp:39 +msgid "Save Particle Config as..." +msgstr "Shrani konfiguracijo delcev kot ..." -#: src/supertux/menu/download_dialog.cpp:27 -msgid "Abort Download" -msgstr "Prekliči prenos" +#: src/supertux/menu/particle_editor_menu.cpp:40 +msgid "Load Another Particle Config" +msgstr "Naloži novo konfiguracijo delcev" -#: src/supertux/menu/download_dialog.cpp:42 -msgid "Error:\n" -msgstr "Napaka:\n" +#: src/supertux/menu/particle_editor_menu.cpp:44 +msgid "Open Particle Directory" +msgstr "Odpri imenik delcev" -#: src/supertux/menu/download_dialog.cpp:96 -msgid "Close" -msgstr "Zapri" +#: src/supertux/menu/particle_editor_menu.cpp:45 +#: src/supertux/menu/editor_menu.cpp:118 +msgid "Keyboard Shortcuts" +msgstr "Bližnjice na tipkovnici" -#: src/supertux/menu/cheat_menu.cpp:37 -msgid "Bonus: Star" -msgstr "Bonus: Zvezda" +#: src/supertux/menu/particle_editor_menu.cpp:49 +msgid "Exit Particle Editor" +msgstr "Zapusti urejevalnik delcev" -#: src/supertux/menu/cheat_menu.cpp:38 -msgid "Shrink Tux" -msgstr "Pomanjšaj Tuxa" +#: src/supertux/menu/particle_editor_menu.cpp:121 +msgid "" +"Keyboard Shortcuts:\n" +"---------------------\n" +"Esc = Open Menu\n" +"Ctrl+S = Save\n" +"Ctrl+Shift+S = Save as\n" +"Ctrl+O = Open\n" +"Ctrl+Z = Undo\n" +"Ctrl+Y = Redo" +msgstr "Bližnjice:\n---------------------\nEsc = Odpri meni\nCtrl+S = Shrani\nCtrl+Shift+S = Shrani kot\nCtrl+O = Odpri\nCtrl+Z = Razveljavi\nCtrl+Y = Ponovi" -#: src/supertux/menu/cheat_menu.cpp:39 -msgid "Kill Tux" -msgstr "Ubij Tixa" +#: src/supertux/menu/particle_editor_menu.cpp:122 +#: src/supertux/menu/editor_menu.cpp:206 +msgid "Got it!" +msgstr "Razumem!" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:70 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Worldmap Settings" -msgstr "Nastavitve zemljevida sveta" +msgstr "Nastavitve zarisa sveta" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:70 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Level Settings" msgstr "Nastavitve stopnje" @@ -2167,7 +4050,7 @@ msgstr "Nastavitve stopnje" msgid "Author" msgstr "Avtor" -#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1129 +#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1253 msgid "Contact" msgstr "Kontakt" @@ -2176,114 +4059,160 @@ msgid "License" msgstr "Licenca" #: src/supertux/menu/editor_level_menu.cpp:37 +msgid "Level Note" +msgstr "Pripis" + +#: src/supertux/menu/editor_level_menu.cpp:38 msgid "Tileset" -msgstr "Set podlag" +msgstr "Nabor podlag" -#: src/supertux/menu/editor_level_menu.cpp:40 +#: src/supertux/menu/editor_level_menu.cpp:41 msgid "Target Time" msgstr "Ciljni čas" -#: src/supertux/menu/editor_level_menu.cpp:82 +#: src/supertux/menu/editor_level_menu.cpp:83 msgid "Please enter a name for this level." -msgstr "Prosim, vnesi ime za to stopnjo." +msgstr "Vnesi ime za to stopnjo." -#: src/supertux/menu/editor_level_menu.cpp:86 +#: src/supertux/menu/editor_level_menu.cpp:87 msgid "Please enter a level author for this level." -msgstr "Prosim, vnesi avtorja te stopnje." +msgstr "Vnesi avtorja te stopnje." -#: src/supertux/menu/editor_level_menu.cpp:90 +#: src/supertux/menu/editor_level_menu.cpp:91 msgid "Please enter a license for this level." -msgstr "Prosim, vnesi licenco za to stopnjo." - -#: src/supertux/menu/editor_menu.cpp:34 -msgid "1/8 tile (4px)" -msgstr "1/8 podlage (4px)" +msgstr "Vnesi licenco za to stopnjo." -#: src/supertux/menu/editor_menu.cpp:35 -msgid "1/4 tile (8px)" -msgstr "1/4 podlage (8px)" +#: src/supertux/menu/editor_menu.cpp:53 +msgid "tiny tile (4px)" +msgstr "drobna podlaga (4 px)" -#: src/supertux/menu/editor_menu.cpp:36 -msgid "1/2 tile (16px)" -msgstr "1/2 podlage (16px)" +#: src/supertux/menu/editor_menu.cpp:54 +msgid "small tile (8px)" +msgstr "majhna podlaga (8 px)" -#: src/supertux/menu/editor_menu.cpp:37 -msgid "1 tile (32px)" -msgstr "1 podlaga (32px)" +#: src/supertux/menu/editor_menu.cpp:55 +msgid "medium tile (16px)" +msgstr "povprečna podlaga (16 px)" -#: src/supertux/menu/editor_menu.cpp:41 -msgid "Return to Editor" -msgstr "Nazaj v urejevalnik" +#: src/supertux/menu/editor_menu.cpp:56 +msgid "big tile (32px)" +msgstr "velika podlaga (32 px)" -#: src/supertux/menu/editor_menu.cpp:42 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Worldmap" -msgstr "Shrani zemljevid sveta" +msgstr "Shrani zaris sveta" -#: src/supertux/menu/editor_menu.cpp:42 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Level" msgstr "Shrani stopnjo" -#: src/supertux/menu/editor_menu.cpp:45 +#: src/supertux/menu/editor_menu.cpp:65 msgid "Test Level" msgstr "Preizkusi stopnjo" -#: src/supertux/menu/editor_menu.cpp:49 +#: src/supertux/menu/editor_menu.cpp:67 msgid "Test Worldmap" -msgstr "Preizkusi zemljevid sveta" +msgstr "Preizkusi zaris sveta" -#: src/supertux/menu/editor_menu.cpp:52 +#: src/supertux/menu/editor_menu.cpp:72 msgid "Share Level" msgstr "Deli stopnjo" -#: src/supertux/menu/editor_menu.cpp:54 +#: src/supertux/menu/editor_menu.cpp:74 +msgid "Package Add-On" +msgstr "Zapakiraj dodatek" + +#: src/supertux/menu/editor_menu.cpp:76 msgid "Open Level Directory" -msgstr "Odpri mapo stopnje" +msgstr "Odpri imenik stopnje" -#: src/supertux/menu/editor_menu.cpp:57 +#: src/supertux/menu/editor_menu.cpp:79 msgid "Edit Another Level" msgstr "Uredi drugo stopnjo" -#: src/supertux/menu/editor_menu.cpp:60 +#: src/supertux/menu/editor_menu.cpp:81 msgid "Edit Another World" msgstr "Uredi drug svet" -#: src/supertux/menu/editor_menu.cpp:64 +#: src/supertux/menu/editor_menu.cpp:86 +msgid "Convert all tiles in the level using converters." +msgstr "S pretvorniki pretvori vse podlage v stopnji." + +#: src/supertux/menu/editor_menu.cpp:90 msgid "Grid Size" msgstr "Velikost mreže" -#: src/supertux/menu/editor_menu.cpp:65 +#: src/supertux/menu/editor_menu.cpp:91 msgid "Show Grid" msgstr "Pokaži mrežo" -#: src/supertux/menu/editor_menu.cpp:66 +#: src/supertux/menu/editor_menu.cpp:92 msgid "Grid Snapping" msgstr "Pripenjanje na mrežo" -#: src/supertux/menu/editor_menu.cpp:67 +#: src/supertux/menu/editor_menu.cpp:93 msgid "Render Background" msgstr "Izriši ozadje" -#: src/supertux/menu/editor_menu.cpp:68 +#: src/supertux/menu/editor_menu.cpp:94 msgid "Render Light" msgstr "Izriši osvetlitev" -#: src/supertux/menu/editor_menu.cpp:72 -msgid "Keyboard Shortcuts" -msgstr "Bližnjice na tipkovnici" +#: src/supertux/menu/editor_menu.cpp:95 +msgid "Autotile Mode" +msgstr "Način samo-gradnje" + +#: src/supertux/menu/editor_menu.cpp:96 +msgid "Enable Autotile Help" +msgstr "Vključi pomoč samo-gradnje" + +#: src/supertux/menu/editor_menu.cpp:97 +msgid "Enable Object Undo Tracking" +msgstr "Omogoči pomnjenje razveljavitev" + +#: src/supertux/menu/editor_menu.cpp:100 +msgid "Undo Stack Size" +msgstr "Velikost sklada razveljavitev" + +#: src/supertux/menu/editor_menu.cpp:102 +msgid "Autosave Frequency" +msgstr "Pogostost samodejnega shranjevanja" -#: src/supertux/menu/editor_menu.cpp:75 +#: src/supertux/menu/editor_menu.cpp:108 +msgid "Check for Deprecated Tiles" +msgstr "Preveri za zastarele podlage" + +#: src/supertux/menu/editor_menu.cpp:109 +msgid "Check if any deprecated tiles are currently present in the level." +msgstr "Preveri, ali so v stopnji prisotne kakšne zastarele podlage" + +#: src/supertux/menu/editor_menu.cpp:110 +msgid "Show Deprecated Tiles" +msgstr "Prikaži zastarele podlage" + +#: src/supertux/menu/editor_menu.cpp:111 +msgid "" +"Indicate all deprecated tiles on the active tilemap, without the need of " +"hovering over." +msgstr "Označi vse zastarele podlage na trenutnem zarisu, ne da bi ti bilo treba z miško lebdeti nad njimi." + +#: src/supertux/menu/editor_menu.cpp:121 msgid "Exit Level Editor" msgstr "Zapusti urejevalnik" -#: src/supertux/menu/editor_menu.cpp:122 +#: src/supertux/menu/editor_menu.cpp:170 +msgid "Do you want to package this world as an add-on?" +msgstr "Želiš zapakirati ta svet kot dodatek?" + +#: src/supertux/menu/editor_menu.cpp:196 msgid "" "We encourage you to share your levels in the SuperTux forum.\n" "To find your level, click the\n" "\"Open Level directory\" menu item.\n" "Do you want to go to the forum now?" -msgstr "Vabimo te, da svoje stopnje deliš na SuperTux forumu.\nSvojo stopnjo najdeš tako,\nda klikneš gumb \"Odpri direktorij stopenj\".\nTe preusmerimo na forum (v angleškem jeziku)?" +msgstr "Vabimo te, da svoje stopnje deliš na SuperTux forumu.\nSvojo stopnjo najdeš tako,\nda klikneš gumb \"Odpri imenik stopenj\".\nTe preusmerimo na forum (v angleškem jeziku)?" -#: src/supertux/menu/editor_menu.cpp:134 +#: src/supertux/menu/editor_menu.cpp:205 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -2294,564 +4223,924 @@ msgid "" "Ctrl+Y = Redo\n" "F6 = Render Light\n" "F7 = Grid Snapping\n" -"F8 = Show Grid" -msgstr "Bližnjice:\n---------------------\nEsc = Odpri meni\nCtrl+S = Shrani\nCtrl+T = Testiraj\nCtrl+Z = Razveljavi\nCtrl+Y = Ponovi\nF6 = Izriši osvetlitev\nF7 = Pripni na mrežo\nF8 = Pokaži mrežo" +"F8 = Show Grid\n" +"Ctrl++ or Ctrl+Scroll Up = Zoom In\n" +"Ctrl+- or Ctrl+Scroll Down = Zoom Out\n" +"Ctrl+D = Reset Zoom\n" +"\n" +"Scripting Shortcuts:\n" +" ------------- \n" +"Home = Go to beginning of line\n" +"End = Go to end of line\n" +"Left arrow = Go back in text\n" +"Right arrow = Go forward in text\n" +"Backspace = Delete in front of text cursor\n" +"Delete = Delete behind text cursor\n" +"Ctrl+X = Cut whole line\n" +"Ctrl+C = Copy whole line\n" +"Ctrl+V = Paste\n" +"Ctrl+D = Duplicate line\n" +"Ctrl+Z = Undo\n" +"Ctrl+Y = Redo" +msgstr "Bližnjice na tipkovnici:\n---------------------\nEsc = Odpri meni\nCtrl+S = Shrani\nCtrl+T = Testiraj\nCtrl+Z = Razveljavi\nCtrl+Y = Obnovi\nF6 = Upodobi svetlobo\nF7 = Pripni na mrežo\nF8 = Pokaži mrežo\nCtrl++ ali Ctrl+Scroll Up = Približaj\nCtrl+- ali Ctrl+Scroll Down = Oddalji\nCtrl+D = Ponastavi oddaljenost\n\nBližnjice za pisanje skript:\n ------------- \nHome = Pojdi na začetek vrstice\nEnd = Pojdi na konec vrstice\nLeft arrow = Pojdi nazaj po besedilu\nRight arrow = Pojdi naprej po besedilu\nBackspace = Briši besedilo pred kazalcem\nDelete = Briši besedilo za kazalcem\nCtrl+X = Izreži celo vrstico\nCtrl+C = Kopiraj celo vrstico\nCtrl+V = Prilepi\nCtrl+D = Podvoji vrstico\nCtrl+Z = Razveljavi\nCtrl+Y = Obnovi" -#: src/supertux/menu/editor_menu.cpp:135 -msgid "Got it!" -msgstr "Razumem!" +#: src/supertux/menu/editor_menu.cpp:232 +msgid "Deprecated tiles are still present in the level." +msgstr "V stopnji so še zastarele podlage." + +#: src/supertux/menu/editor_menu.cpp:239 +msgid "Do you want to show all deprecated tiles on active tilemaps?" +msgstr "Ali želiš prikazati vse zastarele podlage na trenutnem zarisu?" + +#: src/supertux/menu/editor_menu.cpp:246 +msgid "There are no more deprecated tiles in the level!" +msgstr "V stopnji ni več zastarelih podlag!" + +#: src/supertux/menu/multiplayer_player_menu.cpp:40 +msgid "Play with the keyboard" +msgstr "Igraj s tipkovnico" + +#: src/supertux/menu/multiplayer_player_menu.cpp:58 +msgid "Remove Player" +msgstr "Odstrani igralca" + +#: src/supertux/menu/multiplayer_player_menu.cpp:82 +msgid "Respawn Player" +msgstr "Ponovno udejanji igralca" + +#: src/supertux/menu/multiplayer_player_menu.cpp:108 +msgid "Spawn Player" +msgstr "Udejanji igralca" + +#: src/supertux/menu/multiplayer_player_menu.cpp:136 +msgid "Controllers" +msgstr "Krmilniki" + +#: src/supertux/menu/multiplayer_player_menu.cpp:152 +msgid "" +"This controller does not support rumbling;\n" +"please check the controllers manually." +msgstr "Ta krmilnik ne podpira vibriranja.\nKrmilnike boš moral/a preveriti ročno." + +#: src/supertux/menu/multiplayer_player_menu.cpp:157 +msgid "" +"This SuperTux build does not support rumbling\n" +"controllers; please check the controllers manually." +msgstr "Ta različica SuperTuksa ne podpira vibriranja\nkrmilnikov. Krmilnike preveri ročno, prosim." + +#: src/supertux/menu/multiplayer_player_menu.cpp:184 +msgid "" +"This joystick does not support rumbling;\n" +"please check the joysticks manually." +msgstr "Ta igralna palica ne podpira vibriranja.\nIgralne palice boš moral/a preveriti ročno." + +#: src/supertux/menu/multiplayer_player_menu.cpp:189 +msgid "" +"This SuperTux build does not support rumbling\n" +"joysticks; please check the joysticks manually." +msgstr "Ta različica SuperTuksa ne podpira vibriranja\nigralnih palic. Igralne palice preveri ročno, prosim." -#: src/supertux/levelintro.cpp:136 -#, c-format -msgid "contributed by %s" -msgstr "prispeval %s" +#: src/supertux/menu/editor_delete_level_menu.cpp:59 +msgid "No levels available" +msgstr "Na voljo ni nobenih stopenj" -#: src/supertux/levelintro.cpp:169 +#: src/supertux/menu/editor_delete_level_menu.cpp:79 +msgid "You cannot delete the level that you are editing!" +msgstr "Ne moreš izbrisati stopnje, ki jo urejaš!" + +#: src/supertux/menu/editor_delete_level_menu.cpp:82 +#, c++-format +msgid "You are about to delete level \"{}\". Are you sure?" +msgstr "To bo izbrisalo stopnjo \"{}\". Ali si prepričan/a?" + +#: src/supertux/levelintro.cpp:137 +#, c++-format +msgid "contributed by {}" +msgstr "Avtor/ica: {}" + +#: src/supertux/levelintro.cpp:184 msgid "Badguys killed" -msgstr "Pridaniči ubiti" +msgstr "Ubitih pridaničev" -#: src/supertux/levelintro.cpp:177 +#: src/supertux/levelintro.cpp:192 msgid "Best time" msgstr "Najboljši čas" -#: src/supertux/levelintro.cpp:181 +#: src/supertux/levelintro.cpp:196 msgid "Level target time" msgstr "Ciljni čas stopnje" -#: src/supertux/tile_set.cpp:92 +#: src/supertux/tile_set.cpp:113 msgid "Others" -msgstr "Ostali" +msgstr "Drugo" + +#: src/supertux/direction.cpp:67 +msgid "up" +msgstr "gor" + +#: src/supertux/direction.cpp:69 +msgid "down" +msgstr "dol" -#: src/supertux/moving_object.cpp:44 +#: src/supertux/moving_object.cpp:63 msgid "Region" msgstr "Regija" +#: src/supertux/main.cpp:801 +#, c++-format +msgid "New release: SuperTux v{}!" +msgstr "Nova izdaja: SuperTuks različica {}!" + +#: src/supertux/main.cpp:804 +#, c++-format +msgid "" +"A new release of SuperTux (v{}) is available!\n" +"For more information, you can visit the SuperTux website.\n" +"\n" +"Do you want to visit the website now?" +msgstr "Izšla je nova izdaja SuperTuksa (različica {})!\nVeč o tem piše na spletnem mestu SuperTux.\n\nAli ga želiš obiskati kar zdaj?" + +#: src/supertux/main.cpp:815 +msgid "Checking for new releases..." +msgstr "Preverjam za nove izdaje ..." + #: src/control/joystick_config.cpp:85 msgid "Joystick Mappings" msgstr "Prilagoditev igralne palice" -#: src/worldmap/worldmap_parser.cpp:167 +#: src/worldmap/sprite_change.cpp:91 +msgid "Stay action" +msgstr "Stoječa drža" + +#: src/worldmap/sprite_change.cpp:92 +msgid "Initial stay action" +msgstr "Začetna drža" + +#: src/worldmap/sprite_change.cpp:93 +msgid "Stay group" +msgstr "Skupina stanja" + +#: src/worldmap/sprite_change.cpp:94 +msgid "Change on touch" +msgstr "Sprememba ob dotiku" + +#: src/worldmap/special_tile.hpp:36 +msgid "Special Tile" +msgstr "Posebna podlaga" + +#: src/worldmap/level_tile.hpp:36 src/worldmap/level_tile.cpp:161 +msgid "Level" +msgstr "Stopnja" + +#: src/worldmap/teleporter.cpp:50 +msgid "Automatic" +msgstr "Samodejno" + +#: src/worldmap/teleporter.cpp:51 +msgid "Target worldmap" +msgstr "Ciljni zaris sveta" + +#: src/worldmap/sprite_change.hpp:35 +msgid "Sprite Change" +msgstr "Sprememba animiranega izrezka" + +#: src/worldmap/special_tile.cpp:75 +msgid "Show message" +msgstr "Pokaži sporočilo" + +#: src/worldmap/level_tile.cpp:84 msgid "" msgstr "" -#: src/editor/node_marker.cpp:79 +#: src/worldmap/level_tile.cpp:162 +msgid "Outro script" +msgstr "Skripta ob odjavni špici" + +#: src/worldmap/level_tile.cpp:163 +msgid "Auto play" +msgstr "Samodejno predvajaj" + +#: src/worldmap/level_tile.cpp:164 +msgid "Title colour" +msgstr "Barva naslova" + +#: src/worldmap/teleporter.hpp:34 +msgid "Teleporter" +msgstr "Teleportirnik" + +#: src/editor/tip.cpp:80 +msgid "" +"This object's current functionality is deprecated.\n" +"Updating to get its latest functionality is recommended." +msgstr "Funkcionalnost tega predmeta je zastarela.\nPosodabljam za novejšo različico funkcionalnosti." + +#: src/editor/node_marker.cpp:122 msgid "Path Node" msgstr "Presek poti" -#: src/editor/object_settings.cpp:112 -msgid "up" -msgstr "gor" +#: src/editor/node_marker.cpp:123 +msgid "Press CTRL to move Bezier handles" +msgstr "Pritisni krmilko, da premakneš ročaje krivulje" -#: src/editor/object_settings.cpp:112 -msgid "down" -msgstr "dol" +#: src/editor/node_marker.cpp:127 +msgid "Easing" +msgstr "Iztekanje" -#: src/editor/object_settings.cpp:124 +#: src/editor/object_settings.cpp:129 msgid "West" msgstr "Zahod" -#: src/editor/object_settings.cpp:124 +#: src/editor/object_settings.cpp:129 msgid "East" msgstr "Vzhod" -#: src/editor/object_settings.cpp:124 +#: src/editor/object_settings.cpp:129 msgid "North" msgstr "Sever" -#: src/editor/object_settings.cpp:124 +#: src/editor/object_settings.cpp:129 msgid "South" msgstr "Jug" -#: src/editor/object_settings.cpp:137 +#: src/editor/object_settings.cpp:142 msgid "One shot" -msgstr "Enkratno" +msgstr "Premočrtno" -#: src/editor/object_settings.cpp:137 +#: src/editor/object_settings.cpp:142 msgid "Ping-pong" msgstr "Tja in spet nazaj" -#: src/editor/object_settings.cpp:137 +#: src/editor/object_settings.cpp:142 msgid "Circular" msgstr "Krožno" -#: src/editor/object_settings.cpp:137 -msgid "Unordered" -msgstr "Neurejeno" +#: src/editor/layers_widget.cpp:331 +#, c++-format +msgid "Sector: {}" +msgstr "Predel: {}" -#: src/editor/object_option.cpp:83 +#: src/editor/object_option.cpp:92 msgid "true" msgstr "drži" -#: src/editor/object_option.cpp:83 +#: src/editor/object_option.cpp:92 msgid "false" msgstr "ne drži" -#: src/editor/object_option.cpp:246 src/editor/object_option.cpp:295 +#: src/editor/object_option.cpp:308 src/editor/object_option.cpp:356 msgid "invalid" msgstr "neveljavno" -#: src/editor/object_option.cpp:553 +#: src/editor/object_option.cpp:665 +msgid "Scale X" +msgstr "Velikost po X" + +#: src/editor/object_option.cpp:666 +msgid "Scale Y" +msgstr "Velikost po Y" + +#: src/editor/object_option.cpp:667 +msgid "Offset X" +msgstr "Odmik po X" + +#: src/editor/object_option.cpp:668 +msgid "Offset Y" +msgstr "Odmik po Y" + +#: src/editor/object_option.cpp:672 src/editor/object_menu.cpp:67 msgid "Remove" msgstr "Odstrani" -#: src/editor/worldmap_objects.hpp:56 src/editor/worldmap_objects.cpp:129 -msgid "Level" -msgstr "Stopnja" +#: src/editor/object_option.cpp:689 +msgid "Test from here" +msgstr "Testiraj od tu naprej" -#: src/editor/worldmap_objects.hpp:79 -msgid "Teleporter" -msgstr "Teleporter" +#: src/editor/object_option.cpp:706 +msgid "Open Particle Editor" +msgstr "Odpri urejevalnik delcev" -#: src/editor/worldmap_objects.hpp:119 -msgid "Sprite Change" -msgstr "Sprememba animirane sličice" +#: src/editor/particle_editor.cpp:114 +msgid "Change texture... ->" +msgstr "Spremeni teksturo ... ->" + +#: src/editor/particle_editor.cpp:126 +msgid "Max amount" +msgstr "Največja količina" + +#: src/editor/particle_editor.cpp:142 +msgid "Spawn anywhere" +msgstr "Udejanji kjerkoli" + +#: src/editor/particle_editor.cpp:143 +msgid "Life duration" +msgstr "Trajanje obstoja" + +#: src/editor/particle_editor.cpp:148 +msgid "Birth duration" +msgstr "Trajanje nastajanja" + +#: src/editor/particle_editor.cpp:153 +msgid "Death duration" +msgstr "Trajanje odmiranja" + +#: src/editor/particle_editor.cpp:160 +msgid "Grow" +msgstr "Rast" + +#: src/editor/particle_editor.cpp:175 +msgid "Horizontal speed" +msgstr "Vodoravna hitrost" + +#: src/editor/particle_editor.cpp:180 +msgid "Vertical speed" +msgstr "Navpična hitrost" + +#: src/editor/particle_editor.cpp:185 +msgid "Horizontal acceleration" +msgstr "Vodoravni pospešek" + +#: src/editor/particle_editor.cpp:186 +msgid "Vertical acceleration" +msgstr "Navpični pospešek" + +#: src/editor/particle_editor.cpp:187 +msgid "Horizontal friction" +msgstr "Vodoravno trenje" + +#: src/editor/particle_editor.cpp:188 +msgid "Vertical friction" +msgstr "Navpično trenje" + +#: src/editor/particle_editor.cpp:190 +msgid "Initial rotation" +msgstr "Začetni zasuk" + +#: src/editor/particle_editor.cpp:201 +msgid "Rotation friction/decceleration" +msgstr "Trenje/pojemek zasuka" + +#: src/editor/particle_editor.cpp:211 +msgid "Destroy" +msgstr "Uničenje" + +#: src/editor/particle_editor.cpp:215 +msgid "Stick to surface" +msgstr "Ustavitev na površini" + +#: src/editor/particle_editor.cpp:216 +msgid "Stick and stay" +msgstr "Trajna ustavitev" -#: src/editor/worldmap_objects.hpp:140 -msgid "Special tile" -msgstr "Posebna podloga" +#: src/editor/particle_editor.cpp:217 +msgid "No collision" +msgstr "Brez kolizije" -#: src/editor/editor.cpp:477 +#: src/editor/particle_editor.cpp:222 +msgid "Always destroy" +msgstr "Vedno uniči" + +#: src/editor/particle_editor.cpp:226 +msgid "Offscreen mode" +msgstr "Zunajzaslonski način" + +#: src/editor/particle_editor.cpp:229 +msgid "Clear" +msgstr "Počisti" + +#: src/editor/particle_editor.cpp:245 +msgid "<- General settings" +msgstr "<- Splošne nastavitve" + +#: src/editor/particle_editor.cpp:255 +msgid "Likeliness" +msgstr "Verjetnost" + +#: src/editor/particle_editor.cpp:266 +msgid "Color (RGBA)" +msgstr "Barva (RGBA)" + +#: src/editor/particle_editor.cpp:311 +msgid "Scale (x, y)" +msgstr "Velikost (x, y)" + +#: src/editor/particle_editor.cpp:332 +msgid "Hitbox scale (x, y)" +msgstr "Velikost občutljivega področja (x, y)" + +#: src/editor/particle_editor.cpp:353 +msgid "Hitbox offset relative to scale" +msgstr "Odmik občutljivega področja glede na velikost" + +#: src/editor/particle_editor.cpp:372 +msgid "Change texture..." +msgstr "Spremeni teksturo ..." + +#: src/editor/particle_editor.cpp:766 +msgid "" +"This particle configuration contains unsaved changes,\n" +"do you want to save?" +msgstr "Ta konfiguracija vsebuje neshranjene spremembe.\nJih shranim?" + +#: src/editor/particle_editor.cpp:774 +msgid "Save as" +msgstr "Shrani kot" + +#: src/editor/editor.cpp:577 +msgid "" +"This level contains deprecated tiles.\n" +"It is strongly recommended to replace all deprecated tiles\n" +"to avoid loss of compatibility in future versions." +msgstr "Ta stopnja vsebuje zastarele podlage.\nPriporočam, da zamenjaš vse zastarele podlage in se tako\nizogneš nezdružljivosti z bodočimi različicami igre." + +#: src/editor/editor.cpp:579 +msgid "Tip: Turn on \"Show Deprecated Tiles\" from the level editor menu." +msgstr "Namig: V meniju urejevalnika vklopi možnost \"Prikaži zastarele podlage\"" + +#: src/editor/editor.cpp:626 +msgid "" +"Don't forget that your levels and assets\n" +"aren't saved between sessions!\n" +"If you want to keep your levels, download them\n" +"from the \"Manage Assets\" menu." +msgstr "Ne pozabi, da se tvoje stopnje in sredstva\nne shranijo med sejami!\nČe želiš obdržati svoje stopnje, jih prenesi\niz menija za upravljanje sredstev." + +#: src/editor/editor.cpp:661 msgid "This level contains unsaved changes, do you want to save?" -msgstr "Ta stopnja ima nekaj neshranjenih sprememb. Jo shranim?" +msgstr "Ta stopnja vsebuje nekaj neshranjenih sprememb. Jih shranim?" -#: src/editor/editor.cpp:517 +#: src/editor/editor.cpp:662 +msgid "This level may contain unsaved changes, do you want to save?" +msgstr "Ta stopnja morda vsebuje neshranjene spremembe. Jih želiš shraniti?" + +#: src/editor/editor.cpp:797 msgid "" "Some obsolete add-ons are still active\n" "and might cause collisions with default Super Tux structure.\n" "You can still enable these add-ons in the menu.\n" "Disabling these add-ons will not delete your game progress." -msgstr "Nekaj zastarelih dodatkov je še prisotnih\nin lahko povzročijo nasprotja v osnovni strukturi igre.\nČe želiš, jih lahko omogočiš v meniju.\nTudi, če jih onemogočiš, se bo tvoj napredek še zmeraj\nohranil." +msgstr "Nekaj zastarelih dodatkov je še dejavnih,\nkar lahko povzroči neskladja v osnovni strukturi igre.\nČe želiš, jih lahko omogočiš v meniju.\nTudi če jih onemogočiš, se bo tvoj napredek v igri\nše zmeraj ohranil." -#: src/editor/editor.cpp:520 +#: src/editor/editor.cpp:800 msgid "Disable add-ons" msgstr "Onemogoči dodatke" -#: src/editor/editor.cpp:525 +#: src/editor/editor.cpp:805 msgid "Ignore (not advised)" -msgstr "Zanemari (ne priporočamo)" +msgstr "Zanemari (ni priporočljivo)" -#: src/editor/editor.cpp:529 +#: src/editor/editor.cpp:809 msgid "Leave editor" msgstr "Zapusti urejevalnik" -#: src/editor/editor.cpp:740 +#: src/editor/editor.cpp:1023 msgid "" "Couldn't find a \"main\" sector.\n" "Please change the name of the sector where\n" "you'd like the player to start to \"main\"" -msgstr "Ni bilo mogoče najti \"glavne\" cone.\nProsim, spremeni ime cone, kjer naj igralec\nzačne, v \"main\"" +msgstr "Ni bilo mogoče najti \"glavnega\" predela.\nProsim, spremeni ime predela, kjer naj igralec\nzačne igro, v \"main\"" -#: src/editor/editor.cpp:744 +#: src/editor/editor.cpp:1027 msgid "" "Couldn't find a \"main\" spawnpoint.\n" " Please change the name of the spawnpoint where\n" "you'd like the player to start to \"main\"" msgstr "Ni bilo mogoče najti \"glavne\" začetne točke.\nProsim, spremeni ime točke, kjer naj igralec\nzačne, v \"main\"" -#: src/editor/worldmap_objects.cpp:130 -msgid "Outro script" -msgstr "Izvodni zapis" - -#: src/editor/worldmap_objects.cpp:131 -msgid "Auto play" -msgstr "Samodejno predvajaj" - -#: src/editor/worldmap_objects.cpp:133 -msgid "Title colour" -msgstr "Barva naslova" - -#: src/editor/worldmap_objects.cpp:175 -msgid "Automatic" -msgstr "Samodejno" - -#: src/editor/worldmap_objects.cpp:177 -msgid "Target worldmap" -msgstr "Nameri v zemljevid sveta" - -#: src/editor/worldmap_objects.cpp:240 -msgid "Stay action" -msgstr "Stoječa drža" - -#: src/editor/worldmap_objects.cpp:241 -msgid "Initial stay action" -msgstr "Začetna drža" - -#: src/editor/worldmap_objects.cpp:242 -msgid "Stay group" -msgstr "Skupina stanja" +#: src/editor/object_menu.cpp:60 +msgid "Patch Notes" +msgstr "Novosti posodobitve" -#: src/editor/worldmap_objects.cpp:243 -msgid "Change on touch" -msgstr "Sprememba ob dotiku" - -#: src/editor/worldmap_objects.cpp:273 -msgid "Show message" -msgstr "Pokaži sporočilo" - -#: src/editor/worldmap_objects.cpp:275 -msgid "Invisible" -msgstr "Neviden" +#: src/editor/object_menu.cpp:84 +msgid "" +"This will update the object to its latest functionality.\n" +"Check the \"Patch Notes\" for more information.\n" +"\n" +"Keep in mind this is very likely to break the proper behaviour of the object.\n" +"Make sure to re-check any behaviour, related to the object." +msgstr "To bo posodobilo funkcionalnost predmeta.\nVeč piše v novostih posodobitve.\n\nZlahka se zgodi, da predmet zaradi tega ne bo več deloval kot pričakovano.\nPriporočam, da preveriš obnašanje predmeta in njegove okolice." + +#: src/editor/object_menu.cpp:98 +#, c++-format +msgid "Patch notes for v{}:" +msgstr "Novosti za različico {}:" + +#: src/editor/overlay_widget.cpp:1062 +msgid "Cannot select deprecated tiles" +msgstr "Ne morem izbrati zastarelih podlag" + +#: src/editor/overlay_widget.cpp:1567 +msgid "Autotile mode is on" +msgstr "Način samodejne gradnje je vključen" + +#: src/editor/overlay_widget.cpp:1571 +msgid "Hold Ctrl to enable autotile" +msgstr "Omogoči samo-gradnjo z držanjem krmilke" + +#: src/editor/overlay_widget.cpp:1578 +msgid "Autotile erasing mode is on" +msgstr "Način brisanja samo-gradnje je vključen" + +#: src/editor/overlay_widget.cpp:1582 +msgid "Selected tile isn't autotileable" +msgstr "Izbrana podlaga ni samo-gradljiva" + +#: src/editor/overlay_widget.cpp:1587 +msgid "Hold Ctrl to enable autotile erasing" +msgstr "Omogoči brisanje samo-gradnje z držanjem krmilke" #: data//credits.stxt:25 msgid "Current SuperTux Team" -msgstr "Trenutna ekipa SuperTux" +msgstr "Trenutna ekipa SuperTuxa" #: data//credits.stxt:30 -msgid "Programming, project lead ad interim" -msgstr "Programiranje, začasni vodja projekta" +msgid "Maintainer, Programming" +msgstr "Vzdrževanje, programiranje" #: data//credits.stxt:35 msgid "Graphics, Level Design, Story" msgstr "Grafika, oblikovanje stopenj, zgodba" #: data//credits.stxt:40 -msgid "Graphics, Story, Optimisation" -msgstr "Grafika, zgodba, optimizacija" +msgid "Level Design, Story, Optimisation, Coordination" +msgstr "Oblikovanje stopenj, zgodba, optimizacija, koordiniranje" -#: data//credits.stxt:45 data//credits.stxt:100 data//credits.stxt:186 -#: data//credits.stxt:498 +#: data//credits.stxt:45 data//credits.stxt:120 data//credits.stxt:206 +#: data//credits.stxt:538 msgid "Graphics" msgstr "Grafika" -#: data//credits.stxt:50 data//credits.stxt:60 data//credits.stxt:82 -#: data//credits.stxt:88 +#: data//credits.stxt:50 data//credits.stxt:102 data//credits.stxt:108 msgid "Graphics, Programming, Level Design" msgstr "Grafika, programiranje, oblikovanje stopenj" #: data//credits.stxt:55 +msgid "Features and Programming" +msgstr "Nekatere funkcionalnosti in programiranje" + +#: data//credits.stxt:60 +msgid "Minor features and programming" +msgstr "Manjše funkcionalnosti in programiranje" + +#: data//credits.stxt:65 +msgid "Programming, Level Updates" +msgstr "Programiranje, posodobitev stopenj" + +#: data//credits.stxt:70 msgid "Graphics, Programming" msgstr "Grafika, programiranje" -#: data//credits.stxt:65 data//credits.stxt:130 data//credits.stxt:135 -#: data//credits.stxt:140 data//credits.stxt:145 data//credits.stxt:160 -#: data//credits.stxt:165 data//credits.stxt:494 data//credits.stxt:506 +#: data//credits.stxt:75 data//credits.stxt:85 data//credits.stxt:150 +#: data//credits.stxt:155 data//credits.stxt:160 data//credits.stxt:165 +#: data//credits.stxt:180 data//credits.stxt:185 data//credits.stxt:534 +#: data//credits.stxt:546 msgid "Programming" msgstr "Programiranje" -#: data//credits.stxt:71 +#: data//credits.stxt:80 data//credits.stxt:266 +msgid "Level Design" +msgstr "Oblikovanje stopenj" + +#: data//credits.stxt:91 msgid "Original Developers" msgstr "Prvotni razvijalci" -#: data//credits.stxt:76 +#: data//credits.stxt:96 msgid "Original Developer" msgstr "Prvotni razvijalec" -#: data//credits.stxt:94 +#: data//credits.stxt:114 msgid "Music, Level Design" msgstr "Glasba, oblikovanje stopenj" -#: data//credits.stxt:106 +#: data//credits.stxt:126 msgid "Programming, Graphics, Level Design" msgstr "Programiranje, grafika, oblikovanje stopenj" -#: data//credits.stxt:112 +#: data//credits.stxt:132 msgid "Programming, Level Design" msgstr "Programiranje, oblikovanje stopenj" -#: data//credits.stxt:118 +#: data//credits.stxt:138 msgid "Graphics, Story" msgstr "Grafika, zgodba" -#: data//credits.stxt:124 +#: data//credits.stxt:144 msgid "Programming, Documentation" msgstr "Programiranje, dokumentacija" -#: data//credits.stxt:150 +#: data//credits.stxt:170 msgid "Coordination" msgstr "Koordinacija" -#: data//credits.stxt:155 +#: data//credits.stxt:175 msgid "Programming, \"Flexlay\" Level editor" msgstr "Programiranje, urejevalnik stopenj \"Flexlay\"" -#: data//credits.stxt:170 +#: data//credits.stxt:190 msgid "Windows build fixes" -msgstr "Popravki izgradnje za Windows" +msgstr "Popravki verzije za Windows" -#: data//credits.stxt:175 +#: data//credits.stxt:195 msgid "Packaging, Nightly builds" -msgstr "Pakiranje, redne nočne izgradnje" +msgstr "Pakiranje, redne nočne verzije" -#: data//credits.stxt:180 +#: data//credits.stxt:200 msgid "Translation Guru (and many details anyone else could have done)" -msgstr "Prevajalski Guru (in ogromno podrobnosti, ki bi jih lahko storil kdorkoli)" +msgstr "Prevajalski Guru (in ogromno raznoraznih malenkosti)" -#: data//credits.stxt:240 -msgid "Level Design" -msgstr "Oblikovanje stopenj" - -#: data//credits.stxt:414 +#: data//credits.stxt:450 msgid "Additional contributors" msgstr "Dodatni prispevki" -#: data//credits.stxt:419 +#: data//credits.stxt:455 msgid "Bug fixes" msgstr "Popravki nepravilnosti" -#: data//credits.stxt:423 +#: data//credits.stxt:459 msgid "Scripting functions, Level fixes" -msgstr "Funkcije skriptov, popravki stopenj" +msgstr "Skriptne funkcije, popravki stopenj" -#: data//credits.stxt:427 +#: data//credits.stxt:463 msgid "Code quality fixes" -msgstr "Izboljšanje kode" +msgstr "Popravki kakovosti kode" -#: data//credits.stxt:431 data//credits.stxt:435 data//credits.stxt:439 -#: data//credits.stxt:466 +#: data//credits.stxt:467 data//credits.stxt:471 data//credits.stxt:475 +#: data//credits.stxt:502 msgid "Various contributions" msgstr "Različni prispevki" -#: data//credits.stxt:443 +#: data//credits.stxt:479 msgid "Build issue fix" -msgstr "Popravki končne izgradnje" +msgstr "Popravki gradnje verzij" -#: data//credits.stxt:447 data//credits.stxt:451 +#: data//credits.stxt:483 data//credits.stxt:487 msgid "Code contributions" msgstr "Prispevki za kodo" -#: data//credits.stxt:454 +#: data//credits.stxt:490 msgid "Code contribution, AppData file" msgstr "Prispevki za kodo, datoteka AppData" -#: data//credits.stxt:458 +#: data//credits.stxt:494 msgid "Bug fix" msgstr "Popravki nepravilnosti" -#: data//credits.stxt:462 +#: data//credits.stxt:498 msgid "Menu reorganization" msgstr "Preureditev menija" -#: data//credits.stxt:470 +#: data//credits.stxt:506 msgid "Fixing tile bugs" -msgstr "Popravki nepravilnosti v objektih" +msgstr "Popravki nepravilnosti v podlagah" -#: data//credits.stxt:474 +#: data//credits.stxt:510 msgid "Build error fix" -msgstr "Popravki napake v izgradnji" +msgstr "Popravki napak v gradnji verzij" -#: data//credits.stxt:478 +#: data//credits.stxt:514 msgid "Scripting function fix" -msgstr "Popravki funkcije skriptov" +msgstr "Popravki skriptnih funkcij" + +#: data//credits.stxt:518 +msgid "New features and notable updates" +msgstr "Nove funkcionalnosti in posodobitve" -#: data//credits.stxt:482 +#: data//credits.stxt:522 msgid "Support for \"glbinding\" as optional OpenGL binding" -msgstr "Podpora za \"glbinding\" kot izbirne vezave OpenGL" +msgstr "Podpora za \"glbinding\" kot izbirne vezave v OpenGL" -#: data//credits.stxt:486 +#: data//credits.stxt:526 msgid "New menu code" -msgstr "Nova koda za meni" +msgstr "Nova koda menija" -#: data//credits.stxt:490 +#: data//credits.stxt:530 msgid "Big Tux Walking Sprites improvements" -msgstr "Velike izboljšave animacije hodečega Tuxa" +msgstr "Izboljšave animacije hoje za velikega Tuksa" -#: data//credits.stxt:502 data//credits.stxt:510 +#: data//credits.stxt:542 data//credits.stxt:550 msgid "Contrib Programming" msgstr "Prispevki pri programiranju" -#: data//credits.stxt:514 +#: data//credits.stxt:554 msgid "Programming, Previous Maintainer" -msgstr "Programiranje, predhodni vzdrževalec" +msgstr "Programiranje, predhodno vzdrževanje" -#: data//credits.stxt:518 +#: data//credits.stxt:558 msgid "Various Contributions" msgstr "Različni prispevki" -#: data//credits.stxt:522 data//credits.stxt:526 data//credits.stxt:530 -#: data//credits.stxt:534 data//credits.stxt:538 data//credits.stxt:542 -#: data//credits.stxt:546 data//credits.stxt:550 data//credits.stxt:554 +#: data//credits.stxt:562 data//credits.stxt:566 data//credits.stxt:570 +#: data//credits.stxt:574 data//credits.stxt:578 data//credits.stxt:582 +#: data//credits.stxt:586 data//credits.stxt:590 data//credits.stxt:594 +#: data//credits.stxt:598 data//credits.stxt:602 data//credits.stxt:606 +#: data//credits.stxt:610 data//credits.stxt:614 data//credits.stxt:618 +#: data//credits.stxt:622 data//credits.stxt:626 data//credits.stxt:630 +#: data//credits.stxt:634 data//credits.stxt:638 data//credits.stxt:642 +#: data//credits.stxt:646 data//credits.stxt:650 data//credits.stxt:654 +#: data//credits.stxt:658 data//credits.stxt:662 msgid "Contributions" msgstr "Prispevki" -#: data//credits.stxt:560 +#: data//credits.stxt:668 msgid "Localization" msgstr "Lokalizacija" -#: data//credits.stxt:1107 +#: data//credits.stxt:1231 msgid " Special Thanks to" msgstr "Posebna zahvala:" -#: data//credits.stxt:1112 +#: data//credits.stxt:1236 msgid "Creator of Tux, the Linux penguin" -msgstr "Ustvarjalec pingvinčka Tuxa, Linuxove maskote" +msgstr "Ustvarjalec pingvinčka Tuksa, Linuxove maskote" -#: data//credits.stxt:1116 +#: data//credits.stxt:1240 msgid "SDL, OpenAL and OpenGL" msgstr "SDL, OpenAL in OpenGL" -#: data//credits.stxt:1117 +#: data//credits.stxt:1241 msgid "" "For making such a great gaming experience\n" " possible on Linux" msgstr "Ker so omogočili najboljšo možno igralno\nizkušnjo na Linuxu" -#: data//credits.stxt:1122 +#: data//credits.stxt:1246 msgid "and you, the player" msgstr "in tebi, igralec/ka," -#: data//credits.stxt:1123 +#: data//credits.stxt:1247 msgid "for giving this game a chance and playing it" msgstr "ker si igral/a to igro" -#: data//credits.stxt:1134 +#: data//credits.stxt:1258 msgid "Visit our webpage at" msgstr "Obišči našo spletno stran:" -#: data//credits.stxt:1143 +#: data//credits.stxt:1267 msgid "Or visit us directly at IRC:" msgstr "Ali pa pridi k nam neposredno na IRC:" -#: data//credits.stxt:1147 -msgid "#supertux at webchat.freenode.net" -msgstr "#supertux na webchat.freenode.net" +#: data//credits.stxt:1271 +msgid "#supertux at web.libera.chat" +msgstr "#supertux na web.libera.chat" -#: data//credits.stxt:1152 +#: data//credits.stxt:1276 msgid "Or at our Forum:" msgstr "Ali na naš forum:" -#: data//credits.stxt:1161 +#: data//credits.stxt:1285 msgid "Comments, ideas and suggestions" -msgstr "Za komentarje, ideje in predloge" +msgstr "Za pripombe, ideje in predloge" -#: data//credits.stxt:1165 +#: data//credits.stxt:1289 msgid "go to our mailing list" msgstr "pojdi na naš e-poštni seznam" #. l10n: typo contact -#: data//credits.stxt:1175 +#: data//credits.stxt:1299 msgid "Typographical errors can be" msgstr "Tiskarske napake lahko" #. l10n: typo contact -#: data//credits.stxt:1180 +#: data//credits.stxt:1304 msgid "reported to" msgstr "prijaviš na" #. l10n: typo contact, see -#: data//credits.stxt:1185 +#: data//credits.stxt:1309 msgid "supertux-devel@lists.lethargik.org" msgstr "supertux-devel@lists.lethargik.org" -#: data//credits.stxt:1192 +#: data//credits.stxt:1316 msgid "Want to help…" -msgstr "Bi rad/a pomagal/a..." +msgstr "Bi rad/a pomagal/a ..." -#: data//credits.stxt:1197 +#: data//credits.stxt:1321 msgid "…with localization?" -msgstr "...pri prevajanju?" +msgstr "... pri prevajanju?" -#: data//credits.stxt:1207 +#: data//credits.stxt:1331 msgid "…with something else?" -msgstr "...pri čem drugem?" +msgstr "... pri čem drugem?" -#: data//credits.stxt:1218 +#: data//credits.stxt:1342 msgid "Thank you for" msgstr "Hvala, ker si" -#: data//credits.stxt:1222 +#: data//credits.stxt:1346 msgid "playing" msgstr "igral/a" -#: data//credits.stxt:1232 +#: data//credits.stxt:1356 msgid "Penny awaits you in warmer temperatures!" -msgstr "Penny te čaka v toplejših krajih!" +msgstr "Pika te čaka v toplejših krajih!" + +#: data//images/engine/editor/objects.stoi:4 +msgid "Enemies" +msgstr "Sovragi" -#: data//images/engine/editor/objects.stoi:156 +#: data//images/engine/editor/objects.stoi:162 msgid "Bosses" msgstr "Šefi" -#: data//images/engine/editor/objects.stoi:167 +#: data//images/engine/editor/objects.stoi:173 msgid "Projectiles" msgstr "Izstrelki" -#: data//images/engine/editor/objects.stoi:181 +#: data//images/engine/editor/objects.stoi:184 msgid "Environment" msgstr "Okolje" -#: data//images/ice_world.strf:6 data//images/tiles.strf:327 -#: data//images/worldmap.strf:67 -msgid "Forest" -msgstr "Gozd" - -#: data//images/ice_world.strf:106 +#: data//images/ice_world.strf:80 msgid "Ice Cave & Crystal" -msgstr "Ledena jama & Kristal" +msgstr "Ledena jama in kristal" -#: data//images/ice_world.strf:153 +#: data//images/ice_world.strf:127 msgid "Embellishments" msgstr "Okraski" -#: data//images/ice_world.strf:237 -msgid "Ice" -msgstr "Led" +#: data//images/ice_world.strf:320 +msgid "Underground Forest" +msgstr "Podzemni gozd" -#: data//images/ice_world.strf:282 data//images/tiles.strf:693 -msgid "Castle" -msgstr "Grad" +#: data//images/ice_world.strf:375 +msgid "Trees & Bushes" +msgstr "Drevesa in grmičevje" + +#: data//images/ice_world.strf:406 +msgid "Seasonal" +msgstr "Sezonsko" -#: data//images/ice_world.strf:328 +#: data//images/ice_world.strf:496 +msgid "Structure" +msgstr "Struktura" + +#: data//images/ice_world.strf:557 msgid "Pathing" msgstr "Stezice" -#: data//images/ice_world.strf:424 +#: data//images/ice_world.strf:718 msgid "Water" msgstr "Voda" -#: data//images/tiles.strf:19 data//images/worldmap.strf:41 -msgid "Snow" -msgstr "Sneg" - -#: data//images/tiles.strf:124 +#: data//images/tiles.strf:252 msgid "Snow Background" msgstr "Snežno ozadje" -#: data//images/tiles.strf:162 -msgid "Snow Mountain" -msgstr "Snežna gora" - -#: data//images/tiles.strf:236 +#: data//images/tiles.strf:300 msgid "Crystal" msgstr "Kristal" -#: data//images/tiles.strf:457 +#: data//images/tiles.strf:539 msgid "Forest Background" msgstr "Gozdno ozadje" -#: data//images/tiles.strf:572 +#: data//images/tiles.strf:690 +msgid "Corrupted Forest" +msgstr "Skvarjeni gozd" + +#: data//images/tiles.strf:868 +msgid "Corrupted Background" +msgstr "Skvarjeno ozadje" + +#: data//images/tiles.strf:991 msgid "Block + Bonus" -msgstr "Kocka + Bonus" +msgstr "Kocka + bonus" -#: data//images/tiles.strf:618 +#: data//images/tiles.strf:1069 msgid "Pole + Signs" -msgstr "Drog + Znaki" +msgstr "Drog + znaki" -#: data//images/tiles.strf:661 +#: data//images/tiles.strf:1113 msgid "Liquid" msgstr "Tekočina" -#: data//images/tiles.strf:833 data//images/worldmap.strf:199 +#: data//images/tiles.strf:1131 +msgid "Castle" +msgstr "Grad" + +#: data//images/tiles.strf:1231 data//images/worldmap.strf:199 msgid "Halloween" msgstr "Noč čarovnic" -#: data//images/tiles.strf:861 +#: data//images/tiles.strf:1272 msgid "Industrial" msgstr "Industrijsko" -#: data//images/tiles.strf:876 +#: data//images/tiles.strf:1287 msgid "Unisolid + Lightmap" msgstr "Nestabilno + Svetilna tekstura" -#: data//images/tiles.strf:893 +#: data//images/tiles.strf:1314 msgid "Miscellaneous" msgstr "Razno" -#: data//images/tiles.strf:927 -msgid "Old/Unused" -msgstr "Staro/nerabljeno" +#: data//images/tiles.strf:1342 +msgid "Retro Tiles" +msgstr "Retro podlage" #: data//images/worldmap.strf:24 msgid "Water paths" -msgstr "Vodne steze" +msgstr "Vodnate steze" #: data//images/worldmap.strf:32 msgid "Castle paths" @@ -2860,3 +5149,19 @@ msgstr "Grajske steze" #: data//images/worldmap.strf:135 msgid "Darker Forest" msgstr "Temačni gozd" + +#: data//images/converters/data.stcd:3 +msgid "Nightly Tiles" +msgstr "Nočne podlage" + +#: data//images/converters/data.stcd:5 +msgid "For levels, created in previous Nightly builds." +msgstr "Za stopnje, ki so bile ustvarjene v prejšnjih nočnih različicah" + +#: data//images/converters/data.stcd:8 +msgid "Pre-0.6.3 Crystal Tiles" +msgstr "Kristalne podlage pred 0.6.3" + +#: data//images/converters/data.stcd:10 +msgid "For levels, created in pre-0.6.3 versions, which use crystal tiles." +msgstr "Za stopnje, ustvarjene pred različico 0.6.3, ki uporabljajo kristalne podlage" diff --git a/data/locale/sq.po b/data/locale/sq.po index bd4268a4d6d..fe72ee1558c 100644 --- a/data/locale/sq.po +++ b/data/locale/sq.po @@ -1767,8 +1767,8 @@ msgstr "Shtypni escape për të kapërcyer" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Përdorimi: %s [OPSIONET] [SKEDARINIVELIT]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Përdorimi: {} [OPSIONET] [SKEDARINIVELIT]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2491,13 +2491,13 @@ msgstr "Ndryshimi i madhësisë" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[Profili %s]" +msgid "[Profile {}]" +msgstr "[Profili {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "Profili %s" +msgid "Profile {}" +msgstr "Profili {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2545,8 +2545,8 @@ msgstr "I panjohur" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" nga \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" nga \"{}\"" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2558,13 +2558,13 @@ msgstr "Nuk u gjetën shtesa" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "Instalo %s *NEW*" +msgid "Install {} *NEW*" +msgstr "Instalo {} *NEW*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Instalo %s" +msgid "Install {}" +msgstr "Instalo {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2584,8 +2584,8 @@ msgstr "Duke shkarkuar Indeksin e Depove të Shtesave" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "Duke shkarkuar %s" +msgid "Downloading {}" +msgstr "Duke shkarkuar {}" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3098,8 +3098,8 @@ msgstr "Ju nuk mund të fshini nivelin që po redaktoni!" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "me kontributin e %s" +msgid "contributed by {}" +msgstr "me kontributin e {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/sr.po b/data/locale/sr.po index fc78bae15fa..abdfe5b17e0 100644 --- a/data/locale/sr.po +++ b/data/locale/sr.po @@ -1068,8 +1068,8 @@ msgstr "Ветар" #: src/supertux/command_line_arguments.cpp:79 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Употреба: %s [ОПЦИЈЕ] [ФАЈЛНИВОА]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Употреба: {} [ОПЦИЈЕ] [ФАЈЛНИВОА]" #: src/supertux/command_line_arguments.cpp:80 msgid "General Options:" @@ -1247,8 +1247,8 @@ msgstr "Непознат објекат" #: src/supertux/levelintro.cpp:120 #, c-format -msgid "contributed by %s" -msgstr "направио %s" +msgid "contributed by {}" +msgstr "направио {}" #: src/supertux/levelintro.cpp:141 src/supertux/statistics.cpp:119 msgid "Best Level Statistics" @@ -1288,8 +1288,8 @@ msgstr "Свет" #: src/supertux/menu/addon_menu.cpp:83 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" \"{}\"" #: src/supertux/menu/addon_menu.cpp:139 msgid "Language packs" @@ -1325,13 +1325,13 @@ msgstr "Нису нађени додаци" #: src/supertux/menu/addon_menu.cpp:224 #, c-format -msgid "Install %s *NEW*" -msgstr "Инсталирај %s *НОВО*" +msgid "Install {} *NEW*" +msgstr "Инсталирај {} *НОВО*" #: src/supertux/menu/addon_menu.cpp:235 #, c-format -msgid "Install %s" -msgstr "Инсталирај %s" +msgid "Install {}" +msgstr "Инсталирај {}" #: src/supertux/menu/addon_menu.cpp:246 msgid "No new Language packs found" @@ -1370,8 +1370,8 @@ msgstr "Преузимам садржај ризнице додатака" #: src/supertux/menu/addon_menu.cpp:361 #, c-format -msgid "Downloading %s" -msgstr "Преузимам %s" +msgid "Downloading {}" +msgstr "Преузимам {}" #: src/supertux/menu/addon_menu.cpp:408 msgid "" @@ -2032,13 +2032,13 @@ msgstr "Божићни режим" #: src/supertux/menu/profile_menu.cpp:37 #, c-format -msgid "[Profile %s]" -msgstr "[Профил %s]" +msgid "[Profile {}]" +msgstr "[Профил {}]" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "Profile %s" -msgstr "Профил %s" +msgid "Profile {}" +msgstr "Профил {}" #: src/supertux/menu/world_set_menu.cpp:41 msgid "Story Mode" diff --git a/data/locale/sv.po b/data/locale/sv.po index bb2ff275cae..d544a4bd177 100644 --- a/data/locale/sv.po +++ b/data/locale/sv.po @@ -1184,8 +1184,8 @@ msgstr "Okänt objekt" #: src/supertux/command_line_arguments.cpp:74 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Användning: %s [FLAGGOR] [BANFIL]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Användning: {} [FLAGGOR] [BANFIL]" #: src/supertux/command_line_arguments.cpp:75 msgid "General Options:" @@ -1812,13 +1812,13 @@ msgstr "Ändra storlek" #: src/supertux/menu/profile_menu.cpp:37 #, c-format -msgid "[Profile %s]" -msgstr "[Profil %s]" +msgid "[Profile {}]" +msgstr "[Profil {}]" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "Profile %s" -msgstr "Profil %s" +msgid "Profile {}" +msgstr "Profil {}" #: src/supertux/menu/editor_levelset_menu.cpp:59 #: src/supertux/menu/editor_new_levelset_menu.cpp:35 @@ -1850,8 +1850,8 @@ msgstr "Okänd" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" av \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" av \"{}\"" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -1863,13 +1863,13 @@ msgstr "Inga tillägg funna" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "Installera %s *NY*" +msgid "Install {} *NEW*" +msgstr "Installera {} *NY*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Installera %s" +msgid "Install {}" +msgstr "Installera {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -1889,8 +1889,8 @@ msgstr "Hämtar ner arkivindex för tillägg" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "Hämtar ner %s" +msgid "Downloading {}" +msgstr "Hämtar ner {}" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -2306,8 +2306,8 @@ msgstr "Jag fattar!" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "bidrag från %s" +msgid "contributed by {}" +msgstr "bidrag från {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/tr.po b/data/locale/tr.po index 7ce4199fa76..50269060198 100644 --- a/data/locale/tr.po +++ b/data/locale/tr.po @@ -1776,8 +1776,8 @@ msgstr "Atlamak için escape'e basın" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Kullanım: %s [SEÇENEKLER] [BÖLÜMDOSYASI]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Kullanım: {} [SEÇENEKLER] [BÖLÜMDOSYASI]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2500,13 +2500,13 @@ msgstr "Yeniden boyutlandır" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[Profil %s]" +msgid "[Profile {}]" +msgstr "[Profil {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "Profil %s" +msgid "Profile {}" +msgstr "Profil {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2554,8 +2554,8 @@ msgstr "Bilinmiyor" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" kadar \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" kadar \"{}\"" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2567,13 +2567,13 @@ msgstr "Eklentiler bulunamadı" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "Kur %s *YENİ*" +msgid "Install {} *NEW*" +msgstr "Kur {} *YENİ*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Kur %s" +msgid "Install {}" +msgstr "Kur {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2593,8 +2593,8 @@ msgstr "Eklenti Deposu İçeriği İndiriliyor" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "%s İndiriliyor" +msgid "Downloading {}" +msgstr "{} İndiriliyor" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3107,8 +3107,8 @@ msgstr "Düzenlemekte olduğunuz seviyeyi silemezsiniz!" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "%s tarafından katkıda bulunuldu" +msgid "contributed by {}" +msgstr "{} tarafından katkıda bulunuldu" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/tt.po b/data/locale/tt.po index f050f4fae9a..01265925af0 100644 --- a/data/locale/tt.po +++ b/data/locale/tt.po @@ -1767,8 +1767,8 @@ msgstr "Сикерү өчен качуны басыгыз" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Куллану: %s [КӨЙЛӘҮЛӘР] [ДӘРӘҖӘ_ФАЙЛЫ]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Куллану: {} [КӨЙЛӘҮЛӘР] [ДӘРӘҖӘ_ФАЙЛЫ]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2490,13 +2490,13 @@ msgstr "Зурлыгын үзгәртергә" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[Профиль %s]" +msgid "[Profile {}]" +msgstr "[Профиль {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "Профиль %s" +msgid "Profile {}" +msgstr "Профиль {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2544,8 +2544,8 @@ msgstr "Билгесез" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s %s авторы %s" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} {} авторы {}" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2557,13 +2557,13 @@ msgstr "Кушымталар табылмады" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "Урнаштырырга: %s *ЯҢА*" +msgid "Install {} *NEW*" +msgstr "Урнаштырырга: {} *ЯҢА*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Урнаштырырга: %s" +msgid "Install {}" +msgstr "Урнаштырырга: {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2583,8 +2583,8 @@ msgstr "Кушымталар саклагычы индексын йөкләү" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "Йөкләнә %s" +msgid "Downloading {}" +msgstr "Йөкләнә {}" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3097,8 +3097,8 @@ msgstr "Сез редакцияләгән дәрәҗәне бетерә алмы #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "кертем ясады: %s" +msgid "contributed by {}" +msgstr "кертем ясады: {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/uk.po b/data/locale/uk.po index 8f7d7c1a337..a998b1a53d2 100644 --- a/data/locale/uk.po +++ b/data/locale/uk.po @@ -1771,8 +1771,8 @@ msgstr "Натисніть Escape, щоб пропустити" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Використання: %s [ПАРАМЕТРИ] [ФАЙЛ_РІВНЯ]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Використання: {} [ПАРАМЕТРИ] [ФАЙЛ_РІВНЯ]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2497,13 +2497,13 @@ msgstr "Змінити розмір" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[Профіль %s]" +msgid "[Profile {}]" +msgstr "[Профіль {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "Профіль %s" +msgid "Profile {}" +msgstr "Профіль {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2551,8 +2551,8 @@ msgstr "Невідомо" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" від \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" від \"{}\"" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2564,13 +2564,13 @@ msgstr "Жодного доповнення не знайдено" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "Інсталювати %s *НОВЕ*" +msgid "Install {} *NEW*" +msgstr "Інсталювати {} *НОВЕ*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "Інсталювати %s" +msgid "Install {}" +msgstr "Інсталювати {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2590,8 +2590,8 @@ msgstr "Завантаження даних репозиторію доповн #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "Завантаження %s" +msgid "Downloading {}" +msgstr "Завантаження {}" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3104,8 +3104,8 @@ msgstr "Ви не можете видалити рівень, який ви ре #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "Автор %s" +msgid "contributed by {}" +msgstr "Автор {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/uz.po b/data/locale/uz.po index 36633a39d3f..e96c9efc9a4 100644 --- a/data/locale/uz.po +++ b/data/locale/uz.po @@ -1766,8 +1766,8 @@ msgstr "Oʻtkazib yuborish uchun escape tugmasini bosing" #: src/supertux/command_line_arguments.cpp:94 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "Foydalanish: %s [OPTIONS] [LEVELFILE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "Foydalanish: {} [OPTIONS] [LEVELFILE]" #: src/supertux/command_line_arguments.cpp:95 msgid "General Options:" @@ -2489,13 +2489,13 @@ msgstr "Oʻlchamini oʻzgartirish" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "[Profile %s]" -msgstr "[Profil %s]" +msgid "[Profile {}]" +msgstr "[Profil {}]" #: src/supertux/menu/profile_menu.cpp:45 #, c-format -msgid "Profile %s" -msgstr "Profil %s" +msgid "Profile {}" +msgstr "Profil {}" #: src/supertux/menu/profile_menu.cpp:50 msgid "Reset profile" @@ -2543,8 +2543,8 @@ msgstr "Noma'lum" #: src/supertux/menu/addon_menu.cpp:71 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" tomonidan \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" tomonidan \"{}\"" #: src/supertux/menu/addon_menu.cpp:129 msgid "No Add-ons installed" @@ -2556,13 +2556,13 @@ msgstr "Hech qanday qo‘shimcha topilmadi" #: src/supertux/menu/addon_menu.cpp:179 #, c-format -msgid "Install %s *NEW*" -msgstr "O'rnatish %s *YANGI*" +msgid "Install {} *NEW*" +msgstr "O'rnatish {} *YANGI*" #: src/supertux/menu/addon_menu.cpp:190 #, c-format -msgid "Install %s" -msgstr "O'rnatish %s" +msgid "Install {}" +msgstr "O'rnatish {}" #: src/supertux/menu/addon_menu.cpp:199 msgid "No new Add-ons found" @@ -2582,8 +2582,8 @@ msgstr "Qo'shimchalar ombori indeksi yuklab olinmoqda" #: src/supertux/menu/addon_menu.cpp:301 #, c-format -msgid "Downloading %s" -msgstr "Yuklab olinmoqda %s" +msgid "Downloading {}" +msgstr "Yuklab olinmoqda {}" #: src/supertux/menu/addon_menu.cpp:348 msgid "" @@ -3096,8 +3096,8 @@ msgstr "Siz tahrirlayotgan darajani o'chira olmaysiz!" #: src/supertux/levelintro.cpp:136 #, c-format -msgid "contributed by %s" -msgstr "tomonidan hissa qoʻshgan %s" +msgid "contributed by {}" +msgstr "tomonidan hissa qoʻshgan {}" #: src/supertux/levelintro.cpp:169 msgid "Badguys killed" diff --git a/data/locale/vi.po b/data/locale/vi.po index 477bdf3748d..a9fca934709 100644 --- a/data/locale/vi.po +++ b/data/locale/vi.po @@ -1058,7 +1058,7 @@ msgstr "" #: src/supertux/command_line_arguments.cpp:79 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" msgstr "" #: src/supertux/command_line_arguments.cpp:80 @@ -1231,8 +1231,8 @@ msgstr "" #: src/supertux/levelintro.cpp:120 #, c-format -msgid "contributed by %s" -msgstr "được cống hiến bởi %s" +msgid "contributed by {}" +msgstr "được cống hiến bởi {}" #: src/supertux/levelintro.cpp:141 src/supertux/statistics.cpp:119 msgid "Best Level Statistics" @@ -1272,8 +1272,8 @@ msgstr "Thế giới" #: src/supertux/menu/addon_menu.cpp:83 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" bởi \"%s\"" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" bởi \"{}\"" #: src/supertux/menu/addon_menu.cpp:139 msgid "Language packs" @@ -1309,12 +1309,12 @@ msgstr "" #: src/supertux/menu/addon_menu.cpp:224 #, c-format -msgid "Install %s *NEW*" +msgid "Install {} *NEW*" msgstr "" #: src/supertux/menu/addon_menu.cpp:235 #, c-format -msgid "Install %s" +msgid "Install {}" msgstr "" #: src/supertux/menu/addon_menu.cpp:246 @@ -1354,7 +1354,7 @@ msgstr "" #: src/supertux/menu/addon_menu.cpp:361 #, c-format -msgid "Downloading %s" +msgid "Downloading {}" msgstr "" #: src/supertux/menu/addon_menu.cpp:408 @@ -2013,12 +2013,12 @@ msgstr "" #: src/supertux/menu/profile_menu.cpp:37 #, c-format -msgid "[Profile %s]" +msgid "[Profile {}]" msgstr "" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "Profile %s" +msgid "Profile {}" msgstr "" #: src/supertux/menu/world_set_menu.cpp:41 diff --git a/data/locale/zh_CN.po b/data/locale/zh_CN.po index c5e3ac405d9..b74c93f9f84 100644 --- a/data/locale/zh_CN.po +++ b/data/locale/zh_CN.po @@ -3,165 +3,188 @@ # This file is distributed under the same license as the SuperTux package. # # Translators: +# a73a47e368cc011d8f94528bd9d5d3f1_91fccdf <1b07f49e2a323989c85dd26d526f7bb9_871526>, 2020 +# Sizhuang Liu , 2008 +# Matatabi Wang, 2024 +# Matatabi Wang, 2024 # Sizhuang Liu , 2008 # CodingJellyfish , 2018-2020 # 玉堂白鹤 , 2018-2019 -# 邢家朋 , 2020 +# a73a47e368cc011d8f94528bd9d5d3f1_91fccdf <1b07f49e2a323989c85dd26d526f7bb9_871526>, 2020 msgid "" msgstr "" "Project-Id-Version: SuperTux\n" "Report-Msgid-Bugs-To: https://github.com/SuperTux/supertux/issues\n" -"POT-Creation-Date: 2020-04-13 17:25+0200\n" -"PO-Revision-Date: 2020-07-30 05:12+0000\n" -"Last-Translator: CodingJellyfish \n" -"Language-Team: Chinese (China) (http://www.transifex.com/arctic-games/supertux/language/zh_CN/)\n" +"POT-Creation-Date: 2024-05-30 16:19+0200\n" +"PO-Revision-Date: 2013-08-10 22:56+0000\n" +"Last-Translator: Matatabi Wang, 2024\n" +"Language-Team: Chinese (China) (http://app.transifex.com/arctic-games/supertux/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/trigger/secretarea_trigger.cpp:53 src/trigger/secretarea_trigger.cpp:61 +#: src/trigger/secretarea_trigger.cpp:47 msgid "You found a secret area!" msgstr "你找到了一个秘密区域!" -#: src/trigger/secretarea_trigger.cpp:77 src/trigger/scripttrigger.cpp:75 -#: src/supertux/game_object.cpp:88 src/supertux/menu/editor_sector_menu.cpp:34 -#: src/supertux/menu/editor_levelset_menu.cpp:58 +#: src/trigger/secretarea_trigger.cpp:55 src/supertux/game_object.cpp:115 +#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_levelset_menu.cpp:52 #: src/supertux/menu/editor_new_levelset_menu.cpp:34 +#: src/supertux/menu/profile_name_menu.cpp:39 #: src/supertux/menu/editor_level_menu.cpp:33 msgid "Name" msgstr "名称" -#: src/trigger/secretarea_trigger.cpp:78 +#: src/trigger/secretarea_trigger.cpp:56 msgid "Fade tilemap" -msgstr "淡化贴图" +msgstr "淡化图块地图" -#: src/trigger/secretarea_trigger.cpp:79 src/trigger/climbable.cpp:81 -#: src/object/infoblock.cpp:57 src/editor/worldmap_objects.cpp:174 -#: src/editor/worldmap_objects.cpp:272 +#: src/trigger/secretarea_trigger.cpp:57 src/trigger/climbable.cpp:59 +#: src/object/infoblock.cpp:76 src/worldmap/teleporter.cpp:49 +#: src/worldmap/special_tile.cpp:74 msgid "Message" -msgstr "信息" +msgstr "消息" -#: src/trigger/secretarea_trigger.cpp:80 src/trigger/scripttrigger.cpp:80 -#: src/trigger/door.cpp:73 src/object/ispy.cpp:67 -#: src/object/bonus_block.cpp:203 src/object/bonus_block.cpp:207 -#: src/object/pushbutton.cpp:49 src/object/powerup.cpp:190 -#: src/editor/worldmap_objects.cpp:274 +#: src/trigger/secretarea_trigger.cpp:58 src/trigger/scripttrigger.cpp:51 +#: src/trigger/door.cpp:79 src/object/ispy.cpp:53 +#: src/object/bonus_block.cpp:264 src/object/bonus_block.cpp:268 +#: src/object/pushbutton.cpp:62 src/object/powerup.cpp:301 +#: src/worldmap/special_tile.cpp:76 msgid "Script" msgstr "脚本" -#: src/trigger/scripttrigger.cpp:73 -msgid "Script Trigger" -msgstr "脚本触发器" - -#: src/trigger/scripttrigger.cpp:76 src/object/tilemap.cpp:220 -#: src/supertux/menu/editor_sector_menu.cpp:39 -#: src/editor/object_option.cpp:148 -msgid "Width" -msgstr "宽" - -#: src/trigger/scripttrigger.cpp:77 src/object/tilemap.cpp:221 -#: src/supertux/menu/editor_sector_menu.cpp:40 -#: src/editor/object_option.cpp:149 -msgid "Height" -msgstr "高" - -#: src/trigger/scripttrigger.cpp:78 src/object/bicycle_platform.cpp:187 -#: src/object/background.cpp:160 src/object/pneumatic_platform.cpp:145 -#: src/supertux/menu/joystick_menu.cpp:170 src/supertux/moving_object.cpp:47 -#: src/editor/worldmap_objects.cpp:73 -msgid "X" -msgstr "X" - -#: src/trigger/scripttrigger.cpp:79 src/object/bicycle_platform.cpp:188 -#: src/object/background.cpp:161 src/object/pneumatic_platform.cpp:146 -#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:48 -#: src/editor/worldmap_objects.cpp:74 -msgid "Y" -msgstr "Y" - -#: src/trigger/scripttrigger.cpp:81 src/object/pushbutton.hpp:31 +#: src/trigger/scripttrigger.cpp:52 src/object/pushbutton.hpp:32 msgid "Button" msgstr "按钮" -#: src/trigger/scripttrigger.cpp:82 +#: src/trigger/scripttrigger.cpp:53 msgid "Oneshot" -msgstr "单发" +msgstr "一次性" -#: src/trigger/sequence_trigger.hpp:33 +#: src/trigger/sequence_trigger.hpp:31 msgid "Sequence Trigger" msgstr "序列触发器" -#: src/trigger/door.cpp:74 src/badguy/willowisp.cpp:280 -#: src/supertux/menu/editor_sector_menu.cpp:32 -#: src/editor/layers_widget.cpp:274 -#: data//images/engine/editor/objects.stoi:300 +#: src/trigger/text_area.cpp:141 +msgid "Once" +msgstr "" + +#: src/trigger/text_area.cpp:142 +msgid "Text change time" +msgstr "" + +#: src/trigger/text_area.cpp:143 +msgid "Fade time" +msgstr "" + +#: src/trigger/text_area.cpp:144 src/object/textscroller.cpp:353 +msgid "Anchor" +msgstr "锚点" + +#: src/trigger/text_area.cpp:148 +msgid "Anchor offset X" +msgstr "" + +#: src/trigger/text_area.cpp:149 +msgid "Anchor offset Y" +msgstr "" + +#: src/trigger/text_area.cpp:150 +msgid "Texts" +msgstr "" + +#: src/trigger/door.cpp:80 src/badguy/willowisp.cpp:311 +#: src/worldmap/teleporter.cpp:47 data//images/engine/editor/objects.stoi:342 msgid "Sector" msgstr "区块" -#: src/trigger/door.cpp:75 src/editor/worldmap_objects.hpp:101 +#: src/trigger/door.cpp:81 src/worldmap/spawn_point.hpp:58 msgid "Spawn point" msgstr "出生点" -#: src/trigger/switch.cpp:61 src/object/block.cpp:212 src/object/torch.cpp:91 -#: src/object/moving_sprite.cpp:156 src/object/pneumatic_platform.cpp:144 -msgid "Sprite" -msgstr "精灵" +#: src/trigger/door.cpp:82 +msgid "Locked?" +msgstr "" + +#: src/trigger/door.cpp:83 +msgid "Lock Color" +msgstr "" + +#: src/trigger/switch.cpp:62 src/object/ispy.cpp:54 src/object/bumper.cpp:53 +#: src/object/spotlight.cpp:106 src/object/pushbutton.cpp:61 +#: src/object/gradient.cpp:103 src/object/conveyor_belt.cpp:60 +#: src/badguy/badguy.cpp:1063 src/worldmap/spawn_point.cpp:79 +#: src/worldmap/special_tile.cpp:78 +msgid "Direction" +msgstr "方向" -#: src/trigger/switch.cpp:62 +#: src/trigger/switch.cpp:65 msgid "Turn on script" msgstr "打开脚本" -#: src/trigger/switch.cpp:63 +#: src/trigger/switch.cpp:66 msgid "Turn off script" msgstr "关闭脚本" -#: src/trigger/sequence_trigger.cpp:75 +#: src/trigger/scripttrigger.hpp:29 +msgid "Script Trigger" +msgstr "脚本触发器" + +#: src/trigger/sequence_trigger.cpp:48 msgid "Sequence" msgstr "序列" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "end sequence" -msgstr "序列结束" +msgstr "结束序列" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "stop Tux" msgstr "停止 Tux" -#: src/trigger/sequence_trigger.cpp:76 +#: src/trigger/sequence_trigger.cpp:49 msgid "fireworks" msgstr "烟花" -#: src/trigger/sequence_trigger.cpp:80 +#: src/trigger/sequence_trigger.cpp:53 msgid "New worldmap spawnpoint" msgstr "新世界地图出生点" -#: src/trigger/sequence_trigger.cpp:81 +#: src/trigger/sequence_trigger.cpp:54 msgid "Worldmap fade tilemap" -msgstr "世界地图淡化 tile 贴图" +msgstr "世界地图淡化图块地图" -#: src/trigger/sequence_trigger.cpp:82 +#: src/trigger/sequence_trigger.cpp:55 +#: src/object/custom_particle_system.cpp:430 +#: src/object/custom_particle_system.cpp:465 msgid "Fade" msgstr "淡化" -#: src/trigger/sequence_trigger.cpp:83 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:161 msgid "Fade in" msgstr "淡入" -#: src/trigger/sequence_trigger.cpp:83 +#: src/trigger/sequence_trigger.cpp:56 src/editor/particle_editor.cpp:167 +#: src/editor/particle_editor.cpp:212 msgid "Fade out" msgstr "淡出" -#: src/trigger/climbable.hpp:37 +#: src/trigger/climbable.hpp:46 msgid "Climbable" -msgstr "可攀爬的" +msgstr "可攀爬" + +#: src/trigger/text_area.hpp:47 +msgid "Text Area" +msgstr "" -#: src/trigger/door.hpp:34 +#: src/trigger/door.hpp:31 msgid "Door" msgstr "门" -#: src/trigger/switch.hpp:33 +#: src/trigger/switch.hpp:30 msgid "Switch" msgstr "开关" @@ -169,85 +192,194 @@ msgstr "开关" msgid "Secret Area" msgstr "秘密区域" -#: src/object/thunderstorm.hpp:40 +#: src/math/anchor_point.cpp:33 +msgid "Top Left" +msgstr "" + +#: src/math/anchor_point.cpp:34 +msgid "Top" +msgstr "" + +#: src/math/anchor_point.cpp:35 +msgid "Top Right" +msgstr "" + +#: src/math/anchor_point.cpp:36 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:38 +#: src/supertux/menu/joystick_menu.cpp:73 +msgid "Left" +msgstr "左" + +#: src/math/anchor_point.cpp:37 +msgid "Middle" +msgstr "" + +#: src/math/anchor_point.cpp:38 src/object/textscroller.cpp:354 +#: src/object/textscroller.cpp:358 src/supertux/menu/keyboard_menu.cpp:39 +#: src/supertux/menu/joystick_menu.cpp:74 +msgid "Right" +msgstr "右" + +#: src/math/anchor_point.cpp:39 +msgid "Bottom Left" +msgstr "" + +#: src/math/anchor_point.cpp:40 +msgid "Bottom" +msgstr "" + +#: src/math/anchor_point.cpp:41 +msgid "Bottom Right" +msgstr "" + +#: src/object/thunderstorm.hpp:44 msgid "Thunderstorm" msgstr "雷雨" -#: src/object/ispy.cpp:66 -msgid "Facing Down" -msgstr "向下" +#: src/object/cloud_particle_system.cpp:77 +#: src/object/rain_particle_system.cpp:100 +msgid "Intensity" +msgstr "强度" -#: src/object/ispy.cpp:68 src/object/gradient.cpp:124 -#: src/badguy/willowisp.cpp:279 src/badguy/badguy.cpp:840 -#: src/editor/worldmap_objects.cpp:209 src/editor/worldmap_objects.cpp:276 -msgid "Direction" -msgstr "方向" +#: src/object/custom_particle_system.hpp:46 +msgid "Custom Particles" +msgstr "自定义粒子" + +#: src/object/particle_zone.hpp:41 +msgid "Particle zone" +msgstr "粒子区域" -#: src/object/path_gameobject.hpp:44 src/object/coin.cpp:262 -#: src/object/camera.cpp:212 src/object/platform.cpp:65 -#: src/object/path_gameobject.cpp:168 src/object/tilemap.cpp:234 -#: src/badguy/willowisp.cpp:286 +#: src/object/path_gameobject.hpp:45 src/object/coin.cpp:324 +#: src/object/camera.cpp:168 src/object/platform.cpp:76 +#: src/object/path_gameobject.cpp:175 src/object/tilemap.cpp:284 +#: src/badguy/willowisp.cpp:317 msgid "Path" msgstr "路径" -#: src/object/decal.cpp:41 src/object/scripted_object.cpp:67 -#: src/object/particlesystem.cpp:62 src/object/background.cpp:164 -#: src/object/thunderstorm.cpp:68 src/object/tilemap.cpp:227 -#: src/object/gradient.cpp:122 -msgid "Z-pos" -msgstr "Z位置" - -#: src/object/decal.cpp:42 src/object/scripted_object.cpp:70 -#: src/object/tilemap.cpp:216 +#: src/object/decal.cpp:48 src/object/scripted_object.cpp:70 +#: src/object/tilemap.cpp:266 msgid "Solid" msgstr "固体" -#: src/object/decal.cpp:43 src/supertux/menu/keyboard_menu.cpp:37 -#: src/supertux/menu/joystick_menu.cpp:74 +#: src/object/decal.cpp:49 src/supertux/menu/keyboard_menu.cpp:41 +#: src/supertux/menu/joystick_menu.cpp:76 msgid "Action" msgstr "动作" -#: src/object/weak_block.hpp:35 +#: src/object/weak_block.hpp:36 msgid "Weak Tile" -msgstr "弱磁砖" +msgstr "脆弱图块" -#: src/object/gradient.hpp:42 +#: src/object/gradient.hpp:43 msgid "Gradient" -msgstr "坡度" +msgstr "斜坡" -#: src/object/tilemap.hpp:53 +#: src/object/tilemap.hpp:58 msgid "Tilemap" -msgstr "Tile贴图" +msgstr "图块地图" + +#: src/object/sound_object.cpp:69 src/object/ambient_sound.cpp:85 +#: src/object/sound_object.hpp:42 src/supertux/menu/options_menu.cpp:128 +#: data//credits.stxt:367 +msgid "Sound" +msgstr "音效" + +#: src/object/sound_object.cpp:70 src/object/ambient_sound.cpp:87 +msgid "Volume" +msgstr "音量" + +#: src/object/conveyor_belt.hpp:39 +msgid "Conveyor Belt" +msgstr "" -#: src/object/brick.cpp:133 +#: src/object/unstable_tile.cpp:70 src/object/weak_block.cpp:97 +#: src/badguy/flame.cpp:86 +msgid "Ice" +msgstr "冰" + +#: src/object/unstable_tile.cpp:71 src/object/brick.hpp:34 +msgid "Brick" +msgstr "砖" + +#: src/object/unstable_tile.cpp:72 +msgid "Delayed" +msgstr "" + +#: src/object/circleplatform.hpp:35 +msgid "Circular Platform" +msgstr "循环平台" + +#: src/object/brick.cpp:59 src/object/coin.cpp:69 +#: src/object/invisible_block.cpp:37 src/object/background.cpp:200 +#: src/object/tilemap.cpp:279 src/object/gradient.cpp:109 +#: src/badguy/viciousivy.cpp:44 src/badguy/snail.cpp:69 +#: src/badguy/smartball.cpp:34 src/badguy/bouncing_snowball.cpp:81 +#: src/badguy/kamikazesnowball.cpp:117 src/badguy/walkingleaf.cpp:35 +#: src/badguy/mrbomb.cpp:47 src/badguy/igel.cpp:188 src/badguy/snowball.cpp:40 +#: src/badguy/mrtree.cpp:50 src/badguy/mriceblock.cpp:62 +msgid "Normal" +msgstr "一般" + +#: src/object/brick.cpp:60 src/object/bonus_block.cpp:175 +#: src/object/coin.cpp:70 src/object/invisible_block.cpp:38 +msgid "Retro" +msgstr "" + +#: src/object/brick.cpp:166 msgid "Breakable" msgstr "可破坏" -#: src/object/trampoline.cpp:136 src/object/rusty_trampoline.cpp:66 +#: src/object/trampoline.cpp:66 src/object/rusty_trampoline.cpp:66 msgid "Portable" msgstr "可携带" -#: src/object/spotlight.cpp:62 +#: src/object/trampoline.cpp:67 +msgid "Stationary" +msgstr "" + +#: src/object/key.hpp:38 +msgid "Key" +msgstr "" + +#: src/object/spotlight.cpp:102 src/object/particlesystem.cpp:64 +#: src/object/particle_zone.cpp:50 src/badguy/darttrap.cpp:149 +#: src/supertux/menu/addon_preview_menu.cpp:189 +msgid "Enabled" +msgstr "已启用" + +#: src/object/spotlight.cpp:103 src/object/rain_particle_system.cpp:101 msgid "Angle" -msgstr "天使" +msgstr "角度" -#: src/object/spotlight.cpp:63 src/object/magicblock.cpp:94 -#: src/object/candle.cpp:77 src/object/lantern.cpp:62 -#: src/object/ambient_light.cpp:131 src/badguy/walking_candle.cpp:82 +#: src/object/spotlight.cpp:104 src/object/magicblock.cpp:95 +#: src/object/candle.cpp:75 src/object/torch.cpp:96 src/object/rublight.cpp:55 +#: src/object/lantern.cpp:62 src/object/ambient_light.cpp:122 +#: src/object/key.cpp:192 src/badguy/willowisp.cpp:319 +#: src/badguy/walking_candle.cpp:91 msgid "Color" msgstr "颜色" -#: src/object/spotlight.cpp:64 src/object/textscroller.cpp:279 -#: src/badguy/flame.cpp:59 +#: src/object/spotlight.cpp:105 src/object/textscroller.cpp:350 +#: src/object/rain_particle_system.cpp:102 src/object/conveyor_belt.cpp:61 +#: src/object/circleplatform.cpp:58 src/badguy/flame.cpp:110 +#: src/editor/node_marker.cpp:125 msgid "Speed" msgstr "速度" -#: src/object/spotlight.cpp:65 +#: src/object/spotlight.cpp:107 +msgid "Clockwise" +msgstr "顺时针" + +#: src/object/spotlight.cpp:107 msgid "Counter-clockwise" -msgstr "逆时针方向" +msgstr "逆时针" + +#: src/object/spotlight.cpp:107 +msgid "Stopped" +msgstr "已停止" -#: src/object/spotlight.cpp:66 src/object/candle.cpp:78 -#: src/object/torch.cpp:92 +#: src/object/spotlight.cpp:110 src/object/lit_object.cpp:69 +#: src/object/candle.cpp:76 src/object/torch.cpp:95 msgid "Layer" msgstr "层" @@ -259,113 +391,200 @@ msgstr "启用物理" msgid "Visible" msgstr "可见" -#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:282 +#: src/object/scripted_object.cpp:73 src/badguy/willowisp.cpp:313 msgid "Hit script" msgstr "命中脚本" -#: src/object/bonus_block.cpp:204 +#: src/object/custom_particle_system_file.cpp:53 +#: src/object/textscroller.cpp:348 src/object/music_object.cpp:109 +#: src/supertux/menu/particle_editor_open.cpp:38 +msgid "File" +msgstr "文件" + +#: src/object/bonus_block.cpp:154 +msgid "Only one custom object is allowed inside bonus blocks." +msgstr "" + +#: src/object/bonus_block.cpp:172 +msgid "Blue" +msgstr "蓝色" + +#: src/object/bonus_block.cpp:173 +msgid "Orange" +msgstr "橙色" + +#: src/object/bonus_block.cpp:174 +msgid "Purple" +msgstr "紫色" + +#: src/object/bonus_block.cpp:265 src/supertux/menu/cheat_apply_menu.cpp:54 msgid "Count" msgstr "计数" -#: src/object/bonus_block.cpp:205 +#: src/object/bonus_block.cpp:266 msgid "Content" -msgstr "上下文" +msgstr "内容" -#: src/object/bonus_block.cpp:206 src/object/coin.hpp:43 +#: src/object/bonus_block.cpp:267 src/object/coin.hpp:44 msgid "Coin" msgstr "金币" -#: src/object/bonus_block.cpp:206 +#: src/object/bonus_block.cpp:267 msgid "Growth (fire flower)" -msgstr "生长(火花)" +msgstr "生长(火焰花)" -#: src/object/bonus_block.cpp:206 +#: src/object/bonus_block.cpp:267 msgid "Growth (ice flower)" -msgstr "生长(冰花)" +msgstr "生长(寒冰花)" -#: src/object/bonus_block.cpp:206 +#: src/object/bonus_block.cpp:267 msgid "Growth (air flower)" msgstr "生长(空气花)" -#: src/object/bonus_block.cpp:207 +#: src/object/bonus_block.cpp:268 msgid "Growth (earth flower)" msgstr "生长(土地花)" -#: src/object/bonus_block.cpp:207 +#: src/object/bonus_block.cpp:268 +msgid "Growth (retro)" +msgstr "" + +#: src/object/bonus_block.cpp:268 src/object/powerup.cpp:66 msgid "Star" msgstr "星星" -#: src/object/bonus_block.cpp:207 +#: src/object/bonus_block.cpp:268 +msgid "Star (retro)" +msgstr "" + +#: src/object/bonus_block.cpp:268 msgid "Tux doll" msgstr "Tux 玩偶" -#: src/object/bonus_block.cpp:207 +#: src/object/bonus_block.cpp:268 msgid "Custom" msgstr "自定义" -#: src/object/bonus_block.cpp:207 +#: src/object/bonus_block.cpp:268 msgid "Light" msgstr "光" -#: src/object/bonus_block.cpp:208 src/object/trampoline.hpp:35 +#: src/object/bonus_block.cpp:268 +msgid "Light (On)" +msgstr "光(开启)" + +#: src/object/bonus_block.cpp:269 src/object/trampoline.hpp:37 msgid "Trampoline" msgstr "蹦床" -#: src/object/bonus_block.cpp:208 +#: src/object/bonus_block.cpp:269 +msgid "Portable trampoline" +msgstr "可移动蹦床" + +#: src/object/bonus_block.cpp:269 msgid "Coin rain" msgstr "金币雨" -#: src/object/bonus_block.cpp:208 +#: src/object/bonus_block.cpp:269 msgid "Coin explosion" msgstr "金币爆炸" -#: src/object/bonus_block.cpp:212 +#: src/object/bonus_block.cpp:269 src/object/rock.hpp:43 +msgid "Rock" +msgstr "石头" + +#: src/object/bonus_block.cpp:269 +msgid "Potion" +msgstr "" + +#: src/object/bonus_block.cpp:275 msgid "Custom Content" msgstr "自定义内容" -#: src/object/pneumatic_platform.hpp:62 +#: src/object/bonus_block.cpp:278 +msgid "Coin sprite" +msgstr "" + +#: src/object/pneumatic_platform.hpp:65 msgid "Pneumatic Platform" msgstr "气动平台" -#: src/object/coin.cpp:264 src/object/tilemap.cpp:236 +#: src/object/coin.cpp:326 src/object/tilemap.cpp:287 msgid "Following path" msgstr "跟随路径" -#: src/object/coin.cpp:267 src/object/camera.cpp:215 -#: src/object/platform.cpp:66 src/object/tilemap.cpp:240 +#: src/object/coin.cpp:329 src/object/camera.cpp:171 +#: src/object/platform.cpp:77 src/object/tilemap.cpp:290 msgid "Path Mode" msgstr "路径模式" -#: src/object/coin.cpp:270 src/object/coin.cpp:298 +#: src/object/coin.cpp:330 src/object/camera.cpp:172 +#: src/object/platform.cpp:78 src/object/tilemap.cpp:291 +#: src/badguy/willowisp.cpp:322 +msgid "Adapt Speed" +msgstr "适应速度" + +#: src/object/coin.cpp:331 src/object/platform.cpp:81 +#: src/object/tilemap.cpp:285 src/badguy/willowisp.cpp:318 +msgid "Starting Node" +msgstr "起始节点" + +#: src/object/coin.cpp:332 src/object/camera.cpp:173 +#: src/object/platform.cpp:82 src/object/tilemap.cpp:293 +#: src/badguy/willowisp.cpp:323 +msgid "Handle" +msgstr "" + +#: src/object/coin.cpp:335 src/object/coin.cpp:371 msgid "Collect script" msgstr "收集脚本" -#: src/object/ghost_particle_system.hpp:36 +#: src/object/ghost_particle_system.hpp:37 msgid "Ghost Particles" msgstr "幽灵粒子" -#: src/object/camera.cpp:207 +#: src/object/camera.cpp:163 msgid "Mode" msgstr "模式" -#: src/object/camera.cpp:208 +#: src/object/camera.cpp:164 msgid "normal" msgstr "普通" -#: src/object/camera.cpp:208 +#: src/object/camera.cpp:164 msgid "manual" msgstr "手动" -#: src/object/camera.cpp:208 +#: src/object/camera.cpp:164 msgid "autoscroll" msgstr "自动滚屏" -#: src/object/textscroller.cpp:280 src/object/music_object.cpp:109 -msgid "File" -msgstr "文件" +#: src/object/textscroller.cpp:349 +msgid "Finish Script" +msgstr "完成脚本" + +#: src/object/textscroller.cpp:351 +msgid "X-offset" +msgstr "X-偏移量" -#: src/object/spawnpoint.hpp:46 src/badguy/willowisp.cpp:281 -#: src/editor/worldmap_objects.cpp:173 +#: src/object/textscroller.cpp:352 +msgid "Controllable" +msgstr "可控制" + +#: src/object/textscroller.cpp:354 src/object/textscroller.cpp:358 +msgid "Center" +msgstr "居中" + +#: src/object/textscroller.cpp:357 +msgid "Text Alignment" +msgstr "文本对齐" + +#: src/object/lit_object.hpp:40 +msgid "Lit object" +msgstr "" + +#: src/object/spawnpoint.hpp:48 src/badguy/willowisp.cpp:312 +#: src/worldmap/teleporter.cpp:48 msgid "Spawnpoint" msgstr "出生点" @@ -373,1524 +592,3041 @@ msgstr "出生点" msgid "Counter" msgstr "计数器" -#: src/object/candle.hpp:36 +#: src/object/candle.hpp:37 msgid "Candle" msgstr "蜡烛" -#: src/object/particlesystem.cpp:61 src/badguy/darttrap.cpp:127 -msgid "Enabled" -msgstr "已启用" +#: src/object/particlesystem.cpp:65 src/object/background.cpp:184 +#: src/object/thunderstorm.cpp:76 src/object/tilemap.cpp:277 +#: src/object/gradient.cpp:101 src/object/moving_sprite.cpp:193 +msgid "Z-pos" +msgstr "Z-位置" -#: src/object/invisible_block.hpp:31 +#: src/object/invisible_block.hpp:30 msgid "Invisible Block" msgstr "不可见方块" -#: src/object/snow_particle_system.hpp:35 +#: src/object/snow_particle_system.hpp:37 msgid "Snow Particles" msgstr "雪粒子" -#: src/object/powerup.hpp:35 +#: src/object/powerup.hpp:40 msgid "Powerup" -msgstr "充电" +msgstr "能力提升" -#: src/object/level_time.hpp:55 -msgid "Time Limit" -msgstr "时间限制" +#: src/object/infoblock.cpp:78 +msgid "Front Color" +msgstr "" -#: src/object/ambient_sound.cpp:119 src/supertux/menu/options_menu.cpp:365 -#: data//credits.stxt:335 -msgid "Sound" -msgstr "音效" +#: src/object/infoblock.cpp:80 +msgid "Back Color" +msgstr "" + +#: src/object/infoblock.cpp:82 +msgid "Roundness" +msgstr "" -#: src/object/ambient_sound.cpp:120 -msgid "Distance factor" -msgstr "距离系数" +#: src/object/infoblock.cpp:84 +msgid "Fade Transition" +msgstr "" -#: src/object/ambient_sound.cpp:121 -msgid "Distance bias" -msgstr "距离偏差" +#: src/object/fallblock.hpp:41 +msgid "Falling Platform" +msgstr "下坠的平台" -#: src/object/ambient_sound.cpp:122 -msgid "Volume" -msgstr "音量" +#: src/object/level_time.hpp:56 +msgid "Time Limit" +msgstr "时间限制" + +#: src/object/ambient_sound.cpp:86 +msgid "Radius (in tiles)" +msgstr "" #: src/object/torch.hpp:41 msgid "Torch" msgstr "火把" -#: src/object/icecrusher.hpp:48 -msgid "Icecrusher" -msgstr "碎冰机" +#: src/object/rublight.hpp:34 +msgid "Rublight" +msgstr "摩擦光源" -#: src/object/background.hpp:42 +#: src/object/background.hpp:45 msgid "Background" msgstr "背景" -#: src/object/firefly.hpp:36 +#: src/object/text_object.hpp:44 src/gui/menu_string_array.cpp:77 +msgid "Text" +msgstr "" + +#: src/object/firefly.hpp:38 msgid "Checkpoint" msgstr "检查点" -#: src/object/ambient_light.hpp:36 +#: src/object/ambient_light.hpp:37 msgid "Ambient Light" msgstr "环境光" -#: src/object/lantern.hpp:37 +#: src/object/lantern.hpp:38 msgid "Lantern" -msgstr "蓝灯" +msgstr "灯笼" -#: src/object/wind.hpp:40 +#: src/object/wind.hpp:43 msgid "Wind" msgstr "风" -#: src/object/bicycle_platform.cpp:190 +#: src/object/bicycle_platform.cpp:203 src/object/background.cpp:180 +#: src/object/pneumatic_platform.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:172 src/supertux/moving_object.cpp:65 +#: src/worldmap/worldmap_object.cpp:77 +msgid "X" +msgstr "X" + +#: src/object/bicycle_platform.cpp:204 src/object/background.cpp:181 +#: src/object/pneumatic_platform.cpp:163 +#: src/supertux/menu/joystick_menu.cpp:174 src/supertux/moving_object.cpp:66 +#: src/worldmap/worldmap_object.cpp:78 +msgid "Y" +msgstr "Y" + +#: src/object/bicycle_platform.cpp:206 msgid "Platforms" msgstr "平台" -#: src/object/bicycle_platform.cpp:191 src/badguy/flame.cpp:58 -#: src/badguy/crystallo.cpp:36 +#: src/object/bicycle_platform.cpp:207 src/object/circleplatform.cpp:57 +#: src/badguy/fish_swimming.cpp:76 src/badguy/flame.cpp:109 +#: src/badguy/rcrystallo.cpp:83 src/badguy/crystallo.cpp:50 msgid "Radius" msgstr "半径" -#: src/object/bicycle_platform.cpp:192 +#: src/object/bicycle_platform.cpp:208 msgid "Momentum change rate" msgstr "动量变化率" -#: src/object/rain_particle_system.hpp:34 +#: src/object/rain_particle_system.hpp:41 msgid "Rain Particles" -msgstr "雨颗粒" +msgstr "雨粒子" -#: src/object/platform.hpp:45 +#: src/object/platform.hpp:46 msgid "Platform" msgstr "平台" -#: src/object/rock.hpp:42 -msgid "Rock" -msgstr "石头" - -#: src/object/music_object.hpp:41 src/supertux/menu/options_menu.cpp:367 -#: data//credits.stxt:277 +#: src/object/music_object.hpp:42 src/supertux/menu/options_menu.cpp:130 +#: data//credits.stxt:309 msgid "Music" msgstr "音乐" -#: src/object/rusty_trampoline.hpp:39 +#: src/object/lit_object.cpp:68 +msgid "Light sprite" +msgstr "" + +#: src/object/lit_object.cpp:71 +msgid "Sprite starting action" +msgstr "" + +#: src/object/lit_object.cpp:72 +msgid "Light sprite starting action" +msgstr "" + +#: src/object/lit_object.cpp:74 +msgid "Light sprite offset X" +msgstr "" + +#: src/object/lit_object.cpp:75 +msgid "Light sprite offset Y" +msgstr "" + +#: src/object/rusty_trampoline.hpp:40 msgid "Rusty Trampoline" msgstr "生锈的蹦床" -#: src/object/particlesystem.hpp:57 +#: src/object/particlesystem.hpp:58 msgid "Particle system" -msgstr "训练系统" +msgstr "粒子系统" -#: src/object/candle.cpp:75 src/object/torch.cpp:90 +#: src/object/candle.cpp:73 src/object/torch.cpp:94 msgid "Burning" msgstr "燃烧" -#: src/object/candle.cpp:76 +#: src/object/candle.cpp:74 msgid "Flicker" msgstr "闪烁" -#: src/object/text_array_object.hpp:50 +#: src/object/snow_particle_system.cpp:104 +msgid "Epsilon" +msgstr "" + +#: src/object/snow_particle_system.cpp:105 +msgid "Spin Speed" +msgstr "" + +#: src/object/snow_particle_system.cpp:106 +msgid "State Length" +msgstr "" + +#: src/object/snow_particle_system.cpp:107 +msgid "Wind Speed" +msgstr "" + +#: src/object/text_array_object.hpp:47 msgid "Text array" -msgstr "文字阵列" +msgstr "文本阵列" -#: src/object/infoblock.hpp:36 +#: src/object/infoblock.hpp:37 msgid "Info Block" msgstr "信息方块" -#: src/object/powerup.cpp:191 +#: src/object/powerup.cpp:61 +msgid "Egg" +msgstr "" + +#: src/object/powerup.cpp:62 +msgid "Fire Flower" +msgstr "" + +#: src/object/powerup.cpp:63 +msgid "Ice Flower" +msgstr "" + +#: src/object/powerup.cpp:64 +msgid "Air Flower" +msgstr "" + +#: src/object/powerup.cpp:65 +msgid "Earth Flower" +msgstr "" + +#: src/object/powerup.cpp:67 +msgid "Tux Doll" +msgstr "" + +#: src/object/powerup.cpp:68 +msgid "Flip Potion" +msgstr "" + +#: src/object/powerup.cpp:69 +msgid "Mints" +msgstr "" + +#: src/object/powerup.cpp:70 +msgid "Coffee" +msgstr "咖啡" + +#: src/object/powerup.cpp:71 +msgid "Herring" +msgstr "" + +#: src/object/powerup.cpp:302 msgid "Disable gravity" msgstr "禁用重力" -#: src/object/ambient_sound.hpp:62 +#: src/object/powerup.cpp:312 src/object/weak_block.cpp:266 +msgid "" +"Sprites no longer define the behaviour of the object.\n" +"Object types are used instead." +msgstr "" + +#: src/object/ambient_sound.hpp:43 msgid "Ambient Sound" msgstr "环境声" -#: src/object/level_time.cpp:51 src/supertux/statistics.cpp:288 -#: src/editor/node_marker.cpp:80 +#: src/object/level_time.cpp:52 src/supertux/statistics.cpp:297 +#: src/editor/node_marker.cpp:124 msgid "Time" msgstr "时间" -#: src/object/hurting_platform.hpp:30 +#: src/object/hurting_platform.hpp:31 msgid "Hurting Platform" msgstr "伤害平台" -#: src/object/background.cpp:163 +#: src/object/background.cpp:183 msgid "Fill" msgstr "填充" -#: src/object/background.cpp:165 +#: src/object/background.cpp:185 msgid "Alignment" -msgstr "校准" +msgstr "对齐" -#: src/object/background.cpp:166 +#: src/object/background.cpp:186 src/supertux/direction.cpp:61 msgid "none" -msgstr "空" +msgstr "无" -#: src/object/background.cpp:166 src/editor/object_settings.cpp:112 +#: src/object/background.cpp:186 src/supertux/direction.cpp:63 msgid "left" msgstr "左" -#: src/object/background.cpp:166 src/editor/object_settings.cpp:112 +#: src/object/background.cpp:186 src/supertux/direction.cpp:65 msgid "right" msgstr "右" -#: src/object/background.cpp:166 +#: src/object/background.cpp:186 msgid "top" -msgstr "上" +msgstr "顶部" -#: src/object/background.cpp:166 +#: src/object/background.cpp:186 msgid "bottom" -msgstr "下" +msgstr "底部" -#: src/object/background.cpp:169 +#: src/object/background.cpp:189 msgid "Scroll offset x" -msgstr "滚动 X 的偏移量" +msgstr "滚动偏移量 X" -#: src/object/background.cpp:170 +#: src/object/background.cpp:190 msgid "Scroll offset y" -msgstr "滚动 Y 的偏移量" +msgstr "滚动偏移量 Y" -#: src/object/background.cpp:171 +#: src/object/background.cpp:191 msgid "Scroll speed x" msgstr "滚动速度 X" -#: src/object/background.cpp:172 +#: src/object/background.cpp:192 msgid "Scroll speed y" msgstr "滚动速度 Y" -#: src/object/background.cpp:173 +#: src/object/background.cpp:193 msgid "Parallax Speed x" msgstr "视差速度 X" -#: src/object/background.cpp:174 +#: src/object/background.cpp:194 msgid "Parallax Speed y" msgstr "视差速度 Y" -#: src/object/background.cpp:175 +#: src/object/background.cpp:195 msgid "Top image" -msgstr "上图" +msgstr "顶部图像" -#: src/object/background.cpp:176 +#: src/object/background.cpp:196 msgid "Image" -msgstr "图片" +msgstr "图像" -#: src/object/background.cpp:177 +#: src/object/background.cpp:197 msgid "Bottom image" -msgstr "下图" +msgstr "底部图像" + +#: src/object/background.cpp:198 +msgid "Colour" +msgstr "颜色" -#: src/object/background.cpp:178 src/object/tilemap.cpp:228 -#: src/object/gradient.cpp:129 +#: src/object/background.cpp:199 src/object/tilemap.cpp:278 +#: src/object/gradient.cpp:108 msgid "Draw target" msgstr "绘制目标" -#: src/object/background.cpp:179 src/object/tilemap.cpp:229 -#: src/object/gradient.cpp:130 -msgid "Normal" -msgstr "一般" - -#: src/object/background.cpp:179 src/object/tilemap.cpp:229 -#: src/object/gradient.cpp:130 +#: src/object/background.cpp:200 src/object/tilemap.cpp:279 +#: src/object/gradient.cpp:109 msgid "Lightmap" msgstr "光照贴图" -#: src/object/wind.cpp:63 +#: src/object/shard.hpp:35 +msgid "Shard" +msgstr "碎片" + +#: src/object/rublight.cpp:56 +msgid "Fading Speed" +msgstr "淡化速度" + +#: src/object/rublight.cpp:57 +msgid "Glowing Strength" +msgstr "发光强度" + +#: src/object/wind.cpp:78 src/object/custom_particle_system.cpp:499 msgid "Speed X" msgstr "速度 X" -#: src/object/wind.cpp:64 +#: src/object/wind.cpp:79 src/object/custom_particle_system.cpp:500 msgid "Speed Y" msgstr "速度 Y" -#: src/object/wind.cpp:65 +#: src/object/wind.cpp:80 msgid "Acceleration" msgstr "加速度" -#: src/object/wind.cpp:66 +#: src/object/wind.cpp:81 msgid "Blowing" -msgstr "风" +msgstr "吹拂" + +#: src/object/wind.cpp:82 +msgid "Affects Badguys" +msgstr "影响坏人" + +#: src/object/wind.cpp:83 +msgid "Affects Objects" +msgstr "影响物体" -#: src/object/bicycle_platform.hpp:64 +#: src/object/wind.cpp:84 +msgid "Affects Player" +msgstr "影响玩家" + +#: src/object/wind.cpp:85 +msgid "Fancy Particles" +msgstr "华丽粒子" + +#: src/object/bicycle_platform.hpp:67 msgid "Bicycle Platform" msgstr "自行车平台" -#: src/object/platform.cpp:67 src/object/thunderstorm.cpp:69 -#: src/object/tilemap.cpp:241 +#: src/object/platform.cpp:80 src/object/thunderstorm.cpp:77 +#: src/object/tilemap.cpp:292 src/object/conveyor_belt.cpp:62 msgid "Running" -msgstr "跑" +msgstr "运行" + +#: src/object/rock.cpp:71 +msgid "Small" +msgstr "" -#: src/object/rock.cpp:182 +#: src/object/rock.cpp:72 +msgid "Large" +msgstr "" + +#: src/object/rock.cpp:234 msgid "On-grab script" msgstr "抓取脚本" -#: src/object/rock.cpp:183 +#: src/object/rock.cpp:235 msgid "On-ungrab script" -msgstr "非抓取脚本" +msgstr "解除抓取脚本" #: src/object/particlesystem_interactive.hpp:48 msgid "Interactive particle system" msgstr "互动粒子系统" -#: src/object/thunderstorm.cpp:70 +#: src/object/thunderstorm.cpp:78 msgid "Interval" msgstr "间隔" -#: src/object/thunderstorm.cpp:71 +#: src/object/thunderstorm.cpp:79 msgid "Strike Script" msgstr "攻击脚本" -#: src/object/cloud_particle_system.hpp:36 +#: src/object/cloud_particle_system.hpp:42 msgid "Cloud Particles" msgstr "云粒子" -#: src/object/ispy.hpp:33 +#: src/object/custom_particle_system.cpp:423 +msgid "Texture" +msgstr "纹理" + +#: src/object/custom_particle_system.cpp:425 +msgid "Amount" +msgstr "数量" + +#: src/object/custom_particle_system.cpp:426 src/object/circleplatform.cpp:59 +#: src/editor/particle_editor.cpp:141 +msgid "Delay" +msgstr "延迟" + +#: src/object/custom_particle_system.cpp:427 +msgid "Lifetime" +msgstr "生命周期" + +#: src/object/custom_particle_system.cpp:428 +msgid "Lifetime variation" +msgstr "生命周期变异率" + +#: src/object/custom_particle_system.cpp:429 +#: src/editor/particle_editor.cpp:164 +msgid "Birth mode" +msgstr "出生模式" + +#: src/object/custom_particle_system.cpp:430 +#: src/object/custom_particle_system.cpp:465 src/object/gradient.cpp:115 +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/joystick_menu.cpp:108 +#: src/supertux/menu/joystick_menu.cpp:215 src/editor/object_settings.cpp:129 +#: src/editor/particle_editor.cpp:162 src/editor/particle_editor.cpp:168 +msgid "None" +msgstr "无" + +#: src/object/custom_particle_system.cpp:430 +#: src/object/custom_particle_system.cpp:465 +#: src/editor/particle_editor.cpp:166 +msgid "Shrink" +msgstr "缩小" + +#: src/object/custom_particle_system.cpp:434 +#: src/editor/particle_editor.cpp:172 +msgid "Birth easing" +msgstr "出生调节" + +#: src/object/custom_particle_system.cpp:436 +#: src/object/custom_particle_system.cpp:471 src/editor/node_marker.cpp:129 +msgid "No easing" +msgstr "无调节" + +#: src/object/custom_particle_system.cpp:437 +#: src/object/custom_particle_system.cpp:472 src/editor/node_marker.cpp:130 +msgid "Quad in" +msgstr "二次入" + +#: src/object/custom_particle_system.cpp:437 +#: src/object/custom_particle_system.cpp:472 src/editor/node_marker.cpp:130 +msgid "Quad out" +msgstr "二次出" + +#: src/object/custom_particle_system.cpp:437 +#: src/object/custom_particle_system.cpp:472 src/editor/node_marker.cpp:130 +msgid "Quad in/out" +msgstr "二次入/出" + +#: src/object/custom_particle_system.cpp:438 +#: src/object/custom_particle_system.cpp:473 src/editor/node_marker.cpp:131 +msgid "Cubic in" +msgstr "三次入" + +#: src/object/custom_particle_system.cpp:438 +#: src/object/custom_particle_system.cpp:473 src/editor/node_marker.cpp:131 +msgid "Cubic out" +msgstr "三次出" + +#: src/object/custom_particle_system.cpp:438 +#: src/object/custom_particle_system.cpp:473 src/editor/node_marker.cpp:131 +msgid "Cubic in/out" +msgstr "三次入/出" + +#: src/object/custom_particle_system.cpp:439 +#: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 +msgid "Quart in" +msgstr "四次入" + +#: src/object/custom_particle_system.cpp:439 +#: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 +msgid "Quart out" +msgstr "四次出" + +#: src/object/custom_particle_system.cpp:439 +#: src/object/custom_particle_system.cpp:474 src/editor/node_marker.cpp:132 +msgid "Quart in/out" +msgstr "四次入/出" + +#: src/object/custom_particle_system.cpp:440 +#: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 +msgid "Quint in" +msgstr "五次入" + +#: src/object/custom_particle_system.cpp:440 +#: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 +msgid "Quint out" +msgstr "五次出" + +#: src/object/custom_particle_system.cpp:440 +#: src/object/custom_particle_system.cpp:475 src/editor/node_marker.cpp:133 +msgid "Quint in/out" +msgstr "五次入/出" + +#: src/object/custom_particle_system.cpp:441 +#: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 +msgid "Sine in" +msgstr "正弦入" + +#: src/object/custom_particle_system.cpp:441 +#: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 +msgid "Sine out" +msgstr "正弦出" + +#: src/object/custom_particle_system.cpp:441 +#: src/object/custom_particle_system.cpp:476 src/editor/node_marker.cpp:134 +msgid "Sine in/out" +msgstr "正弦入/出" + +#: src/object/custom_particle_system.cpp:442 +#: src/object/custom_particle_system.cpp:477 src/editor/node_marker.cpp:135 +msgid "Circular in" +msgstr "圆形入" + +#: src/object/custom_particle_system.cpp:442 +#: src/object/custom_particle_system.cpp:477 src/editor/node_marker.cpp:135 +msgid "Circular out" +msgstr "圆形出" + +#: src/object/custom_particle_system.cpp:442 +#: src/object/custom_particle_system.cpp:477 src/editor/node_marker.cpp:135 +msgid "Circular in/out" +msgstr "圆形入/出" + +#: src/object/custom_particle_system.cpp:443 +#: src/object/custom_particle_system.cpp:478 src/editor/node_marker.cpp:136 +msgid "Exponential in" +msgstr "指数入" + +#: src/object/custom_particle_system.cpp:443 +#: src/object/custom_particle_system.cpp:478 src/editor/node_marker.cpp:136 +msgid "Exponential out" +msgstr "指数出" + +#: src/object/custom_particle_system.cpp:443 +#: src/object/custom_particle_system.cpp:478 src/editor/node_marker.cpp:136 +msgid "Exponential in/out" +msgstr "指数入/出" + +#: src/object/custom_particle_system.cpp:444 +#: src/object/custom_particle_system.cpp:479 src/editor/node_marker.cpp:137 +msgid "Elastic in" +msgstr "弹性入" + +#: src/object/custom_particle_system.cpp:444 +#: src/object/custom_particle_system.cpp:479 src/editor/node_marker.cpp:137 +msgid "Elastic out" +msgstr "弹性出" + +#: src/object/custom_particle_system.cpp:444 +#: src/object/custom_particle_system.cpp:479 src/editor/node_marker.cpp:137 +msgid "Elastic in/out" +msgstr "弹性入/出" + +#: src/object/custom_particle_system.cpp:445 +#: src/object/custom_particle_system.cpp:480 src/editor/node_marker.cpp:138 +msgid "Back in" +msgstr "后退入" + +#: src/object/custom_particle_system.cpp:445 +#: src/object/custom_particle_system.cpp:480 src/editor/node_marker.cpp:138 +msgid "Back out" +msgstr "后退出" + +#: src/object/custom_particle_system.cpp:445 +#: src/object/custom_particle_system.cpp:480 src/editor/node_marker.cpp:138 +msgid "Back in/out" +msgstr "后退入/出" + +#: src/object/custom_particle_system.cpp:446 +#: src/object/custom_particle_system.cpp:481 src/editor/node_marker.cpp:139 +msgid "Bounce in" +msgstr "弹跳入" + +#: src/object/custom_particle_system.cpp:446 +#: src/object/custom_particle_system.cpp:481 src/editor/node_marker.cpp:139 +msgid "Bounce out" +msgstr "弹跳出" + +#: src/object/custom_particle_system.cpp:446 +#: src/object/custom_particle_system.cpp:481 src/editor/node_marker.cpp:139 +msgid "Bounce in/out" +msgstr "弹跳入/出" + +#: src/object/custom_particle_system.cpp:462 +msgid "Birth time" +msgstr "出生时间" + +#: src/object/custom_particle_system.cpp:463 +msgid "Birth time variation" +msgstr "出生时间变异率" + +#: src/object/custom_particle_system.cpp:464 +#: src/editor/particle_editor.cpp:170 +msgid "Death mode" +msgstr "死亡模式" + +#: src/object/custom_particle_system.cpp:469 +#: src/editor/particle_editor.cpp:173 +msgid "Death easing" +msgstr "死亡调节" + +#: src/object/custom_particle_system.cpp:497 +msgid "Death time" +msgstr "死亡时间" + +#: src/object/custom_particle_system.cpp:498 +msgid "Death time variation" +msgstr "死亡时间变异率" + +#: src/object/custom_particle_system.cpp:501 +msgid "Speed X (variation)" +msgstr "速度 X(变异率)" + +#: src/object/custom_particle_system.cpp:502 +msgid "Speed Y (variation)" +msgstr "速度 Y(变异率)" + +#: src/object/custom_particle_system.cpp:503 +msgid "Acceleration X" +msgstr "加速度 X" + +#: src/object/custom_particle_system.cpp:504 +msgid "Acceleration Y" +msgstr "加速度 Y" + +#: src/object/custom_particle_system.cpp:505 +msgid "Friction X" +msgstr "摩擦力 X" + +#: src/object/custom_particle_system.cpp:506 +msgid "Friction Y" +msgstr "摩擦力 Y" + +#: src/object/custom_particle_system.cpp:507 +#: src/editor/particle_editor.cpp:189 +msgid "Feather factor" +msgstr "羽毛因数" + +#: src/object/custom_particle_system.cpp:508 +msgid "Rotation" +msgstr "旋转" + +#: src/object/custom_particle_system.cpp:509 +msgid "Rotation (variation)" +msgstr "旋转(变异率)" + +#: src/object/custom_particle_system.cpp:510 +#: src/editor/particle_editor.cpp:195 +msgid "Rotation speed" +msgstr "旋转速度" + +#: src/object/custom_particle_system.cpp:511 +msgid "Rotation speed (variation)" +msgstr "旋转速度(变异率)" + +#: src/object/custom_particle_system.cpp:512 +#: src/editor/particle_editor.cpp:200 +msgid "Rotation acceleration" +msgstr "旋转加速" + +#: src/object/custom_particle_system.cpp:513 +msgid "Rotation friction" +msgstr "旋转摩擦力" + +#: src/object/custom_particle_system.cpp:514 +#: src/editor/particle_editor.cpp:208 +msgid "Rotation mode" +msgstr "旋转模式" + +#: src/object/custom_particle_system.cpp:515 +#: src/editor/particle_editor.cpp:206 +msgid "Fixed" +msgstr "固定" + +#: src/object/custom_particle_system.cpp:515 +#: src/editor/particle_editor.cpp:205 +msgid "Facing" +msgstr "面向" + +#: src/object/custom_particle_system.cpp:515 +#: src/editor/particle_editor.cpp:204 +msgid "Wiggling" +msgstr "摇摆" + +#: src/object/custom_particle_system.cpp:519 +#: src/editor/particle_editor.cpp:219 +msgid "Collision mode" +msgstr "碰撞模式" + +#: src/object/custom_particle_system.cpp:520 +msgid "None (pass through)" +msgstr "无(穿过)" + +#: src/object/custom_particle_system.cpp:520 +msgid "Stick" +msgstr "粘附" + +#: src/object/custom_particle_system.cpp:520 +msgid "Stick Forever" +msgstr "永久粘附" + +#: src/object/custom_particle_system.cpp:520 +#: src/editor/particle_editor.cpp:214 +msgid "Bounce (heavy)" +msgstr "弹起(重)" + +#: src/object/custom_particle_system.cpp:520 +#: src/editor/particle_editor.cpp:213 +msgid "Bounce (light)" +msgstr "弹起(轻)" + +#: src/object/custom_particle_system.cpp:520 +msgid "Kill particle" +msgstr "杀死粒子" + +#: src/object/custom_particle_system.cpp:520 +msgid "Fade out particle" +msgstr "淡出粒子" + +#: src/object/custom_particle_system.cpp:524 +msgid "Delete if off-screen" +msgstr "移出屏幕时删除" + +#: src/object/custom_particle_system.cpp:525 +#: src/editor/particle_editor.cpp:224 +msgid "Never" +msgstr "从不" + +#: src/object/custom_particle_system.cpp:525 +#: src/editor/particle_editor.cpp:223 +msgid "Only on exit" +msgstr "仅在退出时" + +#: src/object/custom_particle_system.cpp:525 +msgid "Always" +msgstr "总是" + +#: src/object/custom_particle_system.cpp:529 +msgid "Cover screen" +msgstr "覆盖屏幕" + +#: src/object/ispy.hpp:35 msgid "Ispy" -msgstr "窥探" +msgstr "窥探眼" -#: src/object/skull_tile.hpp:31 -msgid "Skull Tile" -msgstr "骷髅头" +#: src/object/particle_zone.cpp:51 +msgid "Particle Name" +msgstr "粒子名称" -#: src/object/weak_block.cpp:211 -msgid "Linked" -msgstr "已链接" +#: src/object/particle_zone.cpp:62 +msgid "Spawn" +msgstr "出生" -#: src/object/decal.hpp:34 +#: src/object/particle_zone.cpp:63 +msgid "Life zone" +msgstr "生命区域" + +#: src/object/particle_zone.cpp:64 +msgid "Life zone (clear)" +msgstr "生命区域(清除)" + +#: src/object/particle_zone.cpp:65 +msgid "Kill particles" +msgstr "杀死粒子" + +#: src/object/particle_zone.cpp:66 +msgid "Clear particles" +msgstr "清除粒子" + +#: src/object/weak_block.cpp:98 +msgid "Hay" +msgstr "" + +#: src/object/decal.hpp:41 msgid "Decal" msgstr "贴花" -#: src/object/tilemap.cpp:217 +#: src/object/tilemap.cpp:267 msgid "Resize offset x" -msgstr "调整X的偏移量" +msgstr "调整偏移量 X" -#: src/object/tilemap.cpp:218 +#: src/object/tilemap.cpp:268 msgid "Resize offset y" -msgstr "调整Y的偏移量" +msgstr "调整偏移量 Y" + +#: src/object/tilemap.cpp:270 src/supertux/menu/editor_sector_menu.cpp:41 +#: src/editor/object_option.cpp:178 +msgid "Width" +msgstr "宽" + +#: src/object/tilemap.cpp:271 src/supertux/menu/editor_sector_menu.cpp:42 +#: src/editor/object_option.cpp:179 +msgid "Height" +msgstr "高" -#: src/object/tilemap.cpp:223 +#: src/object/tilemap.cpp:273 msgid "Alpha" msgstr "透明" -#: src/object/tilemap.cpp:224 +#: src/object/tilemap.cpp:274 msgid "Speed x" msgstr "速度 X" -#: src/object/tilemap.cpp:225 +#: src/object/tilemap.cpp:275 msgid "Speed y" msgstr "速度 Y" -#: src/object/tilemap.cpp:226 +#: src/object/tilemap.cpp:276 msgid "Tint" msgstr "着色" -#: src/object/tilemap.cpp:244 src/supertux/menu/editor_tilegroup_menu.cpp:26 -#: src/editor/toolbox_widget.cpp:90 +#: src/object/tilemap.cpp:296 src/supertux/menu/editor_tilegroup_menu.cpp:26 +#: src/editor/toolbox_widget.cpp:98 msgid "Tiles" -msgstr "Tiles" +msgstr "图块" -#: src/object/gradient.cpp:115 -msgid "Left Colour" -msgstr "左颜色" - -#: src/object/gradient.cpp:116 -msgid "Right Colour" -msgstr "右颜色" - -#: src/object/gradient.cpp:118 -msgid "Top Colour" -msgstr "上颜色" +#: src/object/gradient.cpp:98 +msgid "Primary Colour" +msgstr "" -#: src/object/gradient.cpp:119 -msgid "Bottom Colour" -msgstr "下颜色" +#: src/object/gradient.cpp:99 +msgid "Secondary Colour" +msgstr "" -#: src/object/gradient.cpp:125 +#: src/object/gradient.cpp:104 msgid "Vertical" -msgstr "纵" +msgstr "垂直" -#: src/object/gradient.cpp:125 +#: src/object/gradient.cpp:104 msgid "Horizontal" -msgstr "横" +msgstr "水平" -#: src/object/gradient.cpp:125 +#: src/object/gradient.cpp:104 msgid "Vertical (whole sector)" msgstr "垂直(整个区块)" -#: src/object/gradient.cpp:125 +#: src/object/gradient.cpp:104 msgid "Horizontal (whole sector)" msgstr "水平(整个区块)" -#: src/object/gradient.cpp:135 +#: src/object/gradient.cpp:114 msgid "Blend mode" msgstr "混合模式" -#: src/object/gradient.cpp:136 +#: src/object/gradient.cpp:115 msgid "Blend" msgstr "混合" -#: src/object/gradient.cpp:136 +#: src/object/gradient.cpp:115 msgid "Additive" msgstr "附加" -#: src/object/gradient.cpp:136 +#: src/object/gradient.cpp:115 msgid "Modulate" msgstr "调制" -#: src/object/gradient.cpp:136 src/supertux/menu/keyboard_menu.cpp:60 -#: src/supertux/menu/joystick_menu.cpp:106 -#: src/supertux/menu/joystick_menu.cpp:213 src/editor/object_settings.cpp:124 -msgid "None" -msgstr "无" +#: src/object/bumper.hpp:38 +msgid "Bumper" +msgstr "碰撞器" -#: src/object/unstable_tile.hpp:34 -msgid "Unstable Tile" -msgstr "不稳定的 Tile" +#: src/object/conveyor_belt.cpp:63 +msgid "Length" +msgstr "" -#: src/object/brick.hpp:31 -msgid "Brick" -msgstr "砖" +#: src/object/moving_sprite.cpp:192 src/object/pneumatic_platform.cpp:161 +msgid "Sprite" +msgstr "图像" + +#: src/object/unstable_tile.hpp:42 +msgid "Unstable Tile" +msgstr "不稳定图块" + +#: src/object/brick.hpp:70 +msgid "Heavy Brick" +msgstr "" -#: src/object/invisible_wall.hpp:34 +#: src/object/invisible_wall.hpp:37 msgid "Invisible Wall" msgstr "不可见墙" -#: src/object/spotlight.hpp:38 +#: src/object/spotlight.hpp:52 msgid "Spotlight" msgstr "聚光灯" -#: src/object/scripted_object.hpp:39 +#: src/object/scripted_object.hpp:40 msgid "Scripted Object" msgstr "脚本对象" -#: src/object/coin.hpp:75 +#: src/object/custom_particle_system_file.hpp:40 +msgid "Custom Particles from file" +msgstr "来自文件的自定义粒子" + +#: src/object/coin.hpp:97 msgid "Heavy Coin" msgstr "重硬币" -#: src/object/bonus_block.hpp:55 +#: src/object/explosion.hpp:35 +msgid "Explosion" +msgstr "" + +#: src/object/bonus_block.hpp:62 msgid "Bonus Block" msgstr "奖励方块" -#: src/object/magicblock.hpp:41 +#: src/object/magicblock.hpp:42 msgid "Magic Tile" -msgstr "魔法 Tile" +msgstr "魔法图块" -#: src/object/camera.hpp:67 +#: src/object/camera.hpp:61 msgid "Camera" msgstr "相机" -#: src/object/textscroller.hpp:44 -msgid "TextScroller" -msgstr "文字卷轴" +#: src/object/textscroller.hpp:45 +msgid "Text Scroller" +msgstr "文本滚动条" -#: src/gui/menu_badguy_select.cpp:93 -msgid "List of enemies" -msgstr "敌人列表" +#: src/gui/notification.cpp:57 +msgid "Click for more details." +msgstr "点击查看更多内容。" -#: src/gui/menu_badguy_select.cpp:95 -msgid "Enemy" -msgstr "敌人" +#: src/gui/notification.cpp:150 +msgid "Do not show again" +msgstr "不再显示" + +#: src/gui/notification.cpp:157 src/supertux/menu/download_dialog.cpp:124 +msgid "Close" +msgstr "关闭" + +#: src/gui/menu_string_array.cpp:40 src/gui/menu_string_array.cpp:78 +#, c++-format +msgid "Selected item: {}" +msgstr "" -#: src/gui/menu_badguy_select.cpp:96 +#: src/gui/menu_string_array.cpp:70 +msgid "Edit string array" +msgstr "" + +#: src/gui/menu_string_array.cpp:79 src/gui/menu_object_select.cpp:50 +#: src/supertux/menu/profile_menu.cpp:88 msgid "Add" msgstr "添加" -#: src/gui/menu_badguy_select.cpp:106 src/gui/menu_color.cpp:34 -#: src/gui/dialog.hpp:80 src/gui/menu_script.cpp:47 -#: src/supertux/menu/editor_sector_menu.cpp:46 -#: src/supertux/menu/editor_levelset_menu.cpp:62 -#: src/supertux/menu/addon_menu.cpp:349 +#: src/gui/menu_string_array.cpp:80 +msgid "Insert" +msgstr "" + +#: src/gui/menu_string_array.cpp:81 +#: src/supertux/menu/addon_preview_menu.cpp:177 src/editor/object_menu.cpp:61 +msgid "Update" +msgstr "" + +#: src/gui/menu_string_array.cpp:82 src/supertux/menu/profile_menu.cpp:108 +#: src/supertux/menu/profile_menu.cpp:110 +msgid "Delete" +msgstr "" + +#: src/gui/menu_string_array.cpp:84 src/gui/menu_object_select.cpp:61 +#: src/gui/menu_color.cpp:37 src/gui/dialog.hpp:87 src/gui/menu_script.cpp:46 +#: src/supertux/menu/editor_sector_menu.cpp:48 +#: src/supertux/menu/editor_levelset_menu.cpp:58 #: src/supertux/menu/editor_new_levelset_menu.cpp:37 -#: src/supertux/menu/editor_level_menu.cpp:44 src/editor/object_menu.cpp:43 +#: src/supertux/menu/editor_level_menu.cpp:45 src/editor/object_menu.cpp:71 msgid "OK" msgstr "好" -#: src/gui/menu_badguy_select.cpp:135 -msgid "Do you want to delete this badguy from the list?" -msgstr "您要从列表中删除这个坏人吗?" +#: src/gui/menu_object_select.cpp:46 +msgid "List of objects" +msgstr "" -#: src/gui/menu_badguy_select.cpp:136 src/gui/dialog.hpp:89 -#: src/supertux/menu/editor_menu.cpp:123 src/editor/editor.cpp:478 -msgid "Yes" -msgstr "是" +#: src/gui/menu_object_select.cpp:48 +#, c++-format +msgid "Select object ({})" +msgstr "" -#: src/gui/menu_badguy_select.cpp:139 src/gui/dialog.hpp:90 -#: src/supertux/menu/editor_menu.cpp:126 src/editor/editor.cpp:485 -msgid "No" -msgstr "否" +#: src/gui/menu_object_select.cpp:114 +msgid "Are you sure you want to remove this object from the list?" +msgstr "" #: src/gui/menu_color.cpp:24 msgid "Mix the colour" msgstr "混合颜色" -#: src/gui/menu_filesystem.cpp:111 +#: src/gui/dialog.hpp:96 src/supertux/menu/editor_level_select_menu.cpp:181 +#: src/editor/editor.cpp:663 +msgid "Yes" +msgstr "是" + +#: src/gui/dialog.hpp:97 src/supertux/menu/editor_level_select_menu.cpp:185 +#: src/editor/particle_editor.cpp:781 src/editor/editor.cpp:670 +msgid "No" +msgstr "否" + +#: src/gui/menu_list.cpp:38 src/gui/menu_filesystem.cpp:120 +#: src/gui/menu_paths.cpp:48 src/supertux/menu/particle_editor_save_as.cpp:42 #: src/supertux/menu/editor_sectors_menu.cpp:45 -#: src/supertux/menu/editor_sectors_menu.cpp:95 -#: src/supertux/menu/editor_sectors_menu.cpp:100 +#: src/supertux/menu/editor_sectors_menu.cpp:94 +#: src/supertux/menu/editor_sectors_menu.cpp:99 #: src/supertux/menu/editor_objectgroup_menu.cpp:42 -#: src/supertux/menu/editor_tilegroup_menu.cpp:36 src/editor/editor.cpp:489 +#: src/supertux/menu/editor_tilegroup_menu.cpp:36 +#: src/supertux/menu/editor_level_select_menu.cpp:190 +#: src/supertux/menu/editor_save_as.cpp:42 +#: src/supertux/menu/particle_editor_open.cpp:43 +#: src/editor/particle_editor.cpp:785 src/editor/editor.cpp:674 msgid "Cancel" msgstr "取消" +#: src/gui/menu_filesystem.cpp:118 +msgid "Open Directory" +msgstr "打开目录" + #: src/gui/menu_script.cpp:28 msgid "Edit script" msgstr "编辑脚本" -#: src/badguy/toad.hpp:37 +#: src/gui/menu_paths.cpp:32 +msgid "Clone" +msgstr "克隆" + +#: src/gui/menu_paths.cpp:41 +msgid "" +"An error occurred and the game could\n" +"not clone the path. Please contact\n" +"the developers for support." +msgstr "" + +#: src/gui/menu_paths.cpp:44 +msgid "Bind" +msgstr "绑定" + +#: src/gui/menu_paths.cpp:49 +msgid "" +"Do you wish to clone the path to edit it separately,\n" +"or do you want to bind both paths together\n" +"so that any edit on one edits the other?" +msgstr "" + +#: src/gui/menu_paths.cpp:56 +#, c++-format +msgid "Path {}" +msgstr "" + +#: src/gui/menu_paths.cpp:67 src/supertux/menu/integrations_menu.cpp:60 +#: src/supertux/menu/editor_converters_menu.cpp:79 +#: src/supertux/menu/video_system_menu.cpp:45 +#: src/supertux/menu/contrib_menu.cpp:102 src/supertux/menu/debug_menu.cpp:77 +#: src/supertux/menu/multiplayer_menu.cpp:39 +#: src/supertux/menu/custom_menu_menu.cpp:65 +#: src/supertux/menu/editor_level_select_menu.cpp:98 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:63 +#: src/supertux/menu/worldmap_cheat_menu.cpp:57 +#: src/supertux/menu/worldmap_cheat_menu.cpp:196 +#: src/supertux/menu/editor_levelset_select_menu.cpp:114 +#: src/supertux/menu/options_menu.cpp:223 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:69 +#: src/supertux/menu/addon_preview_menu.cpp:193 +#: src/supertux/menu/profile_menu.cpp:118 +#: src/supertux/menu/multiplayer_players_menu.cpp:91 +#: src/supertux/menu/addon_menu.cpp:153 +#: src/supertux/menu/editor_new_levelset_menu.cpp:40 +#: src/supertux/menu/options_select_menu.cpp:44 +#: src/supertux/menu/world_set_menu.cpp:33 +#: src/supertux/menu/addon_browse_menu.cpp:162 +#: src/supertux/menu/web_asset_menu.cpp:48 +#: src/supertux/menu/profile_name_menu.cpp:45 +#: src/supertux/menu/keyboard_menu.cpp:71 +#: src/supertux/menu/sorted_contrib_menu.cpp:51 +#: src/supertux/menu/language_menu.cpp:63 +#: src/supertux/menu/joystick_menu.cpp:99 +#: src/supertux/menu/contrib_levelset_menu.cpp:67 +#: src/supertux/menu/cheat_menu.cpp:58 +#: src/supertux/menu/addon_file_install_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:43 +#: src/supertux/menu/cheat_apply_menu.cpp:63 +#: src/supertux/menu/multiplayer_player_menu.cpp:205 +#: src/supertux/menu/editor_delete_level_menu.cpp:68 +msgid "Back" +msgstr "返回" + +#: src/addon/addon_manager.cpp:562 +msgid "Only one resource pack is allowed to be enabled at a time." +msgstr "" + +#: src/addon/addon_manager.cpp:837 +#, c++-format +msgid "Add-on {} by {} is already installed." +msgstr "" + +#: src/addon/addon_manager.cpp:857 +#, c++-format +msgid "Add-on {} by {} successfully installed." +msgstr "" + +#: src/addon/addon.cpp:71 src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Levelset" +msgstr "关卡集" + +#: src/addon/addon.cpp:74 src/supertux/menu/editor_levelset_menu.cpp:54 +#: data//images/engine/editor/objects.stoi:389 +msgid "Worldmap" +msgstr "世界地图" + +#: src/addon/addon.cpp:77 +msgid "World" +msgstr "世界" + +#: src/addon/addon.cpp:80 +msgid "Add-on" +msgstr "扩展" + +#: src/addon/addon.cpp:83 +msgid "Language Pack" +msgstr "语言包" + +#: src/addon/addon.cpp:86 +msgid "Resource Pack" +msgstr "资源包" + +#: src/addon/addon.cpp:89 +msgid "Unknown" +msgstr "未知" + +#: src/addon/addon.cpp:100 +#, c++-format +msgid "{} \"{}\" by \"{}\"" +msgstr "" + +#: src/addon/addon.cpp:114 +msgid "add-on" +msgstr "" + +#: src/addon/addon.cpp:114 +msgid "add-ons" +msgstr "扩展" + +#: src/badguy/toad.hpp:38 msgid "Toad" msgstr "蛤蟆" -#: src/badguy/mrtree.hpp:29 -msgid "Walking Tree" -msgstr "树人" +#: src/badguy/mrtree.hpp:32 +msgid "Mr. Tree" +msgstr "树先生" -#: src/badguy/plant.hpp:33 +#: src/badguy/plant.hpp:34 msgid "Plant" msgstr "植物" -#: src/badguy/crystallo.hpp:30 +#: src/badguy/tarantula.hpp:39 src/badguy/tarantula.cpp:353 +msgid "Tarantula" +msgstr "" + +#: src/badguy/granito_giant.cpp:71 +msgid "Awake" +msgstr "" + +#: src/badguy/granito_giant.cpp:72 +msgid "Sleeping" +msgstr "" + +#: src/badguy/granito_giant.cpp:73 +msgid "Corrupted A" +msgstr "" + +#: src/badguy/granito_giant.cpp:74 +msgid "Corrupted B" +msgstr "" + +#: src/badguy/granito_giant.cpp:75 +msgid "Corrupted C" +msgstr "" + +#: src/badguy/crystallo.hpp:33 msgid "Crystallo" msgstr "水晶怪" -#: src/badguy/totem.hpp:36 +#: src/badguy/viciousivy.cpp:45 src/badguy/snail.cpp:70 +#: src/badguy/kamikazesnowball.cpp:118 src/badguy/walkingleaf.cpp:36 +#: src/badguy/jumpy.cpp:46 src/badguy/igel.cpp:189 src/badguy/mrtree.cpp:51 +msgid "Corrupted" +msgstr "" + +#: src/badguy/totem.hpp:37 msgid "Totem" msgstr "图腾" -#: src/badguy/stalactite.hpp:38 +#: src/badguy/stalactite.hpp:42 msgid "Stalactite" msgstr "冰刺" -#: src/badguy/haywire.hpp:42 +#: src/badguy/fish_chasing.cpp:198 +msgid "Tracking Distance" +msgstr "" + +#: src/badguy/fish_chasing.cpp:199 +msgid "Losing Distance" +msgstr "" + +#: src/badguy/fish_chasing.cpp:200 +msgid "Chase Speed" +msgstr "" + +#: src/badguy/root_sapling.hpp:41 +msgid "Root Sapling" +msgstr "" + +#: src/badguy/haywire.hpp:46 msgid "Haywire" -msgstr "草垛怪" +msgstr "疯狂炸弹怪" -#: src/badguy/dispenser.hpp:48 +#: src/badguy/dispenser.hpp:52 msgid "Dispenser" -msgstr "药剂" +msgstr "刷怪器" -#: src/badguy/short_fuse.hpp:29 +#: src/badguy/short_fuse.hpp:30 msgid "Short Fuse" msgstr "迷你炸弹怪" -#: src/badguy/zeekling.hpp:36 +#: src/badguy/zeekling.hpp:39 msgid "Zeekling" msgstr "恶龙" -#: src/badguy/mriceblock.hpp:46 -msgid "Iceblock" -msgstr "冰块" +#: src/badguy/smartball.cpp:35 +msgid "Pumpkin" +msgstr "南瓜怪" + +#: src/badguy/bouncing_snowball.cpp:82 +msgid "Fatbat" +msgstr "胖蝙蝠怪" + +#: src/badguy/dive_mine.hpp:50 +msgid "Dive Mine" +msgstr "" + +#: src/badguy/granito_big.hpp:33 +msgid "Big Granito" +msgstr "" + +#: src/badguy/mriceblock.hpp:49 +msgid "Mr. Iceblock" +msgstr "雪球先生" + +#: src/badguy/granito.hpp:39 src/badguy/darttrap.cpp:163 +#: src/badguy/corrupted_granito.cpp:175 src/badguy/dispenser.cpp:438 +msgid "Granito" +msgstr "" + +#: src/badguy/fish_swimming.cpp:54 src/badguy/jumpy.cpp:44 +#: data//images/ice_world.strf:10 data//images/tiles.strf:28 +#: data//images/worldmap.strf:41 +msgid "Snow" +msgstr "雪" + +#: src/badguy/fish_swimming.cpp:55 data//images/ice_world.strf:211 +#: data//images/tiles.strf:366 data//images/worldmap.strf:67 +msgid "Forest" +msgstr "森林" + +#: src/badguy/crusher.hpp:71 +msgid "Crusher" +msgstr "" + +#: src/badguy/flame.cpp:84 +msgid "Fire" +msgstr "" + +#: src/badguy/flame.cpp:85 +msgid "Ghost" +msgstr "幽灵" + +#: src/badguy/corrupted_granito_big.hpp:35 +msgid "Corrupted Big Granito" +msgstr "" + +#: src/badguy/scrystallo.cpp:57 +msgid "Walk Radius" +msgstr "步行半径" + +#: src/badguy/scrystallo.cpp:58 +msgid "Awakening Radius" +msgstr "唤醒半径" + +#: src/badguy/scrystallo.cpp:59 +msgid "Roof-attached" +msgstr "" -#: src/badguy/jumpy.hpp:36 +#: src/badguy/jumpy.hpp:40 msgid "Jumpy" msgstr "跳跳" -#: src/badguy/captainsnowball.hpp:31 +#: src/badguy/captainsnowball.hpp:32 msgid "Captain Snowball" msgstr "雪球船长" -#: src/badguy/ghosttree.hpp:42 +#: src/badguy/ghosttree.hpp:43 msgid "Ghost Tree" msgstr "鬼魂之树" -#: src/badguy/willowisp.cpp:283 +#: src/badguy/willowisp.cpp:314 msgid "Track range" msgstr "追踪范围" -#: src/badguy/willowisp.cpp:284 +#: src/badguy/willowisp.cpp:315 msgid "Vanish range" msgstr "消失范围" -#: src/badguy/willowisp.cpp:285 +#: src/badguy/willowisp.cpp:316 msgid "Fly speed" msgstr "飞行速度" -#: src/badguy/kugelblitz.hpp:39 +#: src/badguy/kugelblitz.hpp:40 msgid "Kugelblitz" -msgstr "闪电怪" +msgstr "球状闪电" -#: src/badguy/mole_rock.hpp:42 +#: src/badguy/mole_rock.hpp:44 msgid "Mole's rock" -msgstr "鼹鼠岩" +msgstr "鼹鼠怪的岩石" -#: src/badguy/badguy.cpp:841 +#: src/badguy/badguy.cpp:1064 msgid "Death script" msgstr "死亡脚本" -#: src/badguy/sspiky.hpp:36 +#: src/badguy/sspiky.hpp:37 msgid "Sleeping Spiky" -msgstr "沉睡之刺" +msgstr "沉睡的尖刺怪" -#: src/badguy/yeti_stalactite.hpp:33 +#: src/badguy/yeti_stalactite.hpp:34 msgid "Yeti's Stalactite" -msgstr "雪怪之刺" +msgstr "雪大王的冰刺" + +#: src/badguy/fish_harmless.hpp:30 +msgid "Harmless Fish" +msgstr "" -#: src/badguy/livefire.hpp:37 +#: src/badguy/livefire.hpp:38 msgid "Walking Flame" msgstr "行走的火怪" -#: src/badguy/livefire.hpp:67 +#: src/badguy/livefire.hpp:71 msgid "Sleeping Flame" -msgstr "沉睡之火" +msgstr "沉睡的火怪" -#: src/badguy/livefire.hpp:83 +#: src/badguy/livefire.hpp:89 msgid "Dormant Flame" msgstr "蛰伏的火怪" -#: src/badguy/owl.hpp:39 +#: src/badguy/owl.hpp:45 msgid "Owl" msgstr "猫头鹰" -#: src/badguy/igel.hpp:34 +#: src/badguy/igel.hpp:38 msgid "Igel" -msgstr "尖刺兽" +msgstr "刺猬怪" -#: src/badguy/darttrap.cpp:126 +#: src/badguy/darttrap.cpp:148 msgid "Initial delay" msgstr "初始延迟" -#: src/badguy/darttrap.cpp:128 +#: src/badguy/darttrap.cpp:150 msgid "Fire delay" msgstr "火焰延迟" -#: src/badguy/darttrap.cpp:129 +#: src/badguy/darttrap.cpp:151 msgid "Ammo" msgstr "子弹" -#: src/badguy/snowball.hpp:29 -msgid "Snowball" -msgstr "雪球怪" +#: src/badguy/darttrap.cpp:152 +msgid "Dart sprite" +msgstr "" + +#: src/badguy/darttrap.cpp:164 +msgid "Skull" +msgstr "颅骨怪" + +#: src/badguy/snowball.hpp:30 +msgid "Mr. Snowball" +msgstr "雪球先生" -#: src/badguy/smartblock.hpp:29 -msgid "Smartblock" -msgstr "智能冰块怪" +#: src/badguy/smartblock.hpp:30 +msgid "Mrs. Iceblock" +msgstr "冰块女士" -#: src/badguy/yeti.cpp:369 +#: src/badguy/yeti.cpp:370 msgid "Fixed position" msgstr "固定位置" -#: src/badguy/yeti.cpp:370 +#: src/badguy/yeti.cpp:371 msgid "Lives" msgstr "生命" -#: src/badguy/goldbomb.hpp:49 +#: src/badguy/goldbomb.hpp:50 msgid "Gold Bomb" msgstr "黄金炸弹怪" -#: src/badguy/flyingsnowball.hpp:32 +#: src/badguy/corrupted_granito.hpp:44 +msgid "Corrupted Granito" +msgstr "" + +#: src/badguy/mrbomb.cpp:48 +msgid "Classic" +msgstr "" + +#: src/badguy/flyingsnowball.hpp:33 msgid "Flying Snowball" -msgstr "雪球飞行员" +msgstr "飞行雪球怪" -#: src/badguy/skullyhop.hpp:37 -msgid "Skullyhop" -msgstr "骷髅头" +#: src/badguy/crusher.cpp:75 +msgid "Ice (normal)" +msgstr "" + +#: src/badguy/crusher.cpp:76 +msgid "Ice (big)" +msgstr "" + +#: src/badguy/crusher.cpp:77 +msgid "Rock (normal)" +msgstr "" + +#: src/badguy/crusher.cpp:78 +msgid "Rock (big)" +msgstr "" -#: src/badguy/kamikazesnowball.hpp:32 -msgid "Snowshot" -msgstr "雪弹怪" +#: src/badguy/crusher.cpp:79 +msgid "Corrupted (normal)" +msgstr "" + +#: src/badguy/crusher.cpp:80 +msgid "Corrupted (big)" +msgstr "" + +#: src/badguy/crusher.cpp:492 +msgid "Sideways" +msgstr "朝向两侧" -#: src/badguy/kamikazesnowball.hpp:52 +#: src/badguy/kamikazesnowball.hpp:34 +msgid "Kamikaze Snowball" +msgstr "" + +#: src/badguy/kamikazesnowball.hpp:64 msgid "Leafshot" msgstr "飞叶怪" -#: src/badguy/flame.hpp:41 +#: src/badguy/fish_swimming.hpp:40 +msgid "Swimming Fish" +msgstr "" + +#: src/badguy/flame.hpp:47 msgid "Flame" msgstr "火花" -#: src/badguy/poisonivy.hpp:30 -msgid "Spring Leaf" -msgstr "绿叶怪" +#: src/badguy/scrystallo.hpp:31 +msgid "Sleeping Crystallo" +msgstr "沉睡的水晶怪" -#: src/badguy/willowisp.hpp:55 +#: src/badguy/jumpy.cpp:45 +msgid "Wooden" +msgstr "" + +#: src/badguy/jumpy.cpp:47 +msgid "Metal" +msgstr "" + +#: src/badguy/jumpy.cpp:48 +msgid "Bag" +msgstr "" + +#: src/badguy/willowisp.hpp:57 msgid "Will o' Wisp" -msgstr "流星" +msgstr "鬼火" + +#: src/badguy/fish_jumping.hpp:41 +msgid "Jumping Fish" +msgstr "" -#: src/badguy/badguy.hpp:53 +#: src/badguy/badguy.hpp:61 msgid "Badguy" msgstr "坏人" -#: src/badguy/ghostflame.hpp:30 -msgid "Ghost Flame" -msgstr "鬼火花" +#: src/badguy/rcrystallo.hpp:33 +msgid "Roof Crystallo" +msgstr "屋顶的水晶怪" -#: src/badguy/spiky.hpp:30 +#: src/badguy/spiky.hpp:31 msgid "Spiky" msgstr "尖刺怪" -#: src/badguy/walkingleaf.hpp:30 -msgid "Autumn Leaf" -msgstr "红叶怪" +#: src/badguy/walkingleaf.hpp:33 +msgid "Walking Leaf" +msgstr "" + +#: src/badguy/root.hpp:39 +msgid "Root" +msgstr "" -#: src/badguy/owl.cpp:227 +#: src/badguy/owl.cpp:241 msgid "Carry" msgstr "携带" -#: src/badguy/darttrap.hpp:33 +#: src/badguy/darttrap.hpp:35 msgid "Dart Trap" msgstr "飞镖陷阱" -#: src/badguy/skydive.hpp:38 +#: src/badguy/skydive.hpp:43 msgid "Skydive" -msgstr "飞鱼怪" +msgstr "飞鱼炸弹" -#: src/badguy/yeti.hpp:37 +#: src/badguy/yeti.hpp:38 msgid "Yeti" msgstr "雪大王" -#: src/badguy/mole.hpp:39 +#: src/badguy/snowball.cpp:41 +msgid "Bumpkin" +msgstr "" + +#: src/badguy/snowball.cpp:42 +msgid "BSOD" +msgstr "" + +#: src/badguy/mole.hpp:38 msgid "Mole" msgstr "鼹鼠怪" -#: src/badguy/mrbomb.hpp:42 -msgid "Bomb" -msgstr "炸弹怪" +#: src/badguy/corrupted_granito.cpp:176 +msgid "Skullyhop" +msgstr "跳跳骷髅" + +#: src/badguy/mrbomb.hpp:40 +msgid "Mr. Bomb" +msgstr "" -#: src/badguy/walking_candle.hpp:40 +#: src/badguy/walking_candle.hpp:41 msgid "Walking Candle" msgstr "蜡烛怪" -#: src/badguy/angrystone.hpp:34 +#: src/badguy/angrystone.hpp:39 msgid "Angry Stone" msgstr "愤怒之石" -#: src/badguy/spidermite.hpp:35 -msgid "Spider" -msgstr "蜘蛛怪" +#: src/badguy/tarantula.cpp:354 +msgid "Spidermite" +msgstr "" + +#: src/badguy/tarantula.cpp:374 +msgid "Static" +msgstr "" -#: src/badguy/ghoul.hpp:28 +#: src/badguy/ghoul.hpp:30 msgid "Ghoul" -msgstr "鱿鱼怪" +msgstr "食尸鬼" + +#: src/badguy/granito_giant.hpp:32 +msgid "Giant Granito" +msgstr "" -#: src/badguy/snowman.hpp:28 +#: src/badguy/snowman.hpp:29 msgid "Snowman" msgstr "雪巨人" -#: src/badguy/stumpy.hpp:35 -msgid "Walking Stump" -msgstr "树干怪" +#: src/badguy/viciousivy.hpp:33 +msgid "Vicious Ivy" +msgstr "" + +#: src/badguy/stalactite.cpp:156 +msgid "ice" +msgstr "" + +#: src/badguy/stalactite.cpp:157 +msgid "rock" +msgstr "" + +#: src/badguy/fish_chasing.hpp:33 +msgid "Chasing Fish" +msgstr "" -#: src/badguy/fish.hpp:40 -msgid "Fish" -msgstr "巨鱼怪" +#: src/badguy/stumpy.hpp:38 +msgid "Stumpy" +msgstr "" -#: src/badguy/dispenser.cpp:439 +#: src/badguy/dispenser.cpp:412 msgid "Interval (seconds)" msgstr "间隔(秒)" -#: src/badguy/dispenser.cpp:440 +#: src/badguy/dispenser.cpp:413 msgid "Random" msgstr "随机" -#: src/badguy/dispenser.cpp:441 data//images/engine/editor/objects.stoi:4 -msgid "Enemies" -msgstr "怪物" +#: src/badguy/dispenser.cpp:416 +#: src/supertux/menu/editor_objectgroup_menu.cpp:30 +#: src/editor/toolbox_widget.cpp:101 +msgid "Objects" +msgstr "物体" -#: src/badguy/dispenser.cpp:442 +#: src/badguy/dispenser.cpp:419 msgid "Limit dispensed badguys" -msgstr "限制分配的怪物" - -#: src/badguy/dispenser.cpp:444 -msgid "Max concurrent badguys" -msgstr "最大总怪物数" +msgstr "限制刷新的坏人" -#: src/badguy/dispenser.cpp:446 src/supertux/menu/editor_levelset_menu.cpp:60 -msgid "Type" -msgstr "类型" +#: src/badguy/dispenser.cpp:421 +msgid "Obey Gravity" +msgstr "遵守重力" -#: src/badguy/dispenser.cpp:447 -msgid "dropper" -msgstr "滴管" +#: src/badguy/dispenser.cpp:423 +msgid "Max concurrent badguys" +msgstr "同时出现的最大坏人数" -#: src/badguy/dispenser.cpp:447 -msgid "rocket launcher" -msgstr "火箭发射台" +#: src/badguy/dispenser.cpp:435 +msgid "Dropper" +msgstr "" -#: src/badguy/dispenser.cpp:447 -msgid "cannon" -msgstr "大炮" +#: src/badguy/dispenser.cpp:436 +msgid "Cannon" +msgstr "" -#: src/badguy/dispenser.cpp:447 -msgid "invisible" -msgstr "隐形" +#: src/badguy/dispenser.cpp:437 src/worldmap/special_tile.cpp:77 +msgid "Invisible" +msgstr "不可见" -#: src/badguy/snail.hpp:42 +#: src/badguy/snail.hpp:43 msgid "Snail" msgstr "蜗牛怪" -#: src/badguy/smartball.hpp:31 -msgid "Smartball" -msgstr "智能雪球怪" +#: src/badguy/smartball.hpp:32 +msgid "Mrs. Snowball" +msgstr "" -#: src/badguy/bouncing_snowball.hpp:31 +#: src/badguy/bouncing_snowball.hpp:39 msgid "Bouncing Snowball" msgstr "跳跳雪球怪" -#: src/badguy/iceflame.hpp:33 -msgid "Ice Flame" -msgstr "冰火花" +#: src/badguy/granito_big.cpp:52 src/badguy/granito.cpp:263 +msgid "Default" +msgstr "" + +#: src/badguy/granito_big.cpp:53 src/badguy/granito.cpp:264 +msgid "Standing" +msgstr "" + +#: src/badguy/granito_big.cpp:54 src/badguy/granito.cpp:265 +msgid "Walking" +msgstr "" + +#: src/badguy/mriceblock.cpp:63 +msgid "Laptop" +msgstr "笔记本" -#: src/badguy/dart.hpp:43 +#: src/badguy/dart.hpp:44 msgid "Dart" msgstr "飞镖" -#: src/supertux/statistics.cpp:47 +#: src/badguy/granito.cpp:268 +msgid "Sitting" +msgstr "" + +#: src/supertux/statistics.cpp:54 msgid "Max coins collected:" msgstr "金币最多:" -#: src/supertux/statistics.cpp:48 +#: src/supertux/statistics.cpp:55 msgid "Max fragging:" msgstr "杀伤最多:" -#: src/supertux/statistics.cpp:49 +#: src/supertux/statistics.cpp:56 msgid "Max secrets found:" msgstr "找到秘区最多:" -#: src/supertux/statistics.cpp:50 +#: src/supertux/statistics.cpp:57 msgid "Best time completed:" msgstr "最快完成时间:" -#: src/supertux/statistics.cpp:51 +#: src/supertux/statistics.cpp:58 msgid "Level target time:" msgstr "关卡目标时间:" -#: src/supertux/statistics.cpp:139 src/supertux/levelintro.cpp:160 +#: src/supertux/statistics.cpp:149 src/supertux/levelintro.cpp:175 msgid "Best Level Statistics" msgstr "此关最佳成绩" -#: src/supertux/statistics.cpp:228 +#: src/supertux/statistics.cpp:238 msgid "You" msgstr "本次" -#: src/supertux/statistics.cpp:230 +#: src/supertux/statistics.cpp:240 msgid "Best" msgstr "最佳成绩" -#: src/supertux/statistics.cpp:232 src/supertux/levelintro.cpp:166 +#: src/supertux/statistics.cpp:242 src/supertux/levelintro.cpp:181 msgid "Coins" msgstr "金币" -#: src/supertux/statistics.cpp:255 +#: src/supertux/statistics.cpp:265 msgid "Badguys" msgstr "坏人" -#: src/supertux/statistics.cpp:271 src/supertux/levelintro.cpp:172 +#: src/supertux/statistics.cpp:281 src/supertux/levelintro.cpp:187 msgid "Secrets" msgstr "秘密区域" -#: src/supertux/game_object.hpp:77 +#: src/supertux/game_object.hpp:88 msgid "Unknown object" msgstr "未知对象" -#: src/supertux/command_line_arguments.cpp:74 -#, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "用法: %s [OPTIONS] [LEVELFILE]" +#: src/supertux/sector.cpp:507 +msgid "Press escape to skip" +msgstr "按 Esc 跳过" + +#: src/supertux/command_line_arguments.cpp:92 +#, c++-format +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "" -#: src/supertux/command_line_arguments.cpp:75 +#: src/supertux/command_line_arguments.cpp:93 msgid "General Options:" -msgstr "常规选项:" +msgstr "常规选项:" -#: src/supertux/command_line_arguments.cpp:76 +#: src/supertux/command_line_arguments.cpp:94 msgid " -h, --help Show this help message and quit" msgstr " -h, --help 显示此帮助消息并退出" -#: src/supertux/command_line_arguments.cpp:77 +#: src/supertux/command_line_arguments.cpp:95 msgid " -v, --version Show SuperTux version and quit" msgstr " -v, --version 显示 SuperTux 版本并退出" -#: src/supertux/command_line_arguments.cpp:78 +#: src/supertux/command_line_arguments.cpp:96 msgid " --verbose Print verbose messages" msgstr " --verbose 打印详细消息" -#: src/supertux/command_line_arguments.cpp:79 +#: src/supertux/command_line_arguments.cpp:97 msgid " --debug Print extra verbose messages" msgstr " --debug 打印额外的详细消息" -#: src/supertux/command_line_arguments.cpp:80 +#: src/supertux/command_line_arguments.cpp:98 msgid "" " --print-datadir Print SuperTux's primary data directory." -msgstr " --print-datadir 显示该游戏的首要数据储存路径。" +msgstr " --print-datadir 显示 SuperTux 的主数据目录。" + +#: src/supertux/command_line_arguments.cpp:99 +msgid "" +" --acknowledgements Print the licenses of libraries used by " +"SuperTux." +msgstr " --acknowledgements 打印 SuperTux 使用的库的许可证。" -#: src/supertux/command_line_arguments.cpp:82 +#: src/supertux/command_line_arguments.cpp:101 msgid "Video Options:" msgstr "视频选项:" -#: src/supertux/command_line_arguments.cpp:83 +#: src/supertux/command_line_arguments.cpp:102 msgid " -f, --fullscreen Run in fullscreen mode" msgstr " -f, --fullscreen 以全屏模式运行" -#: src/supertux/command_line_arguments.cpp:84 +#: src/supertux/command_line_arguments.cpp:103 msgid " -w, --window Run in window mode" msgstr " -w, --window 以窗口模式运行" -#: src/supertux/command_line_arguments.cpp:85 +#: src/supertux/command_line_arguments.cpp:104 msgid " -g, --geometry WIDTHxHEIGHT Run SuperTux in given resolution" -msgstr " -g, --geometry WIDTHxHEIGHT 以指定的分辨率运行 SuperTux" +msgstr " -g, --geometry 宽度x高度 以指定的分辨率运行 SuperTux" -#: src/supertux/command_line_arguments.cpp:86 +#: src/supertux/command_line_arguments.cpp:105 msgid " -a, --aspect WIDTH:HEIGHT Run SuperTux with given aspect ratio" -msgstr " -a, --aspect WIDTH:HEIGHT 以指定的宽高比运行 SuperTux" +msgstr " -a, --aspect 宽度:高度 以指定的宽高比运行 SuperTux" -#: src/supertux/command_line_arguments.cpp:87 +#: src/supertux/command_line_arguments.cpp:106 msgid " -d, --default Reset video settings to default values" msgstr " -d, --default 将视频设置重置为默认值" -#: src/supertux/command_line_arguments.cpp:88 +#: src/supertux/command_line_arguments.cpp:107 msgid " --renderer RENDERER Use sdl, opengl, or auto to render" -msgstr " --renderer RENDERER 使用 sdl,opengl 或 auto 进行渲染" +msgstr " --renderer 渲染引擎 使用 sdl、opengl 或 auto 进行渲染" -#: src/supertux/command_line_arguments.cpp:90 +#: src/supertux/command_line_arguments.cpp:109 msgid "Audio Options:" -msgstr "音频选项:" +msgstr "音频选项:" -#: src/supertux/command_line_arguments.cpp:91 +#: src/supertux/command_line_arguments.cpp:110 msgid " --disable-sound Disable sound effects" msgstr " --disable-sound 关闭音效" -#: src/supertux/command_line_arguments.cpp:92 +#: src/supertux/command_line_arguments.cpp:111 msgid " --disable-music Disable music" msgstr " --disable-music 关闭音乐" -#: src/supertux/command_line_arguments.cpp:94 +#: src/supertux/command_line_arguments.cpp:113 msgid "Game Options:" -msgstr "游戏选项:" +msgstr "游戏选项:" -#: src/supertux/command_line_arguments.cpp:95 +#: src/supertux/command_line_arguments.cpp:114 msgid " --edit-level Open given level in editor" msgstr " --edit-level 在编辑器中打开指定关卡" -#: src/supertux/command_line_arguments.cpp:96 +#: src/supertux/command_line_arguments.cpp:115 msgid " --resave Loads given level and saves it" -msgstr " --resave 加载关卡并保存" +msgstr " --resave 加载指定的关卡并保存" -#: src/supertux/command_line_arguments.cpp:97 +#: src/supertux/command_line_arguments.cpp:116 msgid " --show-fps Display framerate in levels" msgstr " --show-fps 在关卡中显示帧率" -#: src/supertux/command_line_arguments.cpp:98 +#: src/supertux/command_line_arguments.cpp:117 msgid " --no-show-fps Do not display framerate in levels" msgstr " --no-show-fps 不在关卡中显示帧率" -#: src/supertux/command_line_arguments.cpp:99 +#: src/supertux/command_line_arguments.cpp:118 msgid " --show-pos Display player's current position" msgstr " --show-pos 显示玩家的当前位置" -#: src/supertux/command_line_arguments.cpp:100 +#: src/supertux/command_line_arguments.cpp:119 msgid " --no-show-pos Do not display player's position" msgstr " --no-show-pos 不要显示玩家的位置" -#: src/supertux/command_line_arguments.cpp:101 +#: src/supertux/command_line_arguments.cpp:120 msgid " --developer Switch on developer feature" msgstr " --developer 打开开发者功能" -#: src/supertux/command_line_arguments.cpp:102 +#: src/supertux/command_line_arguments.cpp:121 msgid " -s, --debug-scripts Enable script debugger." msgstr " -s, --debug-scripts 启用脚本调试程序。" -#: src/supertux/command_line_arguments.cpp:103 +#: src/supertux/command_line_arguments.cpp:122 msgid "" " --spawn-pos X,Y Where in the level to spawn Tux. Only used if" " level is specified." -msgstr " --spawn-pos X,Y Tux 起始位置。关卡已说明起始位置时使用。" +msgstr " --spawn-pos X,Y Tux 起始位置。仅在已指定关卡时使用。" -#: src/supertux/command_line_arguments.cpp:104 +#: src/supertux/command_line_arguments.cpp:123 msgid " --sector SECTOR Spawn Tux in SECTOR\n" -msgstr " --sector SECTOR 在 SECTOR 生成 Tux\n" +msgstr " --sector 区块 在 <区块> 生成 Tux\n" -#: src/supertux/command_line_arguments.cpp:105 +#: src/supertux/command_line_arguments.cpp:124 msgid " --spawnpoint SPAWNPOINT Spawn Tux at SPAWNPOINT\n" -msgstr " --spawnpoint SPAWNPOINT 在 SPAWNPOINT 生成 Tux\n" - -#: src/supertux/command_line_arguments.cpp:107 -msgid "Demo Recording Options:" -msgstr "演示录制选项:" +msgstr " --spawnpoint 出生点 在 <出生点> 生成 Tux\n" -#: src/supertux/command_line_arguments.cpp:108 -msgid " --record-demo FILE LEVEL Record a demo to FILE" -msgstr " --record-demo FILE LEVEL 将演示录制到 FILE" - -#: src/supertux/command_line_arguments.cpp:109 -msgid " --play-demo FILE LEVEL Play a recorded demo" -msgstr " --play-demo FILE LEVEL 播放录制的演示" - -#: src/supertux/command_line_arguments.cpp:111 +#: src/supertux/command_line_arguments.cpp:126 msgid "Directory Options:" -msgstr "目录选项:" +msgstr "目录选项:" -#: src/supertux/command_line_arguments.cpp:112 +#: src/supertux/command_line_arguments.cpp:127 msgid "" " --datadir DIR Set the directory for the games datafiles" -msgstr " --datadir DIR 设置游戏数据文件目录" +msgstr " --datadir 目录 设置游戏数据文件目录" -#: src/supertux/command_line_arguments.cpp:113 +#: src/supertux/command_line_arguments.cpp:128 msgid "" " --userdir DIR Set the directory for user data (savegames, " "etc.)" -msgstr " --userdir DIR 设置用户数据的目录(存档游戏等)" +msgstr " --userdir 目录 设置用户数据目录(存档等)" -#: src/supertux/command_line_arguments.cpp:115 +#: src/supertux/command_line_arguments.cpp:130 msgid "Add-On Options:" -msgstr "附加选项:" +msgstr "扩展选项:" -#: src/supertux/command_line_arguments.cpp:116 +#: src/supertux/command_line_arguments.cpp:131 msgid " --repository-url URL Set the URL to the Add-On repository" -msgstr " --repository-url URL 设置附加组件源为 URL" +msgstr " --repository-url URL 设置扩展仓库的 URL" -#: src/supertux/command_line_arguments.cpp:118 +#: src/supertux/command_line_arguments.cpp:133 msgid "Environment variables:" -msgstr "环境变量:" +msgstr "环境变量:" -#: src/supertux/command_line_arguments.cpp:119 +#: src/supertux/command_line_arguments.cpp:134 msgid "" " SUPERTUX2_USER_DIR Directory for user data (savegames, etc.)" -msgstr " SUPERTUX2_USER_DIR 用户数据的目录(存档游戏等)" +msgstr " SUPERTUX2_USER_DIR 用户数据目录(存档等)" -#: src/supertux/command_line_arguments.cpp:120 +#: src/supertux/command_line_arguments.cpp:135 msgid " SUPERTUX2_DATA_DIR Directory for the games datafiles" msgstr " SUPERTUX2_DATA_DIR 游戏数据文件目录" -#: src/supertux/title_screen.cpp:43 +#: src/supertux/title_screen.cpp:272 msgid "Copyright" msgstr "Copyright" -#: src/supertux/title_screen.cpp:44 +#: src/supertux/title_screen.cpp:273 msgid "" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to\n" "redistribute it under certain conditions; see the license file for details.\n" -msgstr "This game comes with ABSOLUTELY NO WARRANTY. 这是自由软件, 并欢迎您\n一定条件下重新分发它; 查看 license 文件来获取详细信息\n" +msgstr "本游戏不包含任何担保。这是自由软件,并欢迎您在\n一定条件下重新分发它;阅读许可证文件以获取详细信息\n" + +#: src/supertux/game_object.cpp:114 +msgid "Version" +msgstr "版本号" + +#: src/supertux/game_object.cpp:129 +#: src/supertux/menu/editor_levelset_menu.cpp:54 +msgid "Type" +msgstr "类型" + +#: src/supertux/menu/integrations_menu.cpp:49 +msgid "Integrations" +msgstr "集成" + +#: src/supertux/menu/integrations_menu.cpp:51 +msgid "Do not share level names when editing" +msgstr "编辑时不要分享关卡名称" + +#: src/supertux/menu/integrations_menu.cpp:52 +msgid "" +"Enable this if you want to work on secret levels and don't want the names to" +" be spoiled" +msgstr "" + +#: src/supertux/menu/integrations_menu.cpp:54 +msgid "Enable Discord integration" +msgstr "启用 Discord 集成" + +#: src/supertux/menu/integrations_menu.cpp:55 +msgid "" +"Sends information to your Discord application about what you're doing in the" +" game." +msgstr "" + +#: src/supertux/menu/integrations_menu.cpp:57 +msgid "Discord (disabled; not compiled)" +msgstr "Discord(已禁用;未编译)" -#: src/supertux/menu/contrib_menu.cpp:79 +#: src/supertux/menu/editor_converters_menu.cpp:61 +#: src/supertux/menu/editor_menu.cpp:85 +msgid "Convert Tiles" +msgstr "转换图块" + +#: src/supertux/menu/editor_converters_menu.cpp:64 +msgid "Select Tile Conversion File" +msgstr "" + +#: src/supertux/menu/editor_converters_menu.cpp:72 +#, c++-format +msgid "By: {}" +msgstr "" + +#: src/supertux/menu/editor_converters_menu.cpp:75 +msgid "Convert Tiles By File" +msgstr "从文件转换图块" + +#: src/supertux/menu/editor_converters_menu.cpp:76 +msgid "Convert all tiles in the current level by a file, specified above." +msgstr "" + +#: src/supertux/menu/editor_converters_menu.cpp:89 +msgid "No tile conversion file selected." +msgstr "" + +#: src/supertux/menu/editor_converters_menu.cpp:93 +msgid "" +"This will convert all tiles in the level. Proceed?\n" +"\n" +"Note: This should not be ran more than once on a level.\n" +"Creating a separate copy of the level is highly recommended." +msgstr "" + +#: src/supertux/menu/video_system_menu.cpp:36 +msgid "Select Video System" +msgstr "选择视频系统" + +#: src/supertux/menu/video_system_menu.cpp:37 +#, c++-format +msgid "Used video system: {}" +msgstr "正在使用的视频系统:{}" + +#: src/supertux/menu/video_system_menu.cpp:54 +msgid "Restart game for the changes to take effect" +msgstr "" + +#: src/supertux/menu/contrib_menu.cpp:68 #: src/supertux/menu/world_set_menu.cpp:31 msgid "Contrib Levels" msgstr "贡献的关卡" +#: src/supertux/menu/contrib_menu.cpp:98 +#: src/supertux/menu/contrib_menu.cpp:112 +msgid "Official Contrib Levels" +msgstr "官方贡献的关卡" + +#: src/supertux/menu/contrib_menu.cpp:99 +#: src/supertux/menu/contrib_menu.cpp:118 +msgid "Community Contrib Levels" +msgstr "社区贡献的关卡" + +#: src/supertux/menu/contrib_menu.cpp:100 +#: src/supertux/menu/contrib_menu.cpp:124 +msgid "User Contrib Levels" +msgstr "用户贡献的关卡" + +#: src/supertux/menu/contrib_menu.cpp:113 +msgid "How is this possible? There are no Official Contrib Levels!" +msgstr "怎么可能?这里无官方贡献的关卡!" + #: src/supertux/menu/contrib_menu.cpp:119 -#: src/supertux/menu/contrib_menu.cpp:150 -msgid "*NEW*" -msgstr "*新*" +msgid "No Community Contrib Levels yet. Download them from the Add-ons Menu." +msgstr "尚无社区贡献的关卡,请从扩展菜单中下载。" -#: src/supertux/menu/contrib_menu.cpp:172 src/supertux/menu/debug_menu.cpp:75 -#: src/supertux/menu/editor_level_select_menu.cpp:84 -#: src/supertux/menu/worldmap_cheat_menu.cpp:55 -#: src/supertux/menu/worldmap_cheat_menu.cpp:153 -#: src/supertux/menu/editor_levelset_select_menu.cpp:96 -#: src/supertux/menu/options_menu.cpp:405 -#: src/supertux/menu/profile_menu.cpp:47 src/supertux/menu/addon_menu.cpp:213 -#: src/supertux/menu/editor_new_levelset_menu.cpp:40 -#: src/supertux/menu/world_set_menu.cpp:33 -#: src/supertux/menu/keyboard_menu.cpp:51 -#: src/supertux/menu/language_menu.cpp:56 -#: src/supertux/menu/joystick_menu.cpp:97 -#: src/supertux/menu/contrib_levelset_menu.cpp:67 -#: src/supertux/menu/cheat_menu.cpp:44 -msgid "Back" -msgstr "返回" +#: src/supertux/menu/contrib_menu.cpp:125 +msgid "No User Contrib Levels yet. Create some with the Level Editor." +msgstr "尚无用户贡献的关卡,请使用关卡编辑器创建一些关卡。" -#: src/supertux/menu/debug_menu.cpp:32 +#: src/supertux/menu/debug_menu.cpp:34 msgid "Debug" msgstr "调试" -#: src/supertux/menu/debug_menu.cpp:56 +#: src/supertux/menu/debug_menu.cpp:58 msgid "Game Speed" msgstr "游戏速度" -#: src/supertux/menu/debug_menu.cpp:57 +#: src/supertux/menu/debug_menu.cpp:59 msgid "Adjust Game Speed" msgstr "调整游戏速度" -#: src/supertux/menu/debug_menu.cpp:63 +#: src/supertux/menu/debug_menu.cpp:65 msgid "Show Collision Rects" msgstr "显示碰撞矩形" -#: src/supertux/menu/debug_menu.cpp:64 +#: src/supertux/menu/debug_menu.cpp:66 msgid "Show Worldmap Path" msgstr "显示世界地图路径" -#: src/supertux/menu/debug_menu.cpp:65 +#: src/supertux/menu/debug_menu.cpp:67 msgid "Show Controller" msgstr "显示控制器" -#: src/supertux/menu/debug_menu.cpp:66 +#: src/supertux/menu/debug_menu.cpp:68 msgid "Show Framerate" -msgstr "显示帧速率" +msgstr "显示帧率" -#: src/supertux/menu/debug_menu.cpp:67 +#: src/supertux/menu/debug_menu.cpp:69 msgid "Draw Redundant Frames" msgstr "绘制冗余框架" -#: src/supertux/menu/debug_menu.cpp:68 +#: src/supertux/menu/debug_menu.cpp:70 msgid "Show Player Position" -msgstr "显示玩家未知" +msgstr "显示玩家位置" -#: src/supertux/menu/debug_menu.cpp:69 +#: src/supertux/menu/debug_menu.cpp:71 msgid "Use Bitmap Fonts" msgstr "使用点阵字体" -#: src/supertux/menu/debug_menu.cpp:72 +#: src/supertux/menu/debug_menu.cpp:74 msgid "Dump Texture Cache" msgstr "转储纹理缓存" +#: src/supertux/menu/particle_editor_save_as.cpp:33 +msgid "Save particle as" +msgstr "粒子另存为" + +#: src/supertux/menu/particle_editor_save_as.cpp:37 +#: src/supertux/menu/editor_save_as.cpp:37 +msgid "File name" +msgstr "文件名" + +#: src/supertux/menu/particle_editor_save_as.cpp:38 +#: src/supertux/menu/editor_save_as.cpp:38 src/editor/particle_editor.cpp:767 +msgid "Save" +msgstr "保存" + +#: src/supertux/menu/multiplayer_menu.cpp:27 +#: src/supertux/menu/multiplayer_players_menu.cpp:34 +msgid "Multiplayer" +msgstr "多人游戏" + +#: src/supertux/menu/multiplayer_menu.cpp:30 +msgid "Auto-manage Players" +msgstr "" + +#: src/supertux/menu/multiplayer_menu.cpp:31 +msgid "" +"Automatically add and remove players when controllers are plugged or " +"unplugged" +msgstr "" + +#: src/supertux/menu/multiplayer_menu.cpp:33 +msgid "Allow Multibind" +msgstr "" + +#: src/supertux/menu/multiplayer_menu.cpp:34 +msgid "Allow binding multiple joysticks to a single player" +msgstr "" + +#: src/supertux/menu/multiplayer_menu.cpp:36 +msgid "Manage Players" +msgstr "" + #: src/supertux/menu/editor_sectors_menu.cpp:31 msgid "Choose Sector" -msgstr "选择 Sector" +msgstr "选择区块" #: src/supertux/menu/editor_sectors_menu.cpp:41 msgid "Sector Settings" -msgstr "Sector 设置" +msgstr "区块设置" #: src/supertux/menu/editor_sectors_menu.cpp:42 msgid "Create Sector" -msgstr "新建 Sector" +msgstr "新建区块" #: src/supertux/menu/editor_sectors_menu.cpp:43 msgid "Delete Sector" -msgstr "删除 Sector" +msgstr "删除区块" -#: src/supertux/menu/editor_sectors_menu.cpp:93 +#: src/supertux/menu/editor_sectors_menu.cpp:92 msgid "Each level must have at least one sector." -msgstr "每个关卡都必须至少有一个 Sector" +msgstr "每个关卡都必须有至少一个区块。" -#: src/supertux/menu/editor_sectors_menu.cpp:98 +#: src/supertux/menu/editor_sectors_menu.cpp:97 msgid "Do you really want to delete this sector?" -msgstr "你真的想删除这个Sector 吗?" +msgstr "您真的想删除这个区块吗?" -#: src/supertux/menu/editor_sectors_menu.cpp:101 +#: src/supertux/menu/editor_sectors_menu.cpp:100 msgid "Delete sector" -msgstr "删除Sector" +msgstr "删除区块" -#: src/supertux/menu/editor_objectgroup_menu.cpp:30 -#: src/editor/toolbox_widget.cpp:93 -msgid "Objects" -msgstr "物体" +#: src/supertux/menu/custom_menu_menu.cpp:49 +#: src/supertux/menu/options_menu.cpp:191 +msgid "Menu Customization" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:51 +msgid "Menu Back Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:52 +msgid "Menu Front Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:53 +msgid "Menu Help Back Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:54 +msgid "Menu Help Front Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:55 +msgid "Label Text Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:56 +msgid "Active Text Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:57 +msgid "Divider Line Color" +msgstr "" -#: src/supertux/menu/editor_level_select_menu.cpp:58 +#: src/supertux/menu/custom_menu_menu.cpp:58 +msgid "Menu Roundness" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:60 +msgid "Editor Interface Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:61 +msgid "Editor Hover Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:62 +msgid "Editor Grab Color" +msgstr "" + +#: src/supertux/menu/custom_menu_menu.cpp:64 +msgid "Reset to defaults" +msgstr "" + +#: src/supertux/menu/editor_level_select_menu.cpp:72 msgid "Empty World" msgstr "空世界" -#: src/supertux/menu/editor_level_select_menu.cpp:73 +#: src/supertux/menu/editor_level_select_menu.cpp:87 msgid "Create Level" -msgstr "新建关卡" +msgstr "创建关卡" -#: src/supertux/menu/editor_level_select_menu.cpp:77 +#: src/supertux/menu/editor_level_select_menu.cpp:91 msgid "Edit Worldmap" msgstr "编辑世界地图" -#: src/supertux/menu/editor_level_select_menu.cpp:79 +#: src/supertux/menu/editor_level_select_menu.cpp:93 msgid "Create Worldmap" msgstr "创建世界地图" -#: src/supertux/menu/editor_level_select_menu.cpp:83 -#: src/supertux/menu/editor_levelset_menu.cpp:56 +#: src/supertux/menu/editor_level_select_menu.cpp:95 +#: src/supertux/menu/editor_delete_level_menu.cpp:55 +msgid "Delete level" +msgstr "删除关卡" + +#: src/supertux/menu/editor_level_select_menu.cpp:97 +#: src/supertux/menu/editor_levelset_menu.cpp:50 msgid "World Settings" msgstr "世界设置" -#: src/supertux/menu/editor_level_select_menu.cpp:123 +#: src/supertux/menu/editor_level_select_menu.cpp:141 msgid "" "Share this worldmap under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" "If you don't agree with this license, change it in worldmap properties.\n" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." -msgstr "使用 CC-BY-SA 4.0 International 协议分享该地图(推荐)。\n这个协议允许第三方修改和发布该地图。\n如果不同意,请在地图设置中修改协议类型。\n免责声明:协议选择造成的一切后果由作者本人承担。" +msgstr "使用 CC-BY-SA 4.0 International 协议分享该世界地图(推荐)。\n这个协议允许第三方修改和重新分发该世界地图。\n如果不同意,请在世界地图属性中修改协议类型。\n免责声明:协议选择造成的一切后果由作者本人承担。" -#: src/supertux/menu/editor_level_select_menu.cpp:130 +#: src/supertux/menu/editor_level_select_menu.cpp:148 msgid "" "Share this level under license CC-BY-SA 4.0 International (advised).\n" "It allows modifications and redistribution by third-parties.\n" "If you don't agree with this license, change it in level properties.\n" "DISCLAIMER: The SuperTux authors take no responsibility for your choice of license." -msgstr "使用 CC-BY-SA 4.0 International 协议分享该关卡(推荐)。\n这个协议允许第三方修改和发布该关卡。\n如果不同意,请在关卡设置中修改协议类型。\n免责声明:协议选择造成的一切后果由作者本人承担。" +msgstr "使用 CC-BY-SA 4.0 International 协议分享该关卡(推荐)。\n这个协议允许第三方修改和重新分发该关卡。\n如果不同意,请在关卡设置中修改协议类型。\n免责声明:协议选择造成的一切后果由作者本人承担。" + +#: src/supertux/menu/editor_level_select_menu.cpp:179 +msgid "" +"An auto-save recovery file was found. Would you like to restore the recovery\n" +"file and resume where you were before the editor crashed?" +msgstr "已找到自动保存的恢复文件。您想读取恢复文件\n并恢复到编辑器崩溃之前的状态吗?" + +#: src/supertux/menu/editor_level_select_menu.cpp:186 +msgid "This will delete the auto-save file. Are you sure?" +msgstr "这将删除自动保存的文件。您确定吗?" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:35 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:52 +#: src/supertux/menu/cheat_apply_menu.cpp:33 +#: src/supertux/menu/cheat_apply_menu.cpp:51 +msgid "Apply cheat to player" +msgstr "" -#: src/supertux/menu/worldmap_cheat_menu.cpp:34 -#: src/supertux/menu/cheat_menu.cpp:30 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:39 +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:60 +#: src/supertux/menu/multiplayer_players_menu.cpp:39 +#: src/supertux/menu/keyboard_menu.cpp:63 +#: src/supertux/menu/cheat_apply_menu.cpp:39 +#: src/supertux/menu/cheat_apply_menu.cpp:59 +#: src/supertux/menu/multiplayer_player_menu.cpp:37 +#, c++-format +msgid "Player {}" +msgstr "" + +#: src/supertux/menu/worldmap_cheat_apply_menu.cpp:57 +#: src/supertux/menu/cheat_apply_menu.cpp:36 +#: src/supertux/menu/cheat_apply_menu.cpp:56 +msgid "All Players" +msgstr "" + +#: src/supertux/menu/worldmap_cheat_menu.cpp:36 +#: src/supertux/menu/cheat_menu.cpp:31 msgid "Cheats" msgstr "作弊" -#: src/supertux/menu/worldmap_cheat_menu.cpp:36 -#: src/supertux/menu/cheat_menu.cpp:32 +#: src/supertux/menu/worldmap_cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:33 msgid "Bonus: Grow" -msgstr "奖励:变大" +msgstr "奖励:生长" -#: src/supertux/menu/worldmap_cheat_menu.cpp:37 -#: src/supertux/menu/cheat_menu.cpp:33 +#: src/supertux/menu/worldmap_cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:34 msgid "Bonus: Fire" msgstr "奖励:火" -#: src/supertux/menu/worldmap_cheat_menu.cpp:38 -#: src/supertux/menu/cheat_menu.cpp:34 +#: src/supertux/menu/worldmap_cheat_menu.cpp:40 +#: src/supertux/menu/cheat_menu.cpp:35 msgid "Bonus: Ice" msgstr "奖励:冰" -#: src/supertux/menu/worldmap_cheat_menu.cpp:39 -#: src/supertux/menu/cheat_menu.cpp:35 +#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/cheat_menu.cpp:36 msgid "Bonus: Air" msgstr "奖励:空气" -#: src/supertux/menu/worldmap_cheat_menu.cpp:40 -#: src/supertux/menu/cheat_menu.cpp:36 +#: src/supertux/menu/worldmap_cheat_menu.cpp:42 +#: src/supertux/menu/cheat_menu.cpp:37 msgid "Bonus: Earth" -msgstr "奖励:土" +msgstr "奖励:土地" -#: src/supertux/menu/worldmap_cheat_menu.cpp:41 +#: src/supertux/menu/worldmap_cheat_menu.cpp:43 msgid "Bonus: None" msgstr "奖励:空" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:51 msgid "Leave Ghost Mode" msgstr "退出幽灵模式" -#: src/supertux/menu/worldmap_cheat_menu.cpp:44 -#: src/supertux/menu/cheat_menu.cpp:42 +#: src/supertux/menu/worldmap_cheat_menu.cpp:46 +#: src/supertux/menu/cheat_menu.cpp:45 src/supertux/menu/cheat_menu.cpp:50 msgid "Activate Ghost Mode" msgstr "激活幽灵模式" -#: src/supertux/menu/worldmap_cheat_menu.cpp:46 -#: src/supertux/menu/cheat_menu.cpp:40 +#: src/supertux/menu/worldmap_cheat_menu.cpp:48 +#: src/supertux/menu/cheat_menu.cpp:41 msgid "Finish Level" msgstr "完成关卡" -#: src/supertux/menu/worldmap_cheat_menu.cpp:47 +#: src/supertux/menu/worldmap_cheat_menu.cpp:49 msgid "Reset Level" msgstr "重设关卡" -#: src/supertux/menu/worldmap_cheat_menu.cpp:49 +#: src/supertux/menu/worldmap_cheat_menu.cpp:51 msgid "Finish Worldmap" msgstr "完成世界地图" -#: src/supertux/menu/worldmap_cheat_menu.cpp:50 +#: src/supertux/menu/worldmap_cheat_menu.cpp:52 msgid "Reset Worldmap" msgstr "重设世界地图" -#: src/supertux/menu/worldmap_cheat_menu.cpp:52 +#: src/supertux/menu/worldmap_cheat_menu.cpp:54 msgid "Go to level" msgstr "进入关卡" -#: src/supertux/menu/worldmap_cheat_menu.cpp:53 +#: src/supertux/menu/worldmap_cheat_menu.cpp:55 msgid "Go to main spawnpoint" -msgstr "进入主生成点" +msgstr "进入主出生点" -#: src/supertux/menu/worldmap_cheat_menu.cpp:145 +#: src/supertux/menu/worldmap_cheat_menu.cpp:188 msgid "Select level" msgstr "选择关卡" -#: src/supertux/menu/editor_levelset_select_menu.cpp:54 +#: src/supertux/menu/editor_save_as.cpp:33 +#: src/supertux/menu/editor_menu.cpp:63 +msgid "Save Level as" +msgstr "关卡另存为" + +#: src/supertux/menu/editor_save_as.cpp:33 +#: src/supertux/menu/editor_menu.cpp:64 +msgid "Save Copy" +msgstr "保存副本" + +#: src/supertux/menu/editor_levelset_select_menu.cpp:71 msgid "Choose World" msgstr "选择世界" -#: src/supertux/menu/editor_levelset_select_menu.cpp:82 -#, c-format -msgid "%d level" -msgid_plural "%d levels" -msgstr[0] "%d 个关卡" +#: src/supertux/menu/editor_levelset_select_menu.cpp:99 +#, c++-format +msgid "{} level" +msgid_plural "{} levels" +msgstr[0] "" -#: src/supertux/menu/editor_levelset_select_menu.cpp:95 +#: src/supertux/menu/editor_levelset_select_menu.cpp:112 msgid "Create World" -msgstr "新建世界" +msgstr "创建世界" -#: src/supertux/menu/options_menu.cpp:85 src/supertux/menu/main_menu.cpp:53 -#: src/supertux/menu/game_menu.cpp:61 src/supertux/menu/worldmap_menu.cpp:31 -msgid "Options" -msgstr "选项" +#: src/supertux/menu/editor_levelset_select_menu.cpp:113 +#: src/supertux/menu/editor_delete_levelset_menu.cpp:41 +msgid "Delete World" +msgstr "删除世界" -#: src/supertux/menu/options_menu.cpp:91 -#: src/supertux/menu/options_menu.cpp:127 -#: src/supertux/menu/options_menu.cpp:418 -#: src/supertux/menu/options_menu.cpp:439 src/editor/object_settings.cpp:112 -msgid "auto" -msgstr "自动" - -#: src/supertux/menu/options_menu.cpp:206 -msgid "Desktop" -msgstr "桌面" +#: src/supertux/menu/options_menu.cpp:72 +#: src/supertux/menu/options_select_menu.cpp:35 +msgid "Locale" +msgstr "本地化" -#: src/supertux/menu/options_menu.cpp:332 +#: src/supertux/menu/options_menu.cpp:76 msgid "Select Language" msgstr "选择语言" -#: src/supertux/menu/options_menu.cpp:333 +#: src/supertux/menu/options_menu.cpp:77 msgid "Select a different language to display text in" msgstr "使用其他语言来显示文字" -#: src/supertux/menu/options_menu.cpp:335 +#: src/supertux/menu/options_menu.cpp:79 msgid "Language Packs" msgstr "语言包" -#: src/supertux/menu/options_menu.cpp:336 +#: src/supertux/menu/options_menu.cpp:80 msgid "Language packs contain up-to-date translations" msgstr "语言包内有最新的翻译文件" -#: src/supertux/menu/options_menu.cpp:338 -#: src/supertux/menu/profile_menu.cpp:30 -msgid "Select Profile" -msgstr "选择配置文件" - -#: src/supertux/menu/options_menu.cpp:339 -msgid "Select a profile to play with" -msgstr "选择要载入的配置文件" +#: src/supertux/menu/options_menu.cpp:88 +#: src/supertux/menu/options_select_menu.cpp:37 +msgid "Video" +msgstr "视频" -#: src/supertux/menu/options_menu.cpp:342 +#: src/supertux/menu/options_menu.cpp:91 msgid "Window Resizable" -msgstr "窗口调整大小" +msgstr "窗口可调整大小" -#: src/supertux/menu/options_menu.cpp:343 +#: src/supertux/menu/options_menu.cpp:92 msgid "Allow window resizing, might require a restart to take effect" msgstr "允许窗口调整大小,可能需要重启来生效" -#: src/supertux/menu/options_menu.cpp:345 +#: src/supertux/menu/options_menu.cpp:96 +msgid "Fullscreen" +msgstr "全屏" + +#: src/supertux/menu/options_menu.cpp:97 +msgid "Fill the entire screen" +msgstr "填满整个屏幕" + +#: src/supertux/menu/options_menu.cpp:104 +msgid "Fit to browser" +msgstr "适应到浏览器" + +#: src/supertux/menu/options_menu.cpp:105 +msgid "Fit the resolution to the size of your browser" +msgstr "使分辨率适应您的浏览器的大小" + +#: src/supertux/menu/options_menu.cpp:116 +msgid "Change Video System" +msgstr "修改视频系统" + +#: src/supertux/menu/options_menu.cpp:117 +msgid "Change video system used to render graphics" +msgstr "更改用于渲染图形的视频系统" + +#: src/supertux/menu/options_menu.cpp:124 +#: src/supertux/menu/options_select_menu.cpp:38 +msgid "Audio" +msgstr "声音" + +#: src/supertux/menu/options_menu.cpp:129 +msgid "Disable all sound effects" +msgstr "禁用所有音效" + +#: src/supertux/menu/options_menu.cpp:131 +msgid "Disable all music" +msgstr "禁用所有音乐" + +#: src/supertux/menu/options_menu.cpp:138 +msgid "Sound (disabled)" +msgstr "音效(已禁用)" + +#: src/supertux/menu/options_menu.cpp:139 +msgid "Music (disabled)" +msgstr "音乐(已禁用)" + +#: src/supertux/menu/options_menu.cpp:147 +#: src/supertux/menu/options_select_menu.cpp:39 +msgid "Controls" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:151 +msgid "Enable Rumbling Controllers" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "Enable vibrating the game controllers." +msgstr "" + +#: src/supertux/menu/options_menu.cpp:152 +msgid "This feature is currently only used in the multiplayer options menu." +msgstr "" + +#: src/supertux/menu/options_menu.cpp:154 +#: src/supertux/menu/keyboard_menu.cpp:34 +msgid "Setup Keyboard" +msgstr "键盘设置" + +#: src/supertux/menu/options_menu.cpp:155 +msgid "Configure key-action mappings" +msgstr "配置键盘映射" + +#: src/supertux/menu/options_menu.cpp:158 +#: src/supertux/menu/joystick_menu.cpp:54 +msgid "Setup Joystick" +msgstr "游戏杆设置" + +#: src/supertux/menu/options_menu.cpp:159 +msgid "Configure joystick control-action mappings" +msgstr "配置游戏杆映射" + +#: src/supertux/menu/options_menu.cpp:167 +#: src/supertux/menu/options_select_menu.cpp:40 +msgid "Extras" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:170 +#: src/supertux/menu/profile_menu.cpp:56 +msgid "Select Profile" +msgstr "选择配置" + +#: src/supertux/menu/options_menu.cpp:171 +msgid "Select a profile to play with" +msgstr "选择要载入的配置" + +#: src/supertux/menu/options_menu.cpp:174 +msgid "Multiplayer settings" +msgstr "多人游戏设置" + +#: src/supertux/menu/options_menu.cpp:175 +msgid "Configure settings specific to multiplayer" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:178 +msgid "Enable transitions" +msgstr "启用渐变" + +#: src/supertux/menu/options_menu.cpp:179 +msgid "Enable screen transitions and smooth menu animation" +msgstr "启用屏幕渐变和平滑菜单动画" + +#: src/supertux/menu/options_menu.cpp:181 +msgid "Custom title screen levels" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:182 +msgid "Allow overriding the title screen level, when loading certain worlds" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:185 +msgid "Christmas Mode" +msgstr "圣诞模式" + +#: src/supertux/menu/options_menu.cpp:187 +msgid "Integrations and presence" +msgstr "集成和展示" + +#: src/supertux/menu/options_menu.cpp:188 +msgid "" +"Manage whether SuperTux should display the levels you play on your social " +"media profiles (Discord)" +msgstr "管理 SuperTux 是否应在社交媒体(Discord)个人资料中显示您所玩的关卡" + +#: src/supertux/menu/options_menu.cpp:192 +msgid "Customize the appearance of the menus" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:199 +#: src/supertux/menu/options_select_menu.cpp:41 +msgid "Advanced" +msgstr "高级" + +#: src/supertux/menu/options_menu.cpp:204 +msgid "Developer Mode" +msgstr "开发者模式" + +#: src/supertux/menu/options_menu.cpp:206 +msgid "Confirmation Dialog" +msgstr "确认对话框" + +#: src/supertux/menu/options_menu.cpp:206 +msgid "Confirm aborting level" +msgstr "确认退出关卡" + +#: src/supertux/menu/options_menu.cpp:208 +msgid "Pause on focus loss" +msgstr "失去焦点时暂停" + +#: src/supertux/menu/options_menu.cpp:209 +msgid "Automatically pause the game when the window loses focus" +msgstr "当窗口失去焦点时自动暂停游戏" + +#: src/supertux/menu/options_menu.cpp:211 +msgid "Use custom mouse cursor" +msgstr "使用自定义鼠标光标" + +#: src/supertux/menu/options_menu.cpp:211 +msgid "Whether the game renders its own cursor or uses the system's cursor" +msgstr "游戏要渲染自己的光标还是使用系统光标" + +#: src/supertux/menu/options_menu.cpp:214 +msgid "Check for new releases" +msgstr "检查新版本" + +#: src/supertux/menu/options_menu.cpp:215 +msgid "" +"Allows the game to perform checks for new SuperTux releases on startup and " +"notify if any found." +msgstr "" + +#: src/supertux/menu/options_menu.cpp:245 +#: src/supertux/menu/options_menu.cpp:288 src/supertux/direction.cpp:76 +msgid "auto" +msgstr "自动" + +#: src/supertux/menu/options_menu.cpp:281 +msgid "Magnification" +msgstr "放大倍率" + +#: src/supertux/menu/options_menu.cpp:282 +msgid "Change the magnification of the game area" +msgstr "改变游戏区域的放大倍率" + +#: src/supertux/menu/options_menu.cpp:318 +msgid "Aspect Ratio" +msgstr "纵横比" + +#: src/supertux/menu/options_menu.cpp:319 +msgid "Adjust the aspect ratio" +msgstr "调整纵横比" + +#: src/supertux/menu/options_menu.cpp:346 msgid "Window Resolution" msgstr "窗口分辨率" -#: src/supertux/menu/options_menu.cpp:346 +#: src/supertux/menu/options_menu.cpp:347 msgid "Resize the window to the given size" msgstr "将窗口调整至给定的大小" -#: src/supertux/menu/options_menu.cpp:348 -msgid "Fullscreen" -msgstr "全屏" - -#: src/supertux/menu/options_menu.cpp:349 -msgid "Fill the entire screen" -msgstr "填满整个屏幕" +#: src/supertux/menu/options_menu.cpp:377 +msgid "Desktop" +msgstr "桌面" -#: src/supertux/menu/options_menu.cpp:351 +#: src/supertux/menu/options_menu.cpp:404 msgid "Fullscreen Resolution" msgstr "全屏分辨率" -#: src/supertux/menu/options_menu.cpp:352 +#: src/supertux/menu/options_menu.cpp:405 msgid "" "Determine the resolution used in fullscreen mode (you must toggle fullscreen" " to complete the change)" -msgstr "选择全屏模式下的分辨率 (你必须切换全屏来应用更改)" +msgstr "选择全屏模式下的分辨率(您必须开关全屏来应用更改)" -#: src/supertux/menu/options_menu.cpp:354 -msgid "Magnification" -msgstr "放大倍率" +#: src/supertux/menu/options_menu.cpp:411 +msgid "on" +msgstr "开启" -#: src/supertux/menu/options_menu.cpp:355 -msgid "Change the magnification of the game area" -msgstr "改变游戏区域的放大倍率" +#: src/supertux/menu/options_menu.cpp:412 +msgid "off" +msgstr "关闭" + +#: src/supertux/menu/options_menu.cpp:413 +msgid "adaptive" +msgstr "自适应" + +#: src/supertux/menu/options_menu.cpp:431 +msgid "VSync" +msgstr "垂直同步" + +#: src/supertux/menu/options_menu.cpp:432 +msgid "Set the VSync mode" +msgstr "设置垂直同步模式" + +#: src/supertux/menu/options_menu.cpp:467 +msgid "Sound Volume" +msgstr "音效音量" + +#: src/supertux/menu/options_menu.cpp:468 +msgid "Adjust sound volume" +msgstr "调整音效音量" + +#: src/supertux/menu/options_menu.cpp:503 +msgid "Music Volume" +msgstr "音乐音量" + +#: src/supertux/menu/options_menu.cpp:504 +msgid "Adjust music volume" +msgstr "调整音乐音量" + +#: src/supertux/menu/options_menu.cpp:517 +msgid "On-screen controls scale" +msgstr "" + +#: src/supertux/menu/options_menu.cpp:638 +msgid "" +"The game couldn't detect your browser resolution.\n" +"This most likely happens because it is not embedded\n" +"in the SuperTux custom HTML template.\n" +msgstr "游戏无法检测您的浏览器分辨率。\n这很可能是因为它没有嵌入\n到 SuperTux 自定义 HTML 模板中。\n" + +#: src/supertux/menu/editor_delete_levelset_menu.cpp:80 +msgid "You cannot delete the world that you are editing" +msgstr "您不能删除正在编辑的关卡" + +#: src/supertux/menu/editor_delete_levelset_menu.cpp:83 +#, c++-format +msgid "You are about to delete world \"{}\". Are you sure?" +msgstr "您确定删除 \"{}\" 这个世界吗?" + +#: src/supertux/menu/addon_preview_menu.cpp:82 +#, c++-format +msgid "{} \"{}\"" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:87 +msgid "Some information about this add-on is not available." +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:88 +msgid "Perform a \"Check Online\" to try retrieving it." +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:92 +msgid "No author specified." +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:92 +#, c++-format +msgid "Author: {}" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:93 +#, c++-format +msgid "Type: {}" +msgstr "" + +#: src/supertux/menu/addon_preview_menu.cpp:94 +msgid "No license specified." +msgstr "" -#: src/supertux/menu/options_menu.cpp:357 -msgid "VSync" -msgstr "垂直同步" +#: src/supertux/menu/addon_preview_menu.cpp:94 +#, c++-format +msgid "License: {}" +msgstr "" -#: src/supertux/menu/options_menu.cpp:358 -msgid "Set the VSync mode" -msgstr "设置垂直同步模式" +#: src/supertux/menu/addon_preview_menu.cpp:99 +msgid "Dependencies:" +msgstr "" -#: src/supertux/menu/options_menu.cpp:360 -msgid "Aspect Ratio" -msgstr "纵横比" +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Installed" +msgstr "" -#: src/supertux/menu/options_menu.cpp:361 -msgid "Adjust the aspect ratio" -msgstr "保持宽高比" +#: src/supertux/menu/addon_preview_menu.cpp:108 +msgid "Not installed" +msgstr "" -#: src/supertux/menu/options_menu.cpp:366 -msgid "Disable all sound effects" -msgstr "禁用所有音效" +#: src/supertux/menu/addon_preview_menu.cpp:113 +msgid "Not available!" +msgstr "" -#: src/supertux/menu/options_menu.cpp:368 -msgid "Disable all music" -msgstr "禁用所有音乐" +#: src/supertux/menu/addon_preview_menu.cpp:120 +msgid "Description:" +msgstr "" -#: src/supertux/menu/options_menu.cpp:370 -msgid "Sound Volume" -msgstr "音效音量" +#: src/supertux/menu/addon_preview_menu.cpp:123 +msgid "No description available." +msgstr "" -#: src/supertux/menu/options_menu.cpp:371 -msgid "Adjust sound volume" -msgstr "调整音效音量" +#: src/supertux/menu/addon_preview_menu.cpp:147 +msgid "Failed to load all available screenshot previews." +msgstr "" -#: src/supertux/menu/options_menu.cpp:373 -msgid "Music Volume" -msgstr "音乐音量" +#: src/supertux/menu/addon_preview_menu.cpp:152 +msgid "Show screenshots" +msgstr "" -#: src/supertux/menu/options_menu.cpp:374 -msgid "Adjust music volume" -msgstr "调整音乐音量" +#: src/supertux/menu/addon_preview_menu.cpp:165 +msgid "Screenshot previews are disabled for automatic installs." +msgstr "" -#: src/supertux/menu/options_menu.cpp:378 -msgid "Sound (disabled)" -msgstr "音效(已禁用)" +#: src/supertux/menu/addon_preview_menu.cpp:169 +msgid "No screenshot previews available." +msgstr "" -#: src/supertux/menu/options_menu.cpp:379 -msgid "Music (disabled)" -msgstr "音乐(已禁用)" +#: src/supertux/menu/addon_preview_menu.cpp:177 +msgid "Install" +msgstr "安装" -#: src/supertux/menu/options_menu.cpp:382 -#: src/supertux/menu/keyboard_menu.cpp:30 -msgid "Setup Keyboard" -msgstr "键盘设置" +#: src/supertux/menu/addon_preview_menu.cpp:190 +msgid "Uninstall" +msgstr "卸载" -#: src/supertux/menu/options_menu.cpp:383 -msgid "Configure key-action mappings" -msgstr "配置键盘映射" +#: src/supertux/menu/addon_preview_menu.cpp:214 +#, c++-format +msgid "Are you sure you want to uninstall \"{}\"?" +msgstr "您确定卸载 \"{}\" 吗?" -#: src/supertux/menu/options_menu.cpp:385 -#: src/supertux/menu/joystick_menu.cpp:52 -msgid "Setup Joystick" -msgstr "游戏杆设置" +#: src/supertux/menu/addon_preview_menu.cpp:215 +msgid "" +"\n" +"Your progress won't be lost." +msgstr "" -#: src/supertux/menu/options_menu.cpp:386 -msgid "Configure joystick control-action mappings" -msgstr "配置游戏杆映射" +#: src/supertux/menu/addon_preview_menu.cpp:227 +#, c++-format +msgid "" +"NOTE: The add-on \"{}\" is a dependency of {} other installed {}.\n" +"Are you sure you wish to uninstall?" +msgstr "" -#: src/supertux/menu/options_menu.cpp:388 -msgid "Enable transitions" -msgstr "启用翻译" +#: src/supertux/menu/addon_preview_menu.cpp:246 +#, c++-format +msgid "" +"Cannot toggle add-on \"{}\":\n" +"{}" +msgstr "" -#: src/supertux/menu/options_menu.cpp:389 -msgid "Enable screen transitions and smooth menu animation" -msgstr "启用屏幕翻译和平滑菜单动画" +#: src/supertux/menu/addon_preview_menu.cpp:279 +msgid "Fetching screenshot previews..." +msgstr "正在获取截图预览..." -#: src/supertux/menu/options_menu.cpp:393 -msgid "Developer Mode" -msgstr "开发者模式" +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Updating" +msgstr "更新中" -#: src/supertux/menu/options_menu.cpp:398 -msgid "Christmas Mode" -msgstr "圣诞模式" +#: src/supertux/menu/addon_preview_menu.cpp:300 +msgid "Downloading" +msgstr "下载中" -#: src/supertux/menu/options_menu.cpp:401 -msgid "Confirmation Dialog" -msgstr "确认对话框" +#: src/supertux/menu/addon_preview_menu.cpp:328 +msgid "Add-on uninstalled successfully." +msgstr "" -#: src/supertux/menu/options_menu.cpp:401 -msgid "Confirm aborting level" -msgstr "确认退出关卡" +#: src/supertux/menu/addon_preview_menu.cpp:333 +#, c++-format +msgid "" +"Error uninstalling add-on:\n" +"{}" +msgstr "" -#: src/supertux/menu/options_menu.cpp:402 -msgid "Pause on focus loss" -msgstr "失去焦点时暂停" +#: src/supertux/menu/addon_preview_menu.cpp:361 +msgid "" +"Please restart SuperTux\n" +"for these changes to take effect." +msgstr "请重启 SuperTux\n来使这些更改生效。" #: src/supertux/menu/main_menu.cpp:51 src/supertux/menu/world_set_menu.cpp:28 msgid "Start Game" msgstr "开始游戏" -#: src/supertux/menu/main_menu.cpp:52 src/supertux/menu/addon_menu.cpp:122 +#: src/supertux/menu/main_menu.cpp:55 msgid "Add-ons" msgstr "扩展" -#: src/supertux/menu/main_menu.cpp:54 src/supertux/menu/editor_menu.cpp:39 +#: src/supertux/menu/main_menu.cpp:57 src/supertux/menu/web_asset_menu.cpp:38 +msgid "Manage Assets" +msgstr "管理资产" + +#: src/supertux/menu/main_menu.cpp:59 +#: src/supertux/menu/options_select_menu.cpp:29 +#: src/supertux/menu/game_menu.cpp:58 src/supertux/menu/worldmap_menu.cpp:31 +#: src/supertux/menu/editor_menu.cpp:70 +msgid "Options" +msgstr "选项" + +#: src/supertux/menu/main_menu.cpp:60 src/supertux/menu/editor_menu.cpp:58 msgid "Level Editor" msgstr "关卡编辑器" -#: src/supertux/menu/main_menu.cpp:55 +#: src/supertux/menu/main_menu.cpp:61 msgid "Credits" -msgstr "作者" +msgstr "制作人员名单" -#: src/supertux/menu/main_menu.cpp:56 +#: src/supertux/menu/main_menu.cpp:64 msgid "Donate" msgstr "捐赠" -#: src/supertux/menu/main_menu.cpp:57 +#: src/supertux/menu/main_menu.cpp:67 msgid "Quit" msgstr "退出" -#: src/supertux/menu/editor_sector_menu.cpp:35 +#: src/supertux/menu/main_menu.cpp:106 +msgid "" +"This will take you to the SuperTux donation page. Are you sure you want to " +"continue?" +msgstr "这将会带您到 SuperTux 捐赠页面。您确定继续吗?" + +#: src/supertux/menu/editor_sector_menu.cpp:34 +#, c++-format +msgid "Sector {}" +msgstr "" + +#: src/supertux/menu/editor_sector_menu.cpp:37 msgid "Initialization script" -msgstr "初始脚本" +msgstr "初始化脚本" -#: src/supertux/menu/editor_sector_menu.cpp:36 +#: src/supertux/menu/editor_sector_menu.cpp:38 msgid "Gravity" msgstr "重力" -#: src/supertux/menu/editor_sector_menu.cpp:41 +#: src/supertux/menu/editor_sector_menu.cpp:43 msgid "Resize offset X" -msgstr "调整X的偏移量" +msgstr "调整偏移量 X" -#: src/supertux/menu/editor_sector_menu.cpp:42 +#: src/supertux/menu/editor_sector_menu.cpp:44 msgid "Resize offset Y" -msgstr "调整Y的偏移量" +msgstr "调整偏移量 Y" -#: src/supertux/menu/editor_sector_menu.cpp:43 +#: src/supertux/menu/editor_sector_menu.cpp:45 msgid "Resize" msgstr "调整大小" -#: src/supertux/menu/profile_menu.cpp:37 -#, c-format -msgid "[Profile %s]" -msgstr "[配置文件 %s]" +#: src/supertux/menu/profile_menu.cpp:60 +msgid "No profiles found." +msgstr "无任何配置。" + +#: src/supertux/menu/profile_menu.cpp:68 +#: src/supertux/menu/profile_menu.cpp:149 +#: src/supertux/menu/profile_menu.cpp:168 +#, c++-format +msgid "Profile {}" +msgstr "配置 {}" + +#: src/supertux/menu/profile_menu.cpp:69 +#, c++-format +msgid "{} (Profile {})" +msgstr "{} (配置 {})" + +#: src/supertux/menu/profile_menu.cpp:84 +msgid "No profile selected." +msgstr "未选择配置。" + +#: src/supertux/menu/profile_menu.cpp:91 src/supertux/menu/profile_menu.cpp:93 +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Rename" +msgstr "重命名" + +#: src/supertux/menu/profile_menu.cpp:98 +#: src/supertux/menu/profile_menu.cpp:100 +msgid "Reset" +msgstr "重置" + +#: src/supertux/menu/profile_menu.cpp:103 +#: src/supertux/menu/profile_menu.cpp:105 +msgid "Reset all" +msgstr "重置全部" + +#: src/supertux/menu/profile_menu.cpp:113 +#: src/supertux/menu/profile_menu.cpp:115 +msgid "Delete all" +msgstr "删除全部" + +#: src/supertux/menu/profile_menu.cpp:148 +#, c++-format +msgid "" +"This will reset all game progress on the profile \"{}\".\n" +"Are you sure?" +msgstr "这将重置配置 \"{}\" 的所有游戏进度。您确定吗?" + +#: src/supertux/menu/profile_menu.cpp:157 +msgid "This will reset your game progress on all profiles. Are you sure?" +msgstr "这将重置您所有配置文件的游戏进度。您确定吗?" + +#: src/supertux/menu/profile_menu.cpp:167 +#, c++-format +msgid "" +"This will delete the profile \"{}\",\n" +"including all game progress on it. Are you sure?" +msgstr "这将删除配置 \"{}\" 并包括它的游戏进度。您确定吗?" -#: src/supertux/menu/profile_menu.cpp:41 -#, c-format -msgid "Profile %s" -msgstr "配置文件 %s" +#: src/supertux/menu/profile_menu.cpp:178 +msgid "" +"This will delete all profiles, including all game progress on them.\n" +"Are you sure?" +msgstr "这将会删除所有的配置,包括所有的游戏进度。您确定吗?" -#: src/supertux/menu/editor_levelset_menu.cpp:59 +#: src/supertux/menu/editor_levelset_menu.cpp:53 #: src/supertux/menu/editor_new_levelset_menu.cpp:35 msgid "Description" msgstr "描述" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:48 -#: data//images/engine/editor/objects.stoi:332 -msgid "Worldmap" -msgstr "世界地图" +#: src/supertux/menu/editor_levelset_menu.cpp:55 +msgid "Title Screen Level" +msgstr "" -#: src/supertux/menu/editor_levelset_menu.cpp:60 -#: src/supertux/menu/addon_menu.cpp:45 -msgid "Levelset" -msgstr "关卡集" +#: src/supertux/menu/editor_levelset_menu.cpp:56 +msgid "A level to be used for the title screen, after exiting the world." +msgstr "" -#: src/supertux/menu/addon_menu.cpp:51 -msgid "World" -msgstr "世界" +#: src/supertux/menu/multiplayer_players_menu.cpp:46 +msgid "Add Player" +msgstr "添加玩家" -#: src/supertux/menu/addon_menu.cpp:54 -msgid "Add-on" -msgstr "插件" +#: src/supertux/menu/multiplayer_players_menu.cpp:59 +msgid "Remove Last Player" +msgstr "移除最后一个玩家" -#: src/supertux/menu/addon_menu.cpp:60 -msgid "Unknown" -msgstr "未知" +#: src/supertux/menu/multiplayer_players_menu.cpp:62 +msgid "" +"Warning: The player you are trying to\n" +"remove is currently in-game.\n" +"\n" +"Do you wish to remove them anyways?" +msgstr "" + +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Language Packs" +msgstr "已安装的语言包" -#: src/supertux/menu/addon_menu.cpp:71 -#, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" by \"%s\"" +#: src/supertux/menu/addon_menu.cpp:68 +msgid "Installed Add-ons" +msgstr "已安装的扩展" -#: src/supertux/menu/addon_menu.cpp:129 +#: src/supertux/menu/addon_menu.cpp:76 src/supertux/menu/addon_menu.cpp:117 +msgid "No language packs installed" +msgstr "没有安装任何语言包" + +#: src/supertux/menu/addon_menu.cpp:76 msgid "No Add-ons installed" -msgstr "没有已安装的语言包" +msgstr "没有已安装的扩展" -#: src/supertux/menu/addon_menu.cpp:133 -msgid "No Add-ons found" -msgstr "没有找到扩展" +#: src/supertux/menu/addon_menu.cpp:124 +#, c++-format +msgid "{} {}*UPDATE*" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:179 -#, c-format -msgid "Install %s *NEW*" -msgstr "安装 %s *NEW*" +#: src/supertux/menu/addon_menu.cpp:130 +#, c++-format +msgid "{}{}" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:190 -#, c-format -msgid "Install %s" -msgstr "安装 %s" +#: src/supertux/menu/addon_menu.cpp:140 +msgid "No updates available." +msgstr "没有可用的更新。" -#: src/supertux/menu/addon_menu.cpp:199 -msgid "No new Add-ons found" -msgstr "没有找到新的扩展" +#: src/supertux/menu/addon_menu.cpp:144 +#, c++-format +msgid "{} {} available" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:205 -msgid "Check Online (disabled)" -msgstr "在线检查(已禁用)" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "update" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:209 -msgid "Check Online" -msgstr "在线检查" +#: src/supertux/menu/addon_menu.cpp:144 +msgid "updates" +msgstr "" -#: src/supertux/menu/addon_menu.cpp:286 -msgid "Downloading Add-On Repository Index" -msgstr "正在下载扩展源索引" +#: src/supertux/menu/addon_menu.cpp:146 +msgid "Check for updates" +msgstr "检查更新" -#: src/supertux/menu/addon_menu.cpp:301 -#, c-format -msgid "Downloading %s" -msgstr "正在下载 %s" +#: src/supertux/menu/addon_menu.cpp:150 +msgid "Browse language packs" +msgstr "浏览语言包" -#: src/supertux/menu/addon_menu.cpp:348 -msgid "" -"Please restart SuperTux\n" -"for these changes to take effect." -msgstr "请重启 SuperTux\n来使这些更改生效。" +#: src/supertux/menu/addon_menu.cpp:150 +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Add-ons" +msgstr "浏览扩展" + +#: src/supertux/menu/addon_menu.cpp:151 +msgid "Install from file" +msgstr "从文件安装" + +#: src/supertux/menu/addon_menu.cpp:208 +msgid "Checking for updates..." +msgstr "正在检查更新..." #: src/supertux/menu/editor_new_levelset_menu.cpp:31 msgid "New World" @@ -1904,217 +3640,302 @@ msgstr "请输入此关卡子集的名称。" msgid "Story Mode" msgstr "故事模式" -#: src/supertux/menu/game_menu.cpp:31 -msgid "Are you sure?" -msgstr "你确定吗?" +#: src/supertux/menu/addon_browse_menu.cpp:70 +msgid "Browse Language Packs" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:112 +#, c++-format +msgid "Page {}/{}" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new language packs available" +msgstr "" + +#: src/supertux/menu/addon_browse_menu.cpp:124 +msgid "No new Add-ons available" +msgstr "没有新的扩展" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No language packs available" +msgstr "无可用语言包" + +#: src/supertux/menu/addon_browse_menu.cpp:127 +msgid "No Add-ons available" +msgstr "没有可用的扩展" + +#: src/supertux/menu/addon_browse_menu.cpp:135 +#: src/supertux/menu/addon_browse_menu.cpp:139 +msgid "Previous page" +msgstr "上一页" + +#: src/supertux/menu/addon_browse_menu.cpp:143 +#: src/supertux/menu/addon_browse_menu.cpp:147 +msgid "Next page" +msgstr "下一页" + +#: src/supertux/menu/addon_browse_menu.cpp:154 +msgid "Check Online (disabled)" +msgstr "在线检查(已禁用)" + +#: src/supertux/menu/addon_browse_menu.cpp:158 +msgid "Check Online" +msgstr "在线检查" + +#: src/supertux/menu/addon_browse_menu.cpp:195 +msgid "Downloading Add-On Repository Index" +msgstr "正在下载扩展仓库索引" + +#: src/supertux/menu/web_asset_menu.cpp:42 +msgid "New files location" +msgstr "新文件位置" + +#: src/supertux/menu/web_asset_menu.cpp:43 +msgid "Add Files" +msgstr "添加文件" -#: src/supertux/menu/game_menu.cpp:54 src/supertux/menu/worldmap_menu.cpp:30 +#: src/supertux/menu/web_asset_menu.cpp:44 +msgid "Download Files" +msgstr "下载文件" + +#: src/supertux/menu/particle_editor_open.cpp:32 +msgid "Load particle file" +msgstr "打开粒子文件" + +#: src/supertux/menu/particle_editor_open.cpp:39 +msgid "Open" +msgstr "打开" + +#: src/supertux/menu/game_menu.cpp:51 src/supertux/menu/worldmap_menu.cpp:30 msgid "Continue" msgstr "继续" -#: src/supertux/menu/game_menu.cpp:55 +#: src/supertux/menu/game_menu.cpp:52 msgid "Restart Level" msgstr "重新开始关卡" -#: src/supertux/menu/game_menu.cpp:58 +#: src/supertux/menu/game_menu.cpp:55 msgid "Restart from Checkpoint" msgstr "从检查点重新开始" -#: src/supertux/menu/game_menu.cpp:63 +#: src/supertux/menu/game_menu.cpp:60 msgid "Abort Level" msgstr "中止关卡" -#: src/supertux/menu/keyboard_menu.cpp:32 -#: src/supertux/menu/joystick_menu.cpp:69 -msgid "Up" -msgstr "上" +#: src/supertux/menu/game_menu.cpp:76 src/supertux/menu/game_menu.cpp:87 +#: src/supertux/menu/game_menu.cpp:99 +msgid "Are you sure?" +msgstr "您确定吗?" -#: src/supertux/menu/keyboard_menu.cpp:33 -#: src/supertux/menu/joystick_menu.cpp:70 -msgid "Down" -msgstr "下" +#: src/supertux/menu/profile_name_menu.cpp:36 +#, c++-format +msgid "Rename \"{}\"" +msgstr "" -#: src/supertux/menu/keyboard_menu.cpp:34 +#: src/supertux/menu/profile_name_menu.cpp:36 +msgid "Add profile" +msgstr "添加配置" + +#: src/supertux/menu/profile_name_menu.cpp:40 +msgid "Profile names must have a maximum of 20 characters." +msgstr "配置名最多只能 20 个字符。" + +#: src/supertux/menu/profile_name_menu.cpp:42 +msgid "Create" +msgstr "" + +#: src/supertux/menu/profile_name_menu.cpp:56 +msgid "" +"Profile names must have a maximum of 20 characters.\n" +"Please choose a different name." +msgstr "配置名最多只能 20 个字符。\n请使用其他名称。" + +#: src/supertux/menu/profile_name_menu.cpp:77 +msgid "An error occurred while creating the profile." +msgstr "创建配置时发生错误。" + +#: src/supertux/menu/keyboard_menu.cpp:36 #: src/supertux/menu/joystick_menu.cpp:71 -msgid "Left" -msgstr "左" +msgid "Up" +msgstr "上" -#: src/supertux/menu/keyboard_menu.cpp:35 +#: src/supertux/menu/keyboard_menu.cpp:37 #: src/supertux/menu/joystick_menu.cpp:72 -msgid "Right" -msgstr "右" +msgid "Down" +msgstr "下" -#: src/supertux/menu/keyboard_menu.cpp:36 -#: src/supertux/menu/joystick_menu.cpp:73 +#: src/supertux/menu/keyboard_menu.cpp:40 +#: src/supertux/menu/joystick_menu.cpp:75 msgid "Jump" msgstr "跳跃" -#: src/supertux/menu/keyboard_menu.cpp:38 -#: src/supertux/menu/joystick_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:43 +#: src/supertux/menu/joystick_menu.cpp:78 msgid "Peek Left" msgstr "向左看" -#: src/supertux/menu/keyboard_menu.cpp:39 -#: src/supertux/menu/joystick_menu.cpp:77 +#: src/supertux/menu/keyboard_menu.cpp:44 +#: src/supertux/menu/joystick_menu.cpp:79 msgid "Peek Right" msgstr "向右看" -#: src/supertux/menu/keyboard_menu.cpp:40 -#: src/supertux/menu/joystick_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:45 +#: src/supertux/menu/joystick_menu.cpp:80 msgid "Peek Up" msgstr "向上看" -#: src/supertux/menu/keyboard_menu.cpp:41 -#: src/supertux/menu/joystick_menu.cpp:79 +#: src/supertux/menu/keyboard_menu.cpp:46 +#: src/supertux/menu/joystick_menu.cpp:81 msgid "Peek Down" msgstr "向下看" -#: src/supertux/menu/keyboard_menu.cpp:43 -#: src/supertux/menu/joystick_menu.cpp:81 +#: src/supertux/menu/keyboard_menu.cpp:51 +#: src/supertux/menu/joystick_menu.cpp:83 msgid "Console" msgstr "终端" -#: src/supertux/menu/keyboard_menu.cpp:46 -#: src/supertux/menu/joystick_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:52 +#: src/supertux/menu/joystick_menu.cpp:84 msgid "Cheat Menu" msgstr "作弊菜单" -#: src/supertux/menu/keyboard_menu.cpp:47 -#: src/supertux/menu/joystick_menu.cpp:83 +#: src/supertux/menu/keyboard_menu.cpp:53 +#: src/supertux/menu/joystick_menu.cpp:85 msgid "Debug Menu" msgstr "调试菜单" -#: src/supertux/menu/keyboard_menu.cpp:49 -#: src/supertux/menu/joystick_menu.cpp:85 +#: src/supertux/menu/keyboard_menu.cpp:56 +#: src/supertux/menu/joystick_menu.cpp:87 msgid "Jump with Up" -msgstr "上加跳" +msgstr "用上箭头跳跃" -#: src/supertux/menu/keyboard_menu.cpp:62 +#: src/supertux/menu/keyboard_menu.cpp:82 msgid "Up cursor" -msgstr "方向键上" +msgstr "上箭头" -#: src/supertux/menu/keyboard_menu.cpp:64 +#: src/supertux/menu/keyboard_menu.cpp:84 msgid "Down cursor" -msgstr "方向键下" +msgstr "下箭头" -#: src/supertux/menu/keyboard_menu.cpp:66 +#: src/supertux/menu/keyboard_menu.cpp:86 msgid "Left cursor" -msgstr "方向键左" +msgstr "左箭头" -#: src/supertux/menu/keyboard_menu.cpp:68 +#: src/supertux/menu/keyboard_menu.cpp:88 msgid "Right cursor" -msgstr "方向键右" +msgstr "右箭头" -#: src/supertux/menu/keyboard_menu.cpp:70 +#: src/supertux/menu/keyboard_menu.cpp:90 msgid "Return" msgstr "回车" -#: src/supertux/menu/keyboard_menu.cpp:72 +#: src/supertux/menu/keyboard_menu.cpp:92 msgid "Space" msgstr "空格" -#: src/supertux/menu/keyboard_menu.cpp:74 +#: src/supertux/menu/keyboard_menu.cpp:94 msgid "Right Shift" msgstr "右Shift" -#: src/supertux/menu/keyboard_menu.cpp:76 +#: src/supertux/menu/keyboard_menu.cpp:96 msgid "Left Shift" msgstr "左Shift" -#: src/supertux/menu/keyboard_menu.cpp:78 +#: src/supertux/menu/keyboard_menu.cpp:98 msgid "Right Control" msgstr "右Ctrl" -#: src/supertux/menu/keyboard_menu.cpp:80 +#: src/supertux/menu/keyboard_menu.cpp:100 msgid "Left Control" msgstr "左Ctrl" -#: src/supertux/menu/keyboard_menu.cpp:82 +#: src/supertux/menu/keyboard_menu.cpp:102 msgid "Right Alt" msgstr "右Alt" -#: src/supertux/menu/keyboard_menu.cpp:84 +#: src/supertux/menu/keyboard_menu.cpp:104 msgid "Left Alt" msgstr "左Alt" -#: src/supertux/menu/keyboard_menu.cpp:86 +#: src/supertux/menu/keyboard_menu.cpp:106 msgid "Right Command" msgstr "右Command" -#: src/supertux/menu/keyboard_menu.cpp:88 +#: src/supertux/menu/keyboard_menu.cpp:108 msgid "Left Command" msgstr "左Command" -#: src/supertux/menu/keyboard_menu.cpp:102 +#: src/supertux/menu/keyboard_menu.cpp:122 msgid "Press Key" msgstr "请按键" -#: src/supertux/menu/language_menu.cpp:40 +#: src/supertux/menu/language_menu.cpp:43 msgid "Language" msgstr "语言" -#: src/supertux/menu/language_menu.cpp:42 +#: src/supertux/menu/language_menu.cpp:45 msgid "" msgstr "<自动检测>" -#: src/supertux/menu/joystick_menu.cpp:55 +#: src/supertux/menu/joystick_menu.cpp:57 msgid "Manual Configuration" msgstr "手动配置" -#: src/supertux/menu/joystick_menu.cpp:57 +#: src/supertux/menu/joystick_menu.cpp:59 msgid "" "Use manual configuration instead of SDL2's automatic GameController support" msgstr "使用手动配置来替换 SDL2 的自动游戏控制器支持" -#: src/supertux/menu/joystick_menu.cpp:75 +#: src/supertux/menu/joystick_menu.cpp:77 msgid "Pause/Menu" msgstr "暂停/菜单" -#: src/supertux/menu/joystick_menu.cpp:91 +#: src/supertux/menu/joystick_menu.cpp:93 msgid "No Joysticks found" msgstr "找不到游戏杆" -#: src/supertux/menu/joystick_menu.cpp:92 +#: src/supertux/menu/joystick_menu.cpp:94 msgid "Scan for Joysticks" msgstr "扫描游戏杆" -#: src/supertux/menu/joystick_menu.cpp:125 +#: src/supertux/menu/joystick_menu.cpp:127 msgid "Press Button" msgstr "请按按钮" -#: src/supertux/menu/joystick_menu.cpp:162 +#: src/supertux/menu/joystick_menu.cpp:164 msgid "Axis " msgstr "轴" -#: src/supertux/menu/joystick_menu.cpp:165 +#: src/supertux/menu/joystick_menu.cpp:167 msgid "-" msgstr "-" -#: src/supertux/menu/joystick_menu.cpp:167 +#: src/supertux/menu/joystick_menu.cpp:169 msgid "+" msgstr "+" -#: src/supertux/menu/joystick_menu.cpp:174 +#: src/supertux/menu/joystick_menu.cpp:176 msgid "X2" msgstr "X2" -#: src/supertux/menu/joystick_menu.cpp:176 +#: src/supertux/menu/joystick_menu.cpp:178 msgid "Y2" msgstr "Y2" -#: src/supertux/menu/joystick_menu.cpp:189 +#: src/supertux/menu/joystick_menu.cpp:191 msgid "Hat Up" msgstr "Hat Up" -#: src/supertux/menu/joystick_menu.cpp:193 +#: src/supertux/menu/joystick_menu.cpp:195 msgid "Hat Down" msgstr "Hat Down" -#: src/supertux/menu/joystick_menu.cpp:197 +#: src/supertux/menu/joystick_menu.cpp:199 msgid "Hat Left" msgstr "Hat Left" -#: src/supertux/menu/joystick_menu.cpp:201 +#: src/supertux/menu/joystick_menu.cpp:203 msgid "Hat Right" msgstr "Hat Right" @@ -2126,37 +3947,103 @@ msgstr "暂停" msgid "Leave World" msgstr "退出世界" -#: src/supertux/menu/download_dialog.cpp:27 -msgid "Abort Download" -msgstr "取消下载" - #: src/supertux/menu/download_dialog.cpp:42 -msgid "Error:\n" -msgstr "错误:\n" +msgid "Abort Download" +msgstr "中止下载" -#: src/supertux/menu/download_dialog.cpp:96 -msgid "Close" -msgstr "关闭" +#: src/supertux/menu/download_dialog.cpp:59 +#, c++-format +msgid "" +"Error:\n" +"{}" +msgstr "" -#: src/supertux/menu/cheat_menu.cpp:37 +#: src/supertux/menu/cheat_menu.cpp:38 msgid "Bonus: Star" msgstr "奖励:星星" -#: src/supertux/menu/cheat_menu.cpp:38 +#: src/supertux/menu/cheat_menu.cpp:39 msgid "Shrink Tux" msgstr "缩小 Tux" -#: src/supertux/menu/cheat_menu.cpp:39 +#: src/supertux/menu/cheat_menu.cpp:40 msgid "Kill Tux" msgstr "杀死 Tux" +#: src/supertux/menu/cheat_menu.cpp:55 +msgid "Prevent Death" +msgstr "" + +#: src/supertux/menu/addon_file_install_menu.cpp:32 +msgid "Install Add-on from file" +msgstr "" + +#: src/supertux/menu/addon_file_install_menu.cpp:34 +msgid "Drag and drop add-on ZIP archive" +msgstr "" + +#: src/supertux/menu/particle_editor_menu.cpp:32 +msgid "Particle Editor" +msgstr "粒子编辑器" + +#: src/supertux/menu/particle_editor_menu.cpp:36 +#: src/supertux/menu/editor_menu.cpp:60 +msgid "Return to Editor" +msgstr "回到编辑器" + +#: src/supertux/menu/particle_editor_menu.cpp:37 +msgid "New Particle Config" +msgstr "新建粒子配置" + +#: src/supertux/menu/particle_editor_menu.cpp:38 +msgid "Save Particle Config" +msgstr "保存粒子配置" + +#: src/supertux/menu/particle_editor_menu.cpp:39 +msgid "Save Particle Config as..." +msgstr "粒子配置另存为…" + +#: src/supertux/menu/particle_editor_menu.cpp:40 +msgid "Load Another Particle Config" +msgstr "加载另一个粒子配置" + +#: src/supertux/menu/particle_editor_menu.cpp:44 +msgid "Open Particle Directory" +msgstr "打开粒子目录" + +#: src/supertux/menu/particle_editor_menu.cpp:45 +#: src/supertux/menu/editor_menu.cpp:118 +msgid "Keyboard Shortcuts" +msgstr "键盘快捷键" + +#: src/supertux/menu/particle_editor_menu.cpp:49 +msgid "Exit Particle Editor" +msgstr "退出粒子编辑器" + +#: src/supertux/menu/particle_editor_menu.cpp:121 +msgid "" +"Keyboard Shortcuts:\n" +"---------------------\n" +"Esc = Open Menu\n" +"Ctrl+S = Save\n" +"Ctrl+Shift+S = Save as\n" +"Ctrl+O = Open\n" +"Ctrl+Z = Undo\n" +"Ctrl+Y = Redo" +msgstr "键盘快捷键:\n--------------------\nEsc = 打开菜单\nCtrl+S = 保存\nCtrl+Shift+S = 另存为\nCtrl+O = 打开\nCtrl+Z = 撤销\nCtrl+Y = 重做" + +#: src/supertux/menu/particle_editor_menu.cpp:122 +#: src/supertux/menu/editor_menu.cpp:206 +msgid "Got it!" +msgstr "了解!" + #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:70 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Worldmap Settings" msgstr "世界地图设置" #: src/supertux/menu/editor_level_menu.cpp:31 -#: src/supertux/menu/editor_menu.cpp:70 +#: src/supertux/menu/editor_menu.cpp:116 msgid "Level Settings" msgstr "关卡设置" @@ -2164,7 +4051,7 @@ msgstr "关卡设置" msgid "Author" msgstr "作者" -#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1129 +#: src/supertux/menu/editor_level_menu.cpp:35 data//credits.stxt:1253 msgid "Contact" msgstr "联系方式" @@ -2173,114 +4060,160 @@ msgid "License" msgstr "许可证" #: src/supertux/menu/editor_level_menu.cpp:37 +msgid "Level Note" +msgstr "关卡附注" + +#: src/supertux/menu/editor_level_menu.cpp:38 msgid "Tileset" -msgstr "Tile 集" +msgstr "图块集" -#: src/supertux/menu/editor_level_menu.cpp:40 +#: src/supertux/menu/editor_level_menu.cpp:41 msgid "Target Time" msgstr "目标时间" -#: src/supertux/menu/editor_level_menu.cpp:82 +#: src/supertux/menu/editor_level_menu.cpp:83 msgid "Please enter a name for this level." msgstr "请输入此关卡的名字。" -#: src/supertux/menu/editor_level_menu.cpp:86 +#: src/supertux/menu/editor_level_menu.cpp:87 msgid "Please enter a level author for this level." msgstr "请输入此关卡的作者。" -#: src/supertux/menu/editor_level_menu.cpp:90 +#: src/supertux/menu/editor_level_menu.cpp:91 msgid "Please enter a license for this level." msgstr "请输入此关卡的许可证。" -#: src/supertux/menu/editor_menu.cpp:34 -msgid "1/8 tile (4px)" -msgstr "1/0 tile (4px)" - -#: src/supertux/menu/editor_menu.cpp:35 -msgid "1/4 tile (8px)" -msgstr "1/4 tile (8px)" +#: src/supertux/menu/editor_menu.cpp:53 +msgid "tiny tile (4px)" +msgstr "迷你图块(4 像素)" -#: src/supertux/menu/editor_menu.cpp:36 -msgid "1/2 tile (16px)" -msgstr "1/2 tile (16px)" +#: src/supertux/menu/editor_menu.cpp:54 +msgid "small tile (8px)" +msgstr "小图块(8 像素)" -#: src/supertux/menu/editor_menu.cpp:37 -msgid "1 tile (32px)" -msgstr "1 tile (32px)" +#: src/supertux/menu/editor_menu.cpp:55 +msgid "medium tile (16px)" +msgstr "中图块(16 像素)" -#: src/supertux/menu/editor_menu.cpp:41 -msgid "Return to Editor" -msgstr "回到编辑器" +#: src/supertux/menu/editor_menu.cpp:56 +msgid "big tile (32px)" +msgstr "大图块(32 像素)" -#: src/supertux/menu/editor_menu.cpp:42 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Worldmap" msgstr "保存世界地图" -#: src/supertux/menu/editor_menu.cpp:42 +#: src/supertux/menu/editor_menu.cpp:61 msgid "Save Level" msgstr "保存关卡" -#: src/supertux/menu/editor_menu.cpp:45 +#: src/supertux/menu/editor_menu.cpp:65 msgid "Test Level" msgstr "测试关卡" -#: src/supertux/menu/editor_menu.cpp:49 +#: src/supertux/menu/editor_menu.cpp:67 msgid "Test Worldmap" msgstr "测试世界地图" -#: src/supertux/menu/editor_menu.cpp:52 +#: src/supertux/menu/editor_menu.cpp:72 msgid "Share Level" msgstr "分享关卡" -#: src/supertux/menu/editor_menu.cpp:54 +#: src/supertux/menu/editor_menu.cpp:74 +msgid "Package Add-On" +msgstr "打包扩展" + +#: src/supertux/menu/editor_menu.cpp:76 msgid "Open Level Directory" msgstr "打开关卡目录" -#: src/supertux/menu/editor_menu.cpp:57 +#: src/supertux/menu/editor_menu.cpp:79 msgid "Edit Another Level" msgstr "编辑另一个关卡" -#: src/supertux/menu/editor_menu.cpp:60 +#: src/supertux/menu/editor_menu.cpp:81 msgid "Edit Another World" msgstr "编辑另一个世界" -#: src/supertux/menu/editor_menu.cpp:64 +#: src/supertux/menu/editor_menu.cpp:86 +msgid "Convert all tiles in the level using converters." +msgstr "使用转换器转换该关卡所有的图块" + +#: src/supertux/menu/editor_menu.cpp:90 msgid "Grid Size" msgstr "网格大小" -#: src/supertux/menu/editor_menu.cpp:65 +#: src/supertux/menu/editor_menu.cpp:91 msgid "Show Grid" msgstr "显示网格" -#: src/supertux/menu/editor_menu.cpp:66 +#: src/supertux/menu/editor_menu.cpp:92 msgid "Grid Snapping" -msgstr "对齐方格" +msgstr "对齐网格" -#: src/supertux/menu/editor_menu.cpp:67 +#: src/supertux/menu/editor_menu.cpp:93 msgid "Render Background" msgstr "渲染背景" -#: src/supertux/menu/editor_menu.cpp:68 +#: src/supertux/menu/editor_menu.cpp:94 msgid "Render Light" -msgstr "渲染光" +msgstr "渲染光线" -#: src/supertux/menu/editor_menu.cpp:72 -msgid "Keyboard Shortcuts" -msgstr "键盘快捷键" +#: src/supertux/menu/editor_menu.cpp:95 +msgid "Autotile Mode" +msgstr "自动放置图块模式" + +#: src/supertux/menu/editor_menu.cpp:96 +msgid "Enable Autotile Help" +msgstr "启用自动放置图块模式帮助" + +#: src/supertux/menu/editor_menu.cpp:97 +msgid "Enable Object Undo Tracking" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:100 +msgid "Undo Stack Size" +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:102 +msgid "Autosave Frequency" +msgstr "自动保存频率" + +#: src/supertux/menu/editor_menu.cpp:108 +msgid "Check for Deprecated Tiles" +msgstr "检查已废弃的图块" + +#: src/supertux/menu/editor_menu.cpp:109 +msgid "Check if any deprecated tiles are currently present in the level." +msgstr "" + +#: src/supertux/menu/editor_menu.cpp:110 +msgid "Show Deprecated Tiles" +msgstr "显示已废弃的图块" + +#: src/supertux/menu/editor_menu.cpp:111 +msgid "" +"Indicate all deprecated tiles on the active tilemap, without the need of " +"hovering over." +msgstr "" -#: src/supertux/menu/editor_menu.cpp:75 +#: src/supertux/menu/editor_menu.cpp:121 msgid "Exit Level Editor" msgstr "退出关卡编辑器" -#: src/supertux/menu/editor_menu.cpp:122 +#: src/supertux/menu/editor_menu.cpp:170 +msgid "Do you want to package this world as an add-on?" +msgstr "您想要将此世界打包为扩展吗?" + +#: src/supertux/menu/editor_menu.cpp:196 msgid "" "We encourage you to share your levels in the SuperTux forum.\n" "To find your level, click the\n" "\"Open Level directory\" menu item.\n" "Do you want to go to the forum now?" -msgstr "我们鼓励您在 SuperTux 论坛中分享您的关卡啊。\n要找到您的关卡,请点击\n“打开关卡目录”菜单项。\n您现在要访问论坛吗?" +msgstr "我们鼓励您在 SuperTux 论坛中分享您的关卡。\n要找到您的关卡,请点击\n“打开关卡目录”菜单项。\n您现在要访问论坛吗?" -#: src/supertux/menu/editor_menu.cpp:134 +#: src/supertux/menu/editor_menu.cpp:205 msgid "" "Keyboard Shortcuts:\n" "---------------------\n" @@ -2291,560 +4224,920 @@ msgid "" "Ctrl+Y = Redo\n" "F6 = Render Light\n" "F7 = Grid Snapping\n" -"F8 = Show Grid" -msgstr "快捷键\n---------------------\nEsc = 打开菜单\nCtrl+S = 保存\nCtrl+T = 测试\nCtrl+Z = 撤销\nCtrl+Y = 重做\nF6 = 渲染光线\nF7 = 对齐网格\nF8 = 显示网格" +"F8 = Show Grid\n" +"Ctrl++ or Ctrl+Scroll Up = Zoom In\n" +"Ctrl+- or Ctrl+Scroll Down = Zoom Out\n" +"Ctrl+D = Reset Zoom\n" +"\n" +"Scripting Shortcuts:\n" +" ------------- \n" +"Home = Go to beginning of line\n" +"End = Go to end of line\n" +"Left arrow = Go back in text\n" +"Right arrow = Go forward in text\n" +"Backspace = Delete in front of text cursor\n" +"Delete = Delete behind text cursor\n" +"Ctrl+X = Cut whole line\n" +"Ctrl+C = Copy whole line\n" +"Ctrl+V = Paste\n" +"Ctrl+D = Duplicate line\n" +"Ctrl+Z = Undo\n" +"Ctrl+Y = Redo" +msgstr "" -#: src/supertux/menu/editor_menu.cpp:135 -msgid "Got it!" -msgstr "了解!" +#: src/supertux/menu/editor_menu.cpp:232 +msgid "Deprecated tiles are still present in the level." +msgstr "关卡中仍然存在已废弃的图块。" + +#: src/supertux/menu/editor_menu.cpp:239 +msgid "Do you want to show all deprecated tiles on active tilemaps?" +msgstr "" -#: src/supertux/levelintro.cpp:136 -#, c-format -msgid "contributed by %s" -msgstr "由 %s 贡献" +#: src/supertux/menu/editor_menu.cpp:246 +msgid "There are no more deprecated tiles in the level!" +msgstr "关卡中不再有被废弃的图块!" -#: src/supertux/levelintro.cpp:169 +#: src/supertux/menu/multiplayer_player_menu.cpp:40 +msgid "Play with the keyboard" +msgstr "用键盘玩" + +#: src/supertux/menu/multiplayer_player_menu.cpp:58 +msgid "Remove Player" +msgstr "移除玩家" + +#: src/supertux/menu/multiplayer_player_menu.cpp:82 +msgid "Respawn Player" +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:108 +msgid "Spawn Player" +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:136 +msgid "Controllers" +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:152 +msgid "" +"This controller does not support rumbling;\n" +"please check the controllers manually." +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:157 +msgid "" +"This SuperTux build does not support rumbling\n" +"controllers; please check the controllers manually." +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:184 +msgid "" +"This joystick does not support rumbling;\n" +"please check the joysticks manually." +msgstr "" + +#: src/supertux/menu/multiplayer_player_menu.cpp:189 +msgid "" +"This SuperTux build does not support rumbling\n" +"joysticks; please check the joysticks manually." +msgstr "" + +#: src/supertux/menu/editor_delete_level_menu.cpp:59 +msgid "No levels available" +msgstr "没有关卡" + +#: src/supertux/menu/editor_delete_level_menu.cpp:79 +msgid "You cannot delete the level that you are editing!" +msgstr "" + +#: src/supertux/menu/editor_delete_level_menu.cpp:82 +#, c++-format +msgid "You are about to delete level \"{}\". Are you sure?" +msgstr "" + +#: src/supertux/levelintro.cpp:137 +#, c++-format +msgid "contributed by {}" +msgstr "" + +#: src/supertux/levelintro.cpp:184 msgid "Badguys killed" msgstr "杀死的坏人" -#: src/supertux/levelintro.cpp:177 +#: src/supertux/levelintro.cpp:192 msgid "Best time" msgstr "最佳时间" -#: src/supertux/levelintro.cpp:181 +#: src/supertux/levelintro.cpp:196 msgid "Level target time" msgstr "关卡目标时间" -#: src/supertux/tile_set.cpp:92 +#: src/supertux/tile_set.cpp:113 msgid "Others" msgstr "其他" -#: src/supertux/moving_object.cpp:44 +#: src/supertux/direction.cpp:67 +msgid "up" +msgstr "上" + +#: src/supertux/direction.cpp:69 +msgid "down" +msgstr "下" + +#: src/supertux/moving_object.cpp:63 msgid "Region" msgstr "区域" +#: src/supertux/main.cpp:801 +#, c++-format +msgid "New release: SuperTux v{}!" +msgstr "" + +#: src/supertux/main.cpp:804 +#, c++-format +msgid "" +"A new release of SuperTux (v{}) is available!\n" +"For more information, you can visit the SuperTux website.\n" +"\n" +"Do you want to visit the website now?" +msgstr "" + +#: src/supertux/main.cpp:815 +msgid "Checking for new releases..." +msgstr "" + #: src/control/joystick_config.cpp:85 msgid "Joystick Mappings" msgstr "游戏杆映射" -#: src/worldmap/worldmap_parser.cpp:167 +#: src/worldmap/sprite_change.cpp:91 +msgid "Stay action" +msgstr "停留动作" + +#: src/worldmap/sprite_change.cpp:92 +msgid "Initial stay action" +msgstr "初始停留动作" + +#: src/worldmap/sprite_change.cpp:93 +msgid "Stay group" +msgstr "停留组" + +#: src/worldmap/sprite_change.cpp:94 +msgid "Change on touch" +msgstr "触摸时变化" + +#: src/worldmap/special_tile.hpp:36 +msgid "Special Tile" +msgstr "" + +#: src/worldmap/level_tile.hpp:36 src/worldmap/level_tile.cpp:161 +msgid "Level" +msgstr "关卡" + +#: src/worldmap/teleporter.cpp:50 +msgid "Automatic" +msgstr "自动" + +#: src/worldmap/teleporter.cpp:51 +msgid "Target worldmap" +msgstr "目标世界地图" + +#: src/worldmap/sprite_change.hpp:35 +msgid "Sprite Change" +msgstr "贴图变化" + +#: src/worldmap/special_tile.cpp:75 +msgid "Show message" +msgstr "显示信息" + +#: src/worldmap/level_tile.cpp:84 msgid "" msgstr "<无标题>" -#: src/editor/node_marker.cpp:79 +#: src/worldmap/level_tile.cpp:162 +msgid "Outro script" +msgstr "片尾脚本" + +#: src/worldmap/level_tile.cpp:163 +msgid "Auto play" +msgstr "自动开始" + +#: src/worldmap/level_tile.cpp:164 +msgid "Title colour" +msgstr "标题颜色" + +#: src/worldmap/teleporter.hpp:34 +msgid "Teleporter" +msgstr "传送器" + +#: src/editor/tip.cpp:80 +msgid "" +"This object's current functionality is deprecated.\n" +"Updating to get its latest functionality is recommended." +msgstr "" + +#: src/editor/node_marker.cpp:122 msgid "Path Node" msgstr "路径模式" -#: src/editor/object_settings.cpp:112 -msgid "up" -msgstr "上" +#: src/editor/node_marker.cpp:123 +msgid "Press CTRL to move Bezier handles" +msgstr "按 CTRL 键移动贝塞尔曲线手柄" -#: src/editor/object_settings.cpp:112 -msgid "down" -msgstr "下" +#: src/editor/node_marker.cpp:127 +msgid "Easing" +msgstr "调节" -#: src/editor/object_settings.cpp:124 +#: src/editor/object_settings.cpp:129 msgid "West" msgstr "西" -#: src/editor/object_settings.cpp:124 +#: src/editor/object_settings.cpp:129 msgid "East" -msgstr "难" +msgstr "东" -#: src/editor/object_settings.cpp:124 +#: src/editor/object_settings.cpp:129 msgid "North" msgstr "北" -#: src/editor/object_settings.cpp:124 +#: src/editor/object_settings.cpp:129 msgid "South" -msgstr "东" +msgstr "南" -#: src/editor/object_settings.cpp:137 +#: src/editor/object_settings.cpp:142 msgid "One shot" -msgstr "单发" +msgstr "一次性" -#: src/editor/object_settings.cpp:137 +#: src/editor/object_settings.cpp:142 msgid "Ping-pong" msgstr "乒乓" -#: src/editor/object_settings.cpp:137 +#: src/editor/object_settings.cpp:142 msgid "Circular" msgstr "圆" -#: src/editor/object_settings.cpp:137 -msgid "Unordered" -msgstr "无序" +#: src/editor/layers_widget.cpp:331 +#, c++-format +msgid "Sector: {}" +msgstr "" -#: src/editor/object_option.cpp:83 +#: src/editor/object_option.cpp:92 msgid "true" msgstr "真" -#: src/editor/object_option.cpp:83 +#: src/editor/object_option.cpp:92 msgid "false" msgstr "假" -#: src/editor/object_option.cpp:246 src/editor/object_option.cpp:295 +#: src/editor/object_option.cpp:308 src/editor/object_option.cpp:356 msgid "invalid" msgstr "无效的" -#: src/editor/object_option.cpp:553 +#: src/editor/object_option.cpp:665 +msgid "Scale X" +msgstr "" + +#: src/editor/object_option.cpp:666 +msgid "Scale Y" +msgstr "" + +#: src/editor/object_option.cpp:667 +msgid "Offset X" +msgstr "" + +#: src/editor/object_option.cpp:668 +msgid "Offset Y" +msgstr "" + +#: src/editor/object_option.cpp:672 src/editor/object_menu.cpp:67 msgid "Remove" -msgstr "去除" +msgstr "移除" -#: src/editor/worldmap_objects.hpp:56 src/editor/worldmap_objects.cpp:129 -msgid "Level" -msgstr "关卡" +#: src/editor/object_option.cpp:689 +msgid "Test from here" +msgstr "从此处开始测试" -#: src/editor/worldmap_objects.hpp:79 -msgid "Teleporter" -msgstr "传送器" +#: src/editor/object_option.cpp:706 +msgid "Open Particle Editor" +msgstr "打开粒子编辑器" -#: src/editor/worldmap_objects.hpp:119 -msgid "Sprite Change" -msgstr "精灵变化" +#: src/editor/particle_editor.cpp:114 +msgid "Change texture... ->" +msgstr "" + +#: src/editor/particle_editor.cpp:126 +msgid "Max amount" +msgstr "最大数量" + +#: src/editor/particle_editor.cpp:142 +msgid "Spawn anywhere" +msgstr "任何位置出生" + +#: src/editor/particle_editor.cpp:143 +msgid "Life duration" +msgstr "生命持续时间" + +#: src/editor/particle_editor.cpp:148 +msgid "Birth duration" +msgstr "出生持续时间" + +#: src/editor/particle_editor.cpp:153 +msgid "Death duration" +msgstr "死亡持续时间" + +#: src/editor/particle_editor.cpp:160 +msgid "Grow" +msgstr "生长" + +#: src/editor/particle_editor.cpp:175 +msgid "Horizontal speed" +msgstr "水平速度" + +#: src/editor/particle_editor.cpp:180 +msgid "Vertical speed" +msgstr "垂直速度" + +#: src/editor/particle_editor.cpp:185 +msgid "Horizontal acceleration" +msgstr "水平加速度" + +#: src/editor/particle_editor.cpp:186 +msgid "Vertical acceleration" +msgstr "垂直加速度" + +#: src/editor/particle_editor.cpp:187 +msgid "Horizontal friction" +msgstr "水平摩擦力" + +#: src/editor/particle_editor.cpp:188 +msgid "Vertical friction" +msgstr "垂直摩擦力" + +#: src/editor/particle_editor.cpp:190 +msgid "Initial rotation" +msgstr "初始旋转" + +#: src/editor/particle_editor.cpp:201 +msgid "Rotation friction/decceleration" +msgstr "旋转摩擦力/减速度" + +#: src/editor/particle_editor.cpp:211 +msgid "Destroy" +msgstr "摧毁" + +#: src/editor/particle_editor.cpp:215 +msgid "Stick to surface" +msgstr "粘附到表面" + +#: src/editor/particle_editor.cpp:216 +msgid "Stick and stay" +msgstr "粘附并停留" + +#: src/editor/particle_editor.cpp:217 +msgid "No collision" +msgstr "无碰撞" + +#: src/editor/particle_editor.cpp:222 +msgid "Always destroy" +msgstr "总是摧毁" + +#: src/editor/particle_editor.cpp:226 +msgid "Offscreen mode" +msgstr "离屏模式" + +#: src/editor/particle_editor.cpp:229 +msgid "Clear" +msgstr "" + +#: src/editor/particle_editor.cpp:245 +msgid "<- General settings" +msgstr "" + +#: src/editor/particle_editor.cpp:255 +msgid "Likeliness" +msgstr "" + +#: src/editor/particle_editor.cpp:266 +msgid "Color (RGBA)" +msgstr "" + +#: src/editor/particle_editor.cpp:311 +msgid "Scale (x, y)" +msgstr "" + +#: src/editor/particle_editor.cpp:332 +msgid "Hitbox scale (x, y)" +msgstr "" + +#: src/editor/particle_editor.cpp:353 +msgid "Hitbox offset relative to scale" +msgstr "" + +#: src/editor/particle_editor.cpp:372 +msgid "Change texture..." +msgstr "" + +#: src/editor/particle_editor.cpp:766 +msgid "" +"This particle configuration contains unsaved changes,\n" +"do you want to save?" +msgstr "该粒子配置包含未保存的更改,\n您想保存吗?" + +#: src/editor/particle_editor.cpp:774 +msgid "Save as" +msgstr "另存为" -#: src/editor/worldmap_objects.hpp:140 -msgid "Special tile" -msgstr "特殊 tile" +#: src/editor/editor.cpp:577 +msgid "" +"This level contains deprecated tiles.\n" +"It is strongly recommended to replace all deprecated tiles\n" +"to avoid loss of compatibility in future versions." +msgstr "该关卡包含已废弃的图片。\n强烈建议替换掉所有已废弃的图块,以避免在未来版本中失去兼容性。" + +#: src/editor/editor.cpp:579 +msgid "Tip: Turn on \"Show Deprecated Tiles\" from the level editor menu." +msgstr "提示:从关卡编辑菜单中打开“显示已废弃的图块”。" + +#: src/editor/editor.cpp:626 +msgid "" +"Don't forget that your levels and assets\n" +"aren't saved between sessions!\n" +"If you want to keep your levels, download them\n" +"from the \"Manage Assets\" menu." +msgstr "不要忘了,您的关卡和资产\n在会话关闭后不会保存!\n如果您想保留您的关卡,\n请从“管理资产”菜单下载它们。" -#: src/editor/editor.cpp:477 +#: src/editor/editor.cpp:661 msgid "This level contains unsaved changes, do you want to save?" msgstr "此关卡包含未保存的更改,您要保存吗?" -#: src/editor/editor.cpp:517 +#: src/editor/editor.cpp:662 +msgid "This level may contain unsaved changes, do you want to save?" +msgstr "该关卡可能包含未保存的改动,您想保存吗?" + +#: src/editor/editor.cpp:797 msgid "" "Some obsolete add-ons are still active\n" "and might cause collisions with default Super Tux structure.\n" "You can still enable these add-ons in the menu.\n" "Disabling these add-ons will not delete your game progress." -msgstr "某些过时的加载项仍处于活动状态\n并可能导致与默认Super Tux结构发生冲突。\n您仍然可以在菜单中启用这些加载项。\n禁用这些加载项不会删除您的游戏进度" +msgstr "某些过时的扩展仍处于活动状态\n并可能导致与默认 Super Tux 结构发生冲突。\n您仍然可以在菜单中启用这些扩展。\n禁用这些扩展不会删除您的游戏进度。" -#: src/editor/editor.cpp:520 +#: src/editor/editor.cpp:800 msgid "Disable add-ons" msgstr "禁用扩展" -#: src/editor/editor.cpp:525 +#: src/editor/editor.cpp:805 msgid "Ignore (not advised)" msgstr "忽略(不推荐)" -#: src/editor/editor.cpp:529 +#: src/editor/editor.cpp:809 msgid "Leave editor" msgstr "离开编辑器" -#: src/editor/editor.cpp:740 +#: src/editor/editor.cpp:1023 msgid "" "Couldn't find a \"main\" sector.\n" "Please change the name of the sector where\n" "you'd like the player to start to \"main\"" -msgstr "找不到 \"main\" sector。\n请更改 sector 的名称为您希望玩家开始的 \"main\"" +msgstr "找不到“main”区块。\n请将您希望玩家从此处开始\n的区块的名称更改为“main”" -#: src/editor/editor.cpp:744 +#: src/editor/editor.cpp:1027 msgid "" "Couldn't find a \"main\" spawnpoint.\n" " Please change the name of the spawnpoint where\n" "you'd like the player to start to \"main\"" -msgstr "找不到 \"main\" 生成点。\n请在以下位置更改派生点的名称为您希望玩家开始 \"main\"" - -#: src/editor/worldmap_objects.cpp:130 -msgid "Outro script" -msgstr "Outro 脚本" - -#: src/editor/worldmap_objects.cpp:131 -msgid "Auto play" -msgstr "自动开始" +msgstr "找不到“main”出生点。\n请将您希望玩家从此处开始\n的出生点的名称更改为“main”" -#: src/editor/worldmap_objects.cpp:133 -msgid "Title colour" -msgstr "标题颜色" +#: src/editor/object_menu.cpp:60 +msgid "Patch Notes" +msgstr "" -#: src/editor/worldmap_objects.cpp:175 -msgid "Automatic" -msgstr "自动化" +#: src/editor/object_menu.cpp:84 +msgid "" +"This will update the object to its latest functionality.\n" +"Check the \"Patch Notes\" for more information.\n" +"\n" +"Keep in mind this is very likely to break the proper behaviour of the object.\n" +"Make sure to re-check any behaviour, related to the object." +msgstr "" -#: src/editor/worldmap_objects.cpp:177 -msgid "Target worldmap" -msgstr "目标世界地图" +#: src/editor/object_menu.cpp:98 +#, c++-format +msgid "Patch notes for v{}:" +msgstr "" -#: src/editor/worldmap_objects.cpp:240 -msgid "Stay action" -msgstr "停滞脚本" +#: src/editor/overlay_widget.cpp:1062 +msgid "Cannot select deprecated tiles" +msgstr "无法选择已废弃的图块" -#: src/editor/worldmap_objects.cpp:241 -msgid "Initial stay action" -msgstr "初始停留动作" +#: src/editor/overlay_widget.cpp:1567 +msgid "Autotile mode is on" +msgstr "自动放置图块模式已启用" -#: src/editor/worldmap_objects.cpp:242 -msgid "Stay group" -msgstr "停滞组" +#: src/editor/overlay_widget.cpp:1571 +msgid "Hold Ctrl to enable autotile" +msgstr "按住 Ctrl 来启用自动放置图块" -#: src/editor/worldmap_objects.cpp:243 -msgid "Change on touch" -msgstr "触摸时变化" +#: src/editor/overlay_widget.cpp:1578 +msgid "Autotile erasing mode is on" +msgstr "自动擦除图块模式已启用" -#: src/editor/worldmap_objects.cpp:273 -msgid "Show message" -msgstr "显示信息" +#: src/editor/overlay_widget.cpp:1582 +msgid "Selected tile isn't autotileable" +msgstr "选择的图块无法被自动放置" -#: src/editor/worldmap_objects.cpp:275 -msgid "Invisible" -msgstr "不可见" +#: src/editor/overlay_widget.cpp:1587 +msgid "Hold Ctrl to enable autotile erasing" +msgstr "按住 Ctrl 来启用自动擦除图块" #: data//credits.stxt:25 msgid "Current SuperTux Team" msgstr "现任 SuperTux 团队" #: data//credits.stxt:30 -msgid "Programming, project lead ad interim" -msgstr "编程,临时项目负责人" +msgid "Maintainer, Programming" +msgstr "" #: data//credits.stxt:35 msgid "Graphics, Level Design, Story" msgstr "图形,关卡设计,故事" #: data//credits.stxt:40 -msgid "Graphics, Story, Optimisation" -msgstr "图形,故事,优化" +msgid "Level Design, Story, Optimisation, Coordination" +msgstr "关卡设计,故事,优化,协调" -#: data//credits.stxt:45 data//credits.stxt:100 data//credits.stxt:186 -#: data//credits.stxt:498 +#: data//credits.stxt:45 data//credits.stxt:120 data//credits.stxt:206 +#: data//credits.stxt:538 msgid "Graphics" msgstr "图形" -#: data//credits.stxt:50 data//credits.stxt:60 data//credits.stxt:82 -#: data//credits.stxt:88 +#: data//credits.stxt:50 data//credits.stxt:102 data//credits.stxt:108 msgid "Graphics, Programming, Level Design" msgstr "图形,编程,关卡设计" #: data//credits.stxt:55 +msgid "Features and Programming" +msgstr "功能和编程" + +#: data//credits.stxt:60 +msgid "Minor features and programming" +msgstr "小功能和编程" + +#: data//credits.stxt:65 +msgid "Programming, Level Updates" +msgstr "编程,关卡更新" + +#: data//credits.stxt:70 msgid "Graphics, Programming" msgstr "图形,编程" -#: data//credits.stxt:65 data//credits.stxt:130 data//credits.stxt:135 -#: data//credits.stxt:140 data//credits.stxt:145 data//credits.stxt:160 -#: data//credits.stxt:165 data//credits.stxt:494 data//credits.stxt:506 +#: data//credits.stxt:75 data//credits.stxt:85 data//credits.stxt:150 +#: data//credits.stxt:155 data//credits.stxt:160 data//credits.stxt:165 +#: data//credits.stxt:180 data//credits.stxt:185 data//credits.stxt:534 +#: data//credits.stxt:546 msgid "Programming" msgstr "程序设计" -#: data//credits.stxt:71 +#: data//credits.stxt:80 data//credits.stxt:266 +msgid "Level Design" +msgstr "关卡设计" + +#: data//credits.stxt:91 msgid "Original Developers" msgstr "原始开发人员" -#: data//credits.stxt:76 +#: data//credits.stxt:96 msgid "Original Developer" msgstr "原始开发人员" -#: data//credits.stxt:94 +#: data//credits.stxt:114 msgid "Music, Level Design" msgstr "音乐,关卡设计" -#: data//credits.stxt:106 +#: data//credits.stxt:126 msgid "Programming, Graphics, Level Design" msgstr "编程,图形,关卡设计" -#: data//credits.stxt:112 +#: data//credits.stxt:132 msgid "Programming, Level Design" msgstr "编程,关卡设计" -#: data//credits.stxt:118 +#: data//credits.stxt:138 msgid "Graphics, Story" msgstr "图形,故事" -#: data//credits.stxt:124 +#: data//credits.stxt:144 msgid "Programming, Documentation" msgstr "图形,文档" -#: data//credits.stxt:150 +#: data//credits.stxt:170 msgid "Coordination" msgstr "协作" -#: data//credits.stxt:155 +#: data//credits.stxt:175 msgid "Programming, \"Flexlay\" Level editor" -msgstr "编程, \"Flexlay\" 关卡编辑器" +msgstr "编程,“Flexlay”关卡编辑器" -#: data//credits.stxt:170 +#: data//credits.stxt:190 msgid "Windows build fixes" msgstr "Windows 版本修复" -#: data//credits.stxt:175 +#: data//credits.stxt:195 msgid "Packaging, Nightly builds" -msgstr "包装,每夜构建" +msgstr "打包,每夜构建" -#: data//credits.stxt:180 +#: data//credits.stxt:200 msgid "Translation Guru (and many details anyone else could have done)" msgstr "翻译大师(还有其他人可能做过的许多细节)" -#: data//credits.stxt:240 -msgid "Level Design" -msgstr "关卡设计" - -#: data//credits.stxt:414 +#: data//credits.stxt:450 msgid "Additional contributors" msgstr "其他贡献者" -#: data//credits.stxt:419 +#: data//credits.stxt:455 msgid "Bug fixes" msgstr "Bug 修复" -#: data//credits.stxt:423 +#: data//credits.stxt:459 msgid "Scripting functions, Level fixes" msgstr "脚本功能,关卡修复" -#: data//credits.stxt:427 +#: data//credits.stxt:463 msgid "Code quality fixes" msgstr "代码质量修复" -#: data//credits.stxt:431 data//credits.stxt:435 data//credits.stxt:439 -#: data//credits.stxt:466 +#: data//credits.stxt:467 data//credits.stxt:471 data//credits.stxt:475 +#: data//credits.stxt:502 msgid "Various contributions" msgstr "各种贡献" -#: data//credits.stxt:443 +#: data//credits.stxt:479 msgid "Build issue fix" -msgstr "修复问题" +msgstr "编译问题修复" -#: data//credits.stxt:447 data//credits.stxt:451 +#: data//credits.stxt:483 data//credits.stxt:487 msgid "Code contributions" msgstr "代码贡献" -#: data//credits.stxt:454 +#: data//credits.stxt:490 msgid "Code contribution, AppData file" msgstr "代码贡献,AppData 文件" -#: data//credits.stxt:458 +#: data//credits.stxt:494 msgid "Bug fix" msgstr "Bug 修复" -#: data//credits.stxt:462 +#: data//credits.stxt:498 msgid "Menu reorganization" msgstr "菜单重组" -#: data//credits.stxt:470 +#: data//credits.stxt:506 msgid "Fixing tile bugs" -msgstr "修复 tile 漏洞" +msgstr "修复图块 Bug" -#: data//credits.stxt:474 +#: data//credits.stxt:510 msgid "Build error fix" -msgstr "构建错误修复" +msgstr "编译错误修复" -#: data//credits.stxt:478 +#: data//credits.stxt:514 msgid "Scripting function fix" msgstr "脚本功能修复" -#: data//credits.stxt:482 +#: data//credits.stxt:518 +msgid "New features and notable updates" +msgstr "新功能和重要的更新" + +#: data//credits.stxt:522 msgid "Support for \"glbinding\" as optional OpenGL binding" -msgstr "支持 \"glbinding\" 作为可选的 OpenGL 绑定" +msgstr "支持“glbinding”作为可选的 OpenGL 绑定" -#: data//credits.stxt:486 +#: data//credits.stxt:526 msgid "New menu code" msgstr "新菜单代码" -#: data//credits.stxt:490 +#: data//credits.stxt:530 msgid "Big Tux Walking Sprites improvements" -msgstr "大 Tux 行走精灵改进" +msgstr "大 Tux 行走贴图改进" -#: data//credits.stxt:502 data//credits.stxt:510 +#: data//credits.stxt:542 data//credits.stxt:550 msgid "Contrib Programming" msgstr "贡献编程" -#: data//credits.stxt:514 +#: data//credits.stxt:554 msgid "Programming, Previous Maintainer" msgstr "编程,以前的维护者" -#: data//credits.stxt:518 +#: data//credits.stxt:558 msgid "Various Contributions" msgstr "各种贡献" -#: data//credits.stxt:522 data//credits.stxt:526 data//credits.stxt:530 -#: data//credits.stxt:534 data//credits.stxt:538 data//credits.stxt:542 -#: data//credits.stxt:546 data//credits.stxt:550 data//credits.stxt:554 +#: data//credits.stxt:562 data//credits.stxt:566 data//credits.stxt:570 +#: data//credits.stxt:574 data//credits.stxt:578 data//credits.stxt:582 +#: data//credits.stxt:586 data//credits.stxt:590 data//credits.stxt:594 +#: data//credits.stxt:598 data//credits.stxt:602 data//credits.stxt:606 +#: data//credits.stxt:610 data//credits.stxt:614 data//credits.stxt:618 +#: data//credits.stxt:622 data//credits.stxt:626 data//credits.stxt:630 +#: data//credits.stxt:634 data//credits.stxt:638 data//credits.stxt:642 +#: data//credits.stxt:646 data//credits.stxt:650 data//credits.stxt:654 +#: data//credits.stxt:658 data//credits.stxt:662 msgid "Contributions" msgstr "贡献" -#: data//credits.stxt:560 +#: data//credits.stxt:668 msgid "Localization" msgstr "本地化" -#: data//credits.stxt:1107 +#: data//credits.stxt:1231 msgid " Special Thanks to" msgstr " 特别感谢" -#: data//credits.stxt:1112 +#: data//credits.stxt:1236 msgid "Creator of Tux, the Linux penguin" -msgstr "Tux, the Linux penguin 的制作者" +msgstr "Tux(Linux 企鹅)的创造者" -#: data//credits.stxt:1116 +#: data//credits.stxt:1240 msgid "SDL, OpenAL and OpenGL" -msgstr "SDL, OpenAL 和 OpenGL" +msgstr "SDL,OpenAL 和 OpenGL" -#: data//credits.stxt:1117 +#: data//credits.stxt:1241 msgid "" "For making such a great gaming experience\n" " possible on Linux" -msgstr "带来如此出色的游戏体验\n 在Linux上可能" +msgstr "使得如此出色的游戏体验\n 在 Linux 上成为可能" -#: data//credits.stxt:1122 +#: data//credits.stxt:1246 msgid "and you, the player" msgstr "还有你,玩家" -#: data//credits.stxt:1123 +#: data//credits.stxt:1247 msgid "for giving this game a chance and playing it" -msgstr "给这个游戏带来游玩的机会" +msgstr "感谢你给这个游戏一个机会并游玩它" -#: data//credits.stxt:1134 +#: data//credits.stxt:1258 msgid "Visit our webpage at" msgstr "访问我们的网页" -#: data//credits.stxt:1143 +#: data//credits.stxt:1267 msgid "Or visit us directly at IRC:" -msgstr "或直接在 IRC 拜访我们:" +msgstr "或直接在 IRC 拜访我们:" -#: data//credits.stxt:1147 -msgid "#supertux at webchat.freenode.net" -msgstr "#supertux 在 webchat.freenode.net" +#: data//credits.stxt:1271 +msgid "#supertux at web.libera.chat" +msgstr "#supertux at web.libera.chat" -#: data//credits.stxt:1152 +#: data//credits.stxt:1276 msgid "Or at our Forum:" -msgstr "或者我们的论坛:" +msgstr "或者我们的论坛:" -#: data//credits.stxt:1161 +#: data//credits.stxt:1285 msgid "Comments, ideas and suggestions" msgstr "评论,想法和建议" -#: data//credits.stxt:1165 +#: data//credits.stxt:1289 msgid "go to our mailing list" -msgstr "访问我们的邮件列表" +msgstr "请发到我们的邮件列表" #. l10n: typo contact -#: data//credits.stxt:1175 +#: data//credits.stxt:1299 msgid "Typographical errors can be" -msgstr "错误可以" +msgstr "打字错误可以" #. l10n: typo contact -#: data//credits.stxt:1180 +#: data//credits.stxt:1304 msgid "reported to" msgstr "报告给" #. l10n: typo contact, see -#: data//credits.stxt:1185 +#: data//credits.stxt:1309 msgid "supertux-devel@lists.lethargik.org" msgstr "supertux-devel@lists.lethargik.org" -#: data//credits.stxt:1192 +#: data//credits.stxt:1316 msgid "Want to help…" -msgstr "需要帮助…" +msgstr "想要帮忙…" -#: data//credits.stxt:1197 +#: data//credits.stxt:1321 msgid "…with localization?" -msgstr "…本地化相关?" +msgstr "…进行本地化?" -#: data//credits.stxt:1207 +#: data//credits.stxt:1331 msgid "…with something else?" -msgstr "…和其他东西有关?" +msgstr "…做点别的事?" -#: data//credits.stxt:1218 +#: data//credits.stxt:1342 msgid "Thank you for" msgstr "感谢您的" -#: data//credits.stxt:1222 +#: data//credits.stxt:1346 msgid "playing" msgstr "游玩" -#: data//credits.stxt:1232 +#: data//credits.stxt:1356 msgid "Penny awaits you in warmer temperatures!" -msgstr "Penny awaits you in warmer temperatures!" +msgstr "Penny 在更温暖的天气里等着你!" -#: data//images/engine/editor/objects.stoi:156 +#: data//images/engine/editor/objects.stoi:4 +msgid "Enemies" +msgstr "敌人" + +#: data//images/engine/editor/objects.stoi:162 msgid "Bosses" -msgstr "最终 BOSS" +msgstr "BOSS" -#: data//images/engine/editor/objects.stoi:167 +#: data//images/engine/editor/objects.stoi:173 msgid "Projectiles" msgstr "发射物" -#: data//images/engine/editor/objects.stoi:181 +#: data//images/engine/editor/objects.stoi:184 msgid "Environment" msgstr "环境" -#: data//images/ice_world.strf:6 data//images/tiles.strf:327 -#: data//images/worldmap.strf:67 -msgid "Forest" -msgstr "森林" - -#: data//images/ice_world.strf:106 +#: data//images/ice_world.strf:80 msgid "Ice Cave & Crystal" msgstr "冰洞和水晶" -#: data//images/ice_world.strf:153 +#: data//images/ice_world.strf:127 msgid "Embellishments" -msgstr "点缀" +msgstr "装饰品" -#: data//images/ice_world.strf:237 -msgid "Ice" -msgstr "冰" +#: data//images/ice_world.strf:320 +msgid "Underground Forest" +msgstr "地下森林" -#: data//images/ice_world.strf:282 data//images/tiles.strf:693 -msgid "Castle" -msgstr "城堡" +#: data//images/ice_world.strf:375 +msgid "Trees & Bushes" +msgstr "树木和灌木丛" + +#: data//images/ice_world.strf:406 +msgid "Seasonal" +msgstr "季节" + +#: data//images/ice_world.strf:496 +msgid "Structure" +msgstr "结构" -#: data//images/ice_world.strf:328 +#: data//images/ice_world.strf:557 msgid "Pathing" msgstr "路径" -#: data//images/ice_world.strf:424 +#: data//images/ice_world.strf:718 msgid "Water" msgstr "水" -#: data//images/tiles.strf:19 data//images/worldmap.strf:41 -msgid "Snow" -msgstr "雪" - -#: data//images/tiles.strf:124 +#: data//images/tiles.strf:252 msgid "Snow Background" msgstr "雪背景" -#: data//images/tiles.strf:162 -msgid "Snow Mountain" -msgstr "显示山" - -#: data//images/tiles.strf:236 +#: data//images/tiles.strf:300 msgid "Crystal" msgstr "水晶" -#: data//images/tiles.strf:457 +#: data//images/tiles.strf:539 msgid "Forest Background" msgstr "森林背景" -#: data//images/tiles.strf:572 +#: data//images/tiles.strf:690 +msgid "Corrupted Forest" +msgstr "" + +#: data//images/tiles.strf:868 +msgid "Corrupted Background" +msgstr "" + +#: data//images/tiles.strf:991 msgid "Block + Bonus" msgstr "方块 + 奖励" -#: data//images/tiles.strf:618 +#: data//images/tiles.strf:1069 msgid "Pole + Signs" -msgstr "极点 + 标志" +msgstr "杆子 + 标志" -#: data//images/tiles.strf:661 +#: data//images/tiles.strf:1113 msgid "Liquid" msgstr "流体" -#: data//images/tiles.strf:833 data//images/worldmap.strf:199 +#: data//images/tiles.strf:1131 +msgid "Castle" +msgstr "城堡" + +#: data//images/tiles.strf:1231 data//images/worldmap.strf:199 msgid "Halloween" msgstr "万圣节" -#: data//images/tiles.strf:861 +#: data//images/tiles.strf:1272 msgid "Industrial" -msgstr "产业" +msgstr "工业" -#: data//images/tiles.strf:876 +#: data//images/tiles.strf:1287 msgid "Unisolid + Lightmap" -msgstr "Unisolid + 光照贴图" +msgstr "单向固体 + 光照地图" -#: data//images/tiles.strf:893 +#: data//images/tiles.strf:1314 msgid "Miscellaneous" msgstr "杂项" -#: data//images/tiles.strf:927 -msgid "Old/Unused" -msgstr "旧/未使用" +#: data//images/tiles.strf:1342 +msgid "Retro Tiles" +msgstr "" #: data//images/worldmap.strf:24 msgid "Water paths" @@ -2857,3 +5150,19 @@ msgstr "城堡小径" #: data//images/worldmap.strf:135 msgid "Darker Forest" msgstr "黑暗森林" + +#: data//images/converters/data.stcd:3 +msgid "Nightly Tiles" +msgstr "" + +#: data//images/converters/data.stcd:5 +msgid "For levels, created in previous Nightly builds." +msgstr "" + +#: data//images/converters/data.stcd:8 +msgid "Pre-0.6.3 Crystal Tiles" +msgstr "" + +#: data//images/converters/data.stcd:10 +msgid "For levels, created in pre-0.6.3 versions, which use crystal tiles." +msgstr "" diff --git a/data/locale/zh_TW.po b/data/locale/zh_TW.po index 2cd923f4e47..71f1ed68acb 100644 --- a/data/locale/zh_TW.po +++ b/data/locale/zh_TW.po @@ -1064,8 +1064,8 @@ msgstr "" #: src/supertux/command_line_arguments.cpp:79 #, c-format -msgid "Usage: %s [OPTIONS] [LEVELFILE]" -msgstr "用法: %s [OPTIONS] [LEVELFILE]" +msgid "Usage: {} [OPTIONS] [LEVELFILE]" +msgstr "用法: {} [OPTIONS] [LEVELFILE]" #: src/supertux/command_line_arguments.cpp:80 msgid "General Options:" @@ -1237,8 +1237,8 @@ msgstr "" #: src/supertux/levelintro.cpp:120 #, c-format -msgid "contributed by %s" -msgstr "貢獻者:%s" +msgid "contributed by {}" +msgstr "貢獻者:{}" #: src/supertux/levelintro.cpp:141 src/supertux/statistics.cpp:119 msgid "Best Level Statistics" @@ -1278,8 +1278,8 @@ msgstr "世界 " #: src/supertux/menu/addon_menu.cpp:83 #, c-format -msgid "%s \"%s\" by \"%s\"" -msgstr "%s \"%s\" 由 \"%s\" 設計" +msgid "{} \"{}\" by \"{}\"" +msgstr "{} \"{}\" 由 \"{}\" 設計" #: src/supertux/menu/addon_menu.cpp:139 msgid "Language packs" @@ -1315,13 +1315,13 @@ msgstr "沒有找到附加元件" #: src/supertux/menu/addon_menu.cpp:224 #, c-format -msgid "Install %s *NEW*" -msgstr "安裝 %s *新*" +msgid "Install {} *NEW*" +msgstr "安裝 {} *新*" #: src/supertux/menu/addon_menu.cpp:235 #, c-format -msgid "Install %s" -msgstr "安裝 %s" +msgid "Install {}" +msgstr "安裝 {}" #: src/supertux/menu/addon_menu.cpp:246 msgid "No new Language packs found" @@ -1360,8 +1360,8 @@ msgstr "" #: src/supertux/menu/addon_menu.cpp:361 #, c-format -msgid "Downloading %s" -msgstr "正在下載 %s" +msgid "Downloading {}" +msgstr "正在下載 {}" #: src/supertux/menu/addon_menu.cpp:408 msgid "" @@ -2019,13 +2019,13 @@ msgstr "聖誕節模式" #: src/supertux/menu/profile_menu.cpp:37 #, c-format -msgid "[Profile %s]" -msgstr "[設定檔 %s]" +msgid "[Profile {}]" +msgstr "[設定檔 {}]" #: src/supertux/menu/profile_menu.cpp:41 #, c-format -msgid "Profile %s" -msgstr "設定檔 %s" +msgid "Profile {}" +msgstr "設定檔 {}" #: src/supertux/menu/world_set_menu.cpp:41 msgid "Story Mode" diff --git a/data/music/antarctic/cavetheme.music b/data/music/antarctic/cavetheme.music new file mode 100644 index 00000000000..da5176ded6e --- /dev/null +++ b/data/music/antarctic/cavetheme.music @@ -0,0 +1,5 @@ +(supertux-music + (file "cavetheme.ogg") + (loop-begin 0) + (loop-at -1) +) diff --git a/data/music/antarctic/cavetheme.ogg b/data/music/antarctic/cavetheme.ogg new file mode 100644 index 00000000000..05acd033192 Binary files /dev/null and b/data/music/antarctic/cavetheme.ogg differ diff --git a/data/music/antarctic/cavetheme_alt.music b/data/music/antarctic/cavetheme_alt.music new file mode 100644 index 00000000000..94aac10472c --- /dev/null +++ b/data/music/antarctic/cavetheme_alt.music @@ -0,0 +1,5 @@ +(supertux-music + (file "cavetheme_alt.ogg") + (loop-begin 0) + (loop-at -1) +) diff --git a/data/music/antarctic/cavetheme_alt.ogg b/data/music/antarctic/cavetheme_alt.ogg new file mode 100644 index 00000000000..795e3114191 Binary files /dev/null and b/data/music/antarctic/cavetheme_alt.ogg differ diff --git a/data/music/antarctic/crystalmine_intro.music b/data/music/antarctic/crystalmine_intro.music new file mode 100644 index 00000000000..3d7f518e699 --- /dev/null +++ b/data/music/antarctic/crystalmine_intro.music @@ -0,0 +1,5 @@ +(supertux-music + (file "crystalmine_intro.ogg") + (loop-begin 0) + (loop-at -1) +) diff --git a/data/music/antarctic/crystalmine_intro.ogg b/data/music/antarctic/crystalmine_intro.ogg new file mode 100644 index 00000000000..323d3db9c20 Binary files /dev/null and b/data/music/antarctic/crystalmine_intro.ogg differ diff --git a/data/music/antarctic/crystalmine_main.music b/data/music/antarctic/crystalmine_main.music new file mode 100644 index 00000000000..094da920c1d --- /dev/null +++ b/data/music/antarctic/crystalmine_main.music @@ -0,0 +1,5 @@ +(supertux-music + (file "crystalmine_main.ogg") + (loop-begin 7.499) + (loop-at 146.250) +) diff --git a/data/music/antarctic/crystalmine_main.ogg b/data/music/antarctic/crystalmine_main.ogg new file mode 100644 index 00000000000..a3925000b79 Binary files /dev/null and b/data/music/antarctic/crystalmine_main.ogg differ diff --git a/data/music/antarctic/glacier.music b/data/music/antarctic/glacier.music new file mode 100644 index 00000000000..2807fb0ea62 --- /dev/null +++ b/data/music/antarctic/glacier.music @@ -0,0 +1,5 @@ +(supertux-music + (file "glacier.ogg") + (loop-begin 12.311) + (loop-at 86.154) +) diff --git a/data/music/antarctic/glacier.ogg b/data/music/antarctic/glacier.ogg new file mode 100644 index 00000000000..34dbc75d456 Binary files /dev/null and b/data/music/antarctic/glacier.ogg differ diff --git a/data/music/antarctic/midday.music b/data/music/antarctic/midday.music new file mode 100644 index 00000000000..43008159038 --- /dev/null +++ b/data/music/antarctic/midday.music @@ -0,0 +1,5 @@ +(supertux-music + (file "midday.ogg") + (loop-begin 0) + (loop-at -1) +) diff --git a/data/music/antarctic/midday.ogg b/data/music/antarctic/midday.ogg new file mode 100644 index 00000000000..3ef0e22f5d3 Binary files /dev/null and b/data/music/antarctic/midday.ogg differ diff --git a/data/music/antarctic/midday_alt.music b/data/music/antarctic/midday_alt.music new file mode 100644 index 00000000000..fbb7595234a --- /dev/null +++ b/data/music/antarctic/midday_alt.music @@ -0,0 +1,5 @@ +(supertux-music + (file "midday_alt.ogg") + (loop-begin 0) + (loop-at -1) +) diff --git a/data/music/antarctic/midday_alt.ogg b/data/music/antarctic/midday_alt.ogg new file mode 100644 index 00000000000..f2ab048ed1d Binary files /dev/null and b/data/music/antarctic/midday_alt.ogg differ diff --git a/data/music/antarctic/night.music b/data/music/antarctic/night.music new file mode 100644 index 00000000000..ce54c5a8810 --- /dev/null +++ b/data/music/antarctic/night.music @@ -0,0 +1,5 @@ +(supertux-music + (file "night.ogg") + (loop-begin 2.912) + (loop-at 72.727) +) diff --git a/data/music/antarctic/night.ogg b/data/music/antarctic/night.ogg new file mode 100644 index 00000000000..ee9e1112c6b Binary files /dev/null and b/data/music/antarctic/night.ogg differ diff --git a/data/music/antarctic/skylevel.music b/data/music/antarctic/skylevel.music new file mode 100644 index 00000000000..c7bbf618720 --- /dev/null +++ b/data/music/antarctic/skylevel.music @@ -0,0 +1,5 @@ +(supertux-music + (file "skylevel.ogg") + (loop-begin 11.639) + (loop-at 81.445) +) diff --git a/data/music/antarctic/skylevel.ogg b/data/music/antarctic/skylevel.ogg new file mode 100644 index 00000000000..715f2c7f1c9 Binary files /dev/null and b/data/music/antarctic/skylevel.ogg differ diff --git a/data/music/antarctic/snowfort.music b/data/music/antarctic/snowfort.music new file mode 100644 index 00000000000..139d7818eab --- /dev/null +++ b/data/music/antarctic/snowfort.music @@ -0,0 +1,5 @@ +(supertux-music + (file "snowfort.ogg") + (loop-begin 7.683) + (loop-at 88.320) +) diff --git a/data/music/antarctic/snowfort.ogg b/data/music/antarctic/snowfort.ogg new file mode 100644 index 00000000000..be90be37c12 Binary files /dev/null and b/data/music/antarctic/snowfort.ogg differ diff --git a/data/music/antarctic/sunset.music b/data/music/antarctic/sunset.music new file mode 100644 index 00000000000..3b5f70f6ff6 --- /dev/null +++ b/data/music/antarctic/sunset.music @@ -0,0 +1,5 @@ +(supertux-music + (file "sunset.ogg") + (loop-begin 34.912) + (loop-at 104.727) +) diff --git a/data/music/antarctic/sunset.ogg b/data/music/antarctic/sunset.ogg new file mode 100644 index 00000000000..fdd35376498 Binary files /dev/null and b/data/music/antarctic/sunset.ogg differ diff --git a/data/music/antarctic/underwater.music b/data/music/antarctic/underwater.music new file mode 100644 index 00000000000..21daed9984b --- /dev/null +++ b/data/music/antarctic/underwater.music @@ -0,0 +1,5 @@ +(supertux-music + (file "underwater.ogg") + (loop-begin 19.198) + (loop-at 115.200) +) diff --git a/data/music/antarctic/underwater.ogg b/data/music/antarctic/underwater.ogg new file mode 100644 index 00000000000..0ea69b577b3 Binary files /dev/null and b/data/music/antarctic/underwater.ogg differ diff --git a/data/music/antarctic/worldmap_ice.music b/data/music/antarctic/worldmap_ice.music new file mode 100644 index 00000000000..42dddf842d4 --- /dev/null +++ b/data/music/antarctic/worldmap_ice.music @@ -0,0 +1,5 @@ +(supertux-music + (file "worldmap_ice.ogg") + (loop-begin 0) + (loop-at -1) +) diff --git a/data/music/antarctic/worldmap_ice.ogg b/data/music/antarctic/worldmap_ice.ogg new file mode 100644 index 00000000000..4a9b7708744 Binary files /dev/null and b/data/music/antarctic/worldmap_ice.ogg differ diff --git a/data/music/antarctic/yetiboss.music b/data/music/antarctic/yetiboss.music new file mode 100644 index 00000000000..aa122855de9 --- /dev/null +++ b/data/music/antarctic/yetiboss.music @@ -0,0 +1,5 @@ +(supertux-music + (file "yetiboss.ogg") + (loop-begin 1.446) + (loop-at 82.410) +) diff --git a/data/music/antarctic/yetiboss.ogg b/data/music/antarctic/yetiboss.ogg new file mode 100644 index 00000000000..114638b138d Binary files /dev/null and b/data/music/antarctic/yetiboss.ogg differ diff --git a/data/music/castle/icecastle.music b/data/music/castle/icecastle.music new file mode 100644 index 00000000000..b5602209fa9 --- /dev/null +++ b/data/music/castle/icecastle.music @@ -0,0 +1,5 @@ +(supertux-music + (file "icecastle.ogg") + (loop-begin 9.235) + (loop-at 80.000) +) diff --git a/data/music/castle/icecastle.ogg b/data/music/castle/icecastle.ogg new file mode 100644 index 00000000000..6674a263590 Binary files /dev/null and b/data/music/castle/icecastle.ogg differ diff --git a/data/music/forest/forest_midday.music b/data/music/forest/forest_midday.music new file mode 100644 index 00000000000..32262f97744 --- /dev/null +++ b/data/music/forest/forest_midday.music @@ -0,0 +1,5 @@ +(supertux-music + (file "forest_midday.ogg") + (loop-begin 8.067) + (loop-at 112.941) +) diff --git a/data/music/forest/forest_midday.ogg b/data/music/forest/forest_midday.ogg new file mode 100644 index 00000000000..7932376d28b Binary files /dev/null and b/data/music/forest/forest_midday.ogg differ diff --git a/data/music/forest/forest_midday_alt.music b/data/music/forest/forest_midday_alt.music new file mode 100644 index 00000000000..9429d197311 --- /dev/null +++ b/data/music/forest/forest_midday_alt.music @@ -0,0 +1,5 @@ +(supertux-music + (file "forest_midday_alt.ogg") + (loop-begin 7.215) + (loop-at 101.053) +) diff --git a/data/music/forest/forest_midday_alt.ogg b/data/music/forest/forest_midday_alt.ogg new file mode 100644 index 00000000000..4cfec7458bf Binary files /dev/null and b/data/music/forest/forest_midday_alt.ogg differ diff --git a/data/music/misc/credits.ogg b/data/music/misc/credits.ogg index f3e8e0be0e4..65ffadaf6fc 100644 Binary files a/data/music/misc/credits.ogg and b/data/music/misc/credits.ogg differ diff --git a/data/scripts/default.nut b/data/scripts/default.nut index 0a1569b454f..9cce66f726f 100644 --- a/data/scripts/default.nut +++ b/data/scripts/default.nut @@ -3,22 +3,6 @@ * and variables you define here can be used in all threads */ -//Create Level table -Level <- { - finish=Level_finish, - has_active_sequence=Level_has_active_sequence, - spawn=Level_spawn, - set_start_point=Level_set_start_point, - set_start_pos=Level_set_start_pos, - set_respawn_point=Level_set_respawn_point, - set_respawn_pos=Level_set_respawn_pos, - flip_vertically=Level_flip_vertically, - toggle_pause=Level_toggle_pause, - pause_target_timer=Level_pause_target_timer, - resume_target_timer=Level_resume_target_timer -}; - - function end_level() { play_music("music/misc/leveldone.ogg"); diff --git a/data/sounds/kill.wav b/data/sounds/kill.wav index 871bd86922e..ab93cc8452d 100644 Binary files a/data/sounds/kill.wav and b/data/sounds/kill.wav differ diff --git a/external/SDL_ttf b/external/SDL_ttf index 8324741c73f..3b5d087966e 160000 --- a/external/SDL_ttf +++ b/external/SDL_ttf @@ -1 +1 @@ -Subproject commit 8324741c73f15f85a1da96d05bb8362c0f57dabd +Subproject commit 3b5d087966e1c8653f32d28d56db6f72f89a1e54 diff --git a/external/discord-sdk b/external/discord-sdk index e4c0c569eca..f08a154eccf 160000 --- a/external/discord-sdk +++ b/external/discord-sdk @@ -1 +1 @@ -Subproject commit e4c0c569eca9b888010ad904d3633e782f5cd680 +Subproject commit f08a154eccfc4176035e7bd856dcaf3838d30813 diff --git a/external/physfs b/external/physfs index 36504d7207d..eb3383b532c 160000 --- a/external/physfs +++ b/external/physfs @@ -1 +1 @@ -Subproject commit 36504d7207df8a93e6f36e016c47fbfabb8e1ed8 +Subproject commit eb3383b532c5f74bfeb42ec306ba2cf80eed988c diff --git a/external/simplesquirrel b/external/simplesquirrel new file mode 160000 index 00000000000..801de40151c --- /dev/null +++ b/external/simplesquirrel @@ -0,0 +1 @@ +Subproject commit 801de40151ca978b8554a9e590b01c398b7417c0 diff --git a/external/squirrel b/external/squirrel deleted file mode 160000 index b31e5bdc213..00000000000 --- a/external/squirrel +++ /dev/null @@ -1 +0,0 @@ -Subproject commit b31e5bdc213359f6612e77d36bae26fa85424c56 diff --git a/flake.nix b/flake.nix index a512def3830..e2c56bd45a8 100644 --- a/flake.nix +++ b/flake.nix @@ -112,7 +112,6 @@ EOF pkgs.physfs pkgs.libpng - pkgs.boost pkgs.curl pkgs.fmt_8 pkgs.libGL diff --git a/guix.scm b/guix.scm index ec9f67aa7e4..97f53975f40 100644 --- a/guix.scm +++ b/guix.scm @@ -37,8 +37,7 @@ (gnu packages squirrel) (gnu packages version-control) (gnu packages xiph) - (guix-cocfree utils) - (guix-cocfree packages boost)) + (guix-cocfree utils)) (define %source-dir (dirname (current-filename))) diff --git a/makepot.sh b/makepot.sh index 046c4aa4c25..af78c06e217 100755 --- a/makepot.sh +++ b/makepot.sh @@ -21,14 +21,20 @@ find data/ -name "objects.stoi" -print0 | xargs -0 xgettext --keyword='_:1' \ --package-name="${package_name}" --package-version="${package_version}" \ --msgid-bugs-address=https://github.com/SuperTux/supertux/issues +find data/ -name "data.stcd" -print0 | xargs -0 xgettext --keyword='_:1' \ + --language=Lisp --from-code=UTF-8 --sort-by-file \ + --output data/locale/converters.pot --add-comments=l10n \ + --package-name="${package_name}" --package-version="${package_version}" \ + --msgid-bugs-address=https://github.com/SuperTux/supertux/issues + find data/ -name "*.strf" -print0 | xargs -0 xgettext --keyword='_:1' \ --language=Lisp --from-code=UTF-8 --sort-by-file \ --output data/locale/tilesets.pot --add-comments=l10n \ --package-name="${package_name}" --package-version="${package_version}" \ --msgid-bugs-address=https://github.com/SuperTux/supertux/issues -msgcat data/locale/main.pot data/locale/credits.pot data/locale/objects.pot data/locale/tilesets.pot > data/locale/messages.pot -rm -f data/locale/main.pot data/locale/credits.pot data/locale/objects.pot data/locale/tilesets.pot +msgcat data/locale/main.pot data/locale/credits.pot data/locale/objects.pot data/locale/tilesets.pot data/locale/converters.pot > data/locale/messages.pot +rm -f data/locale/main.pot data/locale/credits.pot data/locale/objects.pot data/locale/tilesets.pot data/locale/converters.pot # Prepare script files for inclusion in tinygettext for LEVELSET in $(ls data/levels); do diff --git a/mk/brew/glm.rb b/mk/brew/glm.rb new file mode 100644 index 00000000000..e8e1e371288 --- /dev/null +++ b/mk/brew/glm.rb @@ -0,0 +1,77 @@ +class Glm < Formula + desc "C++ mathematics library for graphics software" + homepage "https://glm.g-truc.net/" + url "https://github.com/g-truc/glm/archive/refs/tags/1.0.0.tar.gz" + sha256 "e51f6c89ff33b7cfb19daafb215f293d106cd900f8d681b9b1295312ccadbd23" + # GLM is licensed under The Happy Bunny License or MIT License + license "MIT" + head "https://github.com/g-truc/glm.git", branch: "master" + + livecheck do + url :stable + strategy :github_latest + end + + bottle do + sha256 cellar: :any, arm64_sonoma: "8d177748719b95658993ecd43fa12655701a17c90265b21f276cca23692d370e" + sha256 cellar: :any, arm64_ventura: "2c98bea16ad38d1bfe8aa6c5e53c80902ab810a64ae3fc07737f7fbd68307031" + sha256 cellar: :any, arm64_monterey: "0b88a03a507fc6a844fd031fec6a01ac1564b9dda9e32165c923ff74374f931d" + sha256 cellar: :any, sonoma: "5bf46f03e749fc17cb2db89b6e8d00e021246806ebafcdd4ed4fc677b533bc3a" + sha256 cellar: :any, ventura: "ac194c8b7d6d568639ee2a7611c06127003ac1315ac2e9a86fb53ce2ddc5536d" + sha256 cellar: :any, monterey: "324b50967d56d320c4d47f4f23ac205a8f813b1b7ec16e0278df6f78d77f378c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e2aa9340b302c688c807ce9d93aa1b6303e8f018e0bce74d4cd678185caa2559" + end + + depends_on "cmake" => :build + depends_on "doxygen" => :build + + def install + args = %w[ + -DGLM_BUILD_TESTS=OFF + -DBUILD_SHARED_LIBS=ON + ] + + system "cmake", "-S", ".", "-B", "build", *args, *std_cmake_args + system "cmake", "--build", "build" + system "cmake", "--install", "build" + + include.install "glm" + lib.install "cmake" + (lib/"pkgconfig/glm.pc").write <<~EOS + prefix=#{prefix} + includedir=${prefix}/include + + Name: GLM + Description: OpenGL Mathematics + Version: #{version.to_s.match(/\d+\.\d+\.\d+/)} + Cflags: -I${includedir} + EOS + + cd "doc" do + system "doxygen", "man.doxy" + man.install "html" + end + doc.install Dir["doc/*"] + end + + test do + (testpath/"test.cpp").write <<~EOS + #include // glm::vec2 + int main() + { + std::size_t const VertexCount = 4; + std::size_t const PositionSizeF32 = VertexCount * sizeof(glm::vec2); + glm::vec2 const PositionDataF32[VertexCount] = + { + glm::vec2(-1.0f,-1.0f), + glm::vec2( 1.0f,-1.0f), + glm::vec2( 1.0f, 1.0f), + glm::vec2(-1.0f, 1.0f) + }; + return 0; + } + EOS + system ENV.cxx, "-I#{include}", testpath/"test.cpp", "-o", "test" + system "./test" + end +end diff --git a/mk/cmake/SuperTux/BuildCPack.cmake b/mk/cmake/SuperTux/BuildCPack.cmake index d7fc4c4cdf4..5ecc5c9fa77 100644 --- a/mk/cmake/SuperTux/BuildCPack.cmake +++ b/mk/cmake/SuperTux/BuildCPack.cmake @@ -1,7 +1,7 @@ option(DISABLE_CPACK_BUNDLING "Build an .app bundle without CPack" OFF) include(InstallRequiredSystemLibraries) -set(DIRS ${Boost_LIBRARY_DIRS} ${CMAKE_CURRENT_BINARY_DIR}/external/squirrel ${CMAKE_CURRENT_BINARY_DIR}/external/tinygettext) +set(DIRS ${CMAKE_CURRENT_BINARY_DIR}/external/tinygettext ${CMAKE_CURRENT_BINARY_DIR}/external/simplesquirrel) if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND NOT DISABLE_CPACK_BUNDLING) set(INFOPLIST_CFBUNDLEEXECUTABLE "SuperTux") diff --git a/mk/cmake/SuperTux/BuildDocumentation.cmake b/mk/cmake/SuperTux/BuildDocumentation.cmake index ab265f1e0b3..6c8607819d8 100644 --- a/mk/cmake/SuperTux/BuildDocumentation.cmake +++ b/mk/cmake/SuperTux/BuildDocumentation.cmake @@ -2,7 +2,7 @@ # Adapted from https://tty1.net/blog/2014/cmake-doxygen_en.html # add a target to generate API documentation with Doxygen option(BUILD_DOCUMENTATION "Build API documentation using Doxygen" ${DOXYGEN_FOUND}) -option(BUILD_SCRIPTING_DOCUMENTATION "Build scripting API documentation using Doxygen" ${DOXYGEN_FOUND}) +option(BUILD_DOCUMENTATION_WITH_SCRIPTING "Build API documentation, including scripting API, using Doxygen" OFF) # CMakeLists, including this file from a different directory, can define PROJECT_SOURCE_DIR as the path to the SuperTux source. if(NOT DEFINED PROJECT_SOURCE_DIR) @@ -10,10 +10,14 @@ if(NOT DEFINED PROJECT_SOURCE_DIR) set(PROJECT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}) endif() -if(BUILD_DOCUMENTATION) +if(BUILD_DOCUMENTATION OR BUILD_DOCUMENTATION_WITH_SCRIPTING) find_package(Doxygen REQUIRED) - set(doxyfile_in ${PROJECT_SOURCE_DIR}/Doxyfile.in) + if(BUILD_DOCUMENTATION_WITH_SCRIPTING) + set(doxyfile_in ${PROJECT_SOURCE_DIR}/mk/doxygen/Doxyfile_scripting.in) + else() + set(doxyfile_in ${PROJECT_SOURCE_DIR}/mk/doxygen/Doxyfile.in) + endif() set(doxyfile ${CMAKE_CURRENT_BINARY_DIR}/docs/Doxyfile) configure_file(${doxyfile_in} ${doxyfile} @ONLY) @@ -25,19 +29,4 @@ if(BUILD_DOCUMENTATION) VERBATIM) endif() -if(BUILD_SCRIPTING_DOCUMENTATION) - find_package(Doxygen REQUIRED) - - set(doxyfile_in ${PROJECT_SOURCE_DIR}/mk/doxygen/Doxyfile_scripting.in) - set(doxyfile ${CMAKE_CURRENT_BINARY_DIR}/docs/scripting/Doxyfile) - - configure_file(${doxyfile_in} ${doxyfile} @ONLY) - - add_custom_target(scripting_doc - COMMAND ${DOXYGEN_EXECUTABLE} ${doxyfile} - WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} - COMMENT "Generating scripting API documentation with Doxygen" - VERBATIM) -endif() - # EOF # diff --git a/mk/cmake/SuperTux/BuildInstall.cmake b/mk/cmake/SuperTux/BuildInstall.cmake index 2f72a010577..ae28707251a 100644 --- a/mk/cmake/SuperTux/BuildInstall.cmake +++ b/mk/cmake/SuperTux/BuildInstall.cmake @@ -1,11 +1,15 @@ if(WIN32 AND NOT UNIX) - if(VCPKG_BUILD) - install(DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/\${CMAKE_INSTALL_CONFIG_NAME}/" DESTINATION ${INSTALL_SUBDIR_BIN} FILES_MATCHING PATTERN "*.dll") - else() - install(FILES ${DLLS} DESTINATION ${INSTALL_SUBDIR_BIN}) - endif() + install(DIRECTORY $/ + DESTINATION ${INSTALL_SUBDIR_BIN} + FILES_MATCHING PATTERN "*.dll") + + install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/data/images/engine/icons/supertux.png + ${CMAKE_CURRENT_SOURCE_DIR}/data/images/engine/icons/supertux.ico + DESTINATION ".") - install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/data/images/engine/icons/supertux.png ${CMAKE_CURRENT_SOURCE_DIR}/data/images/engine/icons/supertux.ico DESTINATION ".") + install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/mk/msvc/run_supertux.bat + ${CMAKE_CURRENT_SOURCE_DIR}/mk/msvc/run_supertux_portable.bat + DESTINATION ".") option(PACKAGE_VCREDIST "Package the VCREDIST libraries with the program" OFF) @@ -83,16 +87,12 @@ if(CMAKE_BUILD_TYPE MATCHES "Release|RelWithDebInfo") DESTINATION ${INSTALL_SUBDIR_SHARE} PATTERN "data/levels/test" EXCLUDE PATTERN "data/levels/test_old" EXCLUDE - PATTERN "data/levels/incubator" EXCLUDE - PATTERN "data/levels/misc/menu.stl.in" EXCLUDE) + PATTERN "data/levels/incubator" EXCLUDE) else() install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/data/levels - DESTINATION ${INSTALL_SUBDIR_SHARE} - PATTERN "data/levels/misc/menu.stl.in" EXCLUDE) + DESTINATION ${INSTALL_SUBDIR_SHARE}) endif() -install(FILES "${CMAKE_BINARY_DIR}/data/levels/misc/menu.stl" DESTINATION "${INSTALL_SUBDIR_SHARE}/levels/misc") - # move some config clutter to the advanced section mark_as_advanced( INSTALL_SUBDIR_BIN diff --git a/mk/cmake/SuperTux/BuildMiniswigWrapper.cmake b/mk/cmake/SuperTux/BuildMiniswigWrapper.cmake deleted file mode 100644 index 38550f1bf76..00000000000 --- a/mk/cmake/SuperTux/BuildMiniswigWrapper.cmake +++ /dev/null @@ -1,27 +0,0 @@ -option(GENERATE_WRAPPER "Build miniswig and generate the wrapper" OFF) -if(GENERATE_WRAPPER) - add_subdirectory(tools/miniswig) - add_custom_command( - OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/src/scripting/wrapper.cpp ${CMAKE_CURRENT_SOURCE_DIR}/src/scripting/wrapper.hpp - COMMAND cd ${CMAKE_CURRENT_SOURCE_DIR} && ${CMAKE_CXX_COMPILER} - ARGS -x "c++" -E -CC - -DSCRIPTING_API src/scripting/wrapper.interface.hpp - -o ${CMAKE_CURRENT_BINARY_DIR}/miniswig.tmp - -I${CMAKE_CURRENT_SOURCE_DIR}/src - COMMAND tools/miniswig/miniswig - ARGS --input miniswig.tmp - --input-hpp scripting/wrapper.interface.hpp - --output-cpp ${CMAKE_CURRENT_SOURCE_DIR}/src/scripting/wrapper.cpp - --output-hpp ${CMAKE_CURRENT_SOURCE_DIR}/src/scripting/wrapper.hpp - --output-hpp-include scripting/wrapper.hpp - --module supertux - --select-namespace scripting - DEPENDS tools/miniswig/miniswig - IMPLICIT_DEPENDS CXX ${CMAKE_CURRENT_SOURCE_DIR}/src/scripting/wrapper.interface.hpp - ) - if(USE_CLANG_TIDY) - set_target_properties(miniswig PROPERTIES CXX_CLANG_TIDY "") - endif() -endif() - -# EOF # diff --git a/mk/cmake/SuperTux/ProvideGlm.cmake b/mk/cmake/SuperTux/ProvideGlm.cmake index 61c3cfc8b4f..d20c14cd056 100644 --- a/mk/cmake/SuperTux/ProvideGlm.cmake +++ b/mk/cmake/SuperTux/ProvideGlm.cmake @@ -6,6 +6,23 @@ endif() if(USE_SYSTEM_GLM) find_package(glm QUIET) + + if(NOT glm_FOUND) + # fallback for old glm version in UBPorts + find_path(GLM_INCLUDE_DIR + NAMES glm/glm.hpp + PATHS ${GLM_ROOT_DIR}/include) + if(NOT GLM_INCLUDE_DIR) + message(STATUS "Could NOT find glm, using external/glm fallback") + set(USE_SYSTEM_GLM OFF) + else() + message(STATUS "Found glm: ${GLM_INCLUDE_DIR}") + add_library(LibGlm INTERFACE IMPORTED) + set_target_properties(LibGlm PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${GLM_INCLUDE_DIR}" + INTERFACE_COMPILE_DEFINITIONS "GLM_ENABLE_EXPERIMENTAL") + endif() + endif() endif() if(NOT USE_SYSTEM_GLM) @@ -56,20 +73,6 @@ elseif(glm_FOUND) INTERFACE_SYSTEM_INCLUDE_DIRECTORIES "$" INTERFACE_COMPILE_DEFINITIONS "GLM_ENABLE_EXPERIMENTAL") endif() -else() - # fallback for old glm version in UBPorts - find_path(GLM_INCLUDE_DIR - NAMES glm/glm.hpp - PATHS ${GLM_ROOT_DIR}/include) - if(NOT GLM_INCLUDE_DIR) - message(FATAL_ERROR "glm library missing") - endif() - - message(STATUS "Found glm: ${GLM_INCLUDE_DIR}") - add_library(LibGlm INTERFACE IMPORTED) - set_target_properties(LibGlm PROPERTIES - INTERFACE_INCLUDE_DIRECTORIES "${GLM_INCLUDE_DIR}" - INTERFACE_COMPILE_DEFINITIONS "GLM_ENABLE_EXPERIMENTAL") endif() # EOF # diff --git a/mk/cmake/SuperTux/ProvidePhysfs.cmake b/mk/cmake/SuperTux/ProvidePhysfs.cmake index 6e75de787db..f28ec3e9a31 100644 --- a/mk/cmake/SuperTux/ProvidePhysfs.cmake +++ b/mk/cmake/SuperTux/ProvidePhysfs.cmake @@ -13,8 +13,8 @@ endif() if(USE_SYSTEM_PHYSFS) add_library(LibPhysfs INTERFACE) + target_link_libraries(LibPhysfs INTERFACE ${PHYSFS_LIBRARY}) set_target_properties(LibPhysfs PROPERTIES - INTERFACE_LINK_LIBRARIES "${PHYSFS_LIBRARY}" INTERFACE_INCLUDE_DIRECTORIES "${PHYSFS_INCLUDE_DIR}") else() if(NOT EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/external/physfs/CMakeLists.txt) @@ -39,8 +39,6 @@ else() CMAKE_ARGS -DCMAKE_C_COMPILER=${CMAKE_C_COMPILER} -DCMAKE_C_FLAGS=${CMAKE_C_FLAGS} - -DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER} - -DCMAKE_CXX_FLAGS=${CMAKE_CXX_FLAGS} -DCMAKE_INSTALL_PREFIX=${PHYSFS_PREFIX} -DLIB_SUFFIX=${LIB_SUFFIX} -DPHYSFS_BUILD_SHARED=${PHYSFS_BUILD_SHARED} diff --git a/mk/cmake/SuperTux/ProvideSDL2.cmake b/mk/cmake/SuperTux/ProvideSDL2.cmake index 2f3456743f6..f885b48cd94 100644 --- a/mk/cmake/SuperTux/ProvideSDL2.cmake +++ b/mk/cmake/SuperTux/ProvideSDL2.cmake @@ -1,5 +1,5 @@ message(STATUS "Checking for SDL2") -if(WIN32) +if(WIN32 AND NOT MINGW) if(VCPKG_BUILD) find_package(SDL2 CONFIG REQUIRED) find_library(SDL2IMAGE_LIBRARIES SDL2_image) diff --git a/mk/cmake/SuperTux/ProvideSDL2_ttf.cmake b/mk/cmake/SuperTux/ProvideSDL2_ttf.cmake index 95e19ce1f9d..90d41d8956c 100644 --- a/mk/cmake/SuperTux/ProvideSDL2_ttf.cmake +++ b/mk/cmake/SuperTux/ProvideSDL2_ttf.cmake @@ -67,10 +67,10 @@ else() endif() add_library(LibSDL2_ttf STATIC IMPORTED) + target_link_libraries(LibSDL2_ttf INTERFACE "${SDL2_TTF_LINK_LIBRARIES}") set_target_properties(LibSDL2_ttf PROPERTIES IMPORTED_LOCATION "${SDL2_TTF_PREFIX}/lib/${CMAKE_STATIC_LIBRARY_PREFIX}SDL2_ttf${CMAKE_STATIC_LIBRARY_SUFFIX}" - INTERFACE_INCLUDE_DIRECTORIES "${SDL2_TTF_PREFIX}/include/SDL2" - INTERFACE_LINK_LIBRARIES "${SDL2_TTF_LINK_LIBRARIES}") + INTERFACE_INCLUDE_DIRECTORIES "${SDL2_TTF_PREFIX}/include/SDL2") add_dependencies(LibSDL2_ttf SDL2_ttf_project) endif() diff --git a/mk/cmake/SuperTux/ProvideSimpleSquirrel.cmake b/mk/cmake/SuperTux/ProvideSimpleSquirrel.cmake new file mode 100644 index 00000000000..8e9c413735e --- /dev/null +++ b/mk/cmake/SuperTux/ProvideSimpleSquirrel.cmake @@ -0,0 +1,14 @@ +if(EMSCRIPTEN) + set(SQ_DISABLE_INSTALLER ON) +endif() + +add_subdirectory("${CMAKE_SOURCE_DIR}/external/simplesquirrel/") + +if(MSVC) + add_library(LibSimpleSquirrel ALIAS simplesquirrel_static) +else() + add_library(LibSimpleSquirrel ALIAS simplesquirrel) +endif() + +# Set variables +set(SQUIRREL_PREFIX ${CMAKE_BINARY_DIR}/external/simplesquirrel/libs/squirrel) diff --git a/mk/cmake/SuperTux/ProvideSquirrel.cmake b/mk/cmake/SuperTux/ProvideSquirrel.cmake deleted file mode 100644 index 06598261908..00000000000 --- a/mk/cmake/SuperTux/ProvideSquirrel.cmake +++ /dev/null @@ -1,91 +0,0 @@ -option(USE_SYSTEM_SQUIRREL "Use preinstalled squirrel if available" ON) - -if(USE_SYSTEM_SQUIRREL) - find_package(squirrel 3.2 QUIET) -endif() - -if(TARGET squirrel::squirrel) - message(STATUS "Found preinstalled squirrel") - - add_library(LibSquirrel ALIAS squirrel::squirrel) - add_library(LibSqstdlib ALIAS squirrel::sqstdlib) -else() - if(USE_SYSTEM_SQUIRREL) - message(STATUS "Could NOT find squirrel, using external/squirrel fallback") - endif() - - if(NOT EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/external/squirrel/CMakeLists.txt) - message(FATAL_ERROR "squirrel submodule is not checked out or ${CMAKE_CURRENT_SOURCE_DIR}/external/squirrel/CMakeLists.txt is missing") - endif() - - if(CMAKE_CROSSCOMPILING AND NOT EMSCRIPTEN) - set(SQUIRREL_MULTIARCH_DIR "${CMAKE_LIBRARY_ARCHITECTURE}/") - else() - set(SQUIRREL_MULTIARCH_DIR "") - endif() - - # Cannot build Debug version when using gcc on arm64 because an incompatible flag is being passed in - if(CMAKE_COMPILER_IS_GNUCXX AND "${CMAKE_SYSTEM_PROCESSOR}" MATCHES "aarch64" AND "${CMAKE_BUILD_TYPE}" MATCHES "Debug") - set (BUILD_TYPE "RelWithDebInfo") - else() - set (BUILD_TYPE ${CMAKE_BUILD_TYPE}) - endif() - - set(SQUIRREL_PREFIX ${CMAKE_BINARY_DIR}/squirrel/ex) - ExternalProject_Add(squirrel_project - SOURCE_DIR "${CMAKE_SOURCE_DIR}/external/squirrel/" - BUILD_BYPRODUCTS - "${SQUIRREL_PREFIX}/lib/${SQUIRREL_MULTIARCH_DIR}${CMAKE_STATIC_LIBRARY_PREFIX}sqstdlib_static${CMAKE_STATIC_LIBRARY_SUFFIX}" - "${SQUIRREL_PREFIX}/lib/${SQUIRREL_MULTIARCH_DIR}${CMAKE_STATIC_LIBRARY_PREFIX}squirrel_static${CMAKE_STATIC_LIBRARY_SUFFIX}" - CMAKE_ARGS - -DCMAKE_BUILD_TYPE=${BUILD_TYPE} - -DCMAKE_C_COMPILER=${CMAKE_C_COMPILER} - -DCMAKE_C_FLAGS=${CMAKE_C_FLAGS} - -DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER} - -DCMAKE_CXX_FLAGS=${CMAKE_CXX_FLAGS} - -DCMAKE_INSTALL_PREFIX=${SQUIRREL_PREFIX} - -DCMAKE_INSTALL_LIBDIR=lib - -DINSTALL_INC_DIR=include - -DCMAKE_POSITION_INDEPENDENT_CODE=ON) - - if(WIN32) - add_library(LibSquirrel SHARED IMPORTED) - set_target_properties(LibSquirrel PROPERTIES - IMPORTED_LOCATION "${SQUIRREL_PREFIX}/bin/${CMAKE_SHARED_LIBRARY_PREFIX}squirrel${CMAKE_SHARED_LIBRARY_SUFFIX}" - IMPORTED_IMPLIB "${SQUIRREL_PREFIX}/lib/squirrel${CMAKE_LINK_LIBRARY_SUFFIX}" - INTERFACE_INCLUDE_DIRECTORIES "${SQUIRREL_PREFIX}/include") - - add_library(LibSqstdlib SHARED IMPORTED) - set_target_properties(LibSqstdlib PROPERTIES - IMPORTED_LOCATION "${SQUIRREL_PREFIX}/bin/${CMAKE_SHARED_LIBRARY_PREFIX}sqstdlib${CMAKE_SHARED_LIBRARY_SUFFIX}" - IMPORTED_IMPLIB "${SQUIRREL_PREFIX}/lib/sqstdlib${CMAKE_LINK_LIBRARY_SUFFIX}" - INTERFACE_INCLUDE_DIRECTORIES "${SQUIRREL_PREFIX}/include") - - #For debug run purposes - configure_file("${CMAKE_CURRENT_SOURCE_DIR}/mk/msvc/run_supertux.bat.in" "${CMAKE_CURRENT_BINARY_DIR}/run_supertux.bat") - else() - add_library(LibSquirrel STATIC IMPORTED) - set_target_properties(LibSquirrel PROPERTIES - IMPORTED_LOCATION "${SQUIRREL_PREFIX}/lib/${SQUIRREL_MULTIARCH_DIR}${CMAKE_STATIC_LIBRARY_PREFIX}squirrel_static${CMAKE_STATIC_LIBRARY_SUFFIX}" - INTERFACE_INCLUDE_DIRECTORIES "${SQUIRREL_PREFIX}/include") - - add_library(LibSqstdlib STATIC IMPORTED) - set_target_properties(LibSqstdlib PROPERTIES - IMPORTED_LOCATION "${SQUIRREL_PREFIX}/lib/${SQUIRREL_MULTIARCH_DIR}${CMAKE_STATIC_LIBRARY_PREFIX}sqstdlib_static${CMAKE_STATIC_LIBRARY_SUFFIX}" - INTERFACE_INCLUDE_DIRECTORIES "${SQUIRREL_PREFIX}/include") - endif() - - # Pre-create directory so that cmake doesn't complain about its non-existance - file(MAKE_DIRECTORY ${SQUIRREL_PREFIX}/include) - - add_dependencies(LibSquirrel squirrel_project) - add_dependencies(LibSqstdlib squirrel_project) - - if(WIN32) - get_property(SQUIRREL_LIB_PATH TARGET LibSquirrel PROPERTY IMPORTED_LOCATION) - get_property(SQSTDLIB_LIB_PATH TARGET LibSqstdlib PROPERTY IMPORTED_LOCATION) - install(FILES ${SQUIRREL_LIB_PATH} ${SQSTDLIB_LIB_PATH} DESTINATION "${INSTALL_SUBDIR_BIN}") - endif() -endif() - -# EOF # diff --git a/mk/cmake/SuperTux/ProvideTinygettext.cmake b/mk/cmake/SuperTux/ProvideTinygettext.cmake index 180f75bbe36..9a85f3acf26 100644 --- a/mk/cmake/SuperTux/ProvideTinygettext.cmake +++ b/mk/cmake/SuperTux/ProvideTinygettext.cmake @@ -41,7 +41,6 @@ else() -DCMAKE_CXX_FLAGS=${TINYGETTEXT_CXX_FLAGS} -DBUILD_SHARED_LIBS=OFF -DHAVE_SDL=ON - -DVCPKG_BUILD=${VCPKG_BUILD} -DCMAKE_INSTALL_PREFIX=${TINYGETTEXT_PREFIX} -DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE} -DSDL2_LIBRARIES=${SDL2_LIBRARIES} diff --git a/mk/cmake/SuperTux/WarningFlags.cmake b/mk/cmake/SuperTux/WarningFlags.cmake index 37ef336883d..2ee2773d49c 100644 --- a/mk/cmake/SuperTux/WarningFlags.cmake +++ b/mk/cmake/SuperTux/WarningFlags.cmake @@ -52,11 +52,6 @@ if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") "-Wint-in-bool-context " ) endif() - if(Boost_VERSION LESS 106500) - string(CONCAT SUPERTUX2_EXTRA_WARNING_FLAGS - "${SUPERTUX2_EXTRA_WARNING_FLAGS} " - "-Wno-implicit-fallthrough ") - endif() elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang") string(CONCAT SUPERTUX2_EXTRA_WARNING_FLAGS "${SUPERTUX2_EXTRA_WARNING_FLAGS} " @@ -64,6 +59,7 @@ if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") # flags that we deliberately ignore "-Wno-unused-parameter " + "-Wno-unused-template " "-Wno-c++98-compat " "-Wno-c++98-compat-pedantic " "-Wno-float-equal " @@ -73,6 +69,8 @@ if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") "-Wno-documentation " "-Wno-reserved-id-macro " "-Wno-sign-conversion " + "-Wno-reserved-identifier " + "-Wno-unknown-warning-option " # warnings that should probably be fixed in code "-Wno-documentation-unknown-command " diff --git a/Doxyfile.in b/mk/doxygen/Doxyfile.in similarity index 99% rename from Doxyfile.in rename to mk/doxygen/Doxyfile.in index 8ce41f6596f..5e71fef254a 100644 --- a/Doxyfile.in +++ b/mk/doxygen/Doxyfile.in @@ -238,7 +238,8 @@ TAB_SIZE = 8 # "Side Effects:". You can put \n's in the value part of an alias to insert # newlines. -ALIASES = +ALIASES += "scripting=\xrefitem scripting \"Scripting\" \"Scripting\"" +ALIASES += "description=\xrefitem description \"Description\" \"Description\"" # This tag can be used to specify a number of word-keyword mappings (TCL only). # A mapping has the form "name=value". For example adding "class=itcl::class" diff --git a/mk/doxygen/Doxyfile_scripting.in b/mk/doxygen/Doxyfile_scripting.in index 0857ecb564a..7259d25f3b6 100644 --- a/mk/doxygen/Doxyfile_scripting.in +++ b/mk/doxygen/Doxyfile_scripting.in @@ -58,7 +58,7 @@ PROJECT_LOGO = # entered, it will be relative to the location where doxygen was started. If # left blank the current directory will be used. -OUTPUT_DIRECTORY = docs/scripting/doxygen +OUTPUT_DIRECTORY = docs/doxygen # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- # directories (in 2 levels) under the output directory of each output format and @@ -162,7 +162,7 @@ FULL_PATH_NAMES = YES # will be relative from the directory where doxygen is started. # This tag requires that the tag FULL_PATH_NAMES is set to YES. -STRIP_FROM_PATH = @PROJECT_SOURCE_DIR@/src/scripting +STRIP_FROM_PATH = @PROJECT_SOURCE_DIR@/src # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the # path mentioned in the documentation of a class, which tells the reader which @@ -238,10 +238,13 @@ TAB_SIZE = 8 # "Side Effects:". You can put \n's in the value part of an alias to insert # newlines. +ALIASES += "scripting=\xrefitem scripting \"Scripting\" \"Scripting\"" ALIASES += "summary=\xrefitem summary \"Summary\" \"Summary\"" ALIASES += "instances=\xrefitem instances \"Instances\" \"Instances\"" ALIASES += "constants=\xrefitem constants \"Constants\" \"Constants\"" ALIASES += "scope=\xrefitem scope \"Scope\" \"Scope\"" +ALIASES += "description=\xrefitem description \"Description\" \"Description\"" +ALIASES += "prefix=\xrefitem prefix \"Prefix\" \"Prefix\"" # This tag can be used to specify a number of word-keyword mappings (TCL only). # A mapping has the form "name=value". For example adding "class=itcl::class" @@ -794,7 +797,7 @@ WARN_LOGFILE = # Note: If this tag is empty the current directory is searched. INPUT = @doxy_main_page@ \ - @PROJECT_SOURCE_DIR@/src/scripting + @PROJECT_SOURCE_DIR@/src # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses @@ -853,8 +856,7 @@ EXCLUDE_SYMLINKS = NO # Note that the wildcards are matched against the file with absolute path, so to # exclude all test directories for example use the pattern */test/* -EXCLUDE_PATTERNS = @PROJECT_SOURCE_DIR@/src/scripting/wrapper.* \ - @PROJECT_SOURCE_DIR@/src/scripting/game_object.* +EXCLUDE_PATTERNS = # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the diff --git a/mk/emscripten/template.html.in b/mk/emscripten/template.html.in index 307f7e01301..dbe68f3abfc 100644 --- a/mk/emscripten/template.html.in +++ b/mk/emscripten/template.html.in @@ -4,7 +4,8 @@ - SuperTux @SUPERTUX_VERSION_STRING@ + + Play SuperTux online